@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
  --navy: #0A1628;
  --navy-light: #132039;
  --navy-mid: #1a2d4a;
  --gold: #C9A84C;
  --gold-light: #e0c76a;
  --gold-dark: #a8893a;
  --white: #FFFFFF;
  --off-white: #F5F3EF;
  --gray-100: #f0ede8;
  --gray-200: #d4d0c8;
  --gray-300: #9a9590;
  --gray-600: #555;
  --gray-800: #2a2a2a;
  --red: #c0392b;
  --green: #27ae60;
  --shadow-sm: 0 2px 8px rgba(10,22,40,0.08);
  --shadow-md: 0 4px 20px rgba(10,22,40,0.12);
  --shadow-lg: 0 8px 40px rgba(10,22,40,0.18);
  --shadow-gold: 0 4px 20px rgba(201,168,76,0.25);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --max-width: 1200px;
}

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

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

body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}
h1 { font-size: clamp(2rem,5vw,3.2rem); }
h2 { font-size: clamp(1.6rem,4vw,2.4rem); }
h3 { font-size: clamp(1.2rem,3vw,1.6rem); }
h4 { font-size: 1.15rem; }

a { color: var(--gold-dark); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold); }

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

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ===== HEADER / NAV ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,22,40,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transition: var(--transition);
}
.site-header.scrolled { background: rgba(10,22,40,0.98); box-shadow: var(--shadow-lg); }

.nav-wrapper {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--max-width); margin: 0 auto; padding: 0 24px; height: 72px;
}

.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: 1.2rem; color: var(--white); text-decoration: none;
}
.logo-icon {
  width: 40px; height: 40px; background: linear-gradient(135deg,var(--gold),var(--gold-dark));
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--navy);
}
.logo span { color: var(--gold); }

.nav-menu { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-menu a {
  color: rgba(255,255,255,0.8); font-size: 0.9rem; font-weight: 500;
  padding: 8px 14px; border-radius: 6px; transition: var(--transition);
  text-decoration: none;
}
.nav-menu a:hover { color: var(--white); background: rgba(201,168,76,0.12); }

.nav-dropdown { position: relative; }
.nav-dropdown .dropdown-menu {
  position: absolute; top: 100%; left: 0; min-width: 260px;
  background: var(--navy-light); border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius); padding: 8px 0;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: var(--transition); box-shadow: var(--shadow-lg);
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a { display: block; padding: 10px 20px; font-size: 0.85rem; border-radius: 0; }
.dropdown-menu a:hover { background: rgba(201,168,76,0.1); }

.nav-cta {
  background: linear-gradient(135deg,var(--gold),var(--gold-dark)) !important;
  color: var(--navy) !important; font-weight: 600 !important;
  padding: 10px 22px !important; border-radius: 6px !important;
}
.nav-cta:hover { box-shadow: var(--shadow-gold); transform: translateY(-1px); }

.mobile-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 32px; height: 32px; position: relative;
}
.mobile-toggle span {
  display: block; width: 24px; height: 2px; background: var(--white);
  position: absolute; left: 4px; transition: var(--transition);
}
.mobile-toggle span:nth-child(1) { top: 8px; }
.mobile-toggle span:nth-child(2) { top: 15px; }
.mobile-toggle span:nth-child(3) { top: 22px; }
.mobile-toggle.active span:nth-child(1) { top: 15px; transform: rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { top: 15px; transform: rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 600px;
  display: flex; align-items: center;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  margin-top: 72px;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.92) 0%, rgba(10,22,40,0.7) 50%, rgba(10,22,40,0.85) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 700px; }
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 .highlight { color: var(--gold); }
.hero p { color: rgba(255,255,255,0.85); font-size: 1.15rem; margin-bottom: 32px; line-height: 1.8; }
.hero-badges {
  display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 32px;
}
.hero-badge {
  display: flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.25);
  padding: 8px 16px; border-radius: 50px; color: var(--gold-light); font-size: 0.85rem; font-weight: 500;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 6px; font-weight: 600;
  font-size: 0.95rem; border: none; cursor: pointer;
  transition: var(--transition); text-decoration: none; font-family: 'Inter', sans-serif;
}
.btn-primary {
  background: linear-gradient(135deg,var(--gold),var(--gold-dark));
  color: var(--navy); box-shadow: var(--shadow-gold);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 30px rgba(201,168,76,0.35); color: var(--navy); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-dark {
  background: var(--navy); color: var(--white);
}
.btn-dark:hover { background: var(--navy-light); transform: translateY(-2px); color: var(--white); }

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section-dark { background: var(--navy); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-alt { background: var(--off-white); }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 48px; }
.section-header .overline {
  display: inline-block; font-size: 0.8rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 2px; color: var(--gold); margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--gray-600); font-size: 1.05rem; }
