/* ===================================
   CSS RESET & BASE STYLES
   =================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.7;
  color: #2c3e50;
  background-color: #fafafa;
  overflow-x: hidden;
}

/* ===================================
   LUXURY PREMIUM TYPOGRAPHY
   =================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  line-height: 1.3;
  color: #1e3a5f;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

h1 {
  font-size: 48px;
  margin-bottom: 32px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

h2 {
  font-size: 36px;
  margin-bottom: 28px;
  position: relative;
  padding-bottom: 16px;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #d4af37 0%, #f4d03f 100%);
  border-radius: 2px;
}

h3 {
  font-size: 24px;
  color: #2c5f8d;
}

p {
  margin-bottom: 20px;
  font-size: 16px;
  color: #4a5568;
}

a {
  color: #2c5f8d;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #d4af37;
}

ul, ol {
  margin-bottom: 20px;
  padding-left: 24px;
}

li {
  margin-bottom: 12px;
  color: #4a5568;
}

strong {
  color: #1e3a5f;
  font-weight: 600;
}

/* ===================================
   LUXURY PREMIUM LAYOUT CONTAINERS
   =================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  margin-bottom: 60px;
  padding: 60px 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(30, 58, 95, 0.08);
}

/* ===================================
   LUXURY PREMIUM HEADER & NAVIGATION
   =================================== */
header {
  background: linear-gradient(135deg, #1e3a5f 0%, #2c5f8d 100%);
  padding: 24px 0;
  box-shadow: 0 4px 16px rgba(30, 58, 95, 0.2);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid #d4af37;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.logo {
  height: 56px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.3));
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  color: #ffffff;
  font-weight: 500;
  font-size: 15px;
  padding: 10px 16px;
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
  letter-spacing: 0.5px;
}

.main-nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #d4af37;
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #d4af37;
  background-color: rgba(212, 175, 55, 0.1);
}

.main-nav a:hover::before {
  width: 80%;
}

/* ===================================
   MOBILE MENU STYLES
   =================================== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
  color: #1e3a5f;
  border: none;
  padding: 12px 16px;
  font-size: 24px;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(180deg, #1e3a5f 0%, #2c5f8d 100%);
  z-index: 1000;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(212, 175, 55, 0.2);
  color: #ffffff;
  border: 2px solid #d4af37;
  padding: 10px 16px;
  font-size: 24px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #d4af37;
  color: #1e3a5f;
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 80px 32px 32px;
  gap: 8px;
}

.mobile-nav a {
  color: #ffffff;
  padding: 16px 20px;
  font-size: 18px;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
  letter-spacing: 0.5px;
}

.mobile-nav a:hover,
.mobile-nav a:active {
  background: rgba(212, 175, 55, 0.15);
  border-left-color: #d4af37;
  padding-left: 28px;
  color: #d4af37;
}

/* ===================================
   LUXURY PREMIUM HERO SECTION
   =================================== */
