/* ===================================
   VEDIC BLUEPRINT - MAIN STYLES
   ================================= */

/* CSS Variables - Color Palette */
:root {
  --saffron: #d97706;
  --maroon: #7a1f1f;
  --gold: #f59e0b;
  --gold-light: #fbbf24;
  --deep-maroon: #5c1616;
  --cream: #fef3c7;
  --white: #ffffff;
  --dark: #1a1a1a;
  --gray: #6b7280;
  --light-gray: #f8f9fa;
  --success-green: #10b981;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

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

/* Base Typography */
body {
  font-family: 'Lora', 'Georgia', serif;
  font-size: 18px;
  line-height: 1.7;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Spacing */
section {
  padding: 80px 0;
}

/* Section Headers */
.section-header {
  font-size: 2.5rem;
  margin-bottom: 40px;
  text-align: center;
  letter-spacing: -0.5px;
  position: relative;
  padding-bottom: 20px;
}

.section-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
  border-radius: 3px;
}

.section-header.saffron {
  color: var(--saffron);
}

.section-header.maroon {
  color: var(--maroon);
}

/* CTA Button */
.cta-button {
  display: inline-block;
  background: linear-gradient(90deg, var(--saffron) 0%, var(--gold) 100%);
  color: var(--white);
  padding: 18px 40px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(217, 119, 6, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(217, 119, 6, 0.4);
}

/* ===================================
   NAVIGATION
   ================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(60, 17, 17, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 65px;
}

.nav-logo {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.5px;
}

.logo-icon {
  font-size: 1.6rem;
  color: var(--gold-light);
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 8px;
}

.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

.nav-links a:hover {
  color: var(--gold);
  background: rgba(245, 158, 11, 0.1);
}

.nav-cta {
  background: linear-gradient(90deg, var(--saffron), var(--gold)) !important;
  color: var(--white) !important;
  font-weight: 700 !important;
  padding: 10px 20px !important;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.4);
  background: linear-gradient(90deg, var(--gold), var(--saffron)) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(60, 17, 17, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===================================
   HERO SECTION
   ================================= */
.hero {
  background: linear-gradient(135deg, rgba(92, 22, 22, 0.92) 0%, rgba(60, 17, 17, 0.95) 100%),
              url('../images/hero-banner.png') center/cover no-repeat;
  color: var(--cream);
  text-align: center;
  padding: 100px 20px 100px;
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.1;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-headline {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  opacity: 0.9;
}

.hero-subheadline {
  font-size: 1.25rem;
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.hero-cta {
  font-size: 1.2rem;
  padding: 20px 50px;
  box-shadow: 0 6px 25px rgba(217, 119, 6, 0.4);
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 35px;
  flex-wrap: wrap;
}

.hero-badge {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-light);
  padding: 8px 18px;
  border: 1px solid rgba(251, 191, 36, 0.35);
  border-radius: 50px;
  letter-spacing: 0.5px;
  background: rgba(245, 158, 11, 0.08);
}

/* ===================================
   TRUST SIGNALS
   ================================= */
.trust-signals {
  background: var(--white);
  border-top: 3px solid var(--gold);
  padding: 30px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  text-align: center;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.trust-icon {
  font-size: 2rem;
}

/* ===================================
   PROBLEM SECTION
   ================================= */
.problem-section {
  background: var(--white);
  border-top: 1px solid rgba(217, 119, 6, 0.15);
}

.intro-text {
  font-size: 1.2rem;
  margin-bottom: 20px;
  text-align: center;
}

.problem-list {
  list-style: none;
  max-width: 700px;
  margin: 0 auto 30px;
}

.problem-list li {
  padding: 15px 20px;
  margin-bottom: 15px;
  background: var(--white);
  border-left: 4px solid var(--saffron);
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-radius: 4px;
}

.conclusion-text {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
  max-width: 700px;
  margin: 0 auto;
  color: var(--maroon);
}

/* ===================================
   SOLUTION SECTION
   ================================= */
.solution-section {
  background: linear-gradient(to bottom, var(--cream) 0%, var(--white) 100%);
}

.bold-text {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: var(--maroon);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.feature-icon {
  font-size: 1.5rem;
  color: var(--success-green);
  flex-shrink: 0;
}

.feature-item p {
  margin: 0;
}

/* ===================================
   HOW IT WORKS SECTION
   ================================= */
.how-it-works-section {
  background: var(--white);
}

.steps-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.step {
  text-align: center;
  padding: 30px 20px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--saffron) 0%, var(--gold) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 auto 20px;
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3);
}

.step h3 {
  margin-bottom: 10px;
  color: var(--maroon);
}

.step p {
  margin: 0;
  color: var(--gray);
}

/* ===================================
   WHAT YOU GET SECTION
   ================================= */
.what-you-get-section {
  background: var(--white);
}

.blueprint-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.blueprint-item {
  padding: 30px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blueprint-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.blueprint-item:nth-child(even) {
  background: linear-gradient(to bottom, var(--white) 0%, rgba(254, 243, 199, 0.3) 100%);
}

.blueprint-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 15px;
}

.blueprint-item h3 {
  color: var(--maroon);
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.blueprint-item p {
  margin: 0;
  color: var(--gray);
}

.delivery-badge {
  background: var(--success-green);
  color: var(--white);
  padding: 20px 30px;
  border-radius: 8px;
  text-align: center;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  max-width: 600px;
  margin: 0 auto;
}

.badge-icon {
  font-size: 2rem;
}

/* ===================================
   WHO THIS IS FOR SECTION
   ================================= */
.who-section {
  background: linear-gradient(to bottom, var(--cream) 0%, var(--white) 100%);
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.who-column h3 {
  color: var(--maroon);
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.who-column ul {
  list-style: none;
}

.who-column li {
  padding: 15px 0;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.check-icon {
  color: var(--gold);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.x-icon {
  color: var(--maroon);
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* ===================================
   SAMPLE PAGES SECTION
   ================================= */
.sample-pages-section {
  background: var(--white);
}

.subheading {
  text-align: center;
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 40px;
}

.samples-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.sample-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--gold);
  transition: transform 0.3s ease;
  cursor: pointer;
  position: relative;
}

.sample-card:hover {
  transform: scale(1.05);
}

.sample-card:hover .expand-hint {
  opacity: 1;
}

.expand-hint {
  display: block;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: var(--saffron);
  padding: 0 10px 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sample-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
}

.lightbox-img {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  margin-top: 15px;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2.5rem;
  color: var(--white);
  cursor: pointer;
  z-index: 10000;
  line-height: 1;
  transition: color 0.2s ease;
}

.lightbox-close:hover {
  color: var(--gold);
}

.sample-card p {
  padding: 15px;
  text-align: center;
  font-weight: 600;
  color: var(--maroon);
  margin: 0;
}

.note {
  text-align: center;
  font-style: italic;
  color: var(--gray);
  max-width: 600px;
  margin: 20px auto 0;
}

/* ===================================
   TESTIMONIALS SECTION
   ================================= */
.testimonials-section {
  background: linear-gradient(to bottom, rgba(254, 243, 199, 0.92) 0%, rgba(255, 255, 255, 0.95) 100%),
              url('../images/testimonial.png') center/400px no-repeat;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--gold);
}

.testimonial-text {
  font-style: italic;
  color: var(--gray);
  font-size: 1.1rem;
  margin: 0 0 20px;
}

.testimonial-author {
  border-top: 1px solid var(--cream);
  padding-top: 15px;
}

.author-name {
  font-weight: 700;
  color: var(--maroon);
  margin: 0;
  font-style: normal;
}

.author-detail {
  font-size: 0.9rem;
  color: var(--gray);
  margin: 4px 0 0;
}

/* ===================================
   ABOUT SECTION
   ================================= */
.about-section {
  background: var(--white);
}

.about-content {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 50px;
  align-items: center;
  margin-top: 40px;
}

.about-image {
  text-align: center;
}

.profile-photo {
  width: 100%;
  max-width: 300px;
  border-radius: 50%;
  border: 5px solid var(--gold);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.about-photo {
  width: 100%;
  max-width: 300px;
  border-radius: 12px;
  border: 4px solid var(--gold);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.about-text h3 {
  color: var(--maroon);
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.credentials-list {
  list-style: none;
  margin-bottom: 20px;
}

.credentials-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.about-conclusion {
  font-weight: 600;
  color: var(--maroon);
  font-size: 1.1rem;
}

/* ===================================
   PRICING SECTION
   ================================= */
.pricing-section {
  background: linear-gradient(135deg, rgba(92, 22, 22, 0.94) 0%, rgba(60, 17, 17, 0.97) 100%),
              url('../images/hero-banner.png') center/cover no-repeat;
  padding: 80px 0 60px;
}

.pricing-card {
  max-width: 550px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 20px;
  padding: 0;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, #dc2626, #ef4444);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 10px 20px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.pricing-header {
  padding: 55px 40px 25px;
  background: linear-gradient(to bottom, rgba(254, 243, 199, 0.3), transparent);
}

.pricing-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem;
  color: var(--maroon);
  margin: 0 0 8px;
}

.pricing-subtitle {
  font-size: 0.95rem;
  color: var(--gray);
  margin: 0;
}

.pricing-tiers {
  padding: 15px 40px 25px;
}

.pricing-tier {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-radius: 10px;
  margin-bottom: 8px;
}

.pricing-tier.original {
  background: #f9fafb;
}

.pricing-tier.regular {
  background: #f3f4f6;
}

.pricing-tier.original .tier-label,
.pricing-tier.regular .tier-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--gray);
  font-weight: 500;
}

.tier-price.struck {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  color: #9ca3af;
  text-decoration: line-through;
  font-weight: 600;
}

.pricing-tier.current {
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, #fef3c7 0%, #fff7ed 100%);
  border: 2px solid var(--gold);
  padding: 25px 20px;
  margin-top: 12px;
}

.pricing-tier.current .tier-label {
  font-family: 'Inter', sans-serif;
  color: #dc2626;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.tier-price.highlight {
  font-family: 'Inter', sans-serif;
  font-size: 3.8rem;
  font-weight: 800;
  color: var(--maroon);
  line-height: 1;
}

.tier-save {
  display: inline-block;
  background: linear-gradient(90deg, #dcfce7, #bbf7d0);
  color: #15803d;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 50px;
  margin-top: 10px;
}

.pricing-footer {
  padding: 0 40px 40px;
}

.pricing-cta {
  display: block;
  width: 100%;
  font-size: 1.15rem;
  padding: 18px 30px;
  box-shadow: 0 6px 25px rgba(217, 119, 6, 0.4);
  text-align: center;
}

.pricing-urgency {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: var(--gray);
  margin-top: 15px;
  font-weight: 500;
}

.pricing-urgency strong {
  color: #dc2626;
}

.pricing-includes {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  padding: 0 40px 30px;
  border-top: 1px solid #f3f4f6;
  margin-top: 5px;
  padding-top: 20px;
}

.pricing-include-item {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 5px;
}

.pricing-include-item span {
  color: var(--gold);
}

/* ===================================
   FORM SECTION
   ================================= */
.form-section {
  background: linear-gradient(to bottom, var(--cream) 0%, var(--white) 100%);
  border: 3px solid var(--saffron);
  border-left: none;
  border-right: none;
}

.form-subheading {
  text-align: center;
  font-size: 1.2rem;
  color: var(--gray);
  margin-bottom: 40px;
}

.birth-form {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 25px;
}

.recaptcha-group {
  display: flex;
  justify-content: center;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--maroon);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px;
  border: 2px solid var(--cream);
  border-radius: 6px;
  font-size: 1rem;
  font-family: 'Lora', serif;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.form-group input.error {
  border-color: #ef4444;
}

.field-note {
  font-size: 0.9rem;
  color: var(--gray);
  margin-top: 5px;
  font-style: italic;
}

.checkbox-group label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 4px;
}

.checkbox-group span {
  font-weight: normal;
}

.checkbox-group a {
  color: var(--saffron);
  text-decoration: underline;
}

.form-submit {
  width: 100%;
  margin-top: 30px;
  font-size: 1.2rem;
  padding: 20px;
}

.form-submit .price {
  font-size: 0.9rem;
  font-weight: 400;
}

.form-footer {
  max-width: 700px;
  margin: 30px auto 0;
  text-align: center;
}

.form-footer p {
  margin-bottom: 10px;
  color: var(--gray);
}

.form-footer .icon {
  margin-right: 8px;
}

.important-notes {
  max-width: 700px;
  margin: 30px auto 0;
  background: rgba(217, 119, 6, 0.1);
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid var(--saffron);
}

.important-notes h3 {
  color: var(--maroon);
  margin-bottom: 10px;
}

.important-notes p {
  margin-bottom: 10px;
}

/* ===================================
   GUARANTEE SECTION
   ================================= */
.guarantee-section {
  background: linear-gradient(90deg, var(--saffron) 0%, var(--gold) 100%);
  color: var(--white);
  text-align: center;
}

.guarantee-badge {
  margin-bottom: 20px;
}

.badge-seal {
  display: inline-block;
  width: 100px;
  height: 100px;
  background: var(--white);
  color: var(--saffron);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  margin: 0 auto;
  line-height: 100px;
}

.guarantee-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.guarantee-section p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 15px;
}

.guarantee-commitment {
  font-weight: 700;
  font-style: italic;
}

/* ===================================
   FAQ SECTION
   ================================= */
.faq-section {
  background: var(--white);
}

.faq-list {
  max-width: 900px;
  margin: 40px auto 0;
}

.faq-item {
  margin-bottom: 15px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.faq-question {
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to right, var(--saffron), var(--gold));
  color: var(--white);
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: linear-gradient(to right, var(--gold), var(--saffron));
}

.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.faq-toggle {
  font-size: 1.5rem;
  font-weight: 700;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 20px 25px;
  margin: 0;
  color: var(--dark);
  border-top: 1px solid var(--cream);
}

/* ===================================
   FINAL CTA SECTION
   ================================= */
.final-cta-section {
  background: linear-gradient(135deg, var(--maroon) 0%, var(--deep-maroon) 100%);
  color: var(--cream);
  text-align: center;
}

.final-cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.final-cta-section > .container > p:first-of-type {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.subtext {
  margin-top: 20px;
  font-style: italic;
  color: rgba(254, 243, 199, 0.8);
}

/* ===================================
   FOOTER
   ================================= */
.footer {
  background: #3c1111;
  color: var(--cream);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h3 {
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 10px;
}

.footer-column a {
  color: var(--cream);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(254, 243, 199, 0.2);
}

.footer-bottom p {
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.disclaimer {
  font-size: 0.85rem;
  color: rgba(254, 243, 199, 0.7);
  max-width: 800px;
  margin: 20px auto 0;
}

/* ===================================
   STICKY MOBILE CTA
   ================================= */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, var(--saffron) 0%, var(--gold) 100%);
  padding: 12px 16px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  text-align: center;
}

.sticky-cta button {
  width: 100%;
  background: var(--white);
  color: var(--maroon);
  font-weight: 700;
  font-size: 16px;
  padding: 14px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: transform 0.2s ease;
}

.sticky-cta button:active {
  transform: scale(0.98);
}
