/* ==========================================================================
   GLOBAL VARIABLES & COLOR PALETTE
   ========================================================================== */
:root {
  --primary-gold: #C59B27;
  --gold-dark: #9A781C;
  --gold-light: #E8D296;
  --gold-soft: #FAF5E8;
  --bg-body: #FFFFFF;
  --bg-header: rgba(255, 255, 255, 0.95);
  --text-dark: #0F172A;        /* Deep slate for high contrast */
  --text-muted: #475569;       /* Clear secondary text */
  --border-color: #E2E8F0;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

/* Dark Theme Overrides */
body[data-theme="dark"] {
  --primary-gold: #D4AF37;
  --gold-dark: #B8860B;
  --gold-light: #4A3E1B;
  --gold-soft: rgba(212, 175, 55, 0.12);
  --bg-body: #0B132B;          /* Deep Midnight Space */
  --bg-header: rgba(11, 19, 43, 0.95);
  --text-dark: #F8FAFC;        /* High-contrast white */
  --text-muted: #CBD5E1;
  --border-color: rgba(212, 175, 55, 0.25);
}

/* Reset & Defaults */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  overflow-x: hidden;
  background-color: var(--bg-body);
  color: var(--text-dark);
  font-family: var(--font-sans);
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* ==========================================================================
   HEADER & RESPONSIVE MOBILE NAVIGATION STYLES
   ========================================================================== */
/* ==========================================================================
   FIXED HEADER STYLES
   ========================================================================== */
.site-header {
  position: fixed; /* Pins header to top during scroll */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--bg-header);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
}

body {
  padding-top: 72px; /* Offset for fixed header height */
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-logo {
  height: 42px;
  width: auto;
  object-fit: contain;
  display: block;
}

.desktop-nav {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-gold);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.btn-icon, .btn-lang {
  background-color: var(--gold-soft);
  border: 1px solid var(--border-color);
  color: var(--text-dark);
  padding: 0.45rem 0.75rem;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  white-space: nowrap;
}

/* Hamburger Button Icon */
.btn-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  padding: 8px;
  background-color: var(--gold-soft);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  cursor: pointer;
}

.hamburger-bar {
  width: 100%;
  height: 2px;
  background-color: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile Slide Drawer */
.mobile-drawer {
  display: none;
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  background-color: var(--bg-card);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  padding: 1.5rem 1.25rem;
  transform: translateY(-10px);
  opacity: 0;
  transition: all 0.3s ease;
}

.mobile-drawer.is-open {
  display: block;
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-color);
}

.mobile-link {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 1.1rem;
  font-weight: 600;
  display: block;
}

.mobile-drawer-footer {
  padding-top: 1.25rem;
}

.btn-full {
  width: 100%;
  text-align: center;
  padding: 0.85rem;
  font-size: 1rem;
}

/* Responsive Rules for Mobile Displays */
@media (max-width: 992px) {
  .desktop-nav,
  .desktop-only-btn {
    display: none !important;
  }

  .btn-hamburger {
    display: flex;
  }

  .brand-logo {
    height: 36px; /* Scaled cleanly for small mobile viewports */
  }
}

/* ==========================================================================
   SECTION 2: HERO SECTION STYLES
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 5rem 1.5rem;
  overflow: hidden;
  background: radial-gradient(circle at 50% 0%, var(--gold-soft) 0%, var(--bg-body) 70%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.hero-glow-1 {
  top: -100px;
  right: 10%;
  width: 400px;
  height: 400px;
  background: rgba(197, 155, 39, 0.15);
}

.hero-glow-2 {
  bottom: -50px;
  left: 5%;
  width: 350px;
  height: 350px;
  background: rgba(232, 210, 150, 0.12);
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Left Content Column */
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  width: fit-content;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #10B981;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 3.8rem; /* Slightly larger scale for Cormorant */
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-dark);
}

.gold-gradient-text {
  color: var(--primary-gold);
  border-bottom: 2px solid rgba(197, 155, 39, 0.4);
  padding-bottom: 2px;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Feature Chips */
.hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  max-width: 520px;
}

.feature-chip {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 0.75rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.02);
}

.chip-icon {
  font-size: 1.1rem;
}

.feature-chip strong {
  display: block;
  font-size: 0.8rem;
  color: var(--primary-gold);
}

.feature-chip small {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* Actions */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 0.5rem;
}

.btn-large {
  padding: 0.85rem 1.8rem;
  font-size: 1rem;
  border-radius: 14px;
}

.hero-link {
  color: var(--text-dark);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s ease;
}

.hero-link:hover {
  color: var(--primary-gold);
}

/* Right Visual Profile Card */
.hero-visual {
  display: flex;
  justify-content: center;
}

.profile-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 1.75rem;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.card-accent-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--gold-light), var(--primary-gold), var(--gold-light));
}

.profile-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.profile-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--gold-soft);
  border: 2px solid var(--primary-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  flex-shrink: 0;
}

.profile-title-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.profile-title-row h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--text-dark);
}

.status-badge {
  background-color: rgba(16, 185, 129, 0.1);
  color: #10B981;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 20px;
}

.profile-meta p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.1rem;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.3rem;
}

.stars { color: #F59E0B; font-size: 0.8rem; }
.rating-num { font-weight: 700; font-size: 0.8rem; color: var(--text-dark); }
.sessions-count { font-size: 0.75rem; color: var(--text-muted); }

.card-divider {
  border: none;
  border-top: 1px solid var(--border-color);
  opacity: 0.6;
}

/* Modes Grid */
.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.modes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.mode-box {
  background-color: var(--gold-soft);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 0.65rem 0.4rem;
  text-align: center;
}

.mode-icon { font-size: 1.2rem; display: block; }
.mode-box strong { display: block; font-size: 0.75rem; margin-top: 0.2rem; color: var(--text-dark); }
.mode-box small { font-size: 0.65rem; color: var(--text-muted); display: block; }

/* Sync Banner */
.sync-banner {
  background-color: var(--bg-body);
  border: 1px solid var(--border-color);
  padding: 0.75rem 1rem;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
}

.sync-info {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-dark);
  font-weight: 500;
}

