/* ============================================================
   GLOBAL RESET & VARIABLES
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --gold-dark: #a07830;
  --navy: #0d1b2e;
  --navy-mid: #152540;
  --navy-light: #1e3a5f;
  --cream: #f8f4ee;
  --cream-dark: #ede8df;
  --white: #ffffff;
  --text: #1a2332;
  --text-mid: #3d5068;
  --text-light: #6b7e94;
  --border: rgba(201,168,76,0.18);
  --shadow-sm: 0 2px 12px rgba(13,27,46,0.08);
  --shadow-md: 0 8px 32px rgba(13,27,46,0.12);
  --shadow-lg: 0 20px 60px rgba(13,27,46,0.18);
  --shadow-gold: 0 8px 32px rgba(201,168,76,0.25);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 900; }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; }

.accent { color: var(--gold); }
a { color: inherit; text-decoration: none; transition: var(--transition); }

/* ============================================================
   LAYOUT
   ============================================================ */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0;
  transition: var(--transition);
}
.navbar::before {
  content: ''; position: absolute; inset: 0;
  background: transparent;
  transition: var(--transition);
}
.navbar.scrolled::before {
  background: rgba(13,27,46,0.96);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(201,168,76,0.15);
}
.nav-container {
  max-width: 1180px; margin: 0 auto; padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between;
  position: relative;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.1rem; color: var(--white);
  letter-spacing: 0.02em;
}
.logo-icon { font-size: 1.5rem; }
.logo-text strong { color: var(--gold); }
.nav-links {
  display: flex; align-items: center; gap: 8px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 600 !important;
  padding: 10px 20px !important;
  border-radius: 50px !important;
}
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg,
    rgba(13,27,46,0.92) 0%,
    rgba(13,27,46,0.75) 50%,
    rgba(13,27,46,0.88) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; color: var(--white);
  max-width: 900px; padding: 120px 24px 80px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-light);
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 10px 20px; border-radius: 50px;
  margin-bottom: 28px;
  animation: fadeDown 0.8s ease both;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.6; transform: scale(1.3); }
}
.hero-title {
  animation: fadeDown 0.8s 0.15s ease both;
  margin-bottom: 24px;
}
.hero-title-accent { color: var(--gold); }
.hero-subtitle {
  font-size: 1.1rem; color: rgba(255,255,255,0.75);
  max-width: 620px; margin: 0 auto 40px;
  font-weight: 300; line-height: 1.8;
  animation: fadeDown 0.8s 0.3s ease both;
}
.hero-actions {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  flex-wrap: wrap; margin-bottom: 64px;
  animation: fadeDown 0.8s 0.45s ease both;
}
.hero-stats {
  display: flex; align-items: center; justify-content: center; gap: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 24px 40px;
  animation: fadeDown 0.8s 0.6s ease both;
}
.stat { text-align: center; padding: 0 32px; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 900; color: var(--gold);
  line-height: 1;
}
.stat-number span { font-size: 1rem; font-weight: 400; margin-left: 2px; }
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-top: 6px; line-height: 1.4; }
.stat-divider { width: 1px; height: 48px; background: rgba(255,255,255,0.15); }
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5); font-size: 0.75rem; letter-spacing: 0.1em;
  animation: fadeDown 1s 1s ease both;
}
.scroll-icon {
  width: 28px; height: 44px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 14px; position: relative;
}
.scroll-icon::after {
  content: '';
  position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px;
  background: var(--gold); border-radius: 2px;
  animation: scrollDot 1.8s ease infinite;
}
@keyframes scrollDot {
  0%   { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(16px); }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Inter', sans-serif; font-size: 0.95rem;
  font-weight: 600; padding: 14px 28px; border-radius: 50px;
  border: none; cursor: pointer; transition: var(--transition);
  text-decoration: none; letter-spacing: 0.02em;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.4);
}
.btn-ghost {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy-light);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--navy);
  padding: 24px 0;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.trust-items {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 32px;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.75); font-size: 0.9rem; font-weight: 500;
}
.trust-item svg { color: var(--gold); flex-shrink: 0; }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-block;
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  padding: 6px 16px; border-radius: 50px;
  margin-bottom: 20px;
}
.section-title { color: var(--navy); margin-bottom: 16px; }
.section-subtitle {
  color: var(--text-mid); font-size: 1.05rem;
  max-width: 560px; margin: 0 auto;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative; overflow: hidden;
  transition: var(--transition);
  opacity: 0; transform: translateY(24px);
  animation: cardIn 0.6s ease forwards;
}
@keyframes cardIn {
  to { opacity: 1; transform: translateY(0); }
}
.service-card:nth-child(1) { animation-delay: 0s; }
.service-card:nth-child(2) { animation-delay: 0.1s; }
.service-card:nth-child(3) { animation-delay: 0.2s; }
.service-card:nth-child(4) { animation-delay: 0.3s; }
.service-card:nth-child(5) { animation-delay: 0.4s; }
.service-card:nth-child(6) { animation-delay: 0.5s; }
.service-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }
.service-card.featured {
  background: linear-gradient(145deg, var(--navy), var(--navy-light));
  color: var(--white); border-color: transparent;
  box-shadow: var(--shadow-md);
}
.service-card.featured h3 { color: var(--white); }
.service-card.featured p { color: rgba(255,255,255,0.75); }
.service-card.featured .service-features li { color: rgba(255,255,255,0.75); }
.service-card.featured .service-icon { background: rgba(201,168,76,0.2); color: var(--gold); }
.featured-badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--gold);
  color: var(--navy); font-size: 0.7rem;
  font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 50px;
}
.service-icon {
  width: 64px; height: 64px;
  background: rgba(201,168,76,0.1);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--gold); color: var(--white); }
