@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --navy-deep: #1a1f3a;
  --navy: #252d5a;
  --gold: #d4af37;
  --gold-soft: #e8d47a;
  --gold-light: #f5e9a3;
  --white: #ffffff;
  --bg: #fafaf8;
  --card: #ffffff;
  --border: #e8e4d8;
  --muted: #6b7280;
  --gradient-hero: linear-gradient(135deg, #1a1f3a 0%, #252d5a 60%, #2e3570 100%);
  --gradient-gold: linear-gradient(135deg, #e8d47a 0%, #d4af37 50%, #b8960f 100%);
  --gradient-navy: linear-gradient(180deg, #1a1f3a 0%, #0f1220 100%);
  --shadow-luxe: 0 30px 80px -20px rgba(26,31,58,0.35);
  --shadow-gold: 0 20px 50px -15px rgba(212,175,55,0.45);
  --radius: 1.5rem;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--navy-deep);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,h2,h3,h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  letter-spacing: -0.01em;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── UTILITIES ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
@media(min-width:1024px){ .container { padding: 0 2.5rem; } }

.text-gold { color: var(--gold); }
.text-gold-gradient {
  background-image: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.bg-gold-gradient { background-image: var(--gradient-gold); }
.bg-hero { background-image: var(--gradient-hero); }
.bg-navy { background-image: var(--gradient-navy); }

.gold-divider {
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
  height: 1px;
  border: none;
  margin: 1.25rem 0;
}

.glass {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.12);
}

.shadow-luxe { box-shadow: var(--shadow-luxe); }
.shadow-gold { box-shadow: var(--shadow-gold); }

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 9999px;
  background-image: var(--gradient-gold);
  color: var(--navy-deep);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow-gold);
  transition: transform 0.3s ease, box-shadow 0.3s;
}
.btn-gold:hover { transform: translateY(-4px) scale(1.02); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(212,175,55,0.4);
  color: white;
  font-size: 0.9rem;
  transition: background 0.2s;
}
.btn-outline:hover { background: rgba(255,255,255,0.07); }

.label-xs {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.icon-gold {
  display: inline-grid;
  place-items: center;
  background-image: var(--gradient-gold);
  border-radius: 0.875rem;
  flex-shrink: 0;
  color: var(--navy-deep);
}

.hover-tilt {
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1), box-shadow 0.4s;
}
.hover-tilt:hover {
  transform: translateY(-6px) rotate(-0.3deg) scale(1.01);
  box-shadow: var(--shadow-luxe);
}

/* ── ANIMATIONS ── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes float-slow {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes plane-fly {
  0% { transform: translate(-5%,30%) rotate(-8deg); opacity: 0; }
  20% { opacity: 1; }
  100% { transform: translate(110%,-40%) rotate(-18deg); opacity: 0; }
}
@keyframes count-up { from { opacity:0; } to { opacity:1; } }

.animate-fade-up { animation: fade-up 0.8s ease-out both; }
.animate-fade-up-2 { animation: fade-up 0.8s ease-out 0.2s both; }
.animate-float { animation: float-slow 6s ease-in-out infinite; }
.animate-plane { animation: plane-fly 9s ease-in-out infinite; }
.animate-pulse { animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }

/* ── HEADER ── */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: all 0.5s;
  padding: 0;
}
#header.scrolled {
  background: rgba(26,31,58,0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212,175,55,0.2);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}
@media(min-width:1024px){ .header-inner { padding: 0 2.5rem; } }

