/* ========== VARIABLES ========== */
:root {
  --primary: #1A2F5A;
  --secondary: #244DA8;
  --green: #0B7A4A;
  --gold: #B8924A;
  --gold-light: #d4aa6a;
  --bg: #F8F5EF;
  --white: #ffffff;
  --text: #222222;
  --text-light: #555555;
  --border: #e0d9cf;
  --card-shadow: 0 4px 24px rgba(26,47,90,0.10);
  --card-shadow-hover: 0 12px 40px rgba(26,47,90,0.18);
}

/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', 'Cairo', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: all 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.gold { color: var(--gold); }
.center { text-align: center; }
.center-btn { text-align: center; margin-top: 48px; }

/* ========== TYPOGRAPHY ========== */
h1, h2, h3 { font-family: 'Playfair Display', serif; color: var(--primary); line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: 8px; }

.section-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title { margin-bottom: 48px; }

/* ========== BUTTONS ========== */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  padding: 14px 32px;
  border-radius: 4px;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: all 0.3s;
}
.btn-primary:hover { background: transparent; color: var(--gold); }
.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 4px;
  border: 2px solid rgba(255,255,255,0.7);
  cursor: pointer;
  transition: all 0.3s;
}
.btn-outline:hover { background: var(--white); color: var(--primary); }
.btn-large { padding: 18px 48px; font-size: 1.05rem; }
.btn-nav {
  background: var(--gold);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.9rem;
}
.btn-nav:hover { background: var(--primary); }

/* ========== HEADER / NAV ========== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26,47,90,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184,146,74,0.3);
  transition: all 0.3s;
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 24px;
}
.logo-mark {
  display: flex;
  align-items: center;
  gap: 14px;
}
.logo-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--white);
}
.logo-icon img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-en { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.1rem; color: var(--white); letter-spacing: 2px; }
.logo-sub { font-size: 0.6rem; color: rgba(255,255,255,0.6); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 2px; }
.logo-ar { font-family: 'Cairo', sans-serif; font-size: 0.62rem; color: var(--gold-light); margin-top: 3px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.nav-links li a {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 4px;
  transition: all 0.3s;
}
.nav-links li a:hover, .nav-links li a.active { color: var(--white); background: rgba(255,255,255,0.1); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0a1628 0%, #1A2F5A 50%, #0B3530 100%);
}
.hero-overlay {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(184,146,74,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(36,77,168,0.2) 0%, transparent 50%),
    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='%23B8924A' 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");
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 80px;
  max-width: 820px;
}
.hero-badge {
  display: inline-block;
  background: rgba(184,146,74,0.2);
  border: 1px solid rgba(184,146,74,0.5);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: fadeInUp 0.8s ease both;
}
.hero-title {
  color: var(--white);
  margin-bottom: 16px;
  animation: fadeInUp 0.8s ease 0.1s both;
}
.hero-title-ar {
  font-family: 'Cairo', sans-serif;
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.2s both;
  direction: rtl;
}
.hero-sub {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease 0.3s both;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.4s both;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 1.4rem;
  animation: bounce 2s infinite;
  z-index: 2;
}

/* ========== INTRO SECTION ========== */
.intro-section { background: var(--white); }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro-text h2 { margin-bottom: 20px; }
.intro-text p { color: var(--text-light); margin-bottom: 16px; }
.intro-text .btn-primary { margin-top: 12px; }

.intro-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.stat-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  padding: 28px 24px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s;
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--card-shadow-hover); }
.stat-number { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 900; color: var(--primary); }
.stat-label { font-size: 0.85rem; color: var(--text-light); font-weight: 600; margin-top: 4px; text-transform: uppercase; letter-spacing: 1px; }

/* ========== WHY SECTION ========== */
.why-section { background: var(--bg); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--secondary));
  transform: scaleX(0);
  transition: transform 0.3s;
}
.why-card:hover::before { transform: scaleX(1); }
.why-card:hover { transform: translateY(-6px); box-shadow: var(--card-shadow-hover); }
.why-icon { font-size: 2.2rem; margin-bottom: 16px; }
.why-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.why-card p { color: var(--text-light); font-size: 0.9rem; }

