:root {
  --navy: #0a1628;
  --navy-mid: #112240;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --cream: #f9f6f0;
  --white: #ffffff;
  --gray: #6b7280;
  --light-gray: #f3f4f6;
  --border: #e5e0d8;
  --text: #1a1a2e;
  --wa-green: #25D366;
  --wa-dark: #128C7E;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }

/* ─── NAVBAR ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 72px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.08); }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon {
  width: 40px; height: 40px; background: var(--navy);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.logo-icon::before {
  content: ''; position: absolute; width: 24px; height: 24px;
  border: 3px solid var(--gold); border-radius: 50%;
}
.logo-icon::after {
  content: ''; position: absolute; width: 3px; height: 16px;
  background: var(--gold); top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.logo-text { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--navy); letter-spacing: -0.3px; }
.logo-text span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--text); font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--gold); }
.nav-cta { background: var(--navy); color: var(--white) !important; padding: 10px 22px; border-radius: 8px; font-weight: 600 !important; transition: background 0.2s !important; }
.nav-cta:hover { background: var(--gold) !important; color: var(--navy) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.3s; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh; background: var(--navy);
  display: flex; align-items: center;
  padding: 120px 5% 80px; position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.12) 0%, transparent 65%),
              radial-gradient(ellipse at 10% 80%, rgba(201,168,76,0.06) 0%, transparent 50%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content { position: relative; z-index: 2; max-width: 680px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold-light); padding: 7px 16px; border-radius: 100px;
  font-size: 13px; font-weight: 500; margin-bottom: 28px; letter-spacing: 0.3px;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px; background: var(--gold);
  border-radius: 50%; animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 6vw, 72px); font-weight: 700;
  color: var(--white); line-height: 1.1; margin-bottom: 24px; letter-spacing: -1px;
}
.hero h1 em { font-style: normal; color: var(--gold); display: block; }
.hero p { font-size: 17px; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 40px; max-width: 520px; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-primary {
  background: var(--gold); color: var(--navy);
  padding: 14px 32px; border-radius: 10px; font-weight: 700; font-size: 15px;
  text-decoration: none; transition: all 0.25s; display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.35); }
.btn-secondary {
  background: transparent; color: var(--white);
  padding: 14px 32px; border-radius: 10px; font-weight: 600; font-size: 15px;
  text-decoration: none; border: 1.5px solid rgba(255,255,255,0.3);
  transition: all 0.25s; display: inline-flex; align-items: center; gap: 8px;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }
.hero-stats {
  position: relative;
  margin-top: 40px;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  z-index: 2;
}
.stat-item { text-align: center; }
.stat-number { font-family: 'Playfair Display', serif; font-size: 40px; font-weight: 700; color: var(--gold); line-height: 1; }
.stat-label { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 4px; text-transform: uppercase; letter-spacing: 1px; }
.hero-img-wrap { position: absolute; right: 5%; top: 50%; transform: translateY(-50%); width: 42%; z-index: 1; }
.hero-img-wrap img { width: 100%; border-radius: 20px; object-fit: cover; height: 520px; opacity: 0.85; }
.hero-img-overlay { position: absolute; inset: 0; background: linear-gradient(to right, var(--navy) 0%, transparent 40%); border-radius: 20px; }

/* ─── SECTION COMMON ─── */
section { padding: 90px 5%; }
.section-tag {
  display: inline-block; color: var(--gold); font-size: 12px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 14px;
  border-left: 3px solid var(--gold); padding-left: 10px;
}
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(30px, 4vw, 46px); font-weight: 700; color: var(--navy); line-height: 1.2; letter-spacing: -0.5px; }
.section-title.light { color: var(--white); }
.section-sub { font-size: 16px; color: var(--gray); line-height: 1.7; max-width: 560px; margin-top: 14px; }

