/* Globals */
/* Luxury Golden & Black Theme - Globals */



:root {
  /* Color System - Light Theme */
  --bg-dark: #fafafa;
  --bg-surface: #ffffff;
  --bg-surface-hover: #f1f1f1;

  --gold-primary: #d4af37;
  --gold-light: #f3e5ab;
  --gold-dark: #aa7c11;
  --gold-gradient: linear-gradient(135deg, #aa7c11 0%, #d4af37 50%, #f3e5ab 100%);
  --gold-gradient-hover: linear-gradient(135deg, #d4af37 0%, #f3e5ab 50%, #ffdf00 100%);
  --gold-glow: rgba(212, 175, 55, 0.1);

  --text-primary: #111111;
  --text-muted: #555555;
  --text-inverse: #050505;

  --border-gold: rgba(212, 175, 55, 0.2);
  --border-gold-focus: rgba(212, 175, 55, 0.5);

  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;

  --font-title: 'Libre Bodoni', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

/* Base resets */
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  background-color: var(--bg-dark);
  background-image: radial-gradient(circle at 50% 0%, var(--bg-surface) 0%, var(--bg-dark) 70%);
  color: var(--text-primary);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.center {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Premium Buttons */
.btn-gold {
  background: var(--gold-gradient);
  color: var(--text-inverse);
  padding: 12px 28px;
  border-radius: 4px;
  font-family: var(--font-title);
  font-weight: 700;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px var(--gold-glow);
  transition: var(--transition-smooth);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-gold:hover {
  background: var(--gold-gradient-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--gold-glow), 0 0 10px var(--gold-primary);
}

.btn-outline {
  background: transparent;
  color: var(--gold-primary);
  padding: 12px 28px;
  border-radius: 4px;
  font-family: var(--font-title);
  font-weight: 600;
  border: 1px solid var(--gold-primary);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-outline:hover {
  background: rgba(212, 175, 55, 0.05);
  border-color: var(--gold-light);
  color: var(--gold-light);
  transform: translateY(-2px);
}

/* Golden Gradient Badges */
.badge-gold {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold-primary);
  border: 1px solid var(--border-gold);
  backdrop-filter: blur(4px);
}

/* Page Title Banner */
.page-title-banner {
  padding: 100px 0 60px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, transparent 100%);
  border-bottom: 1px solid var(--border-gold);
  position: relative;
}

.page-title-banner h1 {
  font-family: var(--font-title);
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 700;
  color: var(--text-primary);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
  letter-spacing: 0.05em;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-breadcum-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  list-style: none;
  font-size: 13px;
  color: var(--text-muted);
}

.page-breadcum-list a:hover {
  color: var(--gold-primary);
}

.page-breadcum-list li.active {
  color: var(--gold-primary);
}

/* Form controls */
.form-gold-group {
  margin-bottom: 20px;
}

.form-gold-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--gold-primary);
  font-family: var(--font-title);
}

.form-gold-control {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  color: var(--text-primary);
  font-family: var(--font-body);
  transition: var(--transition-smooth);
}

.form-gold-control:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
  background: var(--bg-surface-hover);
}

/* Pagination */
.pagination-gold {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 50px;
}

.pagination-gold-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: var(--bg-surface);
  border: 1px solid var(--border-gold);
  color: var(--text-primary);
  font-weight: 600;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.pagination-gold-btn:hover,
.pagination-gold-btn.active {
  background: var(--gold-gradient);
  border-color: var(--gold-primary);
  color: var(--text-inverse);
  box-shadow: 0 4px 10px var(--gold-glow);
}

.pagination-gold-btn.disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* SEO Blog Content Typography Styling */
.blog-content {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-primary);
}

.blog-content h2,
.blog-content h3,
.blog-content h4 {
  font-family: var(--font-title);
  color: var(--gold-primary);
  margin: 40px 0 20px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.blog-content h2 {
  font-size: 26px;
  border-left: 3px solid var(--gold-primary);
  padding-left: 15px;
}

.blog-content h3 {
  font-size: 22px;
}

.blog-content p {
  margin-bottom: 24px;
  color: var(--text-muted);
}

.blog-content a {
  color: var(--gold-primary);
  border-bottom: 1px solid var(--gold-primary);
}

.blog-content a:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
}