.service-card.featured:hover .service-icon { background: var(--gold); color: var(--navy); }
.service-card h3 { color: var(--navy); margin-bottom: 12px; }
.service-card p { color: var(--text-mid); font-size: 0.95rem; margin-bottom: 20px; }
.service-features { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.service-features li {
  font-size: 0.88rem; color: var(--text-mid);
  padding-left: 20px; position: relative;
}
.service-features li::before {
  content: '→'; position: absolute; left: 0;
  color: var(--gold); font-size: 0.85rem;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-section { background: var(--cream-dark); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 80px; align-items: center;
}
.about-image-wrapper { position: relative; }
.about-img {
  width: 100%; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3/4; object-fit: cover;
}
.about-img-badge {
  position: absolute; bottom: 40px; left: -30px;
  background: var(--gold);
  color: var(--navy);
  padding: 20px 28px; border-radius: var(--radius);
  box-shadow: var(--shadow-gold);
  text-align: center;
}
.badge-number { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 900; line-height: 1; }
.badge-text { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.05em; opacity: 0.8; }
.about-img-cert {
  position: absolute; top: 30px; right: -20px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  padding: 12px 20px; border-radius: 50px;
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; font-weight: 600; color: var(--navy);
}
.about-img-cert svg { color: var(--gold); }
.about-content .section-tag { display: inline-block; }
.about-lead {
  font-size: 1.1rem; color: var(--text-mid);
  margin: 24px 0 16px; font-weight: 500; line-height: 1.7;
}
.about-text { color: var(--text-mid); margin-bottom: 32px; }
.about-credentials { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.credential {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.credential-icon { font-size: 1.5rem; flex-shrink: 0; }
.credential-info { display: flex; flex-direction: column; gap: 2px; }
.credential-info strong { font-weight: 600; color: var(--navy); }
.credential-info span { font-size: 0.88rem; color: var(--text-light); }

/* ============================================================
   LANGUAGES
   ============================================================ */
.languages-section { background: var(--navy); }
.languages-section .section-tag { background: rgba(201,168,76,0.15); }
.languages-section .section-title { color: var(--white); }
.languages-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 28px;
}
.lang-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
}
.lang-card:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.lang-flag { font-size: 3.5rem; margin-bottom: 16px; }
.lang-card h3 { color: var(--white); margin-bottom: 12px; }
.lang-card p { color: rgba(255,255,255,0.65); font-size: 0.9rem; margin-bottom: 24px; }
.lang-level {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.8rem; color: rgba(255,255,255,0.5);
}
.lang-bar {
  flex: 1; height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px; overflow: hidden;
}
.lang-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  transition: width 1s ease;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-section { background: var(--cream); }
.pricing-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 24px; margin-bottom: 32px;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  transition: var(--transition);
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card.featured {
  background: linear-gradient(145deg, var(--navy), var(--navy-light));
  border-color: transparent;
  box-shadow: var(--shadow-md);
  transform: scale(1.02);
}
.price-card.featured:hover { transform: scale(1.02) translateY(-4px); }
.price-featured-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy); font-size: 0.75rem;
  font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 20px; border-radius: 50px;
  white-space: nowrap;
}
.price-header { margin-bottom: 32px; }
.price-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; margin-bottom: 12px;
  color: var(--navy);
}
.price-card.featured .price-header h3 { color: var(--white); }
.price-amount {
  font-size: 1rem; color: var(--text-mid);
}
.price-card.featured .price-amount { color: rgba(255,255,255,0.7); }
.price-amount strong {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem; color: var(--gold); font-weight: 900;
}
.price-amount span { font-size: 0.9rem; }
.price-features {
  list-style: none; display: flex; flex-direction: column;
  gap: 14px; margin-bottom: 32px;
}
.price-features li {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.9rem; color: var(--text-mid);
}
.price-card.featured .price-features li { color: rgba(255,255,255,0.8); }
.price-features li svg { color: var(--gold); flex-shrink: 0; }
.pricing-note {
  text-align: center; font-size: 0.82rem;
  color: var(--text-light); max-width: 680px; margin: 0 auto;
  line-height: 1.7;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-section { background: var(--cream-dark); }
.reviews-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 24px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  transition: var(--transition);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review-stars { color: var(--gold); font-size: 1.2rem; margin-bottom: 20px; letter-spacing: 2px; }
.review-text {
  font-style: italic; color: var(--text-mid);
  font-size: 0.98rem; line-height: 1.8; margin-bottom: 24px;
}
.review-author { display: flex; align-items: center; gap: 16px; }
.review-avatar {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem;
  flex-shrink: 0;
}
.review-author strong { display: block; color: var(--navy); font-weight: 600; }
.review-author span { font-size: 0.82rem; color: var(--text-light); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { background: var(--cream); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 80px; align-items: start;
}
.contact-info .section-title { margin: 20px 0 16px; }
.contact-lead { color: var(--text-mid); margin-bottom: 40px; font-size: 1.05rem; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-detail {
  display: flex; align-items: flex-start; gap: 16px;
}
.contact-detail-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.contact-detail > div:last-child {
  display: flex; flex-direction: column; gap: 3px;
}
.contact-detail strong { font-weight: 600; color: var(--navy); font-size: 0.9rem; }
.contact-detail a, .contact-detail span {
  font-size: 0.9rem; color: var(--text-mid); line-height: 1.5;
}
.contact-detail a:hover { color: var(--gold); }

/* ============================================================
   FORM
   ============================================================ */
.contact-form-wrapper {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-md);
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 0.875rem; font-weight: 600;
  color: var(--navy); letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 14px 18px;
  border: 1.5px solid #e0ddd8;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif; font-size: 0.95rem;
  color: var(--text); background: var(--cream);
  transition: var(--transition); outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%236b7e94' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpolyline points='6,9 12,15 18,9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}
.form-consent { }
.checkbox-label {
  display: flex; align-items: flex-start; gap: 12px;
  cursor: pointer; font-size: 0.82rem; color: var(--text-mid);
  line-height: 1.6;
}
.checkbox-label input[type="checkbox"] { display: none; }
.checkmark {
  width: 20px; height: 20px; flex-shrink: 0;
  border: 2px solid #ccc; border-radius: 4px;
  transition: var(--transition); margin-top: 1px;
  position: relative;
}
.checkbox-label input:checked + .checkmark {
  background: var(--gold); border-color: var(--gold);
}
.checkbox-label input:checked + .checkmark::after {
  content: '';
  position: absolute; left: 5px; top: 2px;
  width: 6px; height: 10px;
  border: 2px solid var(--navy); border-top: none; border-left: none;
  transform: rotate(45deg);
}
.checkbox-label .link { color: var(--gold); text-decoration: underline; }
.form-success, .form-error {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px; border-radius: var(--radius-sm);
  font-size: 0.9rem; font-weight: 500;
}
.form-success {
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  color: #166534;
}
.form-error {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  color: #991b1b;
}
.spinner {
  width: 20px; height: 20px;
  border: 2px solid rgba(13,27,46,0.2);
  border-top-color: var(--navy);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(201,168,76,0.12);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p {
  color: rgba(255,255,255,0.55); font-size: 0.9rem;
  margin: 16px 0 24px; line-height: 1.7;
}
.footer-social { display: flex; gap: 12px; }
.social-link {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.social-link:hover { background: var(--gold); color: var(--navy); border-color: transparent; }
.footer-links h4, .footer-contact h4 {
  color: var(--white); font-family: 'Inter', sans-serif;
  font-size: 0.9rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 20px; color: var(--gold-light);
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.55); font-size: 0.9rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact p { color: rgba(255,255,255,0.55); font-size: 0.9rem; margin-bottom: 10px; }
.footer-contact a { color: rgba(255,255,255,0.55); }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0;
  color: rgba(255,255,255,0.35); font-size: 0.82rem;
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,0.35); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(13,27,46,0.98); padding: 16px; gap: 4px; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 20px; border-radius: 8px; }
  .hamburger { display: flex; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .stat-divider { width: 48px; height: 1px; }
  .services-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image-wrapper { max-width: 400px; margin: 0 auto; }
  .about-img-badge { left: 0; }
  .about-img-cert { right: 0; }
  .languages-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-wrapper { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .hero-stats { padding: 20px; }
  .stat { padding: 0 16px; }
}
