/* ==========================================================================
   HOST FORMATIONS - STYLESHEET
   Design: Luxury Hospitality & Corporate Elegance (Navy & Gold)
   Typography: Playfair Display + Poppins
   ========================================================================== */

:root {
  --navy-dark: #0F172A;
  --navy-surface: #1E293B;
  --navy-subtle: #334155;
  --gold-primary: #D4AF37;
  --gold-light: #EBD99F;
  --gold-subtle: rgba(212, 175, 55, 0.12);
  --gold-glow: rgba(212, 175, 55, 0.25);
  --beige-warm: #C5A880;
  --beige-subtle: rgba(197, 168, 128, 0.12);
  --bg-page: #F8FAFC;
  --bg-white: #FFFFFF;
  --text-dark: #0F172A;
  --text-body: #475569;
  --text-muted: #64748B;
  --border-light: #E2E8F0;
  --border-gold: rgba(212, 175, 55, 0.35);
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08), 0 2px 4px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 12px 30px rgba(15, 23, 42, 0.12), 0 4px 8px rgba(15, 23, 42, 0.06);
  --shadow-xl: 0 20px 40px rgba(15, 23, 42, 0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-body);
  background-color: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--text-dark);
  line-height: 1.25;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  letter-spacing: -0.015em;
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
}

h4 {
  font-size: 1.25rem;
}

p {
  color: var(--text-body);
  font-size: 1.05rem;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Container & Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section-padding {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

@media (min-width: 768px) {
  .section-padding {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}

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

.section-tag {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-primary);
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 1rem auto 0;
  line-height: 1.7;
}

.divider-gold {
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
  margin: 1.5rem auto 0;
  border-radius: var(--radius-full);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.85rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--navy-dark);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.2);
}

.btn-primary:hover {
  background-color: #1a2744;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.28);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--gold-primary) 0%, #C5A880 100%);
  color: var(--navy-dark);
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.25);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(212, 175, 55, 0.4);
  filter: brightness(1.05);
}

.btn-outline {
  border: 1.5px solid var(--navy-dark);
  color: var(--navy-dark);
  background-color: transparent;
}

.btn-outline:hover {
  background-color: var(--navy-dark);
  color: #FFFFFF;
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
  height: 72px;
}

.header-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.logo-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, #1e293b 60%, var(--gold-primary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.15);
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy-dark);
  letter-spacing: -0.01em;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

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

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--navy-dark);
  transition: var(--transition);
  position: relative;
  padding: 0.25rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--gold-primary);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--gold-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  color: var(--navy-dark);
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

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

.mobile-menu-btn:hover {
  background: #E2E8F0;
}

/* Mobile Nav Drawer */
.mobile-nav {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  padding: 1.5rem;
  display: none;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-xl);
  z-index: 999;
  transform: translateY(-10px);
  opacity: 0;
  transition: var(--transition);
}

.mobile-nav.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav-link {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--navy-dark);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
  transition: var(--transition);
}

.mobile-nav-link:hover {
  color: var(--gold-primary);
  padding-left: 0.5rem;
}

/* Hero Section */
.hero-section {
  padding-top: 130px;
  padding-bottom: 4rem;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
  }
}

.hero-title {
  color: var(--navy-dark);
  margin-bottom: 1.5rem;
  line-height: 1.18;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-body);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
  font-weight: 500;
}

.hero-image-wrapper {
  position: relative;
}

.hero-image-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.hero-image {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0) 60%, rgba(15, 23, 42, 0.4) 100%);
  pointer-events: none;
}

.hero-glow-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, var(--gold-primary) 0%, transparent 70%);
  opacity: 0.3;
  filter: blur(30px);
  z-index: -1;
  pointer-events: none;
}

/* Reassurance Badge */
.reassurance-banner {
  padding: 0 1.5rem 3rem;
}

.reassurance-card {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(197, 168, 128, 0.12) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 1.25rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.reassurance-text {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy-dark);
}

.reassurance-check {
  color: var(--gold-primary);
  margin-right: 0.5rem;
  font-weight: 700;
}