.logo-wrap { display: flex; align-items: center; gap: 0.75rem; }
.logo-img {
  width: 3rem; height: 3rem;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(212,175,55,0.4);
  box-shadow: var(--shadow-gold);
}
.logo-text-top {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  background-image: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.logo-text-sub {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  color: rgba(232,212,122,0.8);
}

nav.desktop { display: none; align-items: center; gap: 0.25rem; }
@media(min-width:1024px){ nav.desktop { display: flex; } }

nav.desktop a {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
  border-radius: 0.5rem;
}
nav.desktop a:hover, nav.desktop a.active { color: var(--gold); }

.nav-cta {
  margin-left: 1rem;
  padding: 0.625rem 1.25rem !important;
  border-radius: 9999px !important;
  background-image: var(--gradient-gold) !important;
  color: var(--navy-deep) !important;
  font-weight: 600 !important;
}

.hamburger { display: flex; flex-direction: column; gap: 5px; cursor: pointer; padding: 0.5rem; }
@media(min-width:1024px){ .hamburger { display: none; } }
.hamburger span { display: block; width: 24px; height: 2px; background: white; border-radius: 9999px; transition: all 0.3s; }

#mobile-nav {
  display: none;
  background: rgba(26,31,58,0.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(212,175,55,0.2);
  padding: 1rem 1.5rem 1.5rem;
  flex-direction: column;
  gap: 0.5rem;
}
#mobile-nav.open { display: flex; }
#mobile-nav a {
  padding: 0.75rem 0;
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
#mobile-nav a:hover { color: var(--gold); }
#mobile-nav .nav-cta-mobile {
  margin-top: 0.5rem;
  text-align: center;
  padding: 0.875rem !important;
  border-radius: 9999px;
  background-image: var(--gradient-gold);
  color: var(--navy-deep) !important;
  font-weight: 600;
  border-bottom: none !important;
}

/* ── PAGES (show/hide) ── */
.page { display: none; }
.page.active { display: block; }

/* ── HOME HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 6rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero.jpg');
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,31,58,0.72) 0%, rgba(26,31,58,0.82) 60%, #1a1f3a 100%);
}
.hero-plane {
  position: absolute;
  top: 35%; left: -5%;
  font-size: 2rem;
  color: var(--gold);
  filter: drop-shadow(0 0 20px rgba(212,175,55,0.6));
  animation: plane-fly 9s ease-in-out infinite;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 2.5rem;
  padding: 5rem 0;
}
@media(min-width:1024px){
  .hero-content { grid-template-columns: 7fr 5fr; align-items: center; }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(212,175,55,0.4);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--gold-soft);
}
.hero h1 {
  margin-top: 1.5rem;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.05;
  color: white;
}
.hero-desc {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  max-width: 36rem;
}
.hero-btns {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero-trust {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.hero-trust span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
}
.hero-trust .icon { color: var(--gold); font-size: 1rem; }

/* Hero Quick Card */
.hero-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 1.75rem;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content:'';
  position: absolute;
  top: -5rem; right: -5rem;
  width: 15rem; height: 15rem;
  border-radius: 50%;
  background: rgba(212,175,55,0.2);
  filter: blur(3rem);
}
.hero-card h3 { font-size: 1.5rem; color: white; position: relative; }
.hero-card p { font-size: 0.875rem; color: rgba(255,255,255,0.7); margin-top: 0.25rem; }
.service-links { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.service-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 0.875rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  transition: border-color 0.2s;
  cursor: pointer;
}
.service-link:hover { border-color: rgba(212,175,55,0.4); }
.service-link-icon {
  width: 2.5rem; height: 2.5rem;
  border-radius: 0.5rem;
  background-image: var(--gradient-gold);
  display: grid;
  place-items: center;
  color: var(--navy-deep);
  font-size: 1rem;
  flex-shrink: 0;
}
.service-link-title { font-size: 0.875rem; font-weight: 500; color: white; }
.service-link-sub { font-size: 0.75rem; color: rgba(255,255,255,0.6); }
.service-link-arrow { margin-left: auto; color: var(--gold); opacity: 0; transition: opacity 0.2s; }
.service-link:hover .service-link-arrow { opacity: 1; }
.view-all-link { display: block; text-align: center; margin-top: 1.5rem; font-size: 0.875rem; color: var(--gold); }
.view-all-link:hover { text-decoration: underline; }

/* ── STATS ── */
.stats-section {
  background-image: var(--gradient-navy);
  padding: 5rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}
