/* ============================================
   MANISH KUMAR — LUXURY EVENT PLANNING & MANAGEMENT
   Mobile-First Exclusive Design System (Final Touch)
   ============================================ */

/* === Google Fonts === */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* === CSS Custom Properties === */
:root {
  /* Luxury Color Palette */
  --white: #FFFFFF;
  --off-white: #FAF9F5;
  --light-gray: #F2F0EB;
  --border-gray: #E5E2DA;
  --border-gold: rgba(201, 169, 110, 0.35);
  --muted: #6E6B64;
  --dark-muted: #2E2D2B;
  --near-black: #0E0D0B;
  --pure-black: #000000;
  
  --gold: #C9A96E;
  --gold-light: #F7EFE0;
  --gold-dark: #9A7B3E;
  --gold-glow: rgba(201, 169, 110, 0.22);
  --gold-gradient: linear-gradient(135deg, #D4B475 0%, #A88644 100%);
  
  --whatsapp: #25D366;
  --whatsapp-dark: #128C7E;
  
  /* Typography */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Layout & Spacing */
  --section-padding: 4.5rem 0;
  --container-width: 1200px;
  --container-padding: 0 1.25rem;
  
  /* Radii */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 4px 14px rgba(0,0,0,0.04);
  --shadow-md: 0 10px 28px rgba(0,0,0,0.07);
  --shadow-lg: 0 20px 48px rgba(0,0,0,0.12);
  --shadow-gold: 0 8px 32px rgba(201, 169, 110, 0.3);
  
  /* Transitions */
  --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (min-width: 768px) {
  :root {
    --section-padding: 6.5rem 0;
    --container-padding: 0 2rem;
  }
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--near-black);
  background: var(--white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--near-black);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 7vw, 4.2rem); }
h2 { font-size: clamp(2rem, 5vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 3.5vw, 2.1rem); }
h4 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.75;
}

.text-gold { color: var(--gold) !important; }
.text-white { color: var(--white) !important; }
.text-muted { color: var(--muted) !important; }
.gold-accent { color: var(--gold); }

/* === Layout Components === */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

.section {
  padding: var(--section-padding);
  position: relative;
}

.section-dark {
  background: var(--near-black);
  color: var(--white);
}

.section-dark p {
  color: rgba(255, 255, 255, 0.72);
}

.section-alt {
  background: var(--off-white);
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .section-header {
    margin-bottom: 4rem;
  }
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  background: var(--gold-glow);
  color: var(--gold-dark);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
  border: 1px solid var(--border-gold);
}

.section-dark .section-badge {
  color: var(--gold);
}

.section-title {
  margin-bottom: 0.85rem;
}

.section-subtitle {
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* === Buttons (Min Touch Target 48px) === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 48px;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
  touch-action: manipulation;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gold-gradient);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 38px rgba(201, 169, 110, 0.45);
  color: var(--white);
}

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

.section-dark .btn-outline {
  color: var(--white);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.32);
}

.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
}

.btn-dark {
  background: var(--near-black);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--gold);
  color: var(--white);
}

.btn-full {
  width: 100%;
}

.btn-sm {
  min-height: 40px;
  padding: 0.5rem 1.2rem;
  font-size: 0.88rem;
}

.btn-lg {
  min-height: 52px;
  padding: 0.9rem 2.2rem;
  font-size: 1.05rem;
}

/* === Navigation === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.1rem 0;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.18);
}

.navbar.scrolled {
  padding: 0.8rem 0;
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.98);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--near-black);
}

.nav-logo-monogram {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  background: var(--gold-gradient);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  font-weight: 700;
  font-family: var(--font-body);
  border: 1.5px solid var(--gold-light);
  box-shadow: 0 3px 10px rgba(201, 169, 110, 0.25);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2.25rem;
}

@media (min-width: 992px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--dark-muted);
  position: relative;
  padding: 0.5rem 0;
}

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

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-whatsapp-btn {
  display: none;
}

@media (min-width: 600px) {
  .nav-whatsapp-btn {
    display: inline-flex;
  }
}

.mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 44px;
  height: 44px;
  padding: 12px 10px;
  background: var(--off-white);
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

@media (min-width: 992px) {
  .mobile-toggle {
    display: none;
  }
}

.mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--near-black);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* === Mobile Drawer & Overlay === */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(5px);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 360px;
  height: 100vh;
  background: var(--white);
  z-index: 1100;
  padding: 5.5rem 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: var(--shadow-xl);
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.mobile-drawer.active {
  right: 0;
}

