/* ==========================================================================
   KAALDARSHAN SPIRITUAL SOLUTIONS - CORE DESIGN SYSTEM
   Palette: Deep Oxblood/Maroon (#58111A), Warm Antique Gold (#D4AF37),
            Warm Off-Black (#161012), Warm Parchment/Ivory (#F7F2EA)
   Typography: Cinzel (Headings) + Plus Jakarta Sans (Body & UI)
   ========================================================================== */

:root {
  /* Colors */
  --bg-main: #161012;
  --bg-surface: #1E1618;
  --bg-elevated: #281D20;
  --bg-card: #201518;
  --bg-maroon-dark: #380B12;
  --bg-maroon: #58111A;
  --bg-maroon-light: #731723;
  --bg-parchment: #F7F2EA;
  --bg-parchment-soft: #ECE3D4;

  --gold-300: #F6E2B3;
  --gold-400: #E5C365;
  --gold-500: #D4AF37; /* Primary Gold Accent */
  --gold-600: #B8922A;
  --gold-700: #8C6D1F;
  --gold-border: rgba(212, 175, 55, 0.28);
  --gold-border-strong: rgba(212, 175, 55, 0.6);
  --gold-glow: rgba(212, 175, 55, 0.15);

  --text-primary: #F7F2EA;
  --text-secondary: #D4C7BA;
  --text-muted: #A3968A;
  --text-dark: #1F1719;
  --text-dark-muted: #5C4E52;

  --border-subtle: rgba(247, 242, 234, 0.08);
  --border-maroon: rgba(115, 23, 35, 0.4);

  /* Typography */
  --font-serif: 'Cinzel', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spacing */
  --space-2xs: 0.25rem;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4.5rem;
  --space-4xl: 6rem;

  /* Layout */
  --container-max: 1200px;
  --container-narrow: 840px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-full: 9999px;

  /* Elevation */
  --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.35);
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--gold-border);
  --shadow-elevated: 0 20px 40px -15px rgba(0, 0, 0, 0.7), 0 0 20px var(--gold-glow);
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Reset & Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--bg-main);
  color: var(--text-primary);
  font-family: var(--font-sans);
  line-height: 1.65;
  font-size: 1rem;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Subtle background texture */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(88, 17, 26, 0.25) 0%, transparent 60%),
    radial-gradient(circle at 90% 80%, rgba(56, 11, 18, 0.2) 0%, transparent 50%);
  z-index: -1;
}

/* Typography Scales */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--text-primary);
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.35rem);
}

h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
}

h4 {
  font-size: 1.15rem;
}

p {
  margin-bottom: 1.1rem;
  color: var(--text-secondary);
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--gold-400);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--gold-300);
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-lg);
  padding-right: var(--space-lg);
}

.container-narrow {
  max-width: var(--container-narrow);
}

/* Section Spacing */
.section {
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-3xl);
  position: relative;
}

.section-lg {
  padding-top: var(--space-4xl);
  padding-bottom: var(--space-4xl);
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-400);
  margin-bottom: var(--space-xs);
  position: relative;
  padding: 0 var(--space-md);
}

.section-tag::before, .section-tag::after {
  content: '✦';
  font-size: 0.7rem;
  color: var(--gold-500);
  opacity: 0.7;
}

.section-tag::before { margin-right: var(--space-xs); }
.section-tag::after { margin-left: var(--space-xs); }

.section-title {
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
}

/* Divider Ornamental Line */
.gold-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin: var(--space-xl) auto;
  max-width: 320px;
}

.gold-divider::before, .gold-divider::after {
  content: '';
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}

.gold-divider span {
  color: var(--gold-500);
  font-size: 0.9rem;
}