/* ========== SERVICES SECTION ========== */
.services-section { background: var(--primary); }
.services-section .section-label,
.services-section .section-title { color: var(--white); }
.services-section .section-label { color: var(--gold-light); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
}
.service-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-4px); border-color: rgba(184,146,74,0.5); }
.svc-icon { font-size: 2.5rem; margin-bottom: 16px; }
.service-card h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 10px; }
.service-card p { color: rgba(255,255,255,0.65); font-size: 0.88rem; margin-bottom: 20px; }
.service-card a { color: var(--gold-light); font-weight: 700; font-size: 0.88rem; letter-spacing: 0.5px; }
.service-card a:hover { color: var(--white); }

/* ========== NATIONALITIES ========== */
.nations-section { background: var(--white); }
.nations-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 16px;
}
.nation-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary);
  transition: all 0.3s;
  cursor: pointer;
}
.nation-chip:hover { background: var(--primary); color: var(--white); border-color: var(--primary); transform: translateY(-2px); }
.nation-chip span { font-size: 1.4rem; }

/* ========== TESTIMONIALS ========== */
.testimonials-section { background: var(--bg); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px 28px;
  position: relative;
  transition: all 0.3s;
}
.testi-card:hover { box-shadow: var(--card-shadow-hover); transform: translateY(-4px); }
.testi-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testi-card p { color: var(--text-light); font-style: italic; margin-bottom: 20px; font-size: 0.95rem; line-height: 1.8; }
.testi-author { display: flex; flex-direction: column; gap: 2px; }
.testi-author strong { color: var(--primary); font-size: 0.95rem; }
.testi-author span { color: var(--gold); font-size: 0.8rem; font-weight: 600; }

/* ========== CTA ========== */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, #0d1e3d 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(184,146,74,0.15) 0%, transparent 70%);
}
.cta-content { position: relative; z-index: 1; }
.cta-section h2 { color: var(--white); font-size: 2.4rem; margin-bottom: 8px; }
.cta-ar { font-family: 'Cairo', sans-serif; color: var(--gold-light); font-size: 1.1rem; margin-bottom: 16px; direction: rtl; }
.cta-section p { color: rgba(255,255,255,0.7); margin-bottom: 36px; font-size: 1.05rem; }
.cta-contact {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.cta-contact a { color: rgba(255,255,255,0.7); font-size: 0.95rem; font-weight: 600; }
.cta-contact a:hover { color: var(--gold-light); }

/* ========== FOOTER ========== */
.site-footer {
  background: #0a1628;
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand p { font-size: 0.88rem; margin-top: 20px; line-height: 1.7; }
.footer-ar { font-family: 'Cairo', sans-serif; color: var(--gold-light); font-size: 0.85rem; margin-top: 8px !important; direction: rtl; }
.footer-logo .logo-icon { width: 44px; height: 44px; }

.footer-col h4 { color: var(--white); font-family: 'Playfair Display', serif; font-size: 1rem; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.6); font-size: 0.88rem; transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--gold-light); }
.contact-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 0.88rem; margin-bottom: 10px; }

.footer-bottom {
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin-bottom: 4px; }

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: all 0.3s;
  animation: pulse-green 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.7); color: var(--white); }
.whatsapp-float svg { width: 30px; height: 30px; }

/* ========== PAGE HERO (inner pages) ========== */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #0d1e3d 100%);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(184,146,74,0.12) 0%, transparent 70%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.05rem; }
.page-hero .section-label { margin-bottom: 8px; }

/* ========== ABOUT PAGE ========== */
.about-story { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text h2 { margin-bottom: 20px; }
.about-text p { color: var(--text-light); margin-bottom: 16px; }

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mvv-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--gold);
  border-radius: 10px;
  padding: 36px 28px;
  text-align: center;
}
.mvv-card .mvv-icon { font-size: 2.5rem; margin-bottom: 16px; }
.mvv-card h3 { margin-bottom: 12px; }
.mvv-card p { color: var(--text-light); font-size: 0.9rem; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 20px;
}
.value-chip {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 20px 16px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

/* ========== SERVICES PAGE ========== */
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.svc-full-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
}
.svc-full-card:hover { transform: translateY(-6px); box-shadow: var(--card-shadow-hover); }
.svc-card-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  background: linear-gradient(135deg, var(--bg), #e8e2d8);
}
.svc-card-body { padding: 24px; }
.svc-card-body h3 { margin-bottom: 10px; }
.svc-card-body p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 20px; }
.svc-card-body a { color: var(--gold); font-weight: 700; font-size: 0.88rem; }
.svc-card-body a:hover { color: var(--primary); }

