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

:root {
  --green-deep:   #0d3b2e;
  --green-dark:   #0f4a38;
  --green-mid:    #1a6b4f;
  --green-bright: #2d8f6a;
  --gold:         #c9a227;
  --gold-light:   #e8c35a;
  --gold-pale:    #f5e199;
  --cream:        #fdf8ed;
  --dark:         #08221a;
  --dark2:        #0b2e22;
  --dark3:        #0f3d2c;
  --text:         #d4e8df;
  --text-muted:   #7aab93;
  --white:        #ffffff;
  --card-bg:      #0e3829;
  --border:       rgba(201,162,39,0.25);
  --gradient:     linear-gradient(135deg, #1a6b4f 0%, #2d8f6a 50%, #c9a227 100%);
  --gold-gradient:linear-gradient(135deg, #c9a227 0%, #e8c35a 50%, #f5e199 100%);
  --radius:       16px;
  --radius-sm:    10px;
  --shadow:       0 20px 60px rgba(0,0,0,0.5);
  --shadow-card:  0 4px 24px rgba(0,0,0,0.4);
}

html { scroll-behavior: smooth; }

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

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

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark2); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-dark { background: var(--dark2); }

.section-header { text-align: center; margin-bottom: 64px; }
.section-label {
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,162,39,0.1);
  border: 1px solid rgba(201,162,39,0.35);
  padding: 6px 18px; border-radius: 100px; margin-bottom: 20px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px); font-weight: 800;
  color: var(--white); line-height: 1.2; margin-bottom: 16px;
}
.section-sub { font-size: 17px; color: var(--text-muted); max-width: 600px; margin: 0 auto; }

.gradient-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.btn-primary {
  display: inline-block;
  background: var(--gold-gradient);
  color: var(--dark); padding: 14px 32px; border-radius: 100px;
  font-weight: 800; font-size: 15px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(201,162,39,0.4);
  border: none; cursor: pointer;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,162,39,0.6); }

.btn-outline {
  display: inline-block;
  border: 2px solid rgba(201,162,39,0.5);
  color: var(--gold-light); padding: 13px 32px; border-radius: 100px;
  font-weight: 600; font-size: 15px; transition: all 0.2s;
}
.btn-outline:hover { border-color: var(--gold); background: rgba(201,162,39,0.1); color: var(--white); }