.blog-content img {
  border-radius: 8px;
  margin: 35px auto;
  display: block;
  max-width: 100%;
  height: auto;
  border: 1px solid var(--border-gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-content blockquote {
  border-left: 4px solid var(--gold-primary);
  padding: 16px 24px;
  background: rgba(212, 175, 55, 0.03);
  border-radius: 0 8px 8px 0;
  margin: 35px 0;
  font-style: italic;
  color: var(--gold-light);
}

.blog-content ul,
.blog-content ol {
  margin-bottom: 24px;
  padding-left: 24px;
}

.blog-content li {
  margin-bottom: 10px;
}

/* Custom Mega Header Override */
.header-glass {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 250, 250, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: var(--border-gold) 1px solid;
  height: 90px;
  display: flex;
  align-items: center;
  transition: var(--transition-smooth);
}

.header-scrolled {
  height: 75px;
  background: rgba(250, 250, 250, 0.95);
}

.header-spacer {
  height: 90px;
  transition: var(--transition-smooth);
}

.header-spacer-scrolled {
  height: 75px;
}

/* --- News Listing Styles --- */
.blog-section {
  padding: 60px 0 100px;
}

.categories-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}

.filter-pill {
  background: rgba(255, 255, 255, 0.6);
  color: var(--text-muted);
  border: 1px solid var(--border-gold);
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.filter-pill:hover,
.filter-pill.active {
  background: var(--gold-gradient);
  color: var(--text-inverse);
  border-color: var(--gold-primary);
  box-shadow: 0 4px 10px var(--gold-glow);
}

/* Search Widget */
.blog-search-widget {
  max-width: 500px;
  margin: 0 auto 50px;
}

.search-widget-form {
  position: relative;
  width: 100%;
}

.search-widget-input {
  width: 100%;
  height: 48px;
  padding: 10px 50px 10px 20px;
  background: var(--bg-surface);
  border: 1px solid var(--border-gold);
  border-radius: 24px;
  color: var(--text-primary);
  font-size: 14px;
  transition: var(--transition-smooth);
}

.search-widget-input:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px var(--gold-glow);
  background: var(--bg-surface);
}

.search-widget-btn {
  position: absolute;
  right: 4px;
  top: 4px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold-gradient);
  border: none;
  color: var(--text-inverse);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.search-widget-btn:hover {
  background: var(--gold-gradient-hover);
  transform: scale(1.05);
}

/* Luxury Cards Grid */
.posts-luxury-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.post-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  height: 100%;
}

.post-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-primary);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.08), 0 0 15px rgba(212, 175, 55, 0.03);
}

.post-card-thumb {
  position: relative;
  height: 220px;
  overflow: hidden;
  border-bottom: 1px solid var(--border-gold);
}

.post-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.post-card:hover .post-card-img {
  transform: scale(1.08);
}

.post-card-category-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--gold-gradient);
  color: var(--text-inverse);
  font-family: var(--font-title);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 2px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.post-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.post-card-date {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--text-muted);
  margin-bottom: 15px;
}

.date-icon {
  color: var(--gold-primary);
  font-size: 12px;
}

.post-card-title {
  font-family: var(--font-title);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 12px;
  display: -webkit-box;
  WebkitLineClamp: 2;
  WebkitBoxOrient: vertical;
  overflow: hidden;
}

.post-card-title a {
  color: var(--text-primary);
  transition: var(--transition-smooth);
}

.post-card-title a:hover {
  color: var(--gold-primary);
}

.post-card-summary {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 25px;
  flex: 1;
}

.post-card-more-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-primary);
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: auto;
  transition: var(--transition-smooth);
}

.arrow-icon {
  font-size: 10px;
  transition: var(--transition-smooth);
}

.post-card-more-link:hover {
  color: var(--gold-light);
}

.post-card-more-link:hover .arrow-icon {
  transform: translateX(5px);
}

/* Empty state */
.empty-results-box {
  grid-column: span 3;
  text-align: center;
  padding: 60px 40px;
  border: 1px solid var(--border-gold);
  background: var(--bg-surface);
  border-radius: 4px;
}

.sad-icon {
  font-size: 48px;
  color: var(--gold-primary);
  margin-bottom: 20px;
  display: block;
}

.empty-results-box h3 {
  font-family: var(--font-title);
  font-size: 20px;
  margin-bottom: 10px;
}