.hero {
  background: linear-gradient(135deg, #1e3a5f 0%, #2c5f8d 100%);
  color: #ffffff;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(30, 58, 95, 0.3);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  color: #ffffff;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  line-height: 1.2;
}

.hero-subheadline {
  font-size: 20px;
  color: #e8f0f8;
  margin-bottom: 40px;
  line-height: 1.6;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.trust-badges span {
  background: rgba(255, 255, 255, 0.15);
  padding: 12px 24px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid rgba(212, 175, 55, 0.3);
  backdrop-filter: blur(10px);
  letter-spacing: 0.5px;
}

/* ===================================
   LUXURY PREMIUM BUTTONS
   =================================== */
.btn {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
  color: #1e3a5f;
  border-color: #d4af37;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* ===================================
   LUXURY PREMIUM CARDS & CONTENT
   =================================== */
.service-cards,
.audience-segments,
.contact-grid,
.packages-grid,
.stats-grid,
.resources-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.service-card,
.segment,
.contact-method,
.package,
.resource {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(30, 58, 95, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  margin-bottom: 20px;
}

.service-card::before,
.segment::before,
.package::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, #d4af37 0%, #f4d03f 100%);
  border-radius: 4px 0 0 4px;
  transition: height 0.3s ease;
}

.service-card:hover,
.segment:hover,
.package:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(30, 58, 95, 0.15);
  border-color: #d4af37;
}

.service-card:hover::before,
.segment:hover::before,
.package:hover::before {
  height: 100%;
}

.service-card h3,
.segment h3,
.package h3 {
  color: #1e3a5f;
  margin-bottom: 16px;
  font-size: 22px;
}

.service-card p,
.segment p {
  color: #4a5568;
  margin-bottom: 16px;
}

/* ===================================
   PROBLEM STATEMENT SECTION
   =================================== */
.problem-statement {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 80px 20px;
}

.problem-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 40px 0;
  list-style: none;
  padding: 0;
}

.problem-list li {
  padding: 20px 24px;
  background: #ffffff;
  border-left: 4px solid #d4af37;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(30, 58, 95, 0.08);
  transition: all 0.3s ease;
  color: #4a5568;
  font-size: 16px;
}

.problem-list li:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 16px rgba(30, 58, 95, 0.12);
}

