/* ===== CSS VARIABLES ===== */
:root {
  --yellow: #F5C400;
  --yellow-hover: #e0b000;
  --yellow-light: rgba(245, 196, 0, 0.15);
  --dark: #1a1a1a;
  --dark-2: #222222;
  --dark-3: #2d2d2d;
  --mid: #444444;
  --light-grey: #f5f5f5;
  --white: #ffffff;
  --text-muted: #888888;
  --text-muted-light: rgba(255,255,255,0.5);
  --border: rgba(0,0,0,0.08);
  --border-dark: rgba(255,255,255,0.1);
  --green-wa: hsl(142, 70%, 40%);
  --green-wa-hover: hsl(142, 70%, 33%);
  --radius: 0.75rem;
  --radius-lg: 1.25rem;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  background: var(--white);
  color: var(--dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: -0.01em;
}
a { text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ===== CONTAINER ===== */
.container { max-width: 1320px; margin: 0 auto; padding: 0 2rem; }

/* ===== UTILITIES ===== */
.hidden { display: none !important; }
.text-yellow { color: var(--yellow); }
.text-white { color: var(--white); }
.text-white-muted { color: rgba(255,255,255,0.65); }
.text-center { text-align: center; }
.section { padding: 5rem 0; }
.bg-white { background: var(--white); }
.bg-dark { background: var(--dark); }
.bg-surface-alt { background: var(--light-grey); }

/* ===== ICONS ===== */
.icon { width: 1rem; height: 1rem; display: inline-block; vertical-align: middle; flex-shrink: 0; }
.icon-sm { width: 0.875rem; height: 0.875rem; display: inline-block; vertical-align: middle; flex-shrink: 0; }
.icon-lg { width: 1.5rem; height: 1.5rem; display: inline-block; vertical-align: middle; flex-shrink: 0; }
.icon-xl { width: 2rem; height: 2rem; display: inline-block; vertical-align: middle; flex-shrink: 0; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.6rem 1.4rem; border-radius: 0.5rem;
  font-size: 0.875rem; font-weight: 700; font-family: 'Barlow', sans-serif;
  transition: all 0.2s ease; white-space: nowrap; cursor: pointer; border: none;
  text-transform: uppercase; letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.btn-lg { padding: 0.85rem 2rem; font-size: 0.9375rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-yellow { background: var(--yellow); color: var(--dark); }
.btn-yellow:hover { background: var(--yellow-hover); }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: var(--dark-3); }
.btn-whatsapp { background: var(--green-wa); color: white; }
.btn-whatsapp:hover { background: var(--green-wa-hover); }
.btn-outline { background: transparent; color: var(--dark); border: 2px solid var(--dark); }
.btn-outline:hover { background: var(--dark); color: var(--white); }
.btn-outline-dark { background: transparent; color: var(--dark); border: 2px solid var(--dark); }
.btn-outline-dark:hover { background: var(--dark); color: var(--white); }
.btn-outline-light { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); }
.btn-outline-light:hover { border-color: var(--yellow); color: var(--yellow); }
.btn-row { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* ===== SECTION LABELS ===== */
.section-label {
  display: inline-block;
  background: var(--yellow-light);
  color: #8a6f00;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.3rem 0.9rem;
  border-radius: 2rem;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(245,196,0,0.3);
}
.section-label-light {
  background: rgba(245,196,0,0.15);
  color: var(--yellow);
  border-color: rgba(245,196,0,0.3);
}

/* ===== SECTION TITLES ===== */
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.section-header { text-align: center; margin-bottom: 1rem; }
.section-body {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.75;
  font-size: 1rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeInUp 0.7s ease forwards; }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== TOP BAR ===== */
.topbar { background: var(--dark); color: rgba(255,255,255,0.7); font-size: 0.72rem; padding: 0.5rem 0; }
.topbar-inner { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.topbar-item { display: flex; align-items: center; gap: 0.3rem; }
.dot { display: none; color: rgba(255,255,255,0.3); }
@media (min-width: 640px) { .dot { display: inline; } }

@media (max-width: 768px) {
  .topbar {
    display: none;
  }
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: var(--dark-2);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
  border-bottom: 2px solid rgba(245,196,0,0.2);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 0.8rem; padding-bottom: 0.8rem;
}
.nav-brand { display: flex; align-items: center; gap: 0.75rem; }
.brand-icon {
  width: 40px; height: 40px; border-radius: 8px;
  background: var(--yellow); color: var(--dark);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.brand-name { display: block; color: var(--white); font-family: 'Barlow Condensed', sans-serif; font-size: 1.35rem; font-weight: 800; letter-spacing: 0.02em; line-height: 1; }
.brand-tag { display: block; color: var(--yellow); font-size: 0.6rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; }
.nav-links { display: none; align-items: center; gap: 1.5rem; }
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-link { color: rgba(255,255,255,0.8); font-size: 0.875rem; font-weight: 600; transition: color 0.2s; display: flex; align-items: center; gap: 0.25rem; text-transform: uppercase; letter-spacing: 0.04em; }
.nav-link:hover { color: var(--yellow); }
.nav-dropdown { position: relative; }
.advanced-dropdown {
  position: absolute; top: 100%; left: 0; width: 280px;
  background: var(--white); border-radius: var(--radius-lg);
  padding: 0.75rem; margin-top: 8px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  display: none; flex-direction: column; gap: 4px; z-index: 1000;
  border: 1px solid var(--border);
}
.nav-dropdown:hover .advanced-dropdown { display: flex; }
.dropdown-card { display: flex; gap: 0.75rem; padding: 0.65rem; border-radius: 0.75rem; text-decoration: none; transition: all 0.2s; }
.dropdown-card:hover { background: var(--light-grey); }
.icon-box { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.icon-box.purple { background: #ede9fe; }
.icon-box.blue { background: #e0f2fe; }
.icon-box.yellow { background: #fef9c3; }
.icon-box.purple-light { background: #f3e8ff; }
.card-content h4 { margin: 0; font-size: 0.8rem; font-weight: 700; color: var(--dark); font-family: 'Barlow', sans-serif; }
.card-content p { margin: 2px 0 0; font-size: 0.7rem; color: var(--text-muted); }
.nav-ctas { display: none; align-items: center; gap: 0.5rem; }
@media (min-width: 1024px) { .nav-ctas { display: flex; } }
.hamburger { display: flex; align-items: center; color: var(--white); padding: 0.25rem; }
@media (min-width: 1024px) { .hamburger { display: none; } }
.mobile-menu { background: var(--dark-2); border-top: 1px solid rgba(255,255,255,0.08);margin-bottom: 20px; }
.mobile-menu-inner { padding: 1.25rem 0; display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-link { color: rgba(255,255,255,0.8); font-size: 0.9rem; font-weight: 600; padding: 0.6rem 0; display: flex; align-items: center; justify-content: space-between; text-transform: uppercase; letter-spacing: 0.04em; background: none; width: 100%; text-align: left; border: none; }
.mobile-link:hover { color: var(--yellow); }
.mobile-sub { padding-left: 1rem; display: flex; flex-direction: column; gap: 0.25rem; margin-bottom: 0.25rem; }
.mobile-sub-link { color: rgba(255,255,255,0.6); font-size: 0.85rem; padding: 0.4rem 0; }
.mobile-sub-link:hover { color: var(--yellow); }
.mobile-ctas { display: flex; gap: 0.75rem; flex-wrap: wrap; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.08); margin-top: 0.5rem; }
.mobile-chevron { transition: transform 0.2s; }
.mobile-chevron.rotated { transform: rotate(180deg); }

/* ===== HERO SLIDER ===== */
.hero { position: relative; background: var(--dark); overflow: hidden; }
.hero-slider { position: relative; width: 100%; overflow: hidden; }
.hero-slide { display: none; width: 100%; }
.hero-slide.active { display: block; animation: slideIn 0.6s ease; }
@keyframes slideIn {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
.hero-slide img { width: 100%; height: auto; display: block; object-fit: cover; }
.hero-slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(0,0,0,0.45); border: 2px solid rgba(255,255,255,0.25);
  color: white; display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 10; transition: all 0.2s; backdrop-filter: blur(4px);
}
.hero-slider-btn svg { width: 18px; height: 18px; }
.hero-slider-btn:hover { background: var(--yellow); border-color: var(--yellow); color: var(--dark); }
.hero-slider-prev { left: 1rem; }
.hero-slider-next { right: 1rem; }
.hero-slider-dots {
  position: absolute; bottom: 0.75rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 0.5rem; z-index: 10;
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.4); border: none; cursor: pointer; transition: all 0.2s;
}
.hero-dot.active { background: var(--yellow); width: 22px; border-radius: 4px; }
.hero-overlay { background: var(--dark-2); border-top: 3px solid var(--yellow); }
.hero-bottom-bar { padding: 1.5rem 0; }
.hero-stats-row { display: flex; align-items: center; gap: 0; flex-wrap: wrap; justify-content: center; margin-bottom: 1.25rem; }
.hero-stat { text-align: center; padding: 0.5rem 1.75rem; }
.hero-stat-num { display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 2rem; font-weight: 900; color: var(--yellow); line-height: 1; }
.hero-stat-label { display: block; font-size: 0.68rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.15rem; }
.hero-stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.1); }
.hero-cta-bar { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

@media (max-width: 768px) {
  .hero-slider-btn {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .hero-stats-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 per row */
    gap: 15px;
    text-align: center;
  }

  .hero-stat {
    padding: 10px 0;
  }

  /* Hide dividers (they break layout) */
  .hero-stat-divider {
    display: none;
  }
}
/* ===== QUICK TRACK BAR ===== */
.quick-track-bar { background: var(--yellow); padding: 1rem 0; }
.quick-track-inner {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; justify-content: center;
}
.quick-track-label { font-weight: 800; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.06em; display: flex; align-items: center; gap: 0.4rem; color: var(--dark); flex-shrink: 0; }
.quick-track-input {
  flex: 1; min-width: 220px; max-width: 380px;
  padding: 0.6rem 1rem; border-radius: 0.5rem;
  border: 2px solid rgba(0,0,0,0.15); background: var(--white);
  font-family: 'Barlow', sans-serif; font-size: 0.875rem; color: var(--dark);
  outline: none; transition: border-color 0.2s;
}
.quick-track-input:focus { border-color: var(--dark); }
.quick-track-input::placeholder { color: var(--text-muted); }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 3.5rem; align-items: center; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin: 1.75rem 0; }
.feature-item { display: flex; align-items: flex-start; gap: 0.85rem; }
.feature-icon-wrap {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--yellow-light); border: 1px solid rgba(245,196,0,0.3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: #8a6f00;
}
.feature-title { font-size: 0.875rem; font-weight: 700; margin-bottom: 0.2rem; font-family: 'Barlow', sans-serif; }
.feature-desc { font-size: 0.75rem; color: var(--text-muted); }

/* ===== MISSION VISION ===== */
.mission-vision-stack { display: flex; flex-direction: column; gap: 1rem; }
.mv-card { padding: 1.5rem; border-radius: var(--radius-lg); border: 1px solid var(--border); }
.mv-card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 800; margin-bottom: 0.5rem; margin-top: 0.25rem; }
.mv-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }
.mv-card-mission { background: var(--dark); }
.mv-card-mission h3 { color: var(--yellow); }
.mv-card-mission p { color: rgba(255,255,255,0.65); }
.mv-card-vision { background: var(--light-grey); }
.mv-card-vision h3 { color: var(--dark); }
.mv-icon { font-size: 1.5rem; margin-bottom: 0.25rem; }
.mv-card-offer { background: var(--yellow); text-align: center; }
.mv-offer-badge { font-size: 0.65rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; background: rgba(0,0,0,0.12); padding: 0.2rem 0.75rem; border-radius: 2rem; display: inline-block; margin-bottom: 0.5rem; }
.mv-offer-text { font-family: 'Barlow Condensed', sans-serif; font-size: 1.25rem; font-weight: 800; color: var(--dark); }

/* ===== SERVICES ===== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.25rem; }
.service-card {
  background: var(--dark-3); border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg); padding: 1.75rem;
  transition: all 0.3s ease; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--yellow); transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover { transform: translateY(-4px); border-color: rgba(245,196,0,0.2); }
.service-card:hover::before { transform: scaleX(1); }
.service-num { font-family: 'Barlow Condensed', sans-serif; font-size: 0.75rem; font-weight: 800; color: var(--yellow); letter-spacing: 0.1em; margin-bottom: 0.75rem; opacity: 0.7; }
.service-icon-wrap { font-size: 2rem; margin-bottom: 0.75rem; }
.service-title { font-family: 'Barlow Condensed', sans-serif; font-size: 1.2rem; font-weight: 800; color: var(--white); margin-bottom: 0.6rem; }
.service-desc { font-size: 0.825rem; color: rgba(255,255,255,0.55); line-height: 1.65; margin-bottom: 1rem; }
.service-link { font-size: 0.8rem; font-weight: 800; color: var(--yellow); text-transform: uppercase; letter-spacing: 0.06em; }
.service-link:hover { text-decoration: underline; }

/* ===== WHY CHOOSE US ===== */
.bg-yellow-section { background: var(--yellow); }
.why-inner { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; }
@media (min-width: 1024px) { .why-inner { grid-template-columns: 1fr 1fr; } }
.why-inner .section-title { color: var(--dark); }
.why-inner .section-body { color: rgba(0,0,0,0.65); }
.why-list { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.5rem; }
.why-item { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem; font-weight: 500; color: var(--dark); }
.why-check { width: 22px; height: 22px; border-radius: 50%; background: var(--dark); color: var(--yellow); font-size: 0.75rem; font-weight: 900; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.why-stats-card { background: var(--dark); border-radius: var(--radius-lg); padding: 2.5rem; text-align: center; box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.why-stat-big { margin-bottom: 2rem; }
.stat-circle {
  width: 130px; height: 130px; border-radius: 50%;
  background: var(--yellow); color: var(--dark);
  font-family: 'Barlow Condensed', sans-serif; font-size: 2.8rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.stat-circle span { font-size: 1.5rem; margin-top: -0.5rem; }
.why-stat-big p { color: rgba(255,255,255,0.6); font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.08em; }
.why-stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.why-stat-item { text-align: center; }
.why-stat-item strong { display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 1.6rem; font-weight: 900; color: var(--yellow); }
.why-stat-item span { font-size: 0.7rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.07em; }

/* ===== PARTNERS ===== */
.partners-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 1rem; }
.partner-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem 1.25rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
  transition: all 0.3s ease; cursor: pointer;
}
.partner-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--yellow); }
.partner-card img { height: 36px; width: auto; object-fit: contain; max-width: 100%; }
.partner-name { font-size: 0.7rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }

/* ===== TESTIMONIALS ===== */
.testimonial-wrap { max-width: 640px; margin: 0 auto; }
.testimonial-card {
  background: var(--dark-3); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg); padding: 2.5rem;
  text-align: center; transition: opacity 0.3s ease, transform 0.3s ease;
}
.testimonial-stars { display: flex; justify-content: center; gap: 0.25rem; margin-bottom: 1.25rem; }
.testimonial-stars svg { width: 1.25rem; height: 1.25rem; fill: var(--yellow); stroke: var(--yellow); }
.testimonial-text { font-size: 1.05rem; color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 1.25rem; font-style: italic; }
.testimonial-name { font-size: 0.8rem; font-weight: 700; color: var(--yellow); text-transform: uppercase; letter-spacing: 0.1em; }
.testimonial-nav { display: flex; align-items: center; justify-content: center; gap: 0.75rem; margin-top: 1.5rem; }
.nav-btn { background: var(--dark-3); border: 1px solid rgba(255,255,255,0.1); color: var(--white); padding: 0.5rem; border-radius: 0.5rem; transition: all 0.2s; display: flex; align-items: center; }
.nav-btn:hover { border-color: var(--yellow); color: var(--yellow); }
.dots-nav { display: flex; gap: 0.5rem; }
.dot-indicator { width: 7px; height: 7px; border-radius: 9999px; background: rgba(255,255,255,0.2); transition: background 0.2s; cursor: pointer; border: none; }
.dot-indicator.active { background: var(--yellow); width: 22px; }

/* ===== CONTACT ===== */
.contact-layout { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: start; }
@media (min-width: 1024px) { .contact-layout { grid-template-columns: 1fr 1.5fr; } }
.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info-block { padding: 1.25rem; background: var(--light-grey); border-radius: var(--radius); border-left: 3px solid var(--yellow); }
.contact-info-block h3 { font-size: 0.875rem; font-weight: 800; margin-bottom: 0.35rem; font-family: 'Barlow', sans-serif; text-transform: uppercase; letter-spacing: 0.05em; }
.contact-info-block p { font-size: 0.875rem; color: var(--text-muted); }
.contact-info-block a { font-size: 0.875rem; color: var(--dark); font-weight: 600; transition: color 0.2s; }
.contact-info-block a:hover { color: #8a6f00; }
.quick-contact-btns { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.contact-form-wrap { background: var(--light-grey); border-radius: var(--radius-lg); padding: 2.5rem; border: 1px solid var(--border); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 0; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 1rem; }
.form-label { display: block; font-size: 0.75rem; font-weight: 700; color: var(--dark); margin-bottom: 0.3rem; text-transform: uppercase; letter-spacing: 0.05em; }
.form-label-row { display: flex; justify-content: space-between; align-items: center; }
.char-count { font-size: 0.7rem; color: var(--text-muted); font-weight: 400; text-transform: none; letter-spacing: 0; }
.form-input {
  width: 100%; background: var(--white); border: 1.5px solid var(--border);
  border-radius: 0.5rem; padding: 0.65rem 1rem;
  font-size: 0.875rem; color: var(--dark); font-family: 'Barlow', sans-serif;
  transition: border-color 0.2s, box-shadow 0.2s; outline: none;
}
.form-input::placeholder { color: #aaa; }
.form-input:focus { border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(245,196,0,0.15); }
.form-textarea { resize: none; }
.form-note { font-size: 0.7rem; color: var(--text-muted); text-align: center; margin-top: 0.75rem; }
.form-success { text-align: center; padding: 3rem 1.5rem; }
.success-icon { width: 56px; height: 56px; border-radius: 50%; background: var(--yellow); color: var(--dark); font-size: 1.5rem; font-weight: 900; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.form-success h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.5rem; font-weight: 800; margin-bottom: 0.5rem; }
.form-success p { font-size: 0.875rem; color: var(--text-muted); }

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: var(--white); }
.footer-inner { display: grid; grid-template-columns: 1fr; gap: 2.5rem; padding-top: 4rem; padding-bottom: 4rem; }
@media (min-width: 640px) { .footer-inner { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-inner { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-logo-wrap { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.footer-brand-icon { width: 38px; height: 38px; border-radius: 8px; background: var(--yellow); color: var(--dark); font-family: 'Barlow Condensed', sans-serif; font-size: 1.3rem; font-weight: 900; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.footer-brand-name { display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 1.35rem; font-weight: 800; color: var(--white); line-height: 1; }
.footer-brand-tag { display: block; font-size: 0.6rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--yellow); }
.footer-desc { color: rgba(255,255,255,0.45); font-size: 0.85rem; line-height: 1.7; margin-bottom: 0.75rem; }
.footer-address { color: rgba(255,255,255,0.5); font-size: 0.8rem; }
.footer-col-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 0.9rem; color: var(--yellow); margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.08em; }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { color: rgba(255,255,255,0.55); font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--yellow); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); }
.footer-bottom .container { padding-top: 1.25rem; padding-bottom: 1.25rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; font-size: 0.75rem; color: rgba(255,255,255,0.35); }

/* ===== FLOATING BUTTONS ===== */
.floating-btns { position: fixed; bottom: 1.5rem; right: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; z-index: 50; }
.float-btn { width: 3.25rem; height: 3.25rem; border-radius: 9999px; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(0,0,0,0.3); transition: all 0.2s ease; }
.float-btn:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(0,0,0,0.35); }
.float-btn-wa { background: var(--green-wa); color: white; }
.float-btn-wa:hover { background: var(--green-wa-hover); }
.float-btn-yellow { background: var(--yellow); color: var(--dark); }
.float-btn-yellow:hover { background: var(--yellow-hover); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .container { padding: 0 1rem; }
  .hero-stat { padding: 0.5rem 1rem; }
  .hero-stat-num { font-size: 1.5rem; }
  .hero-stat-divider { display: none; }
  .why-stats-card { padding: 1.75rem; }
}
@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
}

/* ===== GOOGLE MAP SECTION ===== */

.map-section { background: var(--dark); }
.map-section-header { padding: 3rem 0 1.5rem; }
.map-embed-wrap { position: relative; }
.map-embed-wrap iframe { display: block; width: 100%; }
.map-overlay-card { position: absolute; top: 1rem; left: 1rem; background: var(--white); border-radius: var(--radius-lg); padding: 1rem 1.25rem; display: flex; align-items: center; gap: 0.85rem; box-shadow: 0 8px 32px rgba(0,0,0,0.2); max-width: 260px; }
.map-overlay-logo { width: 38px; height: 38px; border-radius: 8px; background: var(--yellow); color: var(--dark); font-family: 'Barlow Condensed', sans-serif; font-size: 1.3rem; font-weight: 900; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.map-overlay-card strong { display: block; font-size: 0.85rem; font-weight: 800; color: var(--dark); }
.map-overlay-card p { font-size: 0.72rem; color: var(--text-muted); }

.map-container {
  position: relative;
  width: 100%;
  max-width: 1200px; /* increased */
  margin: auto;
}

/* SVG SIZE CONTROL */
.world-map-svg {
  width: 100%;
  height: 440px; /* increased height */
}

/* MAP LOOK */
.map-base {
  opacity: 0.95;
  filter: brightness(0.35) contrast(1.25);
}

/* ROUTES (BOLDER + CLEANER) */
.route-path {
  fill: none;
  stroke: url(#routeGradient);
  stroke-width: 3.5; /* increased boldness */
  stroke-dasharray: 8 6; /* bigger dashes */
  animation: dashMove 4s linear infinite;
}

/* DASH ANIMATION */
@keyframes dashMove {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: -30; }
}

/* ORIGIN */
.origin-dot {
  fill: #f5c400;
  r: 8; /* bigger */
}

/* PULSE EFFECT */
.pulse-ring {
  fill: #f5c400;
  opacity: 0.25;
  animation: pulse 2s infinite;
}

/* DESTINATION */
.dest-dot {
  fill: #fff;
  stroke: #f5c400;
  stroke-width: 1.5;
  r: 5.5; /* slightly bigger */
}

/* LABELS */
.map-label {
  font-size: 12px;
  font-weight: 700;
  fill: #fff;
  letter-spacing: 1px;
}

/* BADGE */
.map-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: rgba(255,255,255,0.95);
  padding: 14px 18px;
  border-radius: 16px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.18);
  transform: scale(1.05);
}

.map-badge-num {
  font-size: 22px;
  font-weight: 700;
  color: #f5c400;
}

.map-badge-text {
  font-size: 12px;
  color: #555;
}

/* PULSE */
@keyframes pulse {
  0% { r: 10; opacity: 0.4; }
  70% { r: 28; opacity: 0; }
  100% { r: 10; opacity: 0; }
}

.global-coverage-wrap {
  display: grid;
  grid-template-columns: 1fr 2.5fr 1fr; /* give map more space */
  gap: 24px;
  align-items: center;
}

/* ===== GLOBAL COVERAGE ===== */
.global-coverage-wrap { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; margin-bottom: 2rem; }
@media (min-width: 900px) { .global-coverage-wrap { grid-template-columns: 1fr 1.4fr 1fr; } }
.country-card { display: flex; align-items: center; gap: 0.9rem; padding: 0.85rem 1rem; background: var(--light-grey); border-radius: 0.75rem; border: 1px solid var(--border); margin-bottom: 0.6rem; transition: all 0.2s; position: relative; }
.country-card:hover { background: var(--white); box-shadow: var(--shadow); border-color: var(--yellow); }
.country-flag { font-size: 1.75rem; flex-shrink: 0; }
.country-info { flex: 1; }
.country-info h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 800; color: var(--dark); margin-bottom: 0.1rem; }
.country-info p { font-size: 0.72rem; color: var(--text-muted); line-height: 1.3; }
.country-badge { background: var(--yellow); color: var(--dark); font-size: 0.6rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; padding: 0.15rem 0.5rem; border-radius: 2rem; white-space: nowrap; flex-shrink: 0; }

/* Free Pickup Banner */
.free-pickup-banner { display: flex; align-items: center; gap: 1.5rem; background: var(--dark); border-radius: var(--radius-lg); padding: 1.75rem 2rem; border-left: 5px solid var(--yellow); flex-wrap: wrap; }
.free-pickup-icon { font-size: 2.5rem; flex-shrink: 0; }
.free-pickup-text { flex: 1; min-width: 200px; }
.free-pickup-text strong { display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 1.2rem; font-weight: 800; color: var(--white); margin-bottom: 0.25rem; }
.free-pickup-text span { font-size: 0.85rem; color: rgba(255,255,255,0.6); }

/* ===== SHIPPING RULES ===== */

.rules-block {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

/* HEADERS */
.rules-block-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.75rem;
}

.rules-header-prohibited {
  background: #fff0f0;
  border-bottom: 1px solid #ffd0d0;
}

.rules-header-prohibited h3 {
  color: #c00;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 0.2rem;
}

.rules-header-prohibited p {
  color: #c00;
  font-size: 0.8rem;
  opacity: 0.8;
}

.rules-header-restricted {
  background: #fffbea;
  border-bottom: 1px solid #fde68a;
}

.rules-header-restricted h3 {
  color: #92400e;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 0.2rem;
}

.rules-header-restricted p {
  color: #92400e;
  font-size: 0.8rem;
  opacity: 0.8;
}

.rules-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

/* ===== PROHIBITED GRID ===== */

/* MOBILE (default grid) */
.prohibited-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 0.75rem;
  padding: 1.5rem;
  background: var(--white);
}

/* DESKTOP → SINGLE ROW SCROLL */
@media (min-width: 1024px) {
  .prohibited-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 1rem;
    padding: 1.5rem;
    scroll-behavior: smooth;
  }

  /* scrollbar */
  .prohibited-grid::-webkit-scrollbar {
    height: 6px;
  }

  .prohibited-grid::-webkit-scrollbar-thumb {
    background: #e5e5e5;
    border-radius: 10px;
  }

  .prohibited-grid::-webkit-scrollbar-track {
    background: transparent;
  }

  /* card sizing */
  .prohibited-item {
    min-width: 140px;
    flex-shrink: 0;
  }
}

