/* ───────────── CSS VARIABLES & RESET ──────────── */
:root {
  --navy: #0d1b2a; --navy-dark: #07111c; --gold: #b8942a; --gold-light: #e8c45c;
  --cream: #f8f4ec; --white: #ffffff; --gray: #6b7280; --border: rgba(184,148,42,0.25);
  --shadow: 0 4px 20px rgba(0,0,0,0.1); --shadow-lg: 0 16px 48px rgba(0,0,0,0.15); --nav-red: #d9534f;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--white); color: var(--navy); overflow-x: hidden; line-height: 1.6; }
h1, h2, h3, h4, h5, h6 { font-family: 'Cormorant Garamond', serif; font-weight: 500; line-height: 1.2; color: var(--white); }
p, span, li, a { color: var(--navy); }
a { text-decoration: none; transition: color 0.25s; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 60px; width: 100%; }

/* ───────────── TOP BAR & HEADER (Matches contact.css) ───────────── */
.top-bar { background: var(--navy-dark); color: var(--white); padding: 0.4rem 0; font-size: 0.8rem; position: fixed; top: 0; left: 0; right: 0; z-index: 1001; transition: transform 0.3s ease; }
.top-bar-content { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; padding: 0 60px; flex-wrap: wrap; gap: 1rem; }
.top-bar-info { display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; }
.top-bar-info span { display: flex; align-items: center; gap: 0.4rem; color: var(--white); }
.top-bar-info i { color: var(--gold); }

.header { background: var(--white); position: fixed; top: 32px; left: 0; right: 0; z-index: 1000; transition: all 0.4s ease; box-shadow: 0 2px 10px rgba(0,0,0,0.05); border-bottom: 1px solid #eee; }
.header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.header-content { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; padding: 0 60px; height: 90px; }
.logo img { height: 65px; width: auto; }

.nav-menu { display: flex; list-style: none; gap: 1.5rem; align-items: center; height: 100%; flex: 1; justify-content: center; }
.nav-menu li { height: 100%; display: flex; align-items: center; }
.nav-menu a { text-decoration: none; color: var(--gray); font-size: 0.9rem; font-weight: 500; letter-spacing: 0.02em; transition: color 0.25s; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; position: relative; padding: 0; }
.nav-num { font-size: 0.75rem; font-weight: 400; color: #9ca3af; margin-bottom: 2px; transition: color 0.25s; }
.nav-menu a:hover { color: var(--navy); }
.nav-menu a:hover .nav-num { color: var(--navy); }
.nav-menu a.active { color: var(--navy) !important; font-weight: 600; }
.nav-menu a.active .nav-num { color: var(--navy) !important; }
.nav-menu a.active::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px; background: var(--nav-red); }

.btn-cta { background: var(--gold); color: #ffffff !important; padding: 0.6rem 1.4rem !important; border-radius: 2px; font-weight: 600; transition: all 0.25s; display: flex !important; margin-left: 1rem; }
.btn-cta .nav-num { display: none; }
.btn-cta::after { display: none !important; }
.btn-cta:hover { background: var(--gold-light); color: var(--navy) !important; transform: translateY(-2px); }

.header-actions { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
.language-dropdown { position: relative; }
.lang-btn { background: transparent; border: 1px solid #e5e7eb; color: var(--navy); padding: 0.4rem 0.8rem; border-radius: 4px; cursor: pointer; font-size: 0.85rem; font-weight: 600; display: flex; align-items: center; gap: 0.6rem; transition: all 0.2s; min-height: 44px; }
.lang-btn:hover { background: var(--cream); }
.flag-icon { width: 22px; height: 16px; object-fit: cover; border-radius: 2px; box-shadow: 0 1px 3px rgba(0,0,0,0.2); }
.lang-btn i { font-size: 0.7rem; margin-left: 0.3rem; transition: transform 0.2s; }
.lang-dropdown-content { display: none; position: absolute; top: 110%; right: 0; background: var(--white); min-width: 240px; max-height: 450px; overflow-y: auto; border-radius: 6px; box-shadow: var(--shadow-lg); z-index: 1002; border: 1px solid #e5e7eb; margin-top: 0.5rem; }
.lang-dropdown-content.show { display: block; }
.lang-option { display: flex; align-items: center; gap: 1rem; padding: 0.8rem 1.2rem; cursor: pointer; color: var(--navy); font-size: 0.9rem; transition: background 0.2s; border-bottom: 1px solid #f3f4f6; }
.lang-option:last-child { border-bottom: none; }
.lang-option:hover { background: #f9fafb; }
.lang-option .flag-icon { width: 26px; height: 18px; }

.mobile-menu-toggle { display: none; background: none; border: 1px solid rgba(0,0,0,0.1); font-size: 1.7rem; cursor: pointer; color: var(--navy); padding: 0.4rem 0.6rem; border-radius: 2px; min-height: 44px; min-width: 44px; }
#mobileMenu { display: none; position: fixed; top: 122px; left: 0; right: 0; background: var(--white); padding: 1rem; z-index: 999; box-shadow: var(--shadow); border-bottom: 1px solid #eee; max-height: calc(100vh - 122px); overflow-y: auto; }
#mobileMenu.active { display: block; }
#mobileMenu a { display: block; padding: 1rem 0; color: var(--navy); text-decoration: none; border-bottom: 1px solid #f8f9fa; min-height: 44px; }
#mobileMenu a .nav-num { display: inline; margin-right: 10px; margin-bottom: 0; }

/* ───────────── PAGE BANNER & FOOTER ───────────── */
.page-banner { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%); color: var(--white); padding: 2rem 0 1rem; text-align: center; margin-top: 122px; }
.page-banner h1 { font-size: 2.2rem; margin-bottom: 0.8rem; color: var(--white); }
.breadcrumb { display: flex; justify-content: center; gap: 0.4rem; list-style: none; font-size: 0.9rem; }
.breadcrumb a { color: var(--gold-light); text-decoration: none; }
.footer { background: var(--navy-dark); color: rgba(255,255,255,0.7); padding: 4rem 0 2rem; }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-section h3 { color: var(--gold); margin-bottom: 1.2rem; font-size: 1.2rem; }
.footer-section p, .footer-section a { line-height: 1.7; font-size: 0.9rem; color: rgba(255,255,255,0.7); }
.footer-section a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; text-align: center; font-size: 0.85rem; color: var(--white); }
.footer-bottom a { color: var(--white); text-decoration: none; margin: 0 0.8rem; transition: color 0.25s; }
.footer-bottom p { color: var(--white); text-decoration: none; margin: 0 0.8rem; transition: color 0.25s; }

/* ───────────── FAQ SPECIFIC STYLES ───────────── */
.faq-section { padding: 5rem 0; background: var(--white); }
.faq-header { text-align: center; margin-bottom: 3rem; }
.faq-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; color: var(--navy); margin-bottom: 1rem; }
.faq-subtitle { font-size: 1.1rem; color: var(--gray); max-width: 650px; margin: 0 auto; line-height: 1.7; }
.faq-container { max-width: 900px; margin: 0 auto; }
.faq-item { background: var(--white); margin-bottom: 1rem; border-radius: 8px; overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); transition: box-shadow 0.3s ease; }
.faq-item:hover { box-shadow: var(--shadow-lg); }
.faq-question { padding: 1.5rem 2rem; background: var(--white); cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600; color: var(--navy); font-size: 1.05rem; transition: background 0.2s; min-height: 44px; }
.faq-question:hover { background: var(--cream); }
.faq-question .icon { font-size: 1.2rem; color: var(--gold); transition: transform 0.3s; flex-shrink: 0; margin-left: 1rem; }
.faq-item.active .faq-question .icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out, padding 0.3s; padding: 0 2rem; }
.faq-item.active .faq-answer { max-height: 1000px; padding: 0 2rem 1.5rem; }
.faq-answer p { color: var(--gray); font-size: 0.95rem; line-height: 1.8; margin: 0; }
.faq-answer ul { margin: 1rem 0; padding-left: 1.5rem; color: var(--gray); }
.faq-answer li { margin-bottom: 0.5rem; line-height: 1.6; }
.faq-cta { background: var(--cream); padding: 4rem 0; text-align: center; margin-top: 3rem; }
.faq-cta h2 { font-family: 'Cormorant Garamond', serif; color: var(--navy); font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 400; margin-bottom: 1rem; }
.faq-cta p { color: var(--gray); max-width: 600px; margin: 0 auto 1.5rem; font-size: 1.05rem; line-height: 1.7; }
.btn-faq-cta { background: var(--gold); color: var(--white); border: none; padding: 1rem 2.5rem; font-size: 0.9rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; border-radius: 2px; text-decoration: none; display: inline-block; transition: all 0.25s; min-height: 48px; }
.btn-faq-cta:hover { background: var(--navy); transform: translateY(-2px); box-shadow: var(--shadow); }

/* ───────────── RESPONSIVE ──────────── */
@media (max-width: 992px) { 
  .container, .top-bar-content, .header-content { padding: 0 40px; } 
}
@media (max-width: 768px) {
  /* 1. Hide top bar on mobile */
  .top-bar { display: none !important; }
  
  /* 2. Move header to top */
  .header { top: 0 !important; box-shadow: 0 2px 10px rgba(0,0,0,0.08); }
  .header-content { height: 70px; padding: 0 20px; }
  .logo img { height: 50px; }
  
  /* 3. Hide desktop nav, show mobile toggle */
  .nav-menu { display: none; }
  .mobile-menu-toggle { display: flex; }
  
  /* 4. Mobile menu positioning */
  #mobileMenu { top: 70px !important; max-height: calc(100vh - 70px) !important; }
  
  /* 5. Adjust page banner */
  .page-banner { margin-top: 0 !important; padding-top: 70px !important; }
  
  /* 6. HIDE 'Get Started' button in header on mobile (Matches Contact.html) */
  .header-actions .btn-cta { display: none !important; }
  
  /* 7. Language dropdown adjustments */
  .header-actions .lang-btn span { display: none; }
  .header-actions .lang-btn { padding: 0.4rem; }
  .lang-dropdown-content { right: -30px; min-width: 240px; }
  
  /* FAQ specific adjustments */
  .faq-section { padding: 3rem 0; }
  .faq-question { padding: 1.2rem 1.5rem; font-size: 0.95rem; }
  .faq-answer { padding: 0 1.5rem; }
  .faq-item.active .faq-answer { padding: 0 1.5rem 1.2rem; }
  .faq-cta { padding: 3rem 0; }
}
@media (max-width: 480px) { 
  .lang-dropdown-content { right: -50px; } 
}
[dir="rtl"] .faq-question .icon { margin-left: 0; margin-right: 1rem; }
[dir="rtl"] .faq-answer ul { padding-left: 0; padding-right: 1.5rem; }
[dir="rtl"] .lang-dropdown-content { right: auto; left: 0; }

/* ───────────── FOOTER SOCIAL ICONS ───────────── */
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.2rem; }
.footer-social a { 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  width: 38px; 
  height: 38px; 
  border-radius: 50%; 
  background: rgba(255,255,255,0.1); 
  color: rgba(255,255,255,0.8); 
  transition: all 0.25s ease; 
}
.footer-social a:hover { 
  background: var(--gold); 
  color: var(--navy-dark) !important; 
  transform: translateY(-2px); 
}
.footer-social i { font-size: 1rem; }

/* ───────────── FOOTER MOBILE STACK ───────────── */
@media (max-width: 768px) {
  .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding-top: 1rem;
  }
  .footer-bottom p {
    margin: 0;
    width: 100%;
  }
  .footer-bottom a {
    display: block;
    margin: 0.2rem 0;
  }
}
/* ───────────── TOP BAR CENTER ALIGN FIX ───────────── */
.top-bar-content {
    justify-content: center !important;
    text-align: center !important;
}