@media(min-width:768px){ .stats-grid { grid-template-columns: repeat(4,1fr); } }
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 600;
  background-image: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-label {
  margin-top: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* ── SERVICES GRID ── */
.section { padding: 6rem 0; }
.section-alt { background: rgba(212,175,55,0.05); }
.section-header { text-align: center; max-width: 48rem; margin: 0 auto 4rem; }
.section-header h2 { font-size: clamp(2rem, 4vw, 3rem); margin-top: 0.75rem; }
.section-header p { margin-top: 1rem; color: var(--muted); line-height: 1.7; }

.services-grid {
  display: grid;
  gap: 1.5rem;
}
@media(min-width:768px){ .services-grid { grid-template-columns: repeat(2,1fr); } }
@media(min-width:1024px){ .services-grid { grid-template-columns: repeat(3,1fr); } }

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
  padding: 2rem;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1), box-shadow 0.4s;
}
.service-card::before {
  content:'';
  position: absolute;
  top: -4rem; right: -4rem;
  width: 11rem; height: 11rem;
  border-radius: 50%;
  background: rgba(212,175,55,0.08);
  filter: blur(2rem);
  transition: background 0.3s;
}
.service-card:hover { transform: translateY(-6px) rotate(-0.3deg) scale(1.01); box-shadow: var(--shadow-luxe); }
.service-card:hover::before { background: rgba(212,175,55,0.18); }
.service-card .icon-gold { width: 3.5rem; height: 3.5rem; font-size: 1.4rem; box-shadow: var(--shadow-gold); }
.service-card h3 { margin-top: 1.5rem; font-size: 1.5rem; }
.service-card p { margin-top: 0.5rem; font-size: 0.875rem; color: var(--muted); }
.service-card ul { margin-top: 1.25rem; list-style: none; display: flex; flex-direction: column; gap: 0.375rem; }
.service-card li { display: flex; gap: 0.5rem; font-size: 0.875rem; color: rgba(26,31,58,0.8); align-items: flex-start; }
.service-card li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.service-card .explore {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
  transition: color 0.2s;
}
.service-card:hover .explore { color: var(--gold); }

/* ── COUNTRIES GRID ── */
.countries-grid {
  display: grid;
  gap: 1.5rem;
}
@media(min-width:768px){ .countries-grid { grid-template-columns: repeat(2,1fr); } }
@media(min-width:1024px){ .countries-grid { grid-template-columns: repeat(4,1fr); } }

.country-card {
  position: relative;
  height: 20rem;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1);
}
.country-card:hover { transform: translateY(-6px) scale(1.01); }
.country-card img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.country-card:hover img { transform: scale(1.1); }
.country-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(26,31,58,0.9) 100%);
}
.country-card-content {
  position: absolute;
  inset: 0;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: white;
}
.country-flag { font-size: 2rem; }
.country-name { margin-top: 0.5rem; font-size: 1.5rem; font-family: 'Cormorant Garamond', serif; }
.country-tagline { font-size: 0.75rem; color: rgba(255,255,255,0.75); margin-top: 0.25rem; }
.country-cta {
  margin-top: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8rem;
  color: var(--gold);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s, transform 0.3s;
}
.country-card:hover .country-cta { opacity: 1; transform: translateY(0); }
.country-dot {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 0.5rem; height: 0.5rem;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}