.sync-status {
  color: var(--primary-gold);
  font-weight: 700;
  font-size: 0.7rem;
}

/* Hero Responsive Breakpoints */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-content {
    align-items: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-features {
    text-align: left;
  }

  .hero-actions {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-features {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-large {
    width: 100%;
  }
}

/* Cleaner Body & Label Text */
body, button, input {
  font-family: var(--font-sans);
  letter-spacing: -0.01em;
}

/* ==========================================================================
   SECTION 3: TRUST & CREDIBILITY STATS BAR (LUXURY REDESIGN)
   ========================================================================== */
.stats-section {
  position: relative;
  padding: 2.5rem 1.5rem;
  background-color: var(--bg-body);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  z-index: 10;
}

.stats-container {
  max-width: 1280px;
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.25rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary-gold), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-3px);
  border-color: rgba(197, 155, 39, 0.4);
  box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.08);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: var(--gold-soft);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary-gold);
}

.stat-svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary-gold);
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-number-group {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
}

.stat-number {
  font-family: var(--font-sans);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.stat-plus {
  font-family: var(--font-sans);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-gold);
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 0.25rem;
}

.stat-subtext {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.1rem;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
  
  .stat-card {
    padding: 1rem;
  }
}

/* ==========================================================================
   SECTION 4: ABOUT ACHARYA HARISH STYLES
   ========================================================================== */
.about-section {
  position: relative;
  padding: 6rem 1.5rem;
  background-color: var(--bg-body);
}

.about-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4rem;
  align-items: center;
}

/* Visual Column */
.about-visual {
  position: relative;
}

.about-image-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 2.5rem 1.5rem;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.06);
}

.about-portrait-frame {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 18px;
  background: radial-gradient(circle at 50% 50%, var(--gold-soft) 0%, var(--bg-body) 100%);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.portrait-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.symbol-large {
  font-size: 4rem;
  color: var(--primary-gold);
}

.portrait-caption {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background-color: var(--bg-card);
  border: 1px solid var(--primary-gold);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: 0 10px 25px rgba(197, 155, 39, 0.15);
}

.badge-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-gold);
  line-height: 1;
}

.badge-text strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-dark);
}

.badge-text small {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* Content Column */
.about-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.section-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-gold);
}

.about-title {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-dark);
}

.about-lead {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.6;
}

.about-description {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Pillars Grid */
.about-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background-color: var(--gold-soft);
  border: 1px solid var(--border-color);
  padding: 0.85rem 1rem;
  border-radius: 14px;
}

.pillar-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.pillar-item h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.15rem;
}

.pillar-item p {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ==========================================================================
   DUAL CTA LAYOUT & SECONDARY BUTTON STYLES
   ========================================================================== */
.about-footer {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  padding-top: 0.5rem;
}

/* Secondary CTA (Know More) */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--primary-gold);
  border: 2px solid var(--primary-gold);
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.8rem 1.75rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.btn-secondary:hover {
  background-color: var(--gold-soft);
  color: var(--primary-gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(197, 155, 39, 0.15);
}

.btn-secondary:active {
  transform: translateY(0);
}

/* Arrow icon animation on hover */
.btn-arrow {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.btn-secondary:hover .btn-arrow {
  transform: translateX(4px);
}
.about-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

/* Responsive Rules */
@media (max-width: 992px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-title {
    font-size: 2.2rem;
  }

  .experience-badge {
    right: 10px;
    bottom: -15px;
  }
}

@media (max-width: 576px) {
  .about-pillars {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   BUTTON STYLES
   ========================================================================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #D4AF37 0%, #C59B27 50%, #9A781C 100%);
  color: #FFFFFF !important;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.6rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(197, 155, 39, 0.35);
  transition: all 0.3s ease;
  outline: none;
  white-space: nowrap;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #E8D296 0%, #D4AF37 50%, #C59B27 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(197, 155, 39, 0.5);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(197, 155, 39, 0.3);
}

/* ==========================================================================
   SECTION 5: ELEVATED SERVICES CARDS GRID STYLES
   ========================================================================== */
.services-section {
  padding: 6rem 1.5rem;
  background-color: var(--bg-card);
  position: relative;
}

.services-container {
  max-width: 1280px;
  margin: 0 auto;
}

.services-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem auto;
}

.services-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0.5rem 0 1rem 0;
  line-height: 1.2;
}

.services-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Grid Layout */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Individual Card (Premium Polish) */
.service-card {
  background: var(--bg-body);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

/* Background Ambient Glow on Hover */
.card-glow {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  transition: transform 0.5s ease;
}

.service-card:hover .card-glow {
  transform: scale(1.6);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-gold);
  box-shadow: 0 20px 40px rgba(197, 155, 39, 0.12);
}

/* Top Section (Icon + Badge) */
.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.service-card-icon {
  font-size: 2rem;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0.04) 100%);
  border: 1px solid rgba(212, 175, 55, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card-badge {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary-gold);
  background-color: var(--gold-soft);
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

/* Title & Description */
.service-card-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.service-card-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Feature List */
.service-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: auto;
}

.service-card-list li {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.service-card-list li::before {
  content: '✦';
  color: var(--primary-gold);
  font-size: 0.8rem;
}

/* Explore Service Link CTA */
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--primary-gold);
  text-decoration: none;
  padding-top: 1rem;
  border-top: 1px dashed rgba(212, 175, 55, 0.25);
  transition: all 0.3s ease;
}

.link-arrow {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.service-card-link:hover {
  color: #9A781C;
}

.service-card-link:hover .link-arrow {
  transform: translateX(6px);
}

/* Responsive Layout */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   SECTION 6: CONSULTATION PROCESS STYLES
   ========================================================================== */
.process-section {
  padding: 6rem 1.5rem;
  background-color: var(--bg-body);
  position: relative;
}

.process-container {
  max-width: 1280px;
  margin: 0 auto;
}

.process-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem auto;
}