/* Challenges Section */
.challenges-section {
  background-color: var(--bg-white);
}

.challenges-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

.card-challenge {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.card-challenge:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-gold);
}

.challenge-icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  display: inline-block;
}

.challenge-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.challenge-desc {
  font-size: 0.98rem;
  color: var(--text-body);
  line-height: 1.65;
  flex-grow: 1;
}

.card-accent-bar {
  width: 40px;
  height: 3px;
  background-color: var(--gold-primary);
  border-radius: var(--radius-full);
  margin-top: 1.5rem;
  transition: width 0.3s ease;
}

.card-challenge:hover .card-accent-bar {
  width: 70px;
}

/* Trainer / About Section */
.about-section {
  background: linear-gradient(180deg, var(--bg-white) 0%, #F8FAFC 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}

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

.about-image-wrapper {
  position: relative;
}

.about-image-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.about-image {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.about-glow {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, var(--gold-primary) 0%, transparent 70%);
  opacity: 0.25;
  filter: blur(35px);
  z-index: -1;
}

.about-subtitle-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy-subtle);
  margin-top: 0.4rem;
  margin-bottom: 1.5rem;
}

.about-lead-text {
  font-size: 1.08rem;
  color: var(--text-body);
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* HOST Box */
.host-acronym-box {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(197, 168, 128, 0.15) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.host-acronym-header {
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy-dark);
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.host-acronym-desc {
  font-size: 0.95rem;
  color: var(--navy-dark);
  line-height: 1.6;
}

/* Expertise List */
.expertise-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.expertise-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.expertise-icon-box {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background-color: var(--gold-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
}

.expertise-icon-box svg {
  width: 24px;
  height: 24px;
}

.expertise-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 0.35rem;
}

.expertise-desc {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.55;
}

/* How It Works Section */
.how-it-works-section {
  background: linear-gradient(180deg, #F8FAFC 0%, var(--bg-white) 100%);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
}

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

.step-card {
  position: relative;
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 3rem 2rem 2.25rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.step-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: var(--border-gold);
}

.step-number-badge {
  position: absolute;
  top: -24px;
  left: 2rem;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--beige-warm) 100%);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.step-icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--gold-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  margin-bottom: 1.5rem;
}

.step-icon-box svg {
  width: 28px;
  height: 28px;
}

.step-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 0.75rem;
}

.step-desc {
  font-size: 0.98rem;
  color: var(--text-body);
  line-height: 1.65;
}

.section-cta-box {
  text-align: center;
  margin-top: 3.5rem;
}

/* Method Section */
.method-section {
  background-color: var(--bg-white);
}

.modules-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

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

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

.module-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.module-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-gold);
}

.module-icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--beige-warm) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
  transition: var(--transition);
}

.module-card:hover .module-icon-box {
  transform: scale(1.08);
}

.module-icon-box svg {
  width: 28px;
  height: 28px;
}

.module-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.module-desc {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.6;
  flex-grow: 1;
}

/* Custom / Formations Section */
.custom-section {
  background: linear-gradient(180deg, #F8FAFC 0%, var(--bg-white) 100%);
}

.custom-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .custom-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4.5rem;
  }
}

.custom-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0 2.5rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.benefit-check-icon {
  width: 26px;
  height: 26px;
  border-radius: var(--radius-full);
  background-color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  flex-shrink: 0;
  font-size: 0.85rem;
  font-weight: bold;
}

.benefit-text {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--navy-dark);
}

.custom-image-wrapper {
  position: relative;
}

.custom-image-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.custom-image {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.custom-glow {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, var(--gold-primary) 0%, transparent 70%);
  opacity: 0.25;
  filter: blur(35px);
  z-index: -1;
}

/* Pricing Section */
.pricing-section {
  background: linear-gradient(180deg, var(--bg-white) 0%, #F8FAFC 100%);
}

.pricing-subsection-title {
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 2rem;
}

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

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

.pricing-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-gold);
}

.pricing-icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--gold-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  margin-bottom: 1.5rem;
}

.pricing-icon-box svg {
  width: 28px;
  height: 28px;
}

