/* ───────────── 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 faq.html) ───────────── */
.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); }

/* ✅ FIXED: Explicit White Color for CTA Button */
.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 & CONTACT SECTION ───────────── */
.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; }

.contact-section { padding: 5rem 0; background: var(--cream); }
.contact-header { text-align: center; margin-bottom: 3rem; }
.contact-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; color: var(--navy); margin-bottom: 1rem; }
.contact-subtitle { font-size: 1.1rem; color: var(--gray); max-width: 650px; margin: 0 auto; line-height: 1.7; }
.contact-wrapper { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; margin-top: 2rem; }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.info-card { background: var(--white); padding: 1.5rem; border-radius: 8px; box-shadow: var(--shadow); display: flex; gap: 1rem; align-items: flex-start; transition: transform 0.3s, box-shadow 0.3s; border-left: 4px solid var(--gold); }
.info-card:hover { transform: translateX(5px); box-shadow: var(--shadow-lg); }
.info-icon { width: 50px; height: 50px; background: linear-gradient(135deg, var(--gold), var(--gold-light)); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-icon i { color: var(--white); font-size: 1.2rem; }
.info-content h3 { color: var(--navy); font-size: 1rem; margin-bottom: 0.3rem; font-family: 'DM Sans', sans-serif; font-weight: 600; }
.info-content p, .info-content a { color: var(--gray); font-size: 0.9rem; line-height: 1.5; }
.info-content a { color: var(--gold); text-decoration: none; transition: color 0.25s; }
.info-content a:hover { color: var(--gold-light); }

.contact-social { background: var(--white); padding: 1.5rem; border-radius: 8px; box-shadow: var(--shadow); margin-top: 1rem; }
.contact-social h3 { color: var(--navy); font-size: 1rem; margin-bottom: 1rem; font-family: 'DM Sans', sans-serif; font-weight: 600; }
.social-links { display: flex; gap: 0.8rem; }
.social-link { width: 40px; height: 40px; background: linear-gradient(135deg, var(--gold), var(--gold-light)); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); text-decoration: none; transition: all 0.25s; }
.social-link:hover { transform: translateY(-3px); box-shadow: 0 4px 12px rgba(184,148,42,0.4); }

.contact-form-container { background: var(--white); padding: 2.5rem; border-radius: 12px; box-shadow: var(--shadow-lg); }
.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label { font-weight: 600; font-size: 0.9rem; color: var(--navy); font-family: 'DM Sans', sans-serif; }
.form-group .required { color: var(--nav-red); }
.form-group input, .form-group select, .form-group textarea { padding: 0.9rem 1.2rem; border: 2px solid #e5e7eb; border-radius: 6px; font-size: 0.95rem; font-family: 'DM Sans', sans-serif; transition: all 0.25s; background: var(--white); color: var(--navy); width: 100%; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,148,42,0.15); }
.form-group input::placeholder, .form-group textarea::placeholder { color: #9ca3af; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.checkbox-group { flex-direction: row; align-items: flex-start; gap: 0.8rem; }
.checkbox-group input { width: 18px; height: 18px; margin-top: 0.2rem; cursor: pointer; accent-color: var(--gold); }
.checkbox-group label { font-weight: 400; font-size: 0.85rem; color: var(--gray); line-height: 1.5; cursor: pointer; }

.btn-submit { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--white); border: none; padding: 1rem 2rem; border-radius: 6px; font-size: 1rem; font-weight: 600; font-family: 'DM Sans', sans-serif; letter-spacing: 0.05em; text-transform: uppercase; cursor: pointer; transition: all 0.25s; display: flex; align-items: center; justify-content: center; gap: 0.8rem; margin-top: 0.5rem; min-height: 48px; }
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(184,148,42,0.4); }
.btn-submit:active { transform: translateY(0); }

.form-success { display: none; background: linear-gradient(135deg, #dcfce7, #bbf7d0); border: 2px solid #86efac; border-radius: 8px; padding: 1.5rem; color: #166534; font-size: 0.95rem; margin-top: 1rem; align-items: center; gap: 1rem; }
.form-success.show { display: flex; animation: slideDown 0.3s ease; }
.form-success i { font-size: 1.5rem; color: #16a34a; }
@keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

.map-section { padding: 0; }
.map-section iframe { width: 100%; height: 400px; display: block; }

/* ───────────── FOOTER ───────────── */
.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-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 0.6rem; }
.footer-bottom { border-top: 1px solid rgba(238, 231, 231, 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; }

/* ───────────── RESPONSIVE ───────────── */
@media (max-width: 992px) {
  .container, .top-bar-content, .header-content { padding: 0 40px; }
  .contact-wrapper { grid-template-columns: 1fr; gap: 2rem; }
  .contact-info { order: 2; }
  .contact-form-container { order: 1; }
}
@media (max-width: 768px) {
  .top-bar { display: none !important; }
  .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; }
  .nav-menu { display: none; }
  .mobile-menu-toggle { display: flex; }
  #mobileMenu { top: 70px !important; max-height: calc(100vh - 70px) !important; }
  .page-banner { margin-top: 0 !important; padding-top: 70px !important; }
  .form-row { grid-template-columns: 1fr; gap: 1rem; }
  .contact-form-container { padding: 1.5rem; }
  .header-actions .lang-btn span { display: none; }
  .header-actions .lang-btn { padding: 0.4rem; }
  .lang-dropdown-content { right: -30px; min-width: 240px; }
  .info-card { padding: 1.2rem; }
  .map-section iframe { height: 300px; }
}
@media (max-width: 480px) {
  .lang-dropdown-content { right: -50px; }
}
[dir="rtl"] .info-card { border-left: none; border-right: 4px solid var(--gold); }
[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;
}