/* =========================================
   1. GLOBAL VARIABLES & IMPORTS
========================================= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  --navy: #0F172A;
  --navy-light: #1E293B;
  --rose-gold: #C88D82;
  --rose-gold-hover: #B07469;
  --rose-gold-light: #F4EAE8;
  --cream: #FAFAF9;
  --white: #FFFFFF;
  --gray-text: #475569;
  --border-color: #E2E8F0;
  
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--navy);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--navy);
  line-height: 1.2;
}

p { margin-bottom: 1rem; color: var(--gray-text); }
a { text-decoration: none; color: var(--navy); transition: 0.3s; }
a:hover { color: var(--rose-gold); }

/* =========================================
   2. LAYOUT & UTILITIES
========================================= */
.container { width: 90%; max-width: 1100px; margin: 0 auto; }
.section { padding: 80px 0; }
.text-center { text-align: center; }

/* Top Promo Banner */
.promo-banner {
  background-color: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 10px 5px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* =========================================
   3. BUTTONS & BADGES
========================================= */
.btn-primary {
  display: inline-block;
  background-color: var(--rose-gold);
  color: var(--white) !important;
  padding: 16px 36px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 14px rgba(200, 141, 130, 0.4);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--rose-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 141, 130, 0.6);
}

.stars { color: #F59E0B; font-size: 1.2rem; letter-spacing: 2px; margin-bottom: 5px; }
.trust-text { font-size: 0.9rem; font-weight: 600; color: var(--navy); margin-bottom: 20px; }

/* =========================================
   4. HEADER & FOOTER
========================================= */
.site-header {
  background-color: var(--white);
  padding: 15px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-container { display: flex; justify-content: space-between; align-items: center; }
.logo-img { max-height: 50px; }
.main-nav .nav-links { display: inline-flex; list-style: none; gap: 30px; margin-right: 30px; font-weight: 500; }
.menu-toggle, .hamburger { display: none; }

.site-footer {
  background-color: var(--navy);
  color: var(--white);
  padding: 60px 0 20px;
}
.site-footer h3, .site-footer h4 { color: var(--white); }
.site-footer p { color: #CBD5E1; }
.site-footer a { color: #CBD5E1; }
.footer-container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px; margin-bottom: 40px; }
.footer-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; font-size: 0.9rem; color: #94A3B8; }

/* =========================================
   5. PREMIUM FORM STYLING
========================================= */
.premium-form {
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}

.form-step { margin-bottom: 30px; }
.form-step h3 { font-size: 1.2rem; margin-bottom: 15px; color: var(--navy); border-bottom: 2px solid var(--rose-gold-light); padding-bottom: 10px; }

.input-group { margin-bottom: 15px; }
.input-group label { display: block; font-size: 0.9rem; font-weight: 600; margin-bottom: 5px; color: var(--navy-light); }
.input-group input[type="text"],
.input-group input[type="email"],
.input-group select,
.input-group textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 1rem;
  background-color: var(--cream);
  transition: border-color 0.3s;
}
.input-group input:focus, .input-group select:focus, .input-group textarea:focus {
  outline: none;
  border-color: var(--rose-gold);
  background-color: var(--white);
}

/* Custom Radio & Checkbox Cards */
.radio-card-group { display: flex; flex-direction: column; gap: 10px; }
.radio-card {
  display: flex;
  align-items: center;
  padding: 15px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}
.radio-card:hover { border-color: var(--rose-gold); background-color: var(--rose-gold-light); }
.radio-card input { margin-right: 15px; transform: scale(1.2); cursor: pointer; }
.radio-card strong { color: var(--navy); font-size: 1.1rem; }
.radio-card span { display: block; font-size: 0.85rem; color: var(--gray-text); }

/* =========================================
   6. FEATURES & ICONS
========================================= */
.feature-list { list-style: none; text-align: left; max-width: 500px; margin: 0 auto; }
.feature-list li {
  font-size: 1.1rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  color: var(--navy);
  font-weight: 500;
}
.feature-list li::before {
  content: '✓';
  color: var(--white);
  background-color: var(--rose-gold);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  font-size: 0.9rem;
  font-weight: bold;
}

/* =========================================
   7. IMAGES & SPLIT LAYOUTS
========================================= */
.hero {
  position: relative;
  background-image: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.7)), url('https://images.unsplash.com/photo-1511285560929-80b456fea0bc?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.hero h1, .hero p {
  color: var(--white);
}

.split-section {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.split-text {
  flex: 1;
  min-width: 300px;
}

.split-image {
  flex: 1;
  min-width: 300px;
}

.split-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.faq-box {
  background: var(--white);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  text-align: left;
}

/* =========================================
   8. FAQ ACCORDION STYLES
========================================= */
.faq-accordion {
  background: var(--white);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border-left: 4px solid var(--rose-gold);
  transition: all 0.3s ease;
}

.faq-accordion[open] {
  background-color: var(--rose-gold-light);
  border-left: 4px solid var(--navy);
}

.faq-accordion summary {
  font-family: var(--font-body); /* Using body font for readability */
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style-position: inside; /* Keeps the arrow nicely aligned inside the box */
  outline: none;
}

/* Adds a nice hover effect to the question */
.faq-accordion summary:hover {
  color: var(--rose-gold);
}

.faq-accordion p {
  margin-top: 15px;
  margin-bottom: 0;
  font-size: 0.95rem;
  color: var(--navy-light);
  line-height: 1.6;
}

/* =========================================
   1. GLOBAL VARIABLES & IMPORTS
========================================= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  --navy: #0F172A;
  --navy-light: #1E293B;
  --rose-gold: #C88D82;
  --rose-gold-hover: #B07469;
  --rose-gold-light: #F4EAE8;
  --cream: #FAFAF9;
  --white: #FFFFFF;
  --gray-text: #475569;
  --border-color: #E2E8F0;
  
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--navy);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--navy);
  line-height: 1.2;
}

p { margin-bottom: 1rem; color: var(--gray-text); }
a { text-decoration: none; color: var(--navy); transition: 0.3s; }
a:hover { color: var(--rose-gold); }

/* =========================================
   2. LAYOUT & UTILITIES
========================================= */
.container { width: 90%; max-width: 1100px; margin: 0 auto; }
.section { padding: 80px 0; }
.text-center { text-align: center; }

/* Top Promo Banner */
.promo-banner {
  background-color: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 10px 5px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* =========================================
   3. BUTTONS & BADGES
========================================= */
.btn-primary {
  display: inline-block;
  background-color: var(--rose-gold);
  color: var(--white) !important;
  padding: 16px 36px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 14px rgba(200, 141, 130, 0.4);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--rose-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 141, 130, 0.6);
}

.stars { color: #F59E0B; font-size: 1.2rem; letter-spacing: 2px; margin-bottom: 5px; }
.trust-text { font-size: 0.9rem; font-weight: 600; color: var(--navy); margin-bottom: 20px; }

/* =========================================
   4. HEADER & FOOTER
========================================= */
.site-header {
  background-color: var(--white);
  padding: 15px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-container { display: flex; justify-content: space-between; align-items: center; }
.logo-img { max-height: 50px; }
.main-nav .nav-links { display: inline-flex; list-style: none; gap: 30px; margin-right: 30px; font-weight: 500; }
.menu-toggle, .hamburger { display: none; }

.site-footer {
  background-color: var(--navy);
  color: var(--white);
  padding: 60px 0 20px;
}
.site-footer h3, .site-footer h4 { color: var(--white); }
.site-footer p { color: #CBD5E1; }
.site-footer a { color: #CBD5E1; }
.footer-container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px; margin-bottom: 40px; }
.footer-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; font-size: 0.9rem; color: #94A3B8; }

/* =========================================
   5. PREMIUM FORM STYLING
========================================= */
.premium-form {
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}

.form-step { margin-bottom: 30px; }
.form-step h3 { font-size: 1.2rem; margin-bottom: 15px; color: var(--navy); border-bottom: 2px solid var(--rose-gold-light); padding-bottom: 10px; }

.input-group { margin-bottom: 15px; }
.input-group label { display: block; font-size: 0.9rem; font-weight: 600; margin-bottom: 5px; color: var(--navy-light); }
.input-group input[type="text"],
.input-group input[type="email"],
.input-group select,
.input-group textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 1rem;
  background-color: var(--cream);
  transition: border-color 0.3s;
}
.input-group input:focus, .input-group select:focus, .input-group textarea:focus {
  outline: none;
  border-color: var(--rose-gold);
  background-color: var(--white);
}

/* Custom Radio & Checkbox Cards */
.radio-card-group { display: flex; flex-direction: column; gap: 10px; }
.radio-card {
  display: flex;
  align-items: center;
  padding: 15px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}
.radio-card:hover { border-color: var(--rose-gold); background-color: var(--rose-gold-light); }
.radio-card input { margin-right: 15px; transform: scale(1.2); cursor: pointer; }
.radio-card strong { color: var(--navy); font-size: 1.1rem; }
.radio-card span { display: block; font-size: 0.85rem; color: var(--gray-text); }

/* =========================================
   6. FEATURES & ICONS
========================================= */
.feature-list { list-style: none; text-align: left; max-width: 500px; margin: 0 auto; }
.feature-list li {
  font-size: 1.1rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  color: var(--navy);
  font-weight: 500;
}
.feature-list li::before {
  content: '✓';
  color: var(--white);
  background-color: var(--rose-gold);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  font-size: 0.9rem;
  font-weight: bold;
}

/* =========================================
   7. IMAGES & SPLIT LAYOUTS
========================================= */
.hero {
  position: relative;
  background-image: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.7)), url('https://images.unsplash.com/photo-1511285560929-80b456fea0bc?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.hero h1, .hero p {
  color: var(--white);
}

.split-section {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.split-text {
  flex: 1;
  min-width: 300px;
}

.split-image {
  flex: 1;
  min-width: 300px;
}

.split-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.faq-box {
  background: var(--white);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  text-align: left;
}

/* =========================================
   8. FAQ ACCORDION STYLES
========================================= */
.faq-accordion {
  background: var(--white);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border-left: 4px solid var(--rose-gold);
  transition: all 0.3s ease;
}

.faq-accordion[open] {
  background-color: var(--rose-gold-light);
  border-left: 4px solid var(--navy);
}

.faq-accordion summary {
  font-family: var(--font-body); /* Using body font for readability */
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style-position: inside; /* Keeps the arrow nicely aligned inside the box */
  outline: none;
}

/* Adds a nice hover effect to the question */
.faq-accordion summary:hover {
  color: var(--rose-gold);
}

.faq-accordion p {
  margin-top: 15px;
  margin-bottom: 0;
  font-size: 0.95rem;
  color: var(--navy-light);
  line-height: 1.6;
}

/* =========================================
   9. MOBILE RESPONSIVENESS
========================================= */
@media (max-width: 768px) {
  /* 1. Adjust Typography & Spacing so it fits screens */
  h1 { font-size: 2.2rem !important; }
  h2 { font-size: 1.8rem !important; }
  .section { padding: 50px 0; }
  
  /* 2. Activate the Hamburger Menu */
  .header-container { flex-wrap: wrap; }
  .hamburger {
    display: block;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--navy);
  }
  .main-nav {
    display: none; /* Hidden by default on mobile */
    width: 100%;
    flex-direction: column;
    background-color: var(--white);
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    margin-top: 15px;
    text-align: center;
  }
  
  /* 3. The Checkbox Hack to open/close the menu */
  .menu-toggle:checked ~ .main-nav {
    display: flex;
  }
  
  /* 4. Fix Nav Links for Mobile */
  .main-nav .nav-links {
    flex-direction: column;
    margin: 0 0 20px 0;
    gap: 15px;
    padding: 0;
  }
  .main-nav .btn-primary {
    margin: 0 auto;
    width: 80%;
  }

  /* 5. Stack the Split Sections neatly */
  .split-section { 
    flex-direction: column !important; 
    text-align: center; 
    gap: 30px; 
  }
  
  /* Ensure lists align nicely when centered */
  .feature-list {
    margin: 0 auto;
    display: inline-block;
    text-align: left;
  }

  /* 6. Form & Footer Adjustments */
  .premium-form { padding: 25px 15px; }
  .footer-container { flex-direction: column; text-align: center; gap: 30px; }
  
  /* Keep the footer logo centered */
  .site-footer a { margin: 0 auto; }
}

/* 7. Bring Hero Section Above the Fold */
  .hero {
    padding: 30px 15px 50px !important; /* Overrides the massive 120px spacing */
  }
  
  .hero img {
    max-width: 220px !important; /* Shrinks the image slightly to save vertical space */
    margin-bottom: 15px !important;
    padding: 10px !important;
  }
  
  .hero h1 {
    font-size: 2rem !important;
    margin-bottom: 15px !important;
  }
  
  .hero p {
    font-size: 1.1rem !important;
    margin-bottom: 25px !important;
  }
  
  .hero .btn-primary {
    width: 100%; /* Makes the button stretch across the screen for an easy tap */
    padding: 15px !important;
  }