.section-dark .section-header p { color: rgba(255,255,255,0.7); }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--navy-light); border-bottom: 1px solid rgba(201,168,76,0.1);
  padding: 20px 0;
}
.trust-items {
  display: flex; justify-content: center; gap: 48px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}
.trust-item .icon { font-size: 1.6rem; color: var(--gold); }
.trust-item strong { color: var(--white); font-size: 1.3rem; display: block; }

/* ===== CARDS GRID ===== */
.cards-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}
.card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px; border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition); position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(201,168,76,0.2); }
.card-icon {
  width: 56px; height: 56px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(201,168,76,0.1), rgba(201,168,76,0.05));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 20px;
}
.card h3 { margin-bottom: 12px; font-size: 1.2rem; }
.card p { color: var(--gray-600); font-size: 0.95rem; margin-bottom: 16px; }
.card-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--gold-dark); font-weight: 600; font-size: 0.9rem;
}
.card-link:hover { gap: 10px; }

/* Dark cards */
.section-dark .card {
  background: var(--navy-light); border-color: rgba(201,168,76,0.1);
}
.section-dark .card p { color: rgba(255,255,255,0.65); }
.section-dark .card h3 { color: var(--white); }

/* ===== STATS / COUNTERS ===== */
.stats-grid { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 700;
  color: var(--gold); margin-bottom: 4px;
}
.stat-label { font-size: 0.9rem; color: rgba(255,255,255,0.65); }

/* ===== PROCESS / STEPS ===== */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px,1fr)); gap: 32px; }
.step-item { text-align: center; padding: 24px; position: relative; }
.step-number {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg,var(--gold),var(--gold-dark));
  color: var(--navy); font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.step-item h3 { margin-bottom: 8px; }
.step-item p { color: var(--gray-600); font-size: 0.9rem; }

/* ===== TESTIMONIALS ===== */
.testimonials-slider { position: relative; overflow: hidden; }
.testimonials-track { display: flex; transition: transform 0.5s ease; }
.testimonial-card {
  min-width: 100%; padding: 40px; background: var(--white);
  border-radius: var(--radius-lg); border: 1px solid rgba(0,0,0,0.06);
  text-align: center;
}
.testimonial-stars { color: var(--gold); font-size: 1.3rem; margin-bottom: 20px; }
.testimonial-text {
  font-size: 1.1rem; font-style: italic; color: var(--gray-600);
  max-width: 600px; margin: 0 auto 20px; line-height: 1.8;
}
.testimonial-author { font-weight: 600; color: var(--navy); }
.testimonial-role { font-size: 0.85rem; color: var(--gray-300); }
.slider-dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.slider-dot {
  width: 10px; height: 10px; border-radius: 50%; background: var(--gray-200);
  border: none; cursor: pointer; transition: var(--transition);
}
.slider-dot.active { background: var(--gold); width: 28px; border-radius: 5px; }