.mobile-drawer .nav-link {
  font-size: 1.15rem;
  font-weight: 600;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border-gray);
  color: var(--near-black);
}

.mobile-drawer .mobile-cta {
  margin-top: auto;
  padding-top: 1.5rem;
}

/* === Hero Section (Mobile First) === */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 7.5rem;
  padding-bottom: 4.5rem;
  display: flex;
  align-items: center;
  background: var(--near-black);
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.42;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,13,11,0.85) 0%, rgba(14,13,11,0.65) 50%, rgba(14,13,11,0.96) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  background: var(--gold-glow);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.06em;
}

.hero-name {
  color: var(--white);
  font-size: clamp(2.6rem, 8.5vw, 5rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.08;
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 4.2vw, 2.5rem);
  color: var(--gold);
  font-style: italic;
  margin-bottom: 1.25rem;
}

.hero-description {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  margin-bottom: 2.25rem;
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 576px) {
  .hero-buttons {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

/* === Stats Bar === */
.stats-bar {
  background: var(--off-white);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 2.75rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.stat-item {
  padding: 0.75rem;
}

.stat-item h3 {
  font-size: clamp(2.3rem, 5.5vw, 3.4rem);
  color: var(--gold-dark);
  margin-bottom: 0.25rem;
  font-weight: 700;
}

.stat-item p {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* === Service & Feature Cards === */
.grid-1 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }

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

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

.service-card {
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-md);
  padding: 2.25rem 1.6rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

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

.service-card-icon {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  background: var(--gold-glow);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  margin-bottom: 1.35rem;
  border: 1px solid var(--border-gold);
}

.service-card-title {
  margin-bottom: 0.75rem;
  font-size: 1.45rem;
}

.service-card-desc {
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.service-card-list {
  margin-bottom: 1.5rem;
}

.service-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--dark-muted);
  margin-bottom: 0.55rem;
}

.service-card-list li i {
  color: var(--gold-dark);
  font-size: 1.1rem;
  margin-top: 2px;
}

/* === All-In-One Vendor Management === */
.vendor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

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

.vendor-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 1.6rem 1.25rem;
  text-align: center;
  transition: var(--transition);
}

.vendor-card:hover {
  background: rgba(201, 169, 110, 0.12);
  border-color: var(--gold);
  transform: translateY(-4px);
}

.vendor-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  background: var(--gold-glow);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  margin: 0 auto 0.9rem;
}

.vendor-title {
  color: var(--white);
  font-size: 1.18rem;
  margin-bottom: 0.35rem;
}

.vendor-desc {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.68);
}

/* === Event Highlights Gallery === */
.highlight-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 290px;
  box-shadow: var(--shadow-sm);
  display: block;
}

.highlight-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.highlight-card:hover img {
  transform: scale(1.06);
}

.highlight-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,0.88) 100%);
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
}

.highlight-tag {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.highlight-title {
  font-size: 1.3rem;
  color: var(--white);
}

/* === Process Timeline (How We Work) === */
.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 820px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  gap: 1.35rem;
  background: var(--white);
  padding: 1.6rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-gray);
  position: relative;
  transition: var(--transition);
}

.process-step:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}

.process-number {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: var(--radius-full);
  background: var(--gold-gradient);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 1.25rem;
}

.process-content h4 {
  margin-bottom: 0.35rem;
  font-size: 1.3rem;
}

/* === Testimonials === */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-md);
  padding: 1.85rem 1.6rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.testimonial-quote {
  color: var(--gold);
  font-size: 2.6rem;
  line-height: 1;
  font-family: var(--font-heading);
  margin-bottom: 0.5rem;
}