.empty-results-box p {
  color: var(--text-muted);
  font-size: 14px;
}

/* --- News Single Post Details Styles --- */
.single-post-section {
  padding: 60px 0 100px;
}

.single-post-container {
  max-width: 800px;
  margin: 0 auto;
}

.post-meta-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
  font-size: 13.5px;
  color: var(--text-muted);
}

.meta-separator {
  color: var(--border-gold);
}

.post-date {
  display: flex;
  align-items: center;
  gap: 6px;
}

.post-featured-image-wrap {
  width: 100%;
  height: clamp(250px, 45vw, 460px);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
}

.post-featured-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-excerpt-quote {
  border-left: 3px solid var(--gold-primary);
  padding: 15px 24px;
  background: rgba(212, 175, 55, 0.02);
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gold-light);
  font-style: italic;
}

/* Related posts */
.related-posts-section {
  margin-top: 80px;
  border-top: 1px solid var(--border-gold);
  padding-top: 50px;
}

.related-section-title {
  font-family: var(--font-title);
  color: var(--gold-primary);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 30px;
  letter-spacing: 0.05em;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.related-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: var(--transition-smooth);
}

.related-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-primary);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.05);
}

.related-card-thumb {
  height: 150px;
  overflow: hidden;
  border-bottom: 1px solid var(--border-gold);
}

.related-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.related-card:hover .related-card-img {
  transform: scale(1.05);
}

.related-card-details {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.related-card-title-link {
  margin-bottom: 10px;
  flex: 1;
}

.related-card-title-link h4 {
  font-family: var(--font-title);
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-primary);
  display: -webkit-box;
  WebkitLineClamp: 2;
  WebkitBoxOrient: vertical;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.related-card:hover h4 {
  color: var(--gold-primary);
}

.related-card-date {
  font-size: 11.5px;
  color: var(--text-muted);
}

@media (max-width: 992px) {
  .posts-luxury-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .posts-luxury-grid {
    grid-template-columns: 1fr;
  }

  .empty-results-box {
    grid-column: span 1;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Homepage Styles --- */
.hero-section {
  position: relative;
  min-height: calc(85vh - 90px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  overflow: hidden;
  text-align: center;
}

.hero-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: 0 auto;
}

.hero-subtitle-top {
  font-family: var(--font-title);
  color: var(--gold-primary);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: 20px;
  display: inline-block;
}

.hero-title {
  font-family: var(--font-title);
  font-size: clamp(32px, 6vw, 64px);
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 24px;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  letter-spacing: 0.03em;
}

.hero-desc {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* About Section */
.about-section {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.4));
  border-top: 1px solid var(--border-gold);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.about-header {
  margin-bottom: 30px;
}

.about-header .section-subtitle {
  color: var(--gold-primary);
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 10px;
}

.about-header .section-title {
  font-family: var(--font-title);
  font-size: clamp(26px, 3.5vw, 38px);
  color: var(--text-primary);
  line-height: 1.3;
}

.about-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 25px;
}

.about-text p {
  margin-bottom: 15px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.stat-item {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  padding: 30px;
  text-align: center;
  transition: var(--transition-smooth);
}

.stat-item:hover {
  border-color: var(--gold-primary);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px var(--gold-glow);
}

.stat-number {
  font-family: var(--font-title);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--gold-primary);
  margin-bottom: 8px;
  display: block;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Services section */
.services-section {
  padding: 100px 0;
  border-top: 1px solid var(--border-gold);
}

.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-intro .section-subtitle {
  color: var(--gold-primary);
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 10px;
}

.section-intro .section-title {
  font-family: var(--font-title);
  font-size: clamp(28px, 4vw, 40px);
  color: var(--text-primary);
  margin-bottom: 15px;
}

.section-intro .section-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  padding: 40px 24px;
  text-align: center;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-primary);
  box-shadow: 0 15px 35px var(--gold-glow);
}

.service-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 25px;
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon-wrap {
  background: var(--gold-gradient);
  color: var(--text-inverse);
  box-shadow: 0 0 15px var(--gold-primary);
  border-color: var(--gold-primary);
}

.service-title {
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-primary);
  letter-spacing: 0.03em;
}

.service-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 25px;
  flex: 1;
}

.service-link {
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold-primary);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
  margin-top: auto;
  transition: var(--transition-smooth);
}

.service-card:hover .service-link {
  color: var(--gold-light);
}

.service-card:hover .service-link span:last-child {
  transform: translateX(4px);
}

/* Home News Section */
.home-news-section {
  padding: 100px 0;
  border-top: 1px solid var(--border-gold);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent);
}

/* Home CTA Section */
.home-cta-section {
  padding: 100px 0;
  border-top: 1px solid var(--border-gold);
}

.cta-card {
  background: radial-gradient(circle at 100% 0%, var(--bg-surface) 0%, var(--bg-dark) 80%);
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.cta-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-family: var(--font-title);
  font-size: clamp(22px, 3.5vw, 32px);
  color: var(--text-primary);
  margin-bottom: 15px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.cta-desc {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 35px;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-actions a {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .cta-card {
    padding: 40px 20px;
  }
}

/* Header Styles */

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 90%;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
}

.logo-wrap {
  display: flex;
  align-items: center;
  height: 100%;
}

.logo-img {
  max-height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.2));
}

.nav-desktop {
  display: flex;
  align-items: center;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  gap: 30px;
}

.nav-item-wrap {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-link {
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  height: 100%;
  display: flex;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-arrow {
  margin-left: 6px;
  font-size: 8px;
  transition: var(--transition-smooth);
}

.nav-link:hover .nav-arrow {
  transform: rotate(180deg);
}

/* Submenu Dropdown menu */
.submenu-dropdown {
  position: absolute;
  top: 90px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 220px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 0 0 15px rgba(212, 175, 55, 0.05);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  z-index: 1001;
  padding: 8px 0;
}

.header-scrolled .submenu-dropdown {
  top: 75px;
}

.nav-item-wrap:hover .submenu-dropdown,
.submenu-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.submenu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.submenu-link {
  display: block;
  padding: 10px 20px;
  color: var(--text-primary);
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition-smooth);
  text-align: left;
}

.submenu-link:hover {
  color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.05);
  padding-left: 24px;
}

/* Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.search-wrap {
  display: flex;
  align-items: center;
  position: relative;
}

.search-btn {
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 18px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.search-btn:hover {
  color: var(--gold-primary);
}

.search-field-form {
  position: absolute;
  right: 35px;
  width: 220px;
  animation: slideInRight 0.3s ease;
}

.search-field-input {
  width: 100%;
  padding: 8px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border-gold);
  color: var(--text-primary);
  font-size: 13px;
}

.search-field-input:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

/* Burger button mobile */
.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 22px;
  height: 16px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.burger-btn span {
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition-smooth);
}

.burger-btn:hover span {
  background: var(--gold-primary);
}

.burger-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger-btn.active span:nth-child(2) {
  opacity: 0;
}

.burger-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 90px;
  left: 0;
  width: 280px;
  height: calc(100vh - 90px);
  background: var(--bg-surface);
  border-right: 1px solid var(--border-gold);
  transform: translateX(-100%);
  transition: var(--transition-smooth);
  z-index: 1000;
  padding: 30px 20px;
  overflow-y: auto;
}

.header-scrolled .mobile-nav-drawer {
  top: 75px;
  height: calc(100vh - 75px);
}

.mobile-nav-drawer.open {
  transform: translateX(0);
}

.mobile-nav-overlay {
  position: fixed;
  top: 90px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.15);
  z-index: 999;
  backdrop-filter: blur(4px);
}