/* ─── ABOUT ─── */
.about { background: var(--cream); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img { position: relative; }
.about-img img { width: 100%; border-radius: 16px; object-fit: cover; height: 480px; }
.about-img-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--gold); color: var(--navy);
  padding: 20px 24px; border-radius: 16px; text-align: center; font-weight: 700;
}
.about-img-badge .big { font-size: 32px; font-family: 'Playfair Display', serif; }
.about-img-badge .sm { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; }
.about-text .section-sub { max-width: 100%; margin-bottom: 28px; }
.about-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.about-list li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--text); }
.about-list li::before { content: '✦'; color: var(--gold); font-size: 12px; flex-shrink: 0; }

/* ─── WORK CATEGORIES ─── */
.services { background: var(--white); }
.services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 52px; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.service-card {
  background: var(--white); border-radius: 20px; border: 1.5px solid var(--border);
  display: flex; flex-direction: column; transition: all 0.3s cubic-bezier(0.25,0.8,0.25,1); overflow: hidden; cursor: pointer;
  box-shadow: 0 2px 8px rgba(10,22,40,0.04);
}
.service-card:hover { border-color: var(--gold); box-shadow: 0 16px 48px rgba(10,22,40,0.13); transform: translateY(-6px); }
.service-card-img {
  width: 100%; height: 160px; object-fit: cover; display: block;
  transition: transform 0.4s ease;
}
.service-card:hover .service-card-img { transform: scale(1.04); }
.service-img-wrap { overflow: hidden; position: relative; }
.service-img-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(10,22,40,0.35) 100%);
}
.service-body { padding: 20px 20px 8px; flex: 1; }
.service-emoji { font-size: 26px; margin-bottom: 10px; display: block; }
.service-body h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 6px; line-height: 1.3; }
.service-body p { font-size: 12.5px; color: var(--gray); line-height: 1.55; }
.service-footer { display: flex; align-items: center; justify-content: flex-start; padding: 12px 20px 18px; gap: 8px; }
.service-read-more {
  font-size: 12.5px; font-weight: 700; color: var(--navy); cursor: pointer;
  background: var(--cream); border: 1.5px solid var(--border); padding: 8px 16px; border-radius: 8px;
  display: inline-flex; align-items: center; gap: 5px; transition: all 0.2s; text-decoration: none;
}
.service-read-more:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.service-wa-btn { display: none; }
.service-salary {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--navy); color: var(--gold-light);
  font-size: 13px; font-weight: 700; padding: 5px 11px;
  border-radius: 20px; letter-spacing: 0.2px;
  border: 1px solid rgba(201,168,76,0.3);
}
.service-salary::before { content: '💵'; font-size: 12px; }

/* ─── PAGE OVERLAY (for Read More / Detail Pages) ─── */
.page-overlay {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: var(--white); overflow-y: auto;
  animation: slideIn 0.35s ease;
}
.page-overlay.active { display: block; }
@keyframes slideIn { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.overlay-nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; gap: 16px;
  padding: 16px 5%; background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px); border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.overlay-back {
  display: flex; align-items: center; gap: 8px; cursor: pointer;
  background: var(--cream); border: 1px solid var(--border);
  padding: 8px 18px; border-radius: 8px;
  font-size: 14px; font-weight: 600; color: var(--navy);
  transition: all 0.2s; text-decoration: none;
}
.overlay-back:hover { background: var(--navy); color: var(--white); }
.overlay-title-nav {
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 700; color: var(--navy);
}