.reassurance {
  font-size: 18px;
  color: #2c5f8d;
  font-weight: 600;
  margin: 32px 0;
  padding: 24px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 8px;
  border-left: 4px solid #d4af37;
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */
.testimonials {
  background: linear-gradient(135deg, #2c5f8d 0%, #1e3a5f 100%);
  padding: 80px 20px;
  color: #ffffff;
}

.testimonials h2 {
  color: #ffffff;
  text-align: center;
}

.testimonials h2::after {
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #d4af37 0%, #f4d03f 100%);
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 32px;
  border-radius: 12px;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  border: 2px solid rgba(212, 175, 55, 0.3);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  left: 24px;
  font-size: 64px;
  color: #d4af37;
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card p {
  color: #2c3e50;
  font-size: 17px;
  font-style: italic;
  margin-bottom: 16px;
  padding-left: 40px;
  position: relative;
  z-index: 1;
}

.testimonial-card cite {
  color: #1e3a5f;
  font-weight: 600;
  font-style: normal;
  display: block;
  text-align: right;
  padding-right: 16px;
  font-size: 15px;
}

.testimonial-card cite::before {
  content: '— ';
  color: #d4af37;
}

/* ===================================
   PRICING SECTION
   =================================== */
.price,
.package-price {
  font-size: 32px;
  color: #d4af37;
  font-weight: 700;
  margin: 16px 0;
  font-family: 'Merriweather', Georgia, serif;
}

.package-featured {
  border: 3px solid #d4af37;
  background: linear-gradient(135deg, #ffffff 0%, #fffbf0 100%);
  position: relative;
}

.package-featured .badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
  color: #1e3a5f;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.highlight {
  display: inline-block;
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
  color: #1e3a5f;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  margin-top: 12px;
  letter-spacing: 0.5px;
}

/* ===================================
   STATS & NUMBERS
   =================================== */
.stat {
  text-align: center;
  padding: 32px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(30, 58, 95, 0.1);
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  transition: all 0.3s ease;
}

.stat:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(30, 58, 95, 0.15);
}

.stat-number {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: #d4af37;
  margin-bottom: 12px;
  font-family: 'Merriweather', Georgia, serif;
}

.stat-label {
  display: block;
  color: #4a5568;
  font-size: 16px;
  font-weight: 500;
}

/* ===================================
   PAGE HERO (SUBPAGES)
   =================================== */
.page-hero {
  background: linear-gradient(135deg, #1e3a5f 0%, #2c5f8d 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(30, 58, 95, 0.2);
}

.page-hero h1 {
  color: #ffffff;
  font-size: 48px;
  margin-bottom: 20px;
}

.page-hero p {
  font-size: 20px;
  color: #e8f0f8;
  max-width: 800px;
  margin: 0 auto;
}

/* ===================================
   LEGAL PAGES
   =================================== */
.legal-page {
  padding: 60px 20px;
}

.legal-content {
  background: #ffffff;
  padding: 48px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(30, 58, 95, 0.1);
  max-width: 900px;
  margin: 0 auto;
  border: 2px solid #f0f0f0;
}

.legal-content h2 {
  color: #1e3a5f;
  margin-top: 40px;
  font-size: 28px;
}

.legal-content h3 {
  color: #2c5f8d;
  margin-top: 32px;
  font-size: 22px;
}

.legal-content p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: #4a5568;
}

.legal-content ul {
  margin: 24px 0;
  padding-left: 28px;
}

.legal-content li {
  margin-bottom: 16px;
  line-height: 1.7;
}

.intro {
  font-size: 18px;
  color: #2c5f8d;
  font-weight: 600;
  background: rgba(212, 175, 55, 0.1);
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #d4af37;
  margin-bottom: 32px;
}

.disclaimer-main {
  background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
  border: 2px solid #d4af37;
  padding: 32px;
  border-radius: 12px;
  margin-bottom: 40px;
}

.disclaimer-main p {
  color: #1e3a5f;
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
}

/* ===================================
   FOOTER
   =================================== */
footer {
  background: linear-gradient(135deg, #1e3a5f 0%, #0f1f3a 100%);
  color: #e8f0f8;
  padding: 60px 20px 32px;
  border-top: 4px solid #d4af37;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.footer-section {
  flex: 1 1 250px;
}

.footer-section h3 {
  color: #d4af37;
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.footer-section p {
  color: #cbd5e0;
  line-height: 1.8;
  margin-bottom: 12px;
}

.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 32px 0;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  margin-bottom: 24px;
}

.footer-nav a {
  color: #cbd5e0;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-nav a:hover {
  color: #d4af37;
}

.copyright {
  text-align: center;
  color: #94a3b8;
  font-size: 14px;
  margin: 0;
}

/* ===================================
   COOKIE CONSENT BANNER
   =================================== */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1e3a5f 0%, #2c5f8d 100%);
  color: #ffffff;
  padding: 24px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.3);
  z-index: 999;
  border-top: 3px solid #d4af37;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-consent.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1 1 400px;
  font-size: 14px;
  line-height: 1.6;
  color: #e8f0f8;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}

.cookie-accept {
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
  color: #1e3a5f;
}

.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.cookie-reject,
.cookie-settings {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}

.cookie-reject:hover,
.cookie-settings:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1002;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.cookie-modal.show {
  opacity: 1;
  pointer-events: auto;
}

.cookie-modal-content {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cookie-modal.show .cookie-modal-content {
  transform: scale(1);
}

.cookie-modal h2 {
  color: #1e3a5f;
  margin-bottom: 24px;
}

.cookie-category {
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
  margin-bottom: 16px;
  border-left: 4px solid #d4af37;
}

.cookie-category h3 {
  color: #2c5f8d;
  font-size: 18px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.3s;
  border-radius: 26px;
}

.cookie-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

input:checked + .cookie-slider {
  background-color: #d4af37;
}

input:checked + .cookie-slider:before {
  transform: translateX(24px);
}

input:disabled + .cookie-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ===================================
   FORM STYLES
   =================================== */
.form-placeholder {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 48px;
  border-radius: 12px;
  text-align: center;
  border: 2px dashed #d4af37;
  margin-top: 32px;
}

.form-placeholder p {
  color: #4a5568;
  font-size: 16px;
  margin-bottom: 16px;
}

/* ===================================
   THANK YOU PAGE
   =================================== */
.thank-you-hero {
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
  color: #1e3a5f;
  padding: 100px 20px;
  text-align: center;
}

.thank-you-hero h1 {
  color: #1e3a5f;
  font-size: 56px;
  margin-bottom: 16px;
}

.subheadline {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}

.message {
  font-size: 18px;
  margin-bottom: 0;
}

.steps-list {
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(30, 58, 95, 0.1);
  max-width: 700px;
  margin: 32px auto;
  counter-reset: step-counter;
  list-style: none;
}

.steps-list li {
  counter-increment: step-counter;
  padding: 20px 20px 20px 60px;
  position: relative;
  margin-bottom: 20px;
  border-left: 3px solid #d4af37;
  color: #4a5568;
}

.steps-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
  color: #1e3a5f;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.steps-list li:last-child {
  margin-bottom: 0;
}

.urgent {
  background: rgba(212, 175, 55, 0.1);
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #d4af37;
  font-weight: 600;
  color: #1e3a5f;
  margin-top: 24px;
}

.return-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* ===================================
   AVAILABILITY & CONTACT INFO
   =================================== */
.availability,
.contact-info {
  text-align: center;
  font-size: 14px;
  color: #cbd5e0;
  margin-top: 24px;
}

.contact-detail {
  font-size: 20px;
  font-weight: 700;
  color: #d4af37;
  margin: 16px 0;
}

/* ===================================
   FAQ SECTION
   =================================== */
.faq-item {
  background: #ffffff;
  padding: 24px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(30, 58, 95, 0.08);
  border-left: 4px solid #d4af37;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 16px rgba(30, 58, 95, 0.12);
  transform: translateX(4px);
}

.faq-item h3 {
  color: #1e3a5f;
  font-size: 18px;
  margin-bottom: 12px;
}

.faq-item p {
  color: #4a5568;
  margin-bottom: 0;
}

/* ===================================
   RESPONSIVE DESIGN - MOBILE
   =================================== */
@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  .page-hero h1 {
    font-size: 36px;
  }
  
  /* Navigation */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Header */
  .header-content {
    justify-content: center;
  }
  
  .logo {
    height: 48px;
  }
  
  /* Sections */
  .section {
    padding: 40px 16px;
    margin-bottom: 40px;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .page-hero {
    padding: 60px 20px;
  }
  
  /* Cards */
  .service-card,
  .segment,
  .contact-method,
  .package,
  .stat,
  .resource {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .service-cards,
  .audience-segments,
  .contact-grid,
  .packages-grid,
  .stats-grid,
  .resources-grid {
    flex-direction: column;
  }
  
  /* Buttons */
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  /* Trust badges */
  .trust-badges {
    flex-direction: column;
    gap: 12px;
  }
  
  .trust-badges span {
    width: 100%;
    text-align: center;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-nav {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  
  /* Cookie consent */
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Legal pages */
  .legal-content {
    padding: 24px;
  }
  
  /* Stats */
  .stat {
    min-width: 100%;
  }
  
  .stat-number {
    font-size: 40px;
  }
  
  /* Thank you page */
  .thank-you-hero h1 {
    font-size: 36px;
  }
  
  .steps-list {
    padding: 20px;
  }
  
  .steps-list li {
    padding-left: 50px;
  }
  
  .return-links {
    flex-direction: column;
  }
}

/* ===================================
   TABLET RESPONSIVE
   =================================== */
@media (min-width: 769px) and (max-width: 1024px) {
  .service-card,
  .segment,
  .package {
    flex: 1 1 calc(50% - 24px);
  }
  
  .stat {
    flex: 1 1 calc(50% - 24px);
  }
  
  h1 {
    font-size: 42px;
  }
  
  .hero h1 {
    font-size: 48px;
  }
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.text-center {
  text-align: center;
}

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInFromRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* ===================================
   PRINT STYLES
   =================================== */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  header,
  footer {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  .section {
    box-shadow: none;
    border: 1px solid #ccc;
  }
}