/* ==========================================================================
   BUTTONS & CTAs
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 0.85rem 1.6rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  border: 1px solid transparent;
  line-height: 1.3;
}

.btn-primary {
  background: linear-gradient(135deg, #E5C365 0%, #C9A24B 60%, #B8922A 100%);
  color: #1A0D10;
  border-color: var(--gold-300);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #F6E2B3 0%, #D4AF37 60%, #C9A24B 100%);
  color: #12080A;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--gold-400);
  border-color: var(--gold-500);
}

.btn-outline:hover {
  background-color: rgba(212, 175, 55, 0.1);
  color: var(--gold-300);
  border-color: var(--gold-300);
  transform: translateY(-2px);
}

.btn-maroon {
  background-color: var(--bg-maroon);
  color: var(--text-primary);
  border-color: var(--border-maroon);
}

.btn-maroon:hover {
  background-color: var(--bg-maroon-light);
  border-color: var(--gold-border);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: #25D366;
  color: #FFFFFF;
  border-color: #20BA5A;
}

.btn-whatsapp:hover {
  background-color: #22BF5B;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-icon {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
}

/* ==========================================================================
   NAVIGATION & HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(22, 16, 18, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gold-border);
  transition: all var(--transition-fast);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-400);
  letter-spacing: 0.05em;
  line-height: 1.1;
}

.brand-subtitle {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.nav-desktop {
  display: none;
}

@media (min-width: 960px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
  }

  .nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    list-style: none;
  }

  .nav-link {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding: var(--space-2xs) var(--space-xs);
    position: relative;
    transition: color var(--transition-fast);
  }

  .nav-link:hover, .nav-link.active {
    color: var(--gold-400);
  }

  .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: var(--space-xs);
    right: var(--space-xs);
    height: 2px;
    background-color: var(--gold-500);
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.header-phone-link {
  display: none;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold-400);
}

@media (min-width: 640px) {
  .header-phone-link {
    display: inline-flex;
  }
}

.hamburger-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  color: var(--gold-400);
  cursor: pointer;
}

@media (min-width: 960px) {
  .hamburger-btn {
    display: none;
  }
}

/* Mobile Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 72px;
  left: 0;
  width: 100%;
  height: calc(100vh - 72px);
  background-color: var(--bg-surface);
  border-top: 1px solid var(--gold-border);
  padding: var(--space-xl) var(--space-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
  z-index: 999;
  overflow-y: auto;
}

.mobile-nav-drawer.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.mobile-nav-link {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--text-primary);
  display: block;
  padding: var(--space-xs) 0;
  border-bottom: 1px solid var(--border-subtle);
}

.mobile-nav-link.active {
  color: var(--gold-400);
  border-bottom-color: var(--gold-border);
}

.mobile-nav-footer {
  margin-top: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 84vh;
  display: flex;
  align-items: center;
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-3xl);
  background-color: var(--bg-main);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(180deg, rgba(22, 16, 18, 0.82) 0%, rgba(22, 16, 18, 0.7) 40%, rgba(22, 16, 18, 0.95) 100%),
    radial-gradient(circle at center, transparent 0%, rgba(22, 16, 18, 0.6) 80%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hero-crest-wrap {
  margin-bottom: var(--space-lg);
  display: flex;
  justify-content: center;
}

.hero-crest-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px solid var(--gold-500);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.35);
}

@media (min-width: 768px) {
  .hero-crest-img {
    width: 140px;
    height: 140px;
  }
}

.hero-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: rgba(88, 17, 26, 0.6);
  border: 1px solid var(--gold-border);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gold-300);
  margin-bottom: var(--space-md);
  backdrop-filter: blur(8px);
}

.hero-headline {
  color: #FFFFFF;
  margin-bottom: var(--space-md);
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-headline-gold {
  color: var(--gold-400);
  display: block;
}

.hero-subline {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--gold-300);
  margin-bottom: var(--space-md);
  letter-spacing: 0.04em;
}

.hero-hook {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space-xl);
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.hero-credentials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border-subtle);
}

.credential-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.credential-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--gold-500);
  flex-shrink: 0;
}

/* ==========================================================================
   CARDS & GRIDS
   ========================================================================== */
.card {
  background-color: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  position: relative;
  transition: all var(--transition-fast);
}