/* ── WHY US ── */
.why-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}
@media(min-width:1024px){ .why-grid { grid-template-columns: 1fr 1fr; } }
.why-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 2rem; }
.why-feature { display: flex; gap: 1rem; }
.why-feature-icon { width: 2.75rem; height: 2.75rem; border-radius: 0.75rem; background-image: var(--gradient-gold); display: grid; place-items: center; color: var(--navy-deep); font-size: 1rem; flex-shrink: 0; }
.why-feature strong { display: block; font-size: 0.95rem; margin-bottom: 0.25rem; }
.why-feature p { font-size: 0.825rem; color: var(--muted); }
.why-image-wrap { position: relative; }
.why-image-wrap::before {
  content:'';
  position: absolute;
  inset: 0;
  background-image: var(--gradient-gold);
  border-radius: var(--radius);
  transform: rotate(2deg);
  opacity: 0.18;
  filter: blur(2rem);
}
.why-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-luxe);
}
.why-image img { width: 100%; height: 32rem; object-fit: cover; }
.why-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26,31,58,0.8));
}
.testimonial-card {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 1rem;
  padding: 1.25rem;
  color: white;
}
.testimonial-quote { color: var(--gold); font-size: 1.25rem; margin-bottom: 0.5rem; }
.testimonial-text { font-size: 0.875rem; line-height: 1.6; }
.testimonial-author { margin-top: 0.5rem; font-size: 0.75rem; color: var(--gold-soft); }

/* ── CTA SECTION ── */
.cta-section {
  margin: 0 1.5rem 6rem;
  border-radius: var(--radius);
  overflow: hidden;
  background-image: var(--gradient-hero);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
}
@media(min-width:1024px){ .cta-section { margin: 0 2.5rem 6rem; } }
.cta-blob {
  position: absolute;
  border-radius: 50%;
  background: rgba(212,175,55,0.35);
  filter: blur(3rem);
  animation: float-slow 6s ease-in-out infinite;
}
.cta-section h2 { font-size: clamp(2rem,4vw,3rem); color: white; position: relative; }
.cta-section p { margin-top: 1rem; color: rgba(255,255,255,0.8); position: relative; }
.cta-section .btn-gold { margin-top: 2rem; position: relative; }

/* ── PAGE HERO ── */
.page-hero {
  padding: 9rem 0 4rem;
  background-image: var(--gradient-hero);
  color: white;
}
.page-hero h1 { font-size: clamp(2.5rem,5vw,4rem); max-width: 36rem; }
.page-hero p { margin-top: 1rem; max-width: 36rem; color: rgba(255,255,255,0.8); line-height: 1.7; }

/* ── ABOUT PAGE ── */
.about-grid {
  display: grid;
  gap: 3rem;
}
@media(min-width:1024px){ .about-grid { grid-template-columns: 1fr 1fr; } }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.value-card {
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--card);
  transition: transform 0.3s;
}
.value-card:hover { transform: translateY(-4px); }
.value-icon { width: 3rem; height: 3rem; border-radius: 0.75rem; background-image: var(--gradient-gold); display: grid; place-items: center; color: var(--navy-deep); font-size: 1.1rem; }
.value-card strong { display: block; margin-top: 1rem; }
.value-card p { font-size: 0.825rem; color: var(--muted); margin-top: 0.25rem; }

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid;
  gap: 2.5rem;
}
@media(min-width:1024px){ .contact-grid { grid-template-columns: 2fr 3fr; } }
.contact-info-card { border-radius: var(--radius); padding: 1.5rem; border: 1px solid var(--border); background: var(--card); margin-bottom: 1.5rem; }
.contact-info-card h3 { font-size: 1.5rem; }
.contact-list { list-style: none; margin-top: 1rem; display: flex; flex-direction: column; gap: 1rem; }
.contact-list li { display: flex; gap: 0.75rem; font-size: 0.875rem; align-items: flex-start; }
.contact-list .ci { color: var(--gold); font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.hours-card {
  border-radius: var(--radius);
  padding: 1.5rem;
  background-image: var(--gradient-hero);
  color: white;
}
.hours-card h3 { font-size: 1.5rem; }
.hours-list { list-style: none; margin-top: 1rem; display: flex; flex-direction: column; gap: 0.375rem; font-size: 0.875rem; color: rgba(255,255,255,0.85); }

.contact-form-wrap {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-luxe);
}
.contact-form-wrap h2 { font-size: 2rem; }
.form-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}
@media(min-width:640px){ .form-grid { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: var(--bg);
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--navy-deep);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.2);
}
.field textarea { resize: none; }
.form-success {
  text-align: center;
  padding: 4rem 0;
  display: none;
}
.form-success .success-icon { font-size: 3.5rem; color: var(--gold); }
.form-success h3 { font-size: 2rem; margin-top: 1rem; }
.form-success p { color: var(--muted); margin-top: 0.5rem; }