.process-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0.5rem 0 1rem 0;
  line-height: 1.2;
}

.process-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Process Grid */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  position: relative;
  margin-bottom: 4rem;
}

/* Process Card */
.process-step-card {
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: 2.25rem 1.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.process-step-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-gold);
  box-shadow: 0 16px 30px rgba(197, 155, 39, 0.12);
}

.step-number-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(212, 175, 55, 0.25);
  line-height: 1;
}

.step-icon-wrapper {
  font-size: 2.2rem;
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--gold-soft);
  border: 1px solid rgba(212, 175, 55, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.step-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.step-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Process Banner Callout */
.process-cta-banner {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0.03) 100%);
  border: 1px solid var(--primary-gold);
  border-radius: 20px;
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-banner-content h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 0 0.4rem 0;
}

.cta-banner-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
}

/* Responsive Rules */
@media (max-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .process-cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 640px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   SECTION 7: TESTIMONIALS STYLES
   ========================================================================== */
.testimonials-section {
  padding: 6rem 1.5rem;
  background-color: var(--bg-card);
  position: relative;
  overflow: hidden;
}

.testimonials-container {
  max-width: 1280px;
  margin: 0 auto;
}

.testimonials-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem auto;
}

.testimonials-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0.5rem 0 1rem 0;
  line-height: 1.2;
}

.testimonials-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Mixed Grid Layout */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}

/* Testimonial Card Base */
.testimonial-card {
  background: var(--bg-body);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-gold);
  box-shadow: 0 18px 35px rgba(197, 155, 39, 0.1);
}

/* Video Card Thumbnail styling */
.video-thumbnail-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.video-overlay-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, transparent 30%, rgba(0, 0, 0, 0.6) 100%);
}

.play-button-pulse {
  position: relative;
  width: 60px;
  height: 60px;
  background: var(--primary-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
  transition: transform 0.3s ease;
  z-index: 2;
}

.play-button-pulse svg {
  width: 24px;
  height: 24px;
  margin-left: 3px;
}

.video-thumbnail-wrapper:hover .play-button-pulse {
  transform: scale(1.1);
}

.video-duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  z-index: 2;
}

/* Testimonial Inner Content */
.testimonial-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.quote-icon {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: rgba(212, 175, 55, 0.3);
  line-height: 0.8;
  margin-bottom: 0.5rem;
}

.stars-row {
  color: #D4AF37;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
  flex-grow: 1;
}

.client-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 0 0.2rem 0;
}

.client-role {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Client Footer for Text Cards */
.client-info-footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px dashed rgba(212, 175, 55, 0.25);
}

.client-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-soft);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--primary-gold);
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Footer CTA Bar */
.testimonials-footer-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.testimonials-footer-cta p {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-dark);
  margin: 0;
}

/* Responsive Rules */
@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ==========================================================================
   VIDEO MODAL OVERLAY STYLES
   ========================================================================== */
.video-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.video-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 850px;
  background: #000;
  border-radius: 16px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-modal-overlay.active .video-modal-content {
  transform: scale(1);
}

.video-container-responsive {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
}

.video-container-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-modal-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  transition: color 0.2s ease;
  z-index: 10000;
  line-height: 1;
}

.video-modal-close:hover {
  color: var(--primary-gold);
}

/* ==========================================================================
   SECTION 8: FAQ STYLES
   ========================================================================== */
.faq-section {
  padding: 6rem 1.5rem;
  background-color: var(--bg-body);
  position: relative;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem auto;
}

.faq-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0.5rem 0 1rem 0;
  line-height: 1.2;
}

.faq-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Accordion Layout */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(212, 175, 55, 0.5);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  gap: 1rem;
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--primary-gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1);
  padding: 0 1.75rem;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 0 1.5rem 0;
}

/* Active State for Accordion */
.faq-item.active {
  border-color: var(--primary-gold);
  box-shadow: 0 8px 25px rgba(197, 155, 39, 0.08);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-item.active .faq-answer {
  max-height: 300px; /* Adjust if answers are longer */
  transition: max-height 0.35s ease-in-out;
}

/* ==========================================================================
   SECTION 9: BLOGS & INSIGHTS STYLES
   ========================================================================== */
.blogs-section {
  padding: 6rem 1.5rem;
  background-color: var(--bg-card);
  position: relative;
}

.blogs-container {
  max-width: 1280px;
  margin: 0 auto;
}

.blogs-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem auto;
}

.blogs-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0.5rem 0 1rem 0;
  line-height: 1.2;
}

.blogs-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Blogs Grid */
.blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

/* Blog Card */
.blog-card {
  background: var(--bg-body);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.blog-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-gold);
  box-shadow: 0 18px 35px rgba(197, 155, 39, 0.1);
}