/* CARDS */
.prohibited-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 1rem 0.5rem;
  border-radius: 0.75rem;
  background: #fff5f5;
  border: 1px solid #fecaca;
  text-align: center;
  transition: all 0.25s ease;
}

/* PREMIUM HOVER */
.prohibited-item:hover {
  background: #fee2e2;
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.prohibited-icon {
  font-size: 1.75rem;
  position: relative;
}

/* small overlay 🚫 */
.prohibited-icon::after {
  content: '🚫';
  position: absolute;
  bottom: -4px;
  right: -6px;
  font-size: 0.75rem;
}

.prohibited-item span {
  font-size: 0.72rem;
  font-weight: 600;
  color: #7f1d1d;
  line-height: 1.3;
}

/* ===== RESTRICTED ===== */

.restricted-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 1.5rem;
  background: var(--white);
}

@media (min-width: 640px) {
  .restricted-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0 2rem;
  }
}

.restricted-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.restricted-item {
  font-size: 0.85rem;
  color: #78350f;
  padding: 0.55rem 0.8rem;
  border-radius: 0.5rem;
  background: #fffbea;
  border: 1px solid #fde68a;
  font-weight: 500;
  transition: all 0.2s ease;
}

/* subtle hover */
.restricted-item:hover {
  background: #fef3c7;
  transform: translateX(3px);
}

/* ===== NOTE ===== */

.rules-note {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--light-grey);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-top: 1.5rem;
}

.rules-note span {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.rules-note p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.rules-note a {
  color: var(--dark);
  font-weight: 700;
  text-decoration: underline;
}

.rules-note a:hover {
  color: #8a6f00;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: 0.3s;
  font-size: 14px;
}

.footer-social a:hover {
  background: #facc15; /* yellow theme */
  color: #000;
  transform: translateY(-3px);
}