.btn-large { padding: 18px 44px; font-size: 17px; }
.btn-full { width: 100%; text-align: center; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

/* ===== NAV ===== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background 0.3s, box-shadow 0.3s;
}
#navbar.scrolled {
  background: rgba(8,34,26,0.96);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(201,162,39,0.15);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; height: 72px;
}
.logo-img { height: 48px; width: auto; display: block; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4)); }

.nav-links { display: flex; align-items: center; gap: 8px; list-style: none; }
.nav-links a {
  padding: 8px 14px; border-radius: 8px; font-size: 14px; font-weight: 500;
  color: var(--text-muted); transition: all 0.2s;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-cta {
  background: var(--gold-gradient) !important;
  color: var(--dark) !important; font-weight: 800 !important;
  padding: 9px 20px !important; border-radius: 100px !important;
  box-shadow: 0 4px 15px rgba(201,162,39,0.35);
}

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

.mobile-menu {
  display: none; flex-direction: column;
  background: rgba(8,34,26,0.98); backdrop-filter: blur(20px);
  padding: 20px 24px 28px; gap: 4px;
}
.mobile-menu a { padding: 12px 0; font-size: 16px; color: var(--text-muted); border-bottom: 1px solid rgba(201,162,39,0.1); }
.mobile-menu a:last-child { margin-top: 8px; border: none; }
.mobile-menu.open { display: flex; }

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding: 120px 24px 80px; text-align: center;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 50% -10%, rgba(45,143,106,0.45) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 80% 80%, rgba(201,162,39,0.15) 0%, transparent 60%),
    var(--dark);
}
.hero-particles { position: absolute; inset: 0; }

.hero-content {
  position: relative; z-index: 1; max-width: 820px;
  display: flex; flex-direction: column; align-items: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,162,39,0.12); border: 1px solid rgba(201,162,39,0.4);
  padding: 8px 20px; border-radius: 100px; font-size: 13px; font-weight: 600;
  color: var(--gold-light); margin-bottom: 20px;
  animation: fadeUp 0.6s ease both;
}
.hero-logo-wrap {
  display: flex; justify-content: center; margin-bottom: 20px;
  animation: fadeUp 0.5s ease both;
}
.hero-logo {
  height: 180px; width: auto;
  background: none;
  filter: drop-shadow(0 6px 24px rgba(0,0,0,0.5));
}

.hero-tagline {
  font-size: 13px; font-weight: 700; letter-spacing: 5px; text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
  display: block; width: 100%; text-align: center;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 8px;
  margin-bottom: 24px;
  animation: fadeUp 0.6s 0.05s ease both;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5.5vw, 70px); font-weight: 800; color: var(--white);
  line-height: 1.12; margin-bottom: 24px; text-align: center;
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero-sub {
  font-size: clamp(15px, 2vw, 18px); color: var(--text-muted);
  max-width: 560px; margin: 0 0 40px; text-align: center;
  animation: fadeUp 0.6s 0.2s ease both;
}
.hero-actions {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 64px;
  animation: fadeUp 0.6s 0.3s ease both;
}
.hero-stats {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: var(--radius); padding: 24px 40px;
  animation: fadeUp 0.6s 0.4s ease both;
}
.stat { text-align: center; padding: 0 32px; }
.stat strong {
  display: block; font-size: 28px; font-weight: 800;
  background: var(--gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat span { font-size: 13px; color: var(--text-muted); font-weight: 500; }
.stat-divider { width: 1px; height: 48px; background: rgba(201,162,39,0.2); }

.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--text-muted); font-size: 12px; z-index: 1;
  animation: fadeIn 1s 1s ease both;
}
.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid var(--gold); border-bottom: 2px solid var(--gold);
  transform: rotate(45deg); animation: bounce 1.5s infinite;
}

/* ===== TRUST STRIP & MARQUEE ===== */
.trust-strip {
  background: var(--dark2);
  border-top: 1px solid rgba(201,162,39,0.1);
  border-bottom: 1px solid rgba(201,162,39,0.1);
  padding: 20px 0; text-align: center; overflow: hidden;
}
.trust-strip p {
  font-size: 11px; text-transform: uppercase; letter-spacing: 2px;
  color: var(--text-muted); margin-bottom: 14px;
}

/* Marquee */
.marquee-track {
  overflow: hidden; width: 100%; position: relative;
  /* fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.marquee-inner {
  display: flex; gap: 48px; width: max-content;
  animation: marquee 120s linear infinite;
}
.marquee-inner:hover { animation-play-state: paused; }
.marquee-inner span {
  font-size: 13px; font-weight: 600; color: var(--text-muted);
  white-space: nowrap; transition: color 0.2s;
  cursor: default;
}
.marquee-inner span:hover { color: var(--gold-light); }

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== ABOUT ===== */
.about-visual { display: flex; flex-direction: column; gap: 16px; }
.about-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px;
}
.card-main { }
.about-icon { font-size: 40px; margin-bottom: 16px; }
.about-card h3 { font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.about-card p { color: var(--text-muted); font-size: 15px; }

/* Stat chips row below the main card */
.about-stats-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.about-stat-chip {
  background: var(--dark3); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 16px 12px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 4px;
}
.big-num {
  font-size: 24px; font-weight: 800;
  background: var(--gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.about-stat-chip span:last-child { font-size: 11px; color: var(--text-muted); white-space: nowrap; }

.about-text .section-label { display: inline-block; margin-bottom: 16px; }
.about-text .section-title { text-align: left; margin-bottom: 20px; }
.about-text p { color: var(--text-muted); margin-bottom: 16px; font-size: 16px; }
.about-list { list-style: none; margin: 24px 0 32px; display: flex; flex-direction: column; gap: 10px; }
.about-list li { font-size: 15px; font-weight: 500; color: var(--text); }

/* ===== EVENT REGISTRATION PAGE ===== */
.register-wrap {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 28px;
  padding: 60px 20px; text-align: center;
}
.register-logo-link { display: inline-block; }
.register-logo { height: 64px; width: auto; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4)); }
.register-card {
  max-width: 520px; width: 100%;
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 44px 40px; box-shadow: var(--shadow);
}
.register-label { display: inline-block; margin-bottom: 18px; }
.register-title {
  font-family: 'Playfair Display', serif; font-weight: 800;
  font-size: clamp(24px, 4vw, 32px); color: var(--white); line-height: 1.25; margin-bottom: 6px;
}
.register-tagline {
  font-weight: 700; font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 28px;
}
.register-details {
  display: flex; flex-direction: column; gap: 10px; text-align: left;
  background: var(--dark3); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 18px 20px; margin-bottom: 24px;
}
.register-details div { display: flex; justify-content: space-between; gap: 12px; font-size: 14px; color: var(--text-muted); }
.register-details strong { color: var(--white); font-weight: 700; text-align: right; }
.register-benefits { list-style: none; display: flex; flex-direction: column; gap: 8px; text-align: left; margin-bottom: 32px; }
.register-benefits li { font-size: 14px; color: var(--text); }
.register-whatsapp {
  display: inline-block; color: var(--gold-light); font-size: 14px; font-weight: 600;
  transition: color 0.2s;
}
.register-whatsapp:hover { color: var(--white); text-decoration: underline; }
@media (max-width: 480px) {
  .register-card { padding: 32px 24px; }
}

/* ===== MASCOT SECTION ===== */
.mascot-banner {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-dark) 60%, rgba(201,162,39,0.15) 100%);
  border-top: 1px solid rgba(201,162,39,0.2);
  border-bottom: 1px solid rgba(201,162,39,0.2);
  padding: 48px 24px;
}
.mascot-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 48px; flex-wrap: wrap;
}
.mascot-img-wrap { flex: 0 0 180px; text-align: center; }
.mascot-img { width: 160px; filter: drop-shadow(0 8px 32px rgba(201,162,39,0.3)); }
.mascot-text { flex: 1; min-width: 280px; }
.mascot-text h2 { font-family: 'Playfair Display', serif; font-size: 28px; color: var(--white); margin-bottom: 10px; }
.mascot-text p { color: var(--text-muted); font-size: 16px; }
.mascot-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.chip {
  background: rgba(201,162,39,0.12); border: 1px solid rgba(201,162,39,0.35);
  color: var(--gold-light); padding: 6px 16px; border-radius: 100px; font-size: 13px; font-weight: 600;
}