/* ===== FAQ ACCORDION ===== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08); overflow: hidden;
}
.faq-question {
  width: 100%; padding: 20px 0; background: none; border: none;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-size: 1.05rem; font-weight: 600;
  color: var(--navy); text-align: left; font-family: 'Inter', sans-serif;
  transition: var(--transition);
}
.faq-question:hover { color: var(--gold-dark); }
.faq-icon { font-size: 1.3rem; color: var(--gold); transition: var(--transition); }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
}
.faq-answer-inner { padding: 0 0 20px; color: var(--gray-600); line-height: 1.8; font-size: 0.95rem; }

/* ===== FORMS ===== */
.form-section { background: var(--navy); padding: 60px; border-radius: var(--radius-lg); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; }
.form-group.full-width { grid-column: 1/-1; }
.form-group label {
  font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.8);
  margin-bottom: 6px;
}
.form-group input, .form-group select, .form-group textarea {
  padding: 14px 16px; border-radius: 6px; border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08); color: var(--white);
  font-family: 'Inter', sans-serif; font-size: 0.95rem;
  transition: var(--transition);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.4); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--gold); background: rgba(255,255,255,0.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select option { background: var(--navy); color: var(--white); }
.consent-label {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.8rem; color: rgba(255,255,255,0.6); cursor: pointer;
}
.consent-label input[type="checkbox"] { margin-top: 3px; accent-color: var(--gold); }
.form-submit { margin-top: 10px; width: 100%; padding: 16px; font-size: 1.05rem; }
.form-success {
  display: none; text-align: center; padding: 40px;
  color: var(--green); font-size: 1.1rem;
}

/* Light form variant */
.form-section-light { background: var(--off-white); }
.form-section-light .form-group label { color: var(--navy); }
.form-section-light .form-group input,
.form-section-light .form-group select,
.form-section-light .form-group textarea {
  background: var(--white); color: var(--gray-800);
  border: 1px solid var(--gray-200);
}
.form-section-light .form-group input::placeholder,
.form-section-light .form-group textarea::placeholder { color: var(--gray-300); }
.form-section-light .form-group input:focus,
.form-section-light .form-group select:focus,
.form-section-light .form-group textarea:focus { border-color: var(--gold); }
.form-section-light .consent-label { color: var(--gray-600); }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 60px; border-radius: var(--radius-lg); text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.7); margin-bottom: 28px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ===== CONTENT LAYOUTS ===== */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.content-block h2 { margin-bottom: 16px; }
.content-block p { color: var(--gray-600); margin-bottom: 16px; }
.content-block ul { list-style: none; margin: 16px 0; }
.content-block ul li {
  padding: 8px 0 8px 28px; position: relative; color: var(--gray-600);
}
.content-block ul li::before {
  content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700;
}
.content-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  padding: 12px 0; font-size: 0.85rem;
  background: var(--off-white); border-bottom: 1px solid rgba(0,0,0,0.05);
}
.breadcrumb-list { display: flex; align-items: center; gap: 8px; list-style: none; flex-wrap: wrap; }
.breadcrumb-list li + li::before { content: '›'; color: var(--gray-300); margin-right: 8px; }
.breadcrumb-list a { color: var(--gray-600); }
.breadcrumb-list a:hover { color: var(--gold-dark); }
.breadcrumb-list .current { color: var(--navy); font-weight: 500; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy); color: rgba(255,255,255,0.7); padding: 60px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p { margin-top: 16px; font-size: 0.9rem; line-height: 1.7; }
.footer-col h4 {
  color: var(--white); font-family: 'Inter', sans-serif;
  font-size: 0.95rem; font-weight: 600; margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; font-size: 0.8rem; flex-wrap: wrap; gap: 12px;
}
.footer-disclaimer {
  text-align: center; padding: 20px 24px; font-size: 0.75rem;
  color: rgba(255,255,255,0.4); border-top: 1px solid rgba(255,255,255,0.05);
  line-height: 1.7;
}

/* ===== PAGE CONTENT ===== */
.page-content { padding: 60px 0; }
.page-content h2 { margin: 40px 0 16px; }
.page-content h3 { margin: 32px 0 12px; }
.page-content p { margin-bottom: 16px; color: var(--gray-600); }
.page-content ul, .page-content ol { margin: 16px 0; padding-left: 24px; }
.page-content li { margin-bottom: 8px; color: var(--gray-600); }

/* Info boxes */
.info-box {
  padding: 24px; border-radius: var(--radius); margin: 24px 0;
  border-left: 4px solid var(--gold); background: rgba(201,168,76,0.05);
}
.info-box h4 { margin-bottom: 8px; color: var(--navy); }
.info-box p { margin-bottom: 0; }

/* Locations grid */
.locations-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 20px; }
.location-card {
  padding: 24px; background: var(--white); border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius); transition: var(--transition);
}
.location-card:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.location-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.location-card p { font-size: 0.9rem; margin-bottom: 12px; }

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.4); }
  50% { box-shadow: 0 0 0 12px rgba(201,168,76,0); }
}
.pulse { animation: pulse-gold 2s infinite; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
    background: var(--navy); flex-direction: column;
    padding: 24px; gap: 4px; align-items: stretch;
    transform: translateX(100%); transition: var(--transition);
  }
  .nav-menu.active { transform: translateX(0); }
  .nav-dropdown .dropdown-menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    background: rgba(255,255,255,0.03); border: none; margin-top: 4px;
    display: none;
  }
  .nav-dropdown.active .dropdown-menu { display: block; }
  .mobile-toggle { display: block; }
  .hero { min-height: 500px; }
  .hero-badges { gap: 8px; }
  .cards-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-section { padding: 32px 20px; }
  .cta-banner { padding: 40px 24px; }
  .stats-grid { gap: 32px; }
  .stat-number { font-size: 2.2rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-items { gap: 24px; }
  .section { padding: 60px 0; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .hero { min-height: 450px; }
}