.card:hover {
  border-color: var(--gold-border-strong);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.card-maroon {
  background: linear-gradient(145deg, #4A0E17 0%, #2A080D 100%);
  border-color: var(--gold-border);
}

.card-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  color: var(--gold-400);
}

.card-icon {
  width: 28px;
  height: 28px;
}

.card-title {
  margin-bottom: var(--space-xs);
  color: var(--gold-300);
}

.card-text {
  font-size: 0.94rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   SPECIAL EXPERTISE (AGHOR VIDYA & PROTECTION)
   ========================================================================== */
.expertise-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 840px) {
  .expertise-grid {
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
  }
}

.expertise-highlight-box {
  background: linear-gradient(145deg, #420C14 0%, #25050A 100%);
  border: 1px solid var(--gold-500);
  border-radius: var(--radius-md);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-elevated);
  position: relative;
  overflow: hidden;
}

.expertise-highlight-box::after {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.expertise-pillar-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.expertise-pillar-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  background: rgba(30, 22, 24, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: var(--space-md);
  transition: border-color var(--transition-fast);
}

.expertise-pillar-item:hover {
  border-color: var(--gold-border);
}

.expertise-pillar-icon {
  width: 32px;
  height: 32px;
  color: var(--gold-400);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ==========================================================================
   ACCORDION (CONSULTATION TOPICS)
   ========================================================================== */
.accordion {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.accordion-item {
  background-color: var(--bg-surface);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.accordion-item.active {
  border-color: var(--gold-500);
  background-color: var(--bg-elevated);
}

.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-lg);
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  gap: var(--space-md);
}

.accordion-header:hover {
  color: var(--gold-400);
}

.accordion-icon-badge {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.accordion-badge-icon {
  width: 22px;
  height: 22px;
  color: var(--gold-400);
}

.accordion-chevron {
  width: 18px;
  height: 18px;
  color: var(--gold-500);
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

.accordion-item.active .accordion-chevron {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1);
  padding: 0 var(--space-lg);
}

.accordion-item.active .accordion-content {
  max-height: 1000px;
  transition: max-height 0.35s cubic-bezier(1, 0, 1, 0);
  padding-bottom: var(--space-lg);
  border-top: 1px solid var(--border-subtle);
  padding-top: var(--space-md);
}

.topic-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-top: var(--space-sm);
}

.topic-pill {
  font-size: 0.82rem;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--gold-border);
  color: var(--gold-300);
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
}

/* ==========================================================================
   SERVICES GRID
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-fast);
  position: relative;
}

.service-card:hover {
  border-color: var(--gold-500);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.service-card-top {
  margin-bottom: var(--space-lg);
}

.service-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold-400);
  margin-top: auto;
}

.service-link-arrow:hover {
  color: var(--gold-300);
  gap: 0.55rem;
}

/* ==========================================================================
   EDUCATIONAL SECTION ("ABOUT VEDIC ASTROLOGY")
   ========================================================================== */
.sanctum-feature {
  background: linear-gradient(145deg, #241A1D 0%, #171113 100%);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
}

.sanctum-grid {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 880px) {
  .sanctum-grid {
    grid-template-columns: 1fr 1.15fr;
  }
}

.sanctum-media {
  position: relative;
  min-height: 280px;
}

.sanctum-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sanctum-content {
  padding: var(--space-2xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ==========================================================================
   LANGUAGES & MODES ROWS
   ========================================================================== */
.languages-strip {
  background: rgba(88, 17, 26, 0.4);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: var(--space-md) 0;
  text-align: center;
}

.languages-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  font-family: var(--font-serif);
}

.languages-label {
  color: var(--gold-400);
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.lang-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.lang-pill {
  background: rgba(22, 16, 18, 0.7);
  border: 1px solid var(--gold-border);
  color: var(--text-primary);
  padding: 0.25rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-family: var(--font-sans);
}

.modes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.mode-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  padding: var(--space-lg);
  text-align: center;
}

.mode-card h4 {
  color: var(--gold-300);
  margin-top: var(--space-sm);
  margin-bottom: var(--space-2xs);
}

.mode-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ==========================================================================
   NOTICE BOX (BLOCKED NUMBERS & PRIVACY)
   ========================================================================== */
.notice-card {
  background: rgba(88, 17, 26, 0.35);
  border: 1px solid var(--gold-border);
  border-left: 4px solid var(--gold-500);
  border-radius: var(--radius-sm);
  padding: var(--space-lg);
  margin: var(--space-xl) 0;
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.notice-icon {
  width: 28px;
  height: 28px;
  color: var(--gold-400);
  flex-shrink: 0;
  margin-top: 2px;
}

.notice-title {
  color: var(--gold-300);
  font-size: 1.05rem;
  margin-bottom: var(--space-2xs);
}

.notice-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   TESTIMONIALS (EDITABLE PLACEHOLDERS)
   ========================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.testimonial-card::before {
  content: '“';
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: var(--gold-500);
  opacity: 0.3;
  position: absolute;
  top: 10px;
  left: 15px;
  line-height: 1;
}

.testimonial-text {
  font-style: italic;
  font-size: 0.94rem;
  line-height: 1.65;
  color: var(--text-secondary);
  position: relative;
  z-index: 1;
  margin-bottom: var(--space-lg);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  border-top: 1px solid var(--border-subtle);
  padding-top: var(--space-md);
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-maroon);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--gold-300);
  font-size: 0.9rem;
}

.author-info h4 {
  font-size: 0.95rem;
  color: var(--text-primary);
}

.author-info span {
  font-size: 0.78rem;
  color: var(--gold-400);
}

.placeholder-badge {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold-400);
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
  margin-top: var(--space-2xs);
}

/* ==========================================================================
   CONTACT FORM
   ========================================================================== */
.contact-form-wrap {
  background-color: var(--bg-surface);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  box-shadow: var(--shadow-card);
}

@media (min-width: 640px) {
  .contact-form-wrap {
    padding: var(--space-2xl);
  }
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 640px) {
  .form-grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xs);
}

.form-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
}