.pricing-card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 0.5rem;
}

.pricing-card-desc {
  font-size: 1rem;
  color: var(--text-body);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  flex-grow: 1;
}

.pricing-badge {
  display: inline-block;
  align-self: flex-start;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--gold-subtle);
  color: var(--navy-dark);
  font-size: 0.9rem;
  font-weight: 600;
}

.pricing-badge.highlight {
  color: #B28F1B;
  font-weight: 700;
}

/* Custom Pricing Banner */
.custom-pricing-banner {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(197, 168, 128, 0.15) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  text-align: center;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .custom-pricing-banner {
    padding: 3.5rem 3rem;
  }
}

.custom-pricing-title {
  font-size: 1.75rem;
  color: var(--navy-dark);
  margin-bottom: 1rem;
}

.custom-pricing-desc {
  font-size: 1.1rem;
  color: var(--navy-dark);
  max-width: 720px;
  margin: 0 auto 1.25rem;
  line-height: 1.7;
}

.custom-pricing-highlight {
  font-size: 1rem;
  color: var(--text-body);
  margin-bottom: 2rem;
}

/* FAQ Section */
.faq-section {
  background-color: var(--bg-white);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background: var(--bg-white);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover,
.faq-item.active {
  border-color: var(--border-gold);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 1.75rem;
  text-align: left;
  background: transparent;
  color: var(--navy-dark);
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.faq-trigger:hover {
  background-color: #F8FAFC;
}

.faq-chevron {
  color: var(--gold-primary);
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

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

.faq-content {
  display: none;
  padding: 0 1.75rem 1.5rem;
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.04) 0%, rgba(248, 250, 252, 0.6) 100%);
  border-top: 1px solid rgba(226, 232, 240, 0.6);
}

.faq-item.active .faq-content {
  display: block;
}

.faq-answer {
  font-size: 1.02rem;
  color: var(--text-body);
  line-height: 1.7;
  padding-top: 1.25rem;
}

.faq-footer-cta {
  text-align: center;
  margin-top: 3.5rem;
}

.faq-footer-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

/* Contact Section */
.contact-section {
  background: linear-gradient(180deg, var(--bg-white) 0%, #F8FAFC 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
}

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

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.contact-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background-color: var(--gold-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.contact-icon-box svg {
  width: 24px;
  height: 24px;
}

.contact-info-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 0.25rem;
}

.contact-info-value {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.55;
}

.contact-info-value a:hover {
  color: var(--gold-primary);
}

/* Form Styling */
.contact-form-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .contact-form-card {
    padding: 3rem;
  }
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy-dark);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.85rem 1.2rem;
  font-family: inherit;
  font-size: 0.98rem;
  color: var(--text-dark);
  background-color: var(--bg-page);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: var(--transition);
  outline: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--gold-primary);
  background-color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

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

.form-submit-btn {
  width: 100%;
  padding: 1rem;
  font-size: 1.05rem;
  margin-top: 0.5rem;
}

.form-feedback {
  display: none;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  margin-top: 1.5rem;
  font-size: 0.98rem;
  font-weight: 500;
}

.form-feedback.success {
  display: block;
  background-color: #ECFDF5;
  color: #065F46;
  border: 1px solid #A7F3D0;
}

.form-feedback.error {
  display: block;
  background-color: #FEF2F2;
  color: #991B1B;
  border: 1px solid #FECACA;
}

/* Footer */
.footer {
  background-color: var(--navy-dark);
  color: #FFFFFF;
  padding-top: 4.5rem;
  padding-bottom: 2.5rem;
}

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

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

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

.footer-brand-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #FFFFFF;
}

.footer-tagline {
  color: #94A3B8;
  font-size: 0.95rem;
  margin-top: 1rem;
  line-height: 1.6;
}

.footer-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  color: #94A3B8;
  font-size: 0.92rem;
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--gold-primary);
  padding-left: 0.25rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.88rem;
  color: #64748B;
}

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

.footer-gold-spark {
  color: var(--gold-primary);
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-in {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  html {
    scroll-behavior: auto;
  }
}