/* ── SERVICES PAGE ── */
.services-page-grid {
  display: grid;
  gap: 1.5rem;
}
@media(min-width:768px){ .services-page-grid { grid-template-columns: repeat(2,1fr); } }
@media(min-width:1024px){ .services-page-grid { grid-template-columns: repeat(3,1fr); } }

/* ── COUNTRIES PAGE ── */
.countries-page-grid {
  display: grid;
  gap: 1.5rem;
}
@media(min-width:768px){ .countries-page-grid { grid-template-columns: repeat(2,1fr); } }
@media(min-width:1024px){ .countries-page-grid { grid-template-columns: repeat(3,1fr); } }
.country-page-card {
  position: relative;
  height: 24rem;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}
.country-page-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.country-page-card:hover img { transform: scale(1.08); }
.country-page-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 20%, rgba(26,31,58,0.92) 100%); }
.country-page-content { position: absolute; inset: 0; padding: 1.5rem; display: flex; flex-direction: column; justify-content: flex-end; color: white; }
.country-page-content .flag { font-size: 2.5rem; }
.country-page-content h3 { font-size: 2rem; margin-top: 0.5rem; }
.country-page-content p { font-size: 0.8rem; color: rgba(255,255,255,0.75); margin-top: 0.25rem; }
.country-page-content .tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.75rem; }
.tag {
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  border: 1px solid rgba(212,175,55,0.4);
  font-size: 0.7rem;
  color: var(--gold-soft);
}

/* ── FOOTER ── */
footer {
  background-image: var(--gradient-navy);
  color: rgba(255,255,255,0.85);
  padding: 5rem 0 2.5rem;
  position: relative;
  margin-top: 5rem;
}
footer::before {
  content:'';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
}
.footer-grid {
  display: grid;
  gap: 3rem;
}
@media(min-width:1024px){ .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.7); line-height: 1.7; margin-top: 1.25rem; }
.footer-contact { list-style: none; margin-top: 1.25rem; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact li { display: flex; gap: 0.75rem; font-size: 0.875rem; color: rgba(255,255,255,0.8); align-items: flex-start; }
.footer-contact .fc { color: var(--gold); flex-shrink: 0; font-size: 0.9rem; margin-top: 2px; }
.footer-col h4 { font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; font-family: 'Inter', sans-serif; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col li a { font-size: 0.875rem; color: rgba(255,255,255,0.75); transition: color 0.2s; }
.footer-col li a:hover { color: var(--gold); }
.footer-bottom {
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
}
@media(min-width:768px){
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}
.footer-disclaimer { margin-top: 1rem; font-size: 0.7rem; color: rgba(255,255,255,0.4); line-height: 1.6; max-width: 56rem; }

/* ── COOKIE BANNER ── */
#cookie-banner {
  position: fixed;
  bottom: 1.5rem; left: 1rem; right: 1rem;
  max-width: 36rem;
  background: rgba(26,31,58,0.97);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  z-index: 200;
  display: flex;
  gap: 1rem;
  align-items: center;
  box-shadow: var(--shadow-luxe);
}
@media(min-width:640px){ #cookie-banner { left: 1.5rem; } }
#cookie-banner p { font-size: 0.8rem; color: rgba(255,255,255,0.8); flex: 1; }
#cookie-banner a { color: var(--gold); }
#cookie-accept {
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  background-image: var(--gradient-gold);
  color: var(--navy-deep);
  font-weight: 600;
  font-size: 0.8rem;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

/* ── PRIVACY / TERMS / LEGAL ── */
.prose-page { padding: 9rem 0 6rem; }
.prose-page h1 { font-size: clamp(2rem,4vw,3rem); margin-bottom: 2rem; }
.prose-section { margin-bottom: 2rem; }
.prose-section h2 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.prose-section p { color: var(--muted); line-height: 1.8; font-size: 0.95rem; }

/* ── SERVICE CARD WITH IMAGE ── */
.service-card {
  padding: 0 !important;
  overflow: hidden;
}
.service-card-img {
  position: relative;
  height: 11rem;
  overflow: hidden;
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.07); }
.service-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,31,58,0.25) 0%, rgba(26,31,58,0.6) 100%);
}
.service-card-icon {
  position: absolute;
  bottom: 0.875rem;
  left: 1rem;
  font-size: 1.75rem;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
}
.service-card-body {
  padding: 1.5rem;
}
.service-card-body h3 { margin-top: 0; font-size: 1.375rem; }
.service-card-body p { margin-top: 0.375rem; font-size: 0.85rem; color: var(--muted); }
.service-card-body ul { margin-top: 1rem; list-style: none; display: flex; flex-direction: column; gap: 0.3rem; }
.service-card-body li { display: flex; gap: 0.5rem; font-size: 0.825rem; color: rgba(26,31,58,0.8); align-items: flex-start; }
.service-card-body li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.service-body-text { margin-top: 0.75rem !important; font-size: 0.8rem !important; line-height: 1.7; }