/* ========== NATIONALITIES PAGE ========== */
.nationality-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.nat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
  text-align: center;
  transition: all 0.3s;
}
.nat-card:hover { transform: translateY(-6px); box-shadow: var(--card-shadow-hover); border-color: var(--gold); }
.nat-flag { font-size: 3rem; margin-bottom: 12px; }
.nat-card h3 { margin-bottom: 16px; color: var(--primary); }
.nat-info { text-align: left; }
.nat-info dt { font-weight: 700; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); margin-top: 10px; }
.nat-info dd { color: var(--text-light); font-size: 0.88rem; margin-top: 2px; }

/* ========== PROFILES PAGE ========== */
.profiles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.profile-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
}
.profile-card:hover { transform: translateY(-6px); box-shadow: var(--card-shadow-hover); }
.profile-avatar {
  height: 160px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: rgba(255,255,255,0.3);
  position: relative;
}
.profile-nat-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
}
.profile-body { padding: 20px; }
.profile-body h3 { font-size: 1rem; margin-bottom: 6px; }
.profile-meta { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.profile-tag {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 3px 10px;
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 600;
}
.profile-skills { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.skill-tag {
  background: rgba(11,122,74,0.1);
  color: var(--green);
  border-radius: 4px;
  padding: 3px 10px;
  font-size: 0.75rem;
  font-weight: 700;
}
.profile-intro { color: var(--text-light); font-size: 0.85rem; line-height: 1.6; margin-bottom: 16px; }
.profile-body .btn-primary { width: 100%; text-align: center; font-size: 0.88rem; padding: 11px 16px; }

/* ========== APPOINTMENT PAGE ========== */
.appt-section { background: var(--white); }
.appt-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}
.appt-info h2 { margin-bottom: 20px; }
.appt-info p { color: var(--text-light); margin-bottom: 24px; }
.appt-details { display: flex; flex-direction: column; gap: 16px; }
.appt-detail-item { display: flex; align-items: flex-start; gap: 14px; padding: 16px; background: var(--bg); border-radius: 8px; border-left: 3px solid var(--gold); }
.appt-detail-item .detail-icon { font-size: 1.4rem; flex-shrink: 0; }
.appt-detail-item strong { display: block; font-size: 0.85rem; color: var(--primary); font-weight: 700; margin-bottom: 2px; }
.appt-detail-item span { color: var(--text-light); font-size: 0.88rem; }

.appt-form {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
}
.appt-form h3 { margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 700; font-size: 0.85rem; color: var(--primary); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.3s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,146,74,0.1); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.appt-form .btn-primary { width: 100%; text-align: center; font-size: 1rem; padding: 16px; }

/* ========== CONTACT PAGE ========== */
.contact-section { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-cards { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  border-left: 4px solid var(--gold);
  transition: all 0.3s;
}
.contact-card:hover { box-shadow: var(--card-shadow); }
.cc-icon { font-size: 1.6rem; flex-shrink: 0; }
.cc-body h4 { color: var(--primary); font-family: 'Playfair Display', serif; font-size: 0.95rem; margin-bottom: 4px; }
.cc-body a, .cc-body p { color: var(--text-light); font-size: 0.9rem; display: block; margin-bottom: 2px; }
.cc-body a:hover { color: var(--gold); }
.contact-form { background: var(--bg); border: 1px solid var(--border); border-radius: 12px; padding: 36px; }
.contact-form h3 { margin-bottom: 24px; }
.map-embed { margin-top: 40px; border-radius: 12px; overflow: hidden; border: 1px solid var(--border); }
.map-embed iframe { width: 100%; height: 300px; border: none; display: block; }

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,0.8); }
}
.fade-in { opacity: 0; transform: translateY(20px); transition: all 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .intro-grid, .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-grid, .services-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .services-full-grid, .nationality-grid, .profiles-grid { grid-template-columns: repeat(2, 1fr); }
  .mvv-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .appt-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(26,47,90,0.98);
    flex-direction: column;
    padding: 20px;
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links li a { display: block; padding: 12px 16px; }
  .navbar { position: relative; }

  .why-grid, .services-grid, .testimonials-grid,
  .services-full-grid, .nationality-grid, .profiles-grid { grid-template-columns: 1fr; }
  .intro-stats { grid-template-columns: 1fr 1fr; }
  .mvv-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn-primary, .hero-btns .btn-outline { text-align: center; }
  .cta-contact { flex-direction: column; gap: 16px; }
}