/* Thumbnail Area */
.blog-image-wrapper {
  position: relative;
  height: 200px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-thumb-bg {
  font-size: 3.5rem;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease;
}

.transit-bg { background: linear-gradient(135deg, #2c1654 0%, #1a0d33 100%); }
.vastu-bg { background: linear-gradient(135deg, #1b3b2b 0%, #0e2217 100%); }
.remedy-bg { background: linear-gradient(135deg, #4a3810 0%, #291e08 100%); }

.blog-card:hover .blog-thumb-bg {
  transform: scale(1.08);
}

.blog-category-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  z-index: 2;
}

/* Blog Content */
.blog-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.blog-card-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.blog-card-title a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-card-title a:hover {
  color: var(--primary-gold);
}

.blog-card-excerpt {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.blog-read-more {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--primary-gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.2s ease;
  margin-top: auto;
}

.blog-read-more:hover {
  gap: 0.6rem;
}

/* Footer Archive Button */
.blogs-footer-cta {
  display: flex;
  justify-content: center;
}

/* Responsive Rules */
@media (max-width: 1024px) {
  .blogs-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ==========================================================================
   SECTION 10: FINAL CTA BANNER STYLES
   ========================================================================== */
.final-cta-section {
  padding: 6rem 1.5rem;
  background-color: var(--bg-body);
  position: relative;
}

.final-cta-container {
  max-width: 1100px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(26, 13, 51, 0.95) 0%, rgba(15, 8, 31, 0.98) 100%);
  border: 1px solid var(--primary-gold);
  border-radius: 30px;
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(197, 155, 39, 0.15);
}

.final-cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  margin: 0 auto;
}

.final-cta-title {
  font-family: var(--font-serif);
  font-size: 2.75rem;
  font-weight: 600;
  color: #fff;
  margin: 0.75rem 0 1.25rem 0;
  line-height: 1.2;
}

.final-cta-desc {
  font-size: 1.05rem;
  color: #d1d1d1;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.final-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* Responsive Rules */
@media (max-width: 768px) {
  .final-cta-container {
    padding: 3rem 1.5rem;
  }
  
  .final-cta-title {
    font-size: 2rem;
  }
}

/* ==========================================================================
   SECTION 11: WEBSITE FOOTER STYLES
   ========================================================================== */
.site-footer {
  background-color: #0b0614;
  color: #b3b3b3;
  padding: 5rem 1.5rem 2rem 1.5rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

/* Brand Column */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.footer-logo-icon {
  color: var(--primary-gold);
}

.footer-bio {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #a3a3a3;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  background: var(--primary-gold);
  transform: translateY(-3px);
}

/* Columns & Headings */
.footer-heading {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: #a3a3a3;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--primary-gold);
}

/* Contact Info List */
.footer-contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: #a3a3a3;
}

.footer-contact-info a {
  color: #a3a3a3;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-info a:hover {
  color: var(--primary-gold);
}

/* Bottom Bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  font-size: 0.85rem;
  color: #858585;
}

.footer-bottom p {
  margin: 0;
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer-legal-links a {
  color: #858585;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal-links a:hover {
  color: var(--primary-gold);
}

/* Responsive Rules */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* ==========================================================================
   ABOUT PAGE: SECTION 1 (HERO BANNER)
   ========================================================================== */
.about-hero-section {
  padding: 5rem 1.5rem;
  background-color: var(--bg-body);
  position: relative;
  overflow: hidden;
}

.about-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-hero-title {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0.75rem 0 1.25rem 0;
  line-height: 1.15;
}

.about-hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.about-hero-highlights {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.highlight-pill {
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

/* Image Frame */
.about-hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-frame-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}

.about-acharya-img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 420px;
  height: 480px;
  object-fit: cover;
  border-radius: 24px;
  border: 2px solid var(--primary-gold);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Responsive Rules */
@media (max-width: 968px) {
  .about-hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-hero-highlights {
    justify-content: center;
  }
  .about-hero-title {
    font-size: 2.3rem;
  }
}

/* ==========================================================================
   ABOUT PAGE: SECTION 2 (DETAILED BIOGRAPHY)
   ========================================================================== */
.about-bio-section {
  padding: 6rem 1.5rem;
  background-color: var(--bg-card);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.about-bio-container {
  max-width: 1000px;
  margin: 0 auto;
}

.about-section-heading {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0.5rem 0 1.5rem 0;
  line-height: 1.3;
}

.bio-paragraph {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.bio-highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.bio-card {
  background: var(--bg-body);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
  transition: transform 0.3s ease;
}

.bio-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-gold);
}

.bio-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.bio-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.bio-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Responsive Rules */
@media (max-width: 768px) {
  .bio-highlights-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   ABOUT PAGE: SECTION 3 (ENHANCED AWARDS & HONORS)
   ========================================================================== */
.about-awards-section {
  padding: 6rem 1.5rem;
  background: linear-gradient(180deg, var(--bg-body) 0%, rgba(212, 175, 55, 0.03) 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  position: relative;
}

.awards-container {
  max-width: 1100px;
  margin: 0 auto;
}

.awards-header-wrap {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem auto;
}

.awards-section-subtitle {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 0.75rem;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.award-box {
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.award-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.award-box:hover {
  transform: translateY(-6px);
  border-color: var(--primary-gold);
  box-shadow: 0 20px 40px rgba(197, 155, 39, 0.1);
}

.award-box:hover::before {
  opacity: 1;
}

.award-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.award-icon-badge {
  width: 48px;
  height: 48px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.award-year-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.12);
  color: var(--primary-gold);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
}

.award-box h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.award-box p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* Responsive Rules */
@media (max-width: 768px) {
  .awards-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   ABOUT PAGE: SECTION 4 (PALMISTRY & TEACHING LEGACY)
   ========================================================================== */
.about-legacy-section {
  padding: 6rem 1.5rem;
  background-color: var(--bg-card);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.legacy-container {
  max-width: 1100px;
  margin: 0 auto;
}

.legacy-header-wrap {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem auto;
}

.legacy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.legacy-card {
  background: var(--bg-body);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: all 0.35s ease;
}

.legacy-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-gold);
  box-shadow: 0 20px 40px rgba(197, 155, 39, 0.1);
}

.legacy-card-icon {
  width: 52px;
  height: 52px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.legacy-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.legacy-card p {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.legacy-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.legacy-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--text-dark);
}

.legacy-list li span {
  color: var(--primary-gold);
  font-size: 0.8rem;
}

/* Responsive Rules */
@media (max-width: 968px) {
  .legacy-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   ABOUT PAGE: SECTION 5 (CALL TO ACTION)
   ========================================================================== */
.about-cta-section {
  padding: 6rem 1.5rem;
  background-color: var(--bg-body);
  text-align: center;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(212, 175, 55, 0.08) 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 30px;
  padding: 4rem 2rem;
  box-shadow: 0 20px 50px rgba(197, 155, 39, 0.08);
  position: relative;
  overflow: hidden;
}

.cta-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.12);
  color: var(--primary-gold);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.25rem;
}

.cta-title {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cta-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 2rem auto;
}

.cta-main-btn {
  font-size: 1rem;
  padding: 0.9rem 2.2rem;
  border-radius: 30px;
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.25);
  transition: transform 0.3s ease;
}

.cta-main-btn:hover {
  transform: translateY(-3px);
}

/* Responsive Rules */
@media (max-width: 768px) {
  .cta-title {
    font-size: 1.75rem;
  }
  .cta-container {
    padding: 3rem 1.5rem;
  }
}

/* ==========================================================================
   SERVICES PAGE: SECTION 1 (HERO BANNER)
   ========================================================================== */
.services-hero-section {
  padding: 6rem 1.5rem 4rem 1.5rem;
  background-color: var(--bg-body);
  text-align: center;
}

.services-hero-container {
  max-width: 800px;
  margin: 0 auto;
}

.services-hero-title {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0.75rem 0 1.25rem 0;
  line-height: 1.15;
}

.services-hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* Responsive Rules */
@media (max-width: 768px) {
  .services-hero-title {
    font-size: 2.2rem;
  }
}

/* ==========================================================================
   SERVICES PAGE: IMAGE CARDS DIRECTORY STYLING
   ========================================================================== */
.services-directory-section {
  padding: 4rem 1.5rem 7rem 1.5rem;
  background-color: var(--bg-body);
}

.services-directory-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem;
}

.service-item-card {
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}

.service-item-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-gold);
  box-shadow: 0 20px 40px rgba(197, 155, 39, 0.12);
}

.service-img-wrapper {
  position: relative;
  height: 190px;
  width: 100%;
  overflow: hidden;
}

.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-item-card:hover .service-img-wrapper img {
  transform: scale(1.06);
}

.service-badge-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.4);
}

.service-card-content {
  padding: 1.75rem 1.75rem 1rem 1.75rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-item-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.service-item-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

.service-card-actions {
  padding: 0 1.75rem 1.75rem 1.75rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.service-card-actions .btn-outline,
.service-card-actions .btn-primary {
  padding: 0.6rem 0.5rem;
  font-size: 0.85rem;
  text-align: center;
  border-radius: 10px;
  justify-content: center;
}

/* Responsive Rules */
@media (max-width: 1024px) {
  .services-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .services-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   SERVICES PAGE: SECTION 3 (CONSULTATION JOURNEY TIMELINE)
   ========================================================================== */
.consultation-journey-section {
  padding: 6rem 1.5rem;
  background-color: var(--bg-body);
  position: relative;
  overflow: hidden;
}

.journey-container {
  max-width: 1100px;
  margin: 0 auto;
}

.journey-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 5rem auto;
}

.journey-header .section-subtitle {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--primary-gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}

.journey-header h2 {
  font-family: var(--font-serif);
  font-size: 2.75rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.journey-header p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.timeline-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* Center vertical golden line */
.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: linear-gradient(to bottom, var(--primary-gold), rgba(212, 175, 55, 0.2));
  transform: translateX(-50%);
}

.timeline-row {
  display: flex;
  align-items: center;
  width: 100%;
}

.left-side {
  width: 44%;
  text-align: right;
}

.right-side {
  width: 44%;
  text-align: left;
}

.timeline-number-wrap {
  width: 12%;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.timeline-number {
  width: 56px;
  height: 56px;
  background: var(--primary-gold);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  box-shadow: 0 0 0 8px var(--bg-body), 0 4px 15px rgba(197, 155, 39, 0.3);
}

.timeline-card {
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 20px;
  padding: 2.25rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
  display: inline-block;
  text-align: left;
  transition: all 0.3s ease;
}

.timeline-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-gold);
  box-shadow: 0 15px 35px rgba(197, 155, 39, 0.1);
}

.timeline-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.timeline-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* Responsive Rules for Mobile */
@media (max-width: 768px) {
  .timeline-line {
    left: 28px;
  }
  
  .timeline-row {
    flex-direction: row !important;
  }

  .left-side, .right-side {
    width: calc(100% - 70px) !important;
    text-align: left !important;
    margin-left: auto;
  }

  .timeline-number-wrap {
    position: absolute;
    left: 0;
    width: 56px;
  }

  .timeline-empty {
    display: none;
  }
}

/* ==========================================================================
   SERVICES PAGE: LUXURY "WHY CHOOSE US" REDESIGN
   ========================================================================== */
.why-choose-luxury-section {
  padding: 7rem 1.5rem;
  background: linear-gradient(180deg, var(--bg-body) 0%, rgba(212, 175, 55, 0.04) 100%);
  position: relative;
}

.why-luxury-container {
  max-width: 1200px;
  margin: 0 auto;
}

.why-luxury-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem auto;
}

.why-luxury-header .section-subtitle {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--primary-gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.6rem;
}

.why-luxury-header h2 {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.why-luxury-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.why-luxury-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.luxury-perk-card {
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
}

.luxury-perk-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-gold), #fff);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.luxury-perk-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-gold);
  box-shadow: 0 20px 45px rgba(197, 155, 39, 0.15);
}

.luxury-perk-card:hover::before {
  opacity: 1;
}

.perk-number {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary-gold);
  opacity: 0.85;
  margin-bottom: 1rem;
  line-height: 1;
  background: linear-gradient(135deg, var(--primary-gold), #9a7612);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.perk-content h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.perk-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* Responsive Rules */
@media (max-width: 1024px) {
  .why-luxury-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .why-luxury-grid {
    grid-template-columns: 1fr;
  }
  .why-luxury-header h2 {
    font-size: 2.2rem;
  }
}

/* ==========================================================================
   SERVICES PAGE: SECTION 5 (FAQ ACCORDION)
   ========================================================================== */
.services-faq-section {
  padding: 6rem 1.5rem 8rem 1.5rem;
  background-color: var(--bg-body);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 4rem auto;
}

.faq-header .section-subtitle {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--primary-gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}

.faq-header h2 {
  font-family: var(--font-serif);
  font-size: 2.75rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.faq-header p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-accordion-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.faq-item.active {
  border-color: var(--primary-gold);
  box-shadow: 0 10px 30px rgba(197, 155, 39, 0.1);
}

.faq-question-btn {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.5rem 1.75rem;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question-btn:hover {
  color: var(--primary-gold);
}

.faq-question-btn i {
  font-size: 0.9rem;
  color: var(--primary-gold);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question-btn i {
  transform: rotate(180deg);
}

.faq-answer-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.75rem;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer-content {
  max-height: 250px;
  padding: 0 1.75rem 1.5rem 1.75rem;
}

.faq-answer-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 640px) {
  .faq-header h2 {
    font-size: 2.2rem;
  }
  .faq-question-btn {
    font-size: 1.05rem;
    padding: 1.25rem 1.4rem;
  }
}

/* ==========================================================================
   SERVICES PAGE: SECTION 6 (FINAL CTA)
   ========================================================================== */
.services-cta-section {
  padding: 4rem 1.5rem 7rem 1.5rem;
  background-color: var(--bg-body);
}

.services-cta-container {
  max-width: 1100px;
  margin: 0 auto;
}

.services-cta-box {
  background: linear-gradient(135deg, #1a1a1a 0%, #2c240c 100%);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 24px;
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.cta-glow-circle {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.services-cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.services-cta-content .section-subtitle {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--primary-gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.75rem;
}

.services-cta-content h2 {
  font-family: var(--font-serif);
  font-size: 2.75rem;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.services-cta-content p {
  font-size: 1.05rem;
  color: #d1d5db;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.services-cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.services-cta-actions .btn-outline {
  border-color: rgba(212, 175, 55, 0.6);
  color: #fff;
}

.services-cta-actions .btn-outline:hover {
  background: var(--primary-gold);
  color: #fff;
}

@media (max-width: 640px) {
  .services-cta-box {
    padding: 3rem 1.5rem;
  }
  .services-cta-content h2 {
    font-size: 2.1rem;
  }
  .services-cta-actions {
    flex-direction: column;
  }
}

/* ==========================================================================
   GALLERY PAGE STYLES
   ========================================================================== */
.gallery-main-section {
  padding: 5rem 1.5rem 8rem 1.5rem;
  background-color: var(--bg-body);
}

.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.filter-btn {
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
  background: var(--primary-gold);
  color: #fff;
  border-color: var(--primary-gold);
  box-shadow: 0 4px 15px rgba(197, 155, 39, 0.25);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: transform 0.35s ease;
}

.gallery-item:hover {
  transform: translateY(-6px);
}

.gallery-img-box {
  position: relative;
  height: 300px;
  overflow: hidden;
  border-radius: 16px;
}

.gallery-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img-box img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.zoom-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  background: var(--primary-gold);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.zoom-btn:hover {
  transform: scale(1.1);
}

.gallery-caption span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--primary-gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.3rem;
}

.gallery-caption h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: #fff;
  margin: 0;
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox-content {
  position: relative;
  max-width: 850px;
  width: 100%;
  text-align: center;
}

.lightbox-content img {
  width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.lightbox-content p {
  color: #fff;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-top: 1.25rem;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  color: #fff;
  font-size: 3rem;
  font-weight: 300;
  cursor: pointer;
  transition: color 0.3s ease;
}

.lightbox-close:hover {
  color: var(--primary-gold);
}

/* Responsive Rules for Gallery */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-filters {
    gap: 0.5rem;
  }
  .filter-btn {
    padding: 0.6rem 1.1rem;
    font-size: 0.85rem;
  }
}

/* ================================================================= */
/* PAGE HERO SECTION STYLING                                         */
/* ================================================================= */
.page-hero {
  padding: 80px 20px 40px 20px;
  text-align: center;
  background-color: #f9f9fb; /* Adjust color to match your theme */
  margin-top: 0;
}

.page-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-hero-content .section-subtitle {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--accent-color, #d4af37); /* Falls back to gold */
  margin-bottom: 10px;
  text-transform: uppercase;
}

.page-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color, #1a1a1a);
  margin-bottom: 15px;
}

.page-hero-content p {
  font-size: 1rem;
  color: var(--text-muted, #666666);
  line-height: 1.6;
}

/* Lightbox Navigation Arrows */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.lightbox-prev, .lightbox-next {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: none;
  font-size: 1.5rem;
  padding: 15px 20px;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.3s ease;
  margin: 0 20px;
  z-index: 1001;
}

.lightbox-prev:hover, .lightbox-next:hover {
  background: rgba(255, 255, 255, 0.3);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2.5rem;
  color: #ffffff;
  cursor: pointer;
  z-index: 1001;
}

.lightbox-content {
  text-align: center;
  max-width: 800px;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 6px;
}

.lightbox-content p {
  color: #ffffff;
  margin-top: 10px;
  font-size: 1.1rem;
}

/* ================================================================= */
/* BLOGS PAGE STYLING                                                */
/* ================================================================= */
.blog-main-section {
  padding: 60px 20px 100px 20px;
  background-color: #fcfcfc;
}

.blog-container {
  max-width: 1200px;
  margin: 0 auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.blog-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.blog-img-box {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.blog-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-img-box img {
  transform: scale(1.05);
}

.blog-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--accent-color, #d4af37);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted, #777777);
  margin-bottom: 12px;
}

.blog-meta i {
  color: var(--accent-color, #d4af37);
  margin-right: 5px;
}

.blog-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--heading-color, #1a1a1a);
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-content p {
  font-size: 0.95rem;
  color: var(--text-color, #555555);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.read-more-btn {
  background: none;
  border: none;
  color: var(--heading-color, #1a1a1a);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  transition: color 0.3s ease;
  text-align: left;
}

.read-more-btn:hover {
  color: var(--accent-color, #d4af37);
}

.read-more-btn i {
  transition: transform 0.3s ease;
}

.read-more-btn:hover i {
  transform: translateX(4px);
}

/* ================================================================= */
/* SINGLE BLOG READER POST STYLING                                   */
/* ================================================================= */
.single-blog-section {
  padding: 60px 20px 100px 20px;
  background-color: #ffffff;
}

.single-blog-container {
  max-width: 850px;
  margin: 0 auto;
}

.back-to-blogs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted, #666666);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 30px;
  transition: color 0.3s ease;
}

.back-to-blogs:hover {
  color: var(--accent-color, #d4af37);
}

.single-blog-header {
  margin-bottom: 30px;
}

.blog-category-tag {
  display: inline-block;
  background: rgba(212, 175, 55, 0.15);
  color: var(--accent-color, #d4af37);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.single-blog-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color, #1a1a1a);
  line-height: 1.3;
  margin-bottom: 15px;
}

.single-blog-meta {
  display: flex;
  gap: 20px;
  font-size: 0.9rem;
  color: var(--text-muted, #777777);
}

.single-blog-meta i {
  color: var(--accent-color, #d4af37);
  margin-right: 5px;
}

.single-blog-img-box {
  width: 100%;
  height: 420px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.single-blog-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-blog-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--heading-color, #1a1a1a);
  margin-top: 35px;
  margin-bottom: 15px;
}

.single-blog-body p {
  font-size: 1.1rem;
  color: var(--text-color, #444444);
  line-height: 1.8;
  margin-bottom: 20px;
}

.single-blog-body ul {
  margin-bottom: 25px;
  padding-left: 20px;
}

.single-blog-body li {
  font-size: 1.05rem;
  color: var(--text-color, #444444);
  line-height: 1.7;
  margin-bottom: 10px;
}

.blog-footer-actions {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid #eaeaea;
}

.btn-primary-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  border: 2px solid var(--accent-color, #d4af37);
  color: var(--accent-color, #d4af37);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-primary-outline:hover {
  background: var(--accent-color, #d4af37);
  color: #ffffff;
}

/* ================================================================= */
/* ADVANCED BLOG CONTROLS (SEARCH & TABS)                            */
/* ================================================================= */
.blog-controls-section {
  padding: 30px 20px 10px 20px;
  background-color: #fcfcfc;
}

.blog-controls-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

@media(min-width: 768px) {
  .blog-controls-wrapper {
    flex-direction: row;
  }
}

.blog-search-box {
  position: relative;
  width: 100%;
  max-width: 380px;
}

.blog-search-box i {
  position: absolute;
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
  color: #888888;
}

.blog-search-box input {
  width: 100%;
  padding: 12px 20px 12px 48px;
  border-radius: 30px;
  border: 1px solid #e0e0e0;
  background: #ffffff;
  font-size: 0.95rem;
  outline: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.blog-search-box input:focus {
  border-color: var(--accent-color, #d4af37);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.15);
}

.blog-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.blog-tab-btn {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  color: var(--text-color, #555555);
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.blog-tab-btn:hover {
  border-color: var(--accent-color, #d4af37);
  color: var(--accent-color, #d4af37);
}

.blog-tab-btn.active {
  background: var(--accent-color, #d4af37);
  border-color: var(--accent-color, #d4af37);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* No Results Block */
.blog-no-results {
  text-align: center;
  padding: 80px 20px;
  color: var(--text-muted, #777777);
  grid-column: 1 / -1;
}

.blog-no-results i {
  font-size: 3rem;
  color: var(--accent-color, #d4af37);
  margin-bottom: 15px;
}

.blog-no-results h3 {
  font-size: 1.5rem;
  font-family: 'Playfair Display', serif;
  color: var(--heading-color, #1a1a1a);
  margin-bottom: 8px;
}

/* ================================================================= */
/* PAGINATION STYLING                                                */
/* ================================================================= */
.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 60px;
}

.page-btn {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  color: var(--heading-color, #1a1a1a);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.page-btn:hover:not(:disabled) {
  background: var(--accent-color, #d4af37);
  border-color: var(--accent-color, #d4af37);
  color: #ffffff;
  transform: translateY(-2px);
}

.page-btn.active {
  background: var(--accent-color, #d4af37);
  border-color: var(--accent-color, #d4af37);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35);
}

.page-btn:disabled {
  background: #f5f5f5;
  color: #cccccc;
  border-color: #eeeeee;
  cursor: not-allowed;
}

/* Smooth Fade In Animation for Pagination transitions */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================================================================= */
/* SINGLE BLOG POST STYLING                                          */
/* ================================================================= */
.single-post-section {
  padding: 50px 20px 80px 20px;
  background-color: #ffffff;
}

.post-container {
  max-width: 860px;
  margin: 0 auto;
}

.post-header-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  flex-wrap: wrap;
  gap: 15px;
}

.back-link {
  color: var(--text-muted, #666666);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: var(--accent-color, #d4af37);
}

.post-cat-tag {
  background: rgba(212, 175, 55, 0.12);
  color: var(--accent-color, #d4af37);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.post-main-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--heading-color, #1a1a1a);
  line-height: 1.25;
  margin-bottom: 20px;
}

.post-meta-info {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  color: var(--text-muted, #777777);
  font-size: 0.95rem;
  margin-bottom: 35px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eeeeee;
}

.post-meta-info span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.post-featured-image {
  width: 100%;
  max-height: 480px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 45px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.post-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Post Body Formatting */
.post-body-content {
  color: #333333;
  font-size: 1.125rem;
  line-height: 1.8;
}

.post-body-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--heading-color, #1a1a1a);
  margin-top: 40px;
  margin-bottom: 15px;
}

.post-body-content p {
  margin-bottom: 25px;
}

/* ================================================================= */
/* AUTHOR BIO BOX                                                    */
/* ================================================================= */
.author-bio-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 25px;
  background: #fdfbf7;
  border: 1px solid #f3efe6;
  padding: 40px;
  border-radius: 16px;
  margin-top: 60px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
}

@media(min-width: 640px) {
  .author-bio-box {
    flex-direction: row;
    text-align: left;
  }
}

.author-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid var(--accent-color, #d4af37);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-details h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--heading-color, #1a1a1a);
  margin-bottom: 8px;
}

.author-details p {
  font-size: 0.95rem;
  color: var(--text-muted, #666666);
  line-height: 1.6;
  margin-bottom: 15px;
}

.author-socials {
  display: flex;
  gap: 12px;
  justify-content: center;
}

@media(min-width: 640px) {
  .author-socials {
    justify-content: flex-start;
  }
}

.author-socials a {
  width: 36px;
  height: 36px;
  background: #ffffff;
  color: var(--accent-color, #d4af37);
  border: 1px solid #e0dfdb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.author-socials a:hover {
  background: var(--accent-color, #d4af37);
  color: #ffffff;
  border-color: var(--accent-color, #d4af37);
  transform: translateY(-2px);
}

/* ================================================================= */
/* RELATED ARTICLES SECTION                                          */
/* ================================================================= */
.related-blogs-section {
  padding: 60px 20px 90px 20px;
  background-color: #faf9f6;
  border-top: 1px solid #f0ede6;
}

.related-blogs-section .post-container {
  max-width: 1200px;
}

.related-blogs-section .section-title-wrap {
  text-align: center;
  margin-bottom: 45px;
}

.related-blogs-section .section-title-wrap h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--heading-color, #1a1a1a);
  margin-top: 5px;
}

/* ================================================================= */
/* CONTACT PAGE STYLING                                              */
/* ================================================================= */

.contact-main-section {
  padding: 80px 20px;
  background-color: #faf9f6;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}

@media(min-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
  }
}

/* --- Contact Info Side --- */
.contact-info-wrapper h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--heading-color, #1a1a1a);
  margin-bottom: 15px;
}

.contact-intro {
  font-size: 1.05rem;
  color: var(--text-muted, #666666);
  line-height: 1.7;
  margin-bottom: 40px;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  border: 1px solid #f0ede6;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.1);
}

.info-icon {
  width: 50px;
  height: 50px;
  background: rgba(212, 175, 55, 0.1);
  color: var(--accent-color, #d4af37);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.info-text h4 {
  font-size: 1.1rem;
  color: var(--heading-color, #1a1a1a);
  margin-bottom: 5px;
}

.info-text p, .info-text a {
  color: var(--text-color, #555555);
  font-size: 0.95rem;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-text a:hover {
  color: var(--accent-color, #d4af37);
}

.info-subtext {
  font-size: 0.85rem !important;
  color: #999999 !important;
  margin-top: 5px;
}

/* --- Contact Form Side --- */
.contact-form-wrapper {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  border-top: 5px solid var(--accent-color, #d4af37);
}

.contact-form-wrapper h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 25px;
  color: var(--heading-color, #1a1a1a);
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media(min-width: 640px) {
  .form-row {
    flex-direction: row;
  }
  .half-width {
    width: 50%;
  }
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333333;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #e0dfdb;
  border-radius: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  background: #fdfdfd;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-color, #d4af37);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
  background: #ffffff;
}

.submit-btn {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
}

.success-message {
  background: #e6f7ec;
  color: #278c43;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
  margin-top: 20px;
  border: 1px solid #bcead1;
}

/* --- Map Section --- */
.map-section {
  width: 100%;
  display: flex;
  line-height: 0; /* Removes bottom gap below iframe */
}

.map-section iframe {
  filter: grayscale(10%) contrast(1.1); /* Subtle styling to make the map look slightly premium */
}

/* ================================================================= */
/* DARK MODE SUPPORT FOR CONTACT PAGE & SECTIONS                     */
/* ================================================================= */

/* Assuming your dark mode toggle adds a class like .dark-mode or [data-theme="dark"] to the body */
body.dark-mode, 
body[data-theme="dark"] {
  background-color: #121212;
  color: #e0e0e0;
}

/* Page Hero */
body.dark-mode .page-hero,
body[data-theme="dark"] .page-hero {
  background-color: #1a1a1a;
}

/* Contact Main Section & Backgrounds */
body.dark-mode .contact-main-section,
body[data-theme="dark"] .contact-main-section {
  background-color: #161616;
}

/* Info Cards */
body.dark-mode .info-card,
body[data-theme="dark"] .info-card {
  background: #1e1e1e;
  border-color: #2a2a2a;
}

body.dark-mode .info-text h4,
body[data-theme="dark"] .info-text h4 {
  color: #ffffff;
}

body.dark-mode .info-text p, 
body.dark-mode .info-text a,
body[data-theme="dark"] .info-text p, 
body[data-theme="dark"] .info-text a {
  color: #b0b0b0;
}

/* Contact Form Wrapper */
body.dark-mode .contact-form-wrapper,
body[data-theme="dark"] .contact-form-wrapper {
  background: #1e1e1e;
  border-color: #2a2a2a;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

body.dark-mode .contact-form-wrapper h3,
body[data-theme="dark"] .contact-form-wrapper h3 {
  color: #ffffff;
}

body.dark-mode .form-group label,
body[data-theme="dark"] .form-group label {
  color: #cccccc;
}

/* Form Inputs & Selects */
body.dark-mode .form-group input,
body.dark-mode .form-group select,
body.dark-mode .form-group textarea,
body[data-theme="dark"] .form-group input,
body[data-theme="dark"] .form-group select,
body[data-theme="dark"] .form-group textarea {
  background: #252525;
  border-color: #333333;
  color: #ffffff;
}

body.dark-mode .form-group input:focus,
body.dark-mode .form-group select:focus,
body.dark-mode .form-group textarea:focus,
body[data-theme="dark"] .form-group input:focus,
body[data-theme="dark"] .form-group select:focus,
body[data-theme="dark"] .form-group textarea:focus {
  background: #2a2a2a;
  border-color: var(--accent-color, #d4af37);
}

/* Text Headings */
body.dark-mode .contact-info-wrapper h2,
body[data-theme="dark"] .contact-info-wrapper h2 {
  color: #ffffff;
}

body.dark-mode .contact-intro,
body[data-theme="dark"] .contact-intro {
  color: #aaaaaa;
}


/* Active Navigation Indicator */
.main-nav a.active {
  color: var(--accent-color, #d4af37) !important;
  font-weight: 600;
}

.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent-color, #d4af37);
}

.main-nav li {
  position: relative;
}