/* ── UAE CARD ── */
.uae-card { grid-column: 1 / -1; height: 28rem !important; }
@media(min-width:768px){ .uae-card { grid-column: span 2; } }
.uae-badge {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.25rem 0.75rem;
  background-image: var(--gradient-gold);
  color: var(--navy-deep);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: 9999px;
}

/* ── UAE SERVICES SECTION ── */
.uae-section { margin-top: 5rem; }
.uae-section-header { text-align: center; margin-bottom: 3rem; }
.uae-services-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, 1fr);
}
@media(min-width:768px){ .uae-services-grid { grid-template-columns: repeat(3, 1fr); } }
.uae-service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 1.75rem 1.5rem;
  cursor: pointer;
}
.uae-service-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.uae-service-card h4 {
  font-size: 1.1rem;
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 0.5rem;
}
.uae-service-card p { font-size: 0.825rem; color: var(--muted); line-height: 1.6; }
.uae-service-card a {
  display: inline-flex;
  align-items: center;
  margin-top: 1rem;
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--gold);
  transition: gap 0.2s;
}
.uae-service-card:hover a { text-decoration: underline; }

/* ══════════════════════════════════════════
   FLOATING SIDE BUTTONS
══════════════════════════════════════════ */
.floating-btns {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.float-btn {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0;
  overflow: hidden;
  width: 3.25rem;
  height: 3.25rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: white;
  transition: width 0.35s cubic-bezier(.2,.8,.2,1), border-radius 0.3s;
  white-space: nowrap;
  border-radius: 0.75rem 0 0 0.75rem;
  box-shadow: -4px 4px 20px rgba(0,0,0,0.25);
  position: relative;
}
.float-btn:hover {
  width: 9.5rem;
}
.float-call  { background: linear-gradient(135deg, #1a3a5c, #1e4d7a); }
.float-whatsapp { background: linear-gradient(135deg, #128C7E, #25D366); }
.float-bot   { background: linear-gradient(135deg, #252d5a, #d4af37); }

.float-icon {
  width: 3.25rem;
  height: 3.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.float-whatsapp .float-icon svg { filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3)); }

.float-label {
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.25s 0.1s, transform 0.25s 0.1s;
  padding-right: 1rem;
  font-size: 0.82rem;
}
.float-btn:hover .float-label {
  opacity: 1;
  transform: translateX(0);
}

/* Mobile: smaller */
@media(max-width:640px){
  .float-btn { width: 2.75rem; height: 2.75rem; }
  .float-btn:hover { width: 8.5rem; }
  .float-icon { width: 2.75rem; height: 2.75rem; font-size: 1.1rem; }
}

/* ══════════════════════════════════════════
   AI CHAT BOT
══════════════════════════════════════════ */
#bot-box {
  display: none;
  flex-direction: column;
  position: fixed;
  bottom: 1.5rem;
  right: 4rem;
  width: 23rem;
  max-height: 34rem;
  background: white;
  border-radius: 1.25rem;
  box-shadow: 0 20px 60px rgba(26,31,58,0.3), 0 4px 20px rgba(212,175,55,0.2);
  z-index: 1000;
  overflow: hidden;
  border: 1px solid rgba(212,175,55,0.2);
}
@media(max-width:640px){
  #bot-box { right: 0.5rem; left: 0.5rem; width: auto; bottom: 1rem; }
}

.bot-header {
  background: var(--gradient-hero);
  background-image: var(--gradient-hero);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.bot-header-info { display: flex; align-items: center; gap: 0.75rem; }
.bot-avatar-lg {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  background-image: var(--gradient-gold);
  color: var(--navy-deep);
  font-weight: 700;
  font-size: 0.75rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-gold);
}
.bot-name { color: white; font-weight: 600; font-size: 0.9rem; }
.bot-status { display: flex; align-items: center; gap: 0.35rem; font-size: 0.7rem; color: rgba(255,255,255,0.8); margin-top: 0.1rem; }
.bot-dot { width: 0.45rem; height: 0.45rem; border-radius: 50%; background: #4ade80; display: inline-block; animation: pulse 2s infinite; }
.bot-close { background: rgba(255,255,255,0.15); border: none; color: white; width: 1.75rem; height: 1.75rem; border-radius: 50%; cursor: pointer; font-size: 0.8rem; display: grid; place-items: center; transition: background 0.2s; }
.bot-close:hover { background: rgba(255,255,255,0.3); }

#bot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-height: 18rem;
  background: #f8f7f4;
}
#bot-messages::-webkit-scrollbar { width: 4px; }
#bot-messages::-webkit-scrollbar-thumb { background: var(--border); border-radius: 9999px; }

.bot-msg { display: flex; gap: 0.5rem; align-items: flex-start; }
.bot-avatar { width: 1.75rem; height: 1.75rem; border-radius: 50%; background-image: var(--gradient-gold); color: var(--navy-deep); font-size: 0.55rem; font-weight: 700; display: grid; place-items: center; flex-shrink: 0; }
.bot-bubble { background: white; border: 1px solid var(--border); border-radius: 0 1rem 1rem 1rem; padding: 0.625rem 0.875rem; font-size: 0.825rem; line-height: 1.6; color: var(--navy-deep); max-width: 85%; box-shadow: 0 1px 4px rgba(0,0,0,0.06); }

.user-msg { display: flex; justify-content: flex-end; }
.user-bubble { background-image: var(--gradient-hero); background: var(--navy); color: white; border-radius: 1rem 0 1rem 1rem; padding: 0.625rem 0.875rem; font-size: 0.825rem; line-height: 1.6; max-width: 85%; }

.bot-quick {
  padding: 0.625rem 1rem;
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  background: white;
  border-top: 1px solid var(--border);
}
.bot-quick button {
  padding: 0.3rem 0.7rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  background: var(--bg);
  font-size: 0.72rem;
  cursor: pointer;
  color: var(--navy-deep);
  transition: border-color 0.2s, background 0.2s;
  font-family: inherit;
}
.bot-quick button:hover { border-color: var(--gold); background: rgba(212,175,55,0.08); }

.bot-input-wrap {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--border);
  background: white;
}
#bot-input {
  flex: 1;
  padding: 0.875rem 1rem;
  border: none;
  outline: none;
  font-size: 0.85rem;
  font-family: inherit;
  background: transparent;
  color: var(--navy-deep);
}
#bot-input::placeholder { color: var(--muted); }
.bot-send {
  width: 3rem;
  border: none;
  background: var(--gradient-gold);
  background-image: var(--gradient-gold);
  color: var(--navy-deep);
  font-size: 1rem;
  cursor: pointer;
  transition: opacity 0.2s;
}
.bot-send:hover { opacity: 0.85; }