/* ─── SERVICE DETAIL PAGE ─── */
.service-detail-hero {
  background: var(--navy); padding: 80px 5% 60px;
  position: relative; overflow: hidden;
}
.service-detail-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.1) 0%, transparent 65%);
}
.service-detail-hero-inner { position: relative; z-index: 1; max-width: 720px; }
.service-detail-emoji { font-size: 56px; margin-bottom: 20px; display: block; }
.service-detail-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 54px); font-weight: 700;
  color: var(--white); margin-bottom: 18px; line-height: 1.15;
}
.service-detail-hero p { font-size: 17px; color: rgba(255,255,255,0.7); line-height: 1.7; max-width: 600px; }
.service-detail-body { padding: 60px 5%; }
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.detail-section { margin-bottom: 48px; }
.detail-section h2 {
  font-family: 'Playfair Display', serif; font-size: 26px;
  color: var(--navy); margin-bottom: 16px;
  padding-bottom: 12px; border-bottom: 2px solid var(--gold);
}
.detail-section p { font-size: 15px; color: var(--gray); line-height: 1.8; margin-bottom: 14px; }
.detail-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.detail-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--text); line-height: 1.5; }
.detail-list li::before { content: '✦'; color: var(--gold); font-size: 11px; flex-shrink: 0; margin-top: 4px; }
.process-steps-detail { display: flex; flex-direction: column; gap: 20px; margin-top: 16px; }
.process-step-detail {
  display: flex; gap: 20px; align-items: flex-start;
  background: var(--cream); border-radius: 12px; padding: 20px 24px;
  border: 1px solid var(--border);
}
.step-num-sm {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--gold); color: var(--navy);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700;
}
.step-text h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.step-text p { font-size: 13px; color: var(--gray); line-height: 1.6; }
.requirements-box {
  background: var(--cream); border: 1.5px solid var(--border);
  border-radius: 16px; padding: 32px; margin-bottom: 32px;
}
.requirements-box h3 { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--navy); margin-bottom: 20px; }
.req-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 18px; }
.req-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.req-text h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.req-text p { font-size: 13px; color: var(--gray); line-height: 1.6; }
.why-choose-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 20px; }
.why-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 14px; padding: 24px;
  transition: all 0.2s;
}
.why-card:hover { border-color: var(--gold); box-shadow: 0 4px 20px rgba(10,22,40,0.07); }
.why-icon { font-size: 28px; margin-bottom: 10px; }
.why-card h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.why-card p { font-size: 13px; color: var(--gray); line-height: 1.6; }
.detail-cta {
  background: var(--navy); border-radius: 20px; padding: 48px;
  text-align: center; position: relative; overflow: hidden; margin-top: 60px;
}
.detail-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.12) 0%, transparent 65%);
}
.detail-cta h2 {
  font-family: 'Playfair Display', serif; font-size: 32px;
  color: var(--white); margin-bottom: 14px; position: relative;
}
.detail-cta p { color: rgba(255,255,255,0.65); font-size: 15px; margin-bottom: 28px; position: relative; }
.detail-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }
.need-help-box {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 16px; padding: 32px; text-align: center; margin-top: 32px;
}
.need-help-box h3 { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--navy); margin-bottom: 10px; }
.need-help-box p { font-size: 14px; color: var(--gray); margin-bottom: 20px; line-height: 1.7; }

/* ─── STEPS ─── */
.steps { background: var(--navy); }
.steps-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.steps-inner .section-tag { display: block; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 56px; position: relative; }
.steps-grid::before {
  content: ''; position: absolute;
  top: 36px; left: calc(16.67% + 20px); right: calc(16.67% + 20px);
  height: 2px;
  background: linear-gradient(to right, var(--gold) 0%, rgba(201,168,76,0.3) 100%);
  border-radius: 2px;
}
.step-item { padding: 0 24px; text-align: center; }
.step-num {
  width: 72px; height: 72px; background: var(--gold); color: var(--navy);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700;
  margin: 0 auto 24px; position: relative; z-index: 1;
}
.step-item h3 { font-family: 'Playfair Display', serif; font-size: 19px; color: var(--white); margin-bottom: 12px; }
.step-item p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.6; }