.header-scrolled .mobile-nav-overlay {
  top: 75px;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-link {
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
}

.mobile-nav-link:hover {
  color: var(--gold-primary);
}

.mobile-nav-link-header {
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 600;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.mobile-submenu-list {
  padding-left: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-submenu-link {
  font-size: 13px;
  color: var(--text-muted);
  display: block;
}

.mobile-submenu-link:hover {
  color: var(--text-primary);
  padding-left: 4px;
}

@keyframes slideInRight {
  from {
    transform: translateX(20px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@media (max-width: 992px) {
  .nav-desktop {
    display: none;
  }

  .burger-btn {
    display: flex;
  }

  .header-glass {
    height: 70px;
  }

  .header-scrolled {
    height: 70px;
  }

  .header-spacer {
    height: 70px;
  }

  .header-spacer-scrolled {
    height: 70px;
  }

  .mobile-nav-drawer {
    top: 70px;
    height: calc(100vh - 70px);
  }

  .header-scrolled .mobile-nav-drawer {
    top: 70px;
    height: calc(100vh - 70px);
  }

  .mobile-nav-overlay {
    top: 70px;
  }

  .header-scrolled .mobile-nav-overlay {
    top: 70px;
  }
}

/* Mobile Language Switcher */
.mobile-lang-switcher {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--border-gold);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-lang-label {
  color: var(--text-muted);
  font-size: 13px;
  font-family: var(--font-title);
  display: flex;
  align-items: center;
  gap: 8px;
}

.mobile-lang-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mobile-lang-option {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  padding: 8px 16px;
  color: var(--text-primary);
  font-size: 13px;
  font-family: var(--font-title);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.mobile-lang-option.active {
  background: var(--gold-primary);
  color: #000;
  border-color: var(--gold-primary);
  font-weight: 600;
  box-shadow: 0 0 10px var(--gold-glow);
}

/* Language Switcher */
.lang-switcher-wrap {
  position: relative;
}

.lang-switcher-btn {
  background: transparent;
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  padding: 6px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-primary);
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.lang-switcher-btn:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  box-shadow: 0 0 10px var(--gold-glow);
}

.lang-globe {
  font-size: 12px;
  color: var(--gold-primary);
}

.lang-arrow {
  font-size: 8px;
  transition: var(--transition-smooth);
}

.lang-switcher-btn:hover .lang-arrow {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  padding: 6px 0;
  min-width: 120px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  z-index: 1002;
  animation: slideInDown 0.2s ease;
}

.lang-option {
  background: transparent;
  border: none;
  padding: 8px 16px;
  color: var(--text-muted);
  font-size: 12.5px;
  text-align: left;
  cursor: pointer;
  transition: var(--transition-smooth);
  width: 100%;
}

.lang-option:hover,
.lang-option.active {
  color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.05);
}

@keyframes slideInDown {
  from {
    transform: translateY(-10px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}



/* Footer Styles */

.footer-wrap {
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border-gold);
  padding: 80px 0 30px;
  position: relative;
  z-index: 10;
}

.footer-container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 50px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  padding-bottom: 50px;
  margin-bottom: 50px;
  align-items: center;
}

.footer-logo {
  max-height: 48px;
  object-fit: contain;
  margin-bottom: 15px;
}

.footer-logo-desc {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
  max-width: 320px;
}

.newsletter-title {
  font-family: var(--font-title);
  color: var(--gold-primary);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.newsletter-desc {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  width: 100%;
  max-width: 500px;
}

.newsletter-input-wrap {
  position: relative;
  flex: 1;
}

.newsletter-input {
  width: 100%;
  height: 46px;
  padding: 10px 16px 10px 42px;
  background: rgba(250, 250, 250, 0.8);
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  color: var(--text-primary);
  font-size: 14px;
  transition: var(--transition-smooth);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--gold-primary);
  background: var(--bg-surface);
}

.newsletter-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-primary);
  font-size: 14px;
}

.form-feedback-msg {
  font-size: 13px;
  margin-top: 8px;
}

.form-feedback-msg.success {
  color: #10b981;
}

.form-feedback-msg.error {
  color: #ef4444;
}

/* Footer columns */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-col-title {
  font-family: var(--font-title);
  color: var(--gold-primary);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.company-details-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.company-details-list p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text-muted);
}

.detail-icon {
  color: var(--gold-primary);
  margin-top: 3px;
  font-size: 13px;
}

.hover-link {
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.hover-link:hover {
  color: var(--gold-primary);
}

.footer-social-row {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.social-icon:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.05);
  transform: translateY(-2px);
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-list a {
  color: var(--text-muted);
  font-size: 13.5px;
  transition: var(--transition-smooth);
}

.footer-links-list a:hover {
  color: var(--gold-primary);
  padding-left: 5px;
}

/* Footer bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
}

.copyright-text {
  font-size: 12px;
  color: #4b5563;
}

.scroll-top-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-primary);
  font-size: 13px;
  font-family: var(--font-title);
  font-weight: 600;
  transition: var(--transition-smooth);
}

.scroll-top-btn:hover {
  color: var(--gold-light);
}

.scroll-top-icon {
  font-size: 10px;
}

@media (max-width: 992px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 576px) {
  .footer-bottom {
    flex-direction: column-reverse;
    gap: 15px;
    text-align: center;
  }
}