/* ===== SERVICES ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px 28px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gold-gradient); opacity: 0; transition: opacity 0.3s;
}
.service-card:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: 0 12px 40px rgba(201,162,39,0.15); }
.service-card:hover::before { opacity: 1; }
.service-card.featured {
  background: linear-gradient(135deg, rgba(45,143,106,0.2), rgba(201,162,39,0.08));
  border-color: rgba(201,162,39,0.5);
}
.service-badge {
  display: inline-block; background: var(--gold-gradient); color: var(--dark);
  font-size: 11px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px; margin-bottom: 16px;
}
.service-icon { font-size: 36px; margin-bottom: 16px; }
.service-card h3 { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.service-card p { color: var(--text-muted); font-size: 14px; line-height: 1.6; }

/* ===== COUNTRIES ===== */
.countries-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.country-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 24px; text-align: center;
  transition: transform 0.3s, border-color 0.3s; cursor: default;
}
.country-card:hover { transform: translateY(-6px); border-color: var(--gold); }
.country-flag { font-size: 48px; margin-bottom: 12px; display: block; }
.country-card h3 { font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.country-card p { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; }
.country-tag {
  display: inline-block; font-size: 12px; font-weight: 600;
  background: rgba(201,162,39,0.12); border: 1px solid rgba(201,162,39,0.3);
  color: var(--gold-light); padding: 4px 14px; border-radius: 100px;
}

/* ===== PROCESS ===== */
.process-timeline {
  display: flex; align-items: flex-start;
  gap: 0; justify-content: center; flex-wrap: wrap;
}
.process-step { flex: 1; min-width: 150px; max-width: 200px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px; }
.step-num {
  width: 64px; height: 64px; background: var(--gold-gradient);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 800; color: var(--dark);
  box-shadow: 0 4px 20px rgba(201,162,39,0.4); flex-shrink: 0;
}
.step-content h3 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.step-content p { font-size: 13px; color: var(--text-muted); }
.process-connector { flex: 0 0 40px; height: 2px; background: var(--gold-gradient); opacity: 0.4; margin-top: 32px; align-self: flex-start; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testimonial-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px;
  display: flex; flex-direction: column; gap: 20px;
}
.testimonial-card.featured-testimonial {
  border-color: rgba(201,162,39,0.5);
  background: linear-gradient(135deg, rgba(45,143,106,0.12), rgba(201,162,39,0.06));
}
.stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; }
.testimonial-card p { color: var(--text-muted); font-size: 15px; font-style: italic; line-height: 1.7; flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 44px; height: 44px; background: var(--gold-gradient);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: var(--dark); flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 14px; color: var(--white); }
.testimonial-author span { font-size: 12px; color: var(--text-muted); }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--green-mid) 0%, var(--green-dark) 50%, var(--green-deep) 100%);
  border-top: 2px solid var(--gold); border-bottom: 2px solid var(--gold);
  padding: 80px 24px; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,162,39,0.12) 0%, transparent 70%);
}
.cta-content { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.cta-content h2 { font-family: 'Playfair Display', serif; font-size: clamp(26px, 4vw, 42px); color: var(--white); margin-bottom: 16px; }
.cta-content p { color: rgba(255,255,255,0.75); font-size: 17px; margin-bottom: 36px; }

/* ===== CONTACT ===== */
.contact-layout { align-items: start; }
.contact-info .section-title { text-align: left; margin-bottom: 20px; }
.contact-info p { color: var(--text-muted); font-size: 16px; margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-item { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--text-muted); }
.contact-icon { font-size: 20px; }
.contact-item a { color: var(--gold-light); transition: color 0.2s; }
.contact-item a:hover { color: var(--white); text-decoration: underline; }

.contact-form {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm); padding: 13px 16px;
  color: var(--white); font-size: 15px; font-family: 'Inter', sans-serif;
  outline: none; transition: border-color 0.2s; -webkit-appearance: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,39,0.15);
}
.form-group select option { background: var(--dark3); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note { text-align: center; font-size: 12px; color: var(--text-muted); margin-top: 12px; }

/* ===== FOOTER ===== */
footer {
  background: var(--dark); border-top: 1px solid rgba(201,162,39,0.15);
  padding: 80px 0 0;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px 60px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
}
.footer-logo { height: 60px; width: auto; margin-bottom: 16px; display: block; }
.footer-brand p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.insta-link {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: var(--white); padding: 10px 20px; border-radius: 100px;
  font-size: 13px; font-weight: 600; transition: opacity 0.2s, transform 0.2s;
}
.insta-link:hover { opacity: 0.9; transform: translateY(-2px); }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--gold-light); margin-bottom: 8px; }
.footer-links a { font-size: 14px; color: var(--text-muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(201,162,39,0.1);
  text-align: center; padding: 24px;
  font-size: 13px; color: var(--text-muted);
}


/* ===== MAP ===== */
.map-wrap {
  margin-top: 28px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  position: relative;
}
.map-wrap iframe { display: block; }
.map-directions {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; padding: 12px;
  background: var(--card-bg);
  border-top: 1px solid var(--border);
  font-size: 14px; font-weight: 600; color: var(--gold-light);
  transition: background 0.2s;
}
.map-directions:hover { background: rgba(201,162,39,0.1); color: var(--white); }

/* make contact address a link */
.contact-item a[href*="maps.google"] {
  color: var(--gold-light);
  line-height: 1.5;
}
.contact-item a[href*="maps.google"]:hover { color: var(--white); text-decoration: underline; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  display: flex; align-items: center; gap: 10px;
  background: #25d366; color: #fff;
  padding: 14px 22px; border-radius: 100px;
  font-size: 15px; font-weight: 700;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(37,211,102,0.6);
}
@media (max-width: 480px) {
  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 16px; border-radius: 50%; bottom: 20px; right: 20px; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn  { from { opacity: 0; } to { opacity: 1; } }
@keyframes bounce {
  0%,100% { transform: rotate(45deg) translateY(0); }
  50%      { transform: rotate(45deg) translateY(6px); }
}

.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .countries-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 48px; }
  .about-stats-row { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .section { padding: 72px 0; }
  .services-grid, .countries-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 20px; padding: 24px; }
  .stat-divider { width: 80px; height: 1px; }
  .form-row { grid-template-columns: 1fr; }
  .process-timeline { flex-direction: column; align-items: center; }
  .process-connector { width: 2px; height: 32px; margin: 0; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-layout { grid-template-columns: 1fr; }
  .about-stats-row { grid-template-columns: repeat(3, 1fr); }
  .mascot-img-wrap { flex: 0 0 100%; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
}