.form-label span {
  color: var(--gold-400);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: rgba(22, 16, 18, 0.85);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
  background-color: rgba(22, 16, 18, 0.98);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-status {
  padding: var(--space-md);
  border-radius: var(--radius-sm);
  margin-top: var(--space-md);
  display: none;
  font-size: 0.92rem;
}

.form-status.success {
  display: block;
  background-color: rgba(37, 211, 102, 0.15);
  border: 1px solid #25D366;
  color: #85f0a9;
}

.form-status.error {
  display: block;
  background-color: rgba(220, 53, 69, 0.15);
  border: 1px solid #DC3545;
  color: #ff8a96;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background-color: #110B0C;
  border-top: 1px solid var(--gold-border);
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-2xl);
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  }
}

.footer-brand-wrap {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer-crest {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 1px solid var(--gold-500);
}

.footer-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--gold-400);
  margin-bottom: var(--space-xs);
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.footer-link {
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.footer-link:hover {
  color: var(--gold-400);
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
}

.footer-bottom {
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  text-align: center;
  font-size: 0.84rem;
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    text-align: left;
  }
}

/* ==========================================================================
   MOBILE STICKY FLOATING QUICK-CONTACT BAR
   ========================================================================== */
.mobile-floating-bar {
  display: none;
}

@media (max-width: 767px) {
  body {
    padding-bottom: 64px; /* prevent overlap with sticky bar */
  }

  .mobile-floating-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: rgba(22, 16, 18, 0.98);
    border-top: 1px solid var(--gold-500);
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 var(--space-sm);
    z-index: 1000;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.6);
  }

  .floating-action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    height: 44px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    margin: 0 var(--space-2xs);
  }

  .floating-call {
    background-color: var(--bg-maroon);
    color: var(--gold-300);
    border: 1px solid var(--gold-border);
  }

  .floating-whatsapp {
    background-color: #25D366;
    color: #FFFFFF;
  }
}

/* ==========================================================================
   PAGE HERO / SUBPAGE BANNER
   ========================================================================== */
.page-hero {
  position: relative;
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-2xl);
  background-color: var(--bg-surface);
  border-bottom: 1px solid var(--gold-border);
  text-align: center;
  background-size: cover;
  background-position: center;
}

.page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(22, 16, 18, 0.88) 0%, rgba(22, 16, 18, 0.96) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
  list-style: none;
}

.breadcrumbs li + li::before {
  content: '/';
  color: var(--gold-border);
  margin-right: var(--space-xs);
}

.breadcrumbs a {
  color: var(--gold-400);
}

/* ==========================================================================
   ACCESSIBILITY & REDUCED MOTION
   ========================================================================== */
:focus-visible {
  outline: 2px solid var(--gold-400);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