.testimonial-stars {
  color: var(--gold);
  margin-bottom: 0.75rem;
  font-size: 0.92rem;
}

.testimonial-text {
  font-size: 0.96rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--gold-light);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.96rem;
  color: var(--near-black);
}

.testimonial-role {
  font-size: 0.82rem;
  color: var(--muted);
}

/* === About / Credentials Split (80/20) === */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3.8rem;
  }
}

.about-image-wrapper {
  position: relative;
  max-width: 440px;
  margin: 0 auto;
}

.about-image-wrapper img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-image-border {
  position: absolute;
  inset: -14px;
  border: 2px solid var(--gold);
  border-radius: calc(var(--radius-lg) + 14px);
  z-index: -1;
  opacity: 0.65;
}

.credential-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold-light);
  color: var(--gold-dark);
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* 20% Dance Credential Box */
.dance-credential-box {
  background: var(--off-white);
  border-left: 4px solid var(--gold);
  padding: 1.6rem 1.35rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-top: 2rem;
}

.dance-credential-box h4 {
  color: var(--near-black);
  margin-bottom: 0.5rem;
}

.dance-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.85rem;
}

.dance-tag {
  background: var(--white);
  border: 1px solid var(--border-gold);
  color: var(--gold-dark);
  padding: 0.28rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
}

/* === Contact Form === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
}

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 3fr 2fr;
    gap: 3.25rem;
  }
}

.form-group {
  margin-bottom: 1.35rem;
}

.form-group label {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--near-black);
  margin-bottom: 0.45rem;
}

.form-control {
  width: 100%;
  padding: 0.88rem 1.1rem;
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.96rem;
  background: var(--white);
  color: var(--near-black);
  transition: var(--transition);
  min-height: 48px;
}

.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

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

.contact-info-card {
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-md);
  padding: 1.85rem 1.6rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.35rem;
}

.info-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--gold-glow);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-gray);
  height: 250px;
  margin-top: 1.5rem;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* === CTA Banner === */
.cta-banner {
  background: linear-gradient(135deg, var(--near-black) 0%, #171614 100%);
  color: var(--white);
  padding: 4.5rem 0;
  text-align: center;
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(255,255,255,0.82);
  max-width: 620px;
  margin: 0 auto 2.25rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 576px) {
  .cta-buttons {
    flex-direction: row;
  }
}

/* === Footer === */
.footer {
  background: #080807;
  color: rgba(255,255,255,0.72);
  padding: 4.5rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

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

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

.footer-brand p {
  color: rgba(255,255,255,0.62);
  font-size: 0.92rem;
  margin: 1rem 0 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.07);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--white);
}

.footer-column h4 {
  color: var(--white);
  font-size: 1.18rem;
  margin-bottom: 1.25rem;
  font-family: var(--font-heading);
}

.footer-column a {
  display: block;
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
  margin-bottom: 0.65rem;
}

.footer-column a:hover {
  color: var(--gold);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.86rem;
  color: rgba(255,255,255,0.48);
}

/* === Floating WhatsApp FAB === */
.whatsapp-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  display: flex;
  align-items: center;
}

.whatsapp-fab-btn {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-full);
  background: var(--whatsapp);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  box-shadow: 0 8px 26px rgba(37, 211, 102, 0.42);
  animation: pulse 2.2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* === Page Hero (Inner Pages) === */
.page-hero {
  background: var(--near-black);
  color: var(--white);
  padding: 8.5rem 1.25rem 3.75rem;
  text-align: center;
  border-bottom: 1px solid var(--border-gold);
}

.page-hero-title {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.page-hero-subtitle {
  color: rgba(255,255,255,0.78);
  font-size: 1.1rem;
  max-width: 620px;
  margin: 0 auto 1.35rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.86rem;
  color: var(--gold);
}

.breadcrumb a {
  color: rgba(255,255,255,0.6);
}

.breadcrumb a:hover {
  color: var(--white);
}

/* === Scroll Animations === */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s var(--transition), transform 0.6s var(--transition);
}

.animate-on-scroll.animated,
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