.countries { background: var(--navy); overflow: hidden; }
.countries .section-tag { color: var(--gold-light); border-color: var(--gold); }
.countries .section-title { color: var(--white); }
.countries .section-sub { color: rgba(255,255,255,0.6); }
.countries-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 16px; margin-top: 48px;
}
.country-card {
  border-radius: 18px; overflow: hidden; position: relative;
  aspect-ratio: 3/4; cursor: default;
  transition: all 0.3s cubic-bezier(0.25,0.8,0.25,1);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.country-card:hover { transform: translateY(-5px) scale(1.02); box-shadow: 0 16px 40px rgba(0,0,0,0.4); }
.country-card-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.country-card:hover .country-card-img { transform: scale(1.08); }
.country-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.88) 0%, rgba(10,22,40,0.2) 55%, transparent 100%);
  transition: background 0.3s;
}
.country-card:hover .country-card-overlay {
  background: linear-gradient(to top, rgba(10,22,40,0.92) 0%, rgba(10,22,40,0.3) 55%, rgba(201,168,76,0.12) 100%);
}
.country-card-info {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 18px 14px;
}
.country-flag-big { font-size: 28px; display: block; margin-bottom: 6px; }
.country-name { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 3px; }
.country-city { font-size: 11px; color: rgba(255,255,255,0.6); }
.country-card-gold-bar {
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.country-card:hover .country-card-gold-bar { transform: scaleX(1); }

/* ─── WHY CHOOSE US (homepage) ─── */
.why-section { background: var(--cream); }
.why-home-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 52px; }
.why-home-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 18px; padding: 36px 28px; transition: all 0.25s;
  position: relative; overflow: hidden;
}
.why-home-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.why-home-card:hover::before { transform: scaleX(1); }
.why-home-card:hover { border-color: var(--gold); box-shadow: 0 8px 32px rgba(10,22,40,0.08); transform: translateY(-4px); }
.why-home-icon { font-size: 36px; margin-bottom: 16px; display: block; }
.why-home-card h3 { font-family: 'Playfair Display', serif; font-size: 21px; color: var(--navy); margin-bottom: 12px; }
.why-home-card p { font-size: 14px; color: var(--gray); line-height: 1.7; }

/* ─── VISA REQUIREMENTS (homepage) ─── */
.visa-req-section { background: var(--white); }
.visa-req-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.visa-req-card {
  background: var(--cream); border: 1.5px solid var(--border);
  border-radius: 16px; padding: 28px 22px; text-align: center; transition: all 0.25s;
}
.visa-req-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 6px 24px rgba(10,22,40,0.07); }
.visa-req-icon { font-size: 36px; margin-bottom: 14px; display: block; }
.visa-req-card h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.visa-req-card p { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* ─── FAQ ─── */
.faq { background: var(--cream); }
.faq-inner { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: border-color 0.2s; }
.faq-item.open { border-color: var(--gold); }
.faq-q { padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-weight: 600; font-size: 15px; color: var(--navy); gap: 16px; }
.faq-toggle { width: 28px; height: 28px; flex-shrink: 0; background: var(--navy); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 300; transition: all 0.3s; }
.faq-item.open .faq-toggle { background: var(--gold); color: var(--navy); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.3s; padding: 0 24px; font-size: 14px; color: var(--gray); line-height: 1.7; }
.faq-item.open .faq-a { max-height: 200px; padding: 0 24px 20px; }

/* ─── CTA ─── */
.cta-section { background: var(--navy); padding: 100px 5%; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(201,168,76,0.1) 0%, transparent 65%); }
.cta-section h2 { font-family: 'Playfair Display', serif; font-size: clamp(32px, 5vw, 54px); color: var(--white); margin-bottom: 18px; position: relative; }
.cta-section p { color: rgba(255,255,255,0.65); font-size: 16px; max-width: 520px; margin: 0 auto 40px; line-height: 1.7; position: relative; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }
.btn-wa { background: var(--wa-green); color: white; padding: 14px 32px; border-radius: 10px; font-weight: 700; font-size: 15px; text-decoration: none; display: inline-flex; align-items: center; gap: 10px; transition: all 0.25s; }
.btn-wa:hover { background: #1ebe5a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.35); }
.btn-wa svg { width: 20px; height: 20px; fill: white; }
.btn-book {
  background: var(--gold); color: var(--navy); padding: 14px 32px;
  border-radius: 10px; font-weight: 700; font-size: 15px;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.25s; cursor: pointer; border: none;
}
.btn-book:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.35); }

/* ─── APPOINTMENT PAGE ─── */
#appointmentPage .overlay-content { padding: 60px 5%; max-width: 1100px; margin: 0 auto; }
.appt-hero {
  background: var(--navy); padding: 60px 5%; text-align: center;
  position: relative; overflow: hidden;
}
.appt-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(201,168,76,0.1) 0%, transparent 65%); }
.appt-hero-inner { position: relative; z-index: 1; }
.appt-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 4vw, 48px); color: var(--white); margin-bottom: 14px; }
.appt-hero p { color: rgba(255,255,255,0.7); font-size: 16px; max-width: 540px; margin: 0 auto; line-height: 1.7; }
.appt-body { padding: 60px 5%; }
.appt-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; max-width: 1100px; margin: 0 auto; }
.appt-form-section h2 { font-family: 'Playfair Display', serif; font-size: 28px; color: var(--navy); margin-bottom: 8px; }
.appt-form-section > p { font-size: 14px; color: var(--gray); margin-bottom: 32px; line-height: 1.6; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--border);
  border-radius: 10px; font-family: 'DM Sans', sans-serif;
  font-size: 15px; color: var(--text);
  background: var(--cream); transition: border-color 0.2s, box-shadow 0.2s;
  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(201,168,76,0.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit-btn {
  width: 100%; padding: 16px; background: var(--navy); color: var(--white);
  border: none; border-radius: 10px; font-size: 16px; font-weight: 700;
  cursor: pointer; transition: all 0.25s; font-family: 'DM Sans', sans-serif;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-top: 8px;
}
.form-submit-btn:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(10,22,40,0.15); }
.form-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.form-success {
  display: none; background: #f0fdf4; border: 1.5px solid #86efac;
  border-radius: 12px; padding: 24px; text-align: center; margin-top: 16px;
}
.form-success.show { display: block; }
.form-success h3 { color: #16a34a; font-size: 18px; margin-bottom: 8px; }
.form-success p { color: #15803d; font-size: 14px; line-height: 1.6; }
.form-error-msg {
  display: none; background: #fef2f2; border: 1.5px solid #fca5a5;
  border-radius: 10px; padding: 14px 18px; font-size: 13px; color: #dc2626;
  margin-top: 12px;
}
.form-error-msg.show { display: block; }
.appt-info-section { padding-top: 8px; }
.appt-info-section h2 { font-family: 'Playfair Display', serif; font-size: 24px; color: var(--navy); margin-bottom: 8px; }
.appt-info-section > p { font-size: 14px; color: var(--gray); margin-bottom: 28px; line-height: 1.6; }
.contact-info-card {
  background: var(--navy); border-radius: 18px; padding: 32px; margin-bottom: 24px;
}
.contact-info-card h3 { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--white); margin-bottom: 20px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; }
.contact-item:last-child { margin-bottom: 0; }
.contact-ico { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.contact-detail h4 { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 4px; }
.contact-detail p, .contact-detail a { font-size: 14px; color: var(--white); line-height: 1.5; text-decoration: none; }
.contact-detail a:hover { color: var(--gold-light); }
.support-note {
  background: var(--cream); border: 1.5px solid var(--border);
  border-radius: 14px; padding: 24px;
}
.support-note h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.support-note p { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* ─── FOOTER ─── */
footer { background: #060e1a; color: rgba(255,255,255,0.6); padding: 70px 5% 32px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 60px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand .logo-text { color: var(--white); font-size: 24px; }
.footer-brand p { margin-top: 14px; font-size: 14px; line-height: 1.7; max-width: 280px; }
.footer-socials { display: flex; gap: 10px; margin-top: 22px; }
.social-btn { width: 38px; height: 38px; background: rgba(255,255,255,0.07); border-radius: 8px; display: flex; align-items: center; justify-content: center; text-decoration: none; color: rgba(255,255,255,0.6); font-size: 14px; transition: all 0.2s; }
.social-btn:hover { background: var(--gold); color: var(--navy); }
.footer-col h4 { color: var(--white); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-contact-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.55); font-size: 14px; margin-bottom: 10px; text-decoration: none; transition: color 0.2s; }
.footer-contact-item:hover { color: var(--gold); }
.footer-contact-item span.ico { font-size: 16px; }
.footer-bottom { padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; }

/* ─── WHATSAPP FLOAT ─── */
.wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 9999; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.wa-float-popup { background: var(--white); border-radius: 16px; box-shadow: 0 12px 48px rgba(0,0,0,0.15); padding: 20px; width: 290px; transform: scale(0.85) translateY(20px); opacity: 0; pointer-events: none; transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275); transform-origin: bottom right; }
.wa-float-popup.open { transform: scale(1) translateY(0); opacity: 1; pointer-events: all; }
.popup-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.popup-avatar { width: 46px; height: 46px; background: linear-gradient(135deg, var(--wa-green), var(--wa-dark)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.popup-name { font-weight: 700; font-size: 15px; color: var(--navy); }
.popup-status { font-size: 12px; color: var(--wa-green); display: flex; align-items: center; gap: 5px; }
.popup-status::before { content: ''; width: 7px; height: 7px; background: var(--wa-green); border-radius: 50%; display: inline-block; }
.popup-bubble { background: var(--light-gray); border-radius: 12px 12px 12px 0; padding: 12px 14px; font-size: 13.5px; color: var(--text); line-height: 1.5; margin-bottom: 14px; }
.popup-close { position: absolute; top: 10px; right: 14px; background: none; border: none; font-size: 20px; cursor: pointer; color: var(--gray); line-height: 1; transition: color 0.2s; }
.popup-close:hover { color: var(--navy); }
.popup-cta { display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--wa-green); color: white; text-decoration: none; padding: 11px; border-radius: 10px; font-weight: 700; font-size: 14px; transition: background 0.2s; }
.popup-cta:hover { background: var(--wa-dark); }
.popup-cta svg { width: 18px; height: 18px; fill: white; }
.wa-float-btn { width: 58px; height: 58px; background: var(--wa-green); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 6px 24px rgba(37,211,102,0.5); transition: all 0.2s; border: none; position: relative; }
.wa-float-btn:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,0.6); }
.wa-float-btn svg { width: 32px; height: 32px; fill: white; }
.wa-ping { position: absolute; top: -4px; right: -4px; width: 18px; height: 18px; background: #ff4d4d; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; color: white; border: 2px solid white; }
.wa-label { position: absolute; right: 70px; background: var(--navy); color: var(--white); font-size: 12px; font-weight: 600; padding: 6px 12px; border-radius: 6px; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity 0.2s; }
.wa-float:hover .wa-label { opacity: 1; }
.wa-label::after { content: ''; position: absolute; right: -6px; top: 50%; transform: translateY(-50%); border: 6px solid transparent; border-right: none; border-left-color: var(--navy); }

/* WA SVG icon reusable */
.wa-svg-icon { fill: white; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1200px) {
  .countries-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 1024px) {
  .hero-img-wrap { display: none; }
  .hero-stats { position: static; margin-top: 50px; flex-wrap: wrap; }
  .hero { min-height: auto; }
  .about-inner, .faq-inner { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .detail-grid { grid-template-columns: 1fr; }
  .appt-grid { grid-template-columns: 1fr; }
  .why-home-grid { grid-template-columns: 1fr 1fr; }
  .visa-req-grid { grid-template-columns: 1fr 1fr; }
  .countries-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  nav { padding: 0 4%; }
  .logo-text { font-size: 18px; }
  .nav-links { display: none; position: absolute; top: 72px; left: 0; right: 0; background: white; padding: 20px; flex-direction: column; gap: 16px; border-bottom: 1px solid var(--border); box-shadow: 0 8px 24px rgba(0,0,0,0.08); z-index: 999; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .hero { padding: 100px 4% 60px; }
  .hero p { font-size: 15px; }
  .hero-stats { gap: 24px; }
  .stat-number { font-size: 32px; }
  .services-grid, .steps-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid::before { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .wa-float-popup { width: 260px; }
  .services-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .why-home-grid, .visa-req-grid { grid-template-columns: 1fr; }
  .countries-grid { grid-template-columns: repeat(2, 1fr); }
  .why-choose-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .detail-cta { padding: 32px 24px; }
  /* Fix about image badge overflow on mobile */
  .about-img-badge { position: static; margin-top: 16px; display: inline-block; border-radius: 12px; }
  .about-img img { height: 300px; }
  /* Fix service card image height on smaller tablets */
  .service-card-img { height: 130px; }
  /* Fix overlay pages on mobile */
  .overlay-nav { padding: 12px 4%; }
  .overlay-title-nav { font-size: 15px; }
  /* Fix appt body padding */
  .appt-body { padding: 40px 4%; }
  /* Fix detail sections */
  .service-detail-body { padding: 40px 4%; }
  .service-detail-hero { padding: 60px 4% 40px; }
  /* Fix footer contact spacing */
  .footer-contact-item { font-size: 13px; }
  /* Fix popup position */
  .wa-float-popup { position: fixed; bottom: 90px; right: 14px; width: calc(100vw - 28px); max-width: 320px; }
}
@media (max-width: 560px) {
  section { padding: 72px 4%; }
  .hero { padding: 96px 4% 52px; }
  .hero h1 { font-size: clamp(32px, 9vw, 44px); }
  .hero-buttons { width: 100%; }
  .btn-primary, .btn-secondary, .btn-book, .btn-wa { width: 100%; justify-content: center; }
  .hero-stats { gap: 16px; }
  .stat-item { flex: 1 1 calc(50% - 8px); text-align: left; }
  .services-grid, .steps-grid, .countries-grid { grid-template-columns: 1fr; }
  .step-item { padding: 0; }
  .faq-q { padding: 16px; font-size: 14px; }
  .faq-item.open .faq-a { padding: 0 16px 16px; }
  .faq-a { padding: 0 16px; }
  .contact-info-card, .support-note { padding: 20px; }
  .wa-float { right: 14px; bottom: 14px; }
  .wa-label { display: none; }
  /* Fix hero stats full width on very small screens */
  .hero-stats { flex-direction: row; flex-wrap: wrap; }
  .stat-item { min-width: 80px; }
  /* Fix service cards on small screens */
  .service-card-img { height: 180px; }
  /* Fix country cards aspect ratio */
  .country-card { aspect-ratio: 4/3; }
  /* Fix section tags wrapping */
  .services-header { gap: 12px; }
  /* Fix detail cta buttons */
  .detail-cta-btns { flex-direction: column; align-items: center; }
  .detail-cta-btns .btn-primary,
  .detail-cta-btns .btn-wa { width: 100%; justify-content: center; }
  /* Fix requirements box */
  .requirements-box { padding: 20px; }
  /* Fix form submit button */
  .form-submit-btn { font-size: 15px; }
  /* Fix nav-cta visibility in mobile menu */
  .nav-links .nav-cta { text-align: center; padding: 12px 22px; border-radius: 8px; }
  /* Prevent horizontal overflow */
  .hero-content { width: 100%; }
  img { max-width: 100%; }
}