/* ===== TRANSFERIAM STYLE ===== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Lora:ital@0;1&display=swap');

:root {
  --orange: #F97316;
  --orange-dark: #EA6A05;
  --orange-light: #FFF7ED;
  --orange-50: #FFF3E6;
  --green: #22C55E;
  --green-dark: #16A34A;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
  --white: #ffffff;
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.07);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.14);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.18);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --font: 'Outfit', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--gray-50);
  color: var(--gray-800);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: var(--font); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: var(--shadow-md); }

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--orange);
  letter-spacing: -0.5px;
}
.logo-icon {
  width: 38px; height: 38px;
  background: var(--orange);
  color: white;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
}
.nav-links a {
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--gray-700);
  transition: all 0.2s;
}
.nav-links a:hover, .nav-links a.active {
  background: var(--orange-50);
  color: var(--orange);
}

.nav-whatsapp {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: white !important;
  padding: 9px 18px !important;
  border-radius: 10px !important;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  transition: background 0.2s !important;
}
.nav-whatsapp:hover { background: #20bb5a !important; color: white !important; }

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--gray-700);
  padding: 4px;
}

/* Mobile nav */
@media (max-width: 900px) {
  .hamburger { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 66px; left: 0; right: 0;
    background: white;
    flex-direction: column;
    padding: 16px;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; width: 100%; }
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0f1923 0%, #1a2940 50%, #0f2336 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1600&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15,25,35,0.7) 0%, rgba(15,25,35,0.5) 60%, rgba(15,25,35,0.85) 100%);
}

/* animated gradient orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  animation: orbFloat 8s ease-in-out infinite;
}
.hero-orb-1 { width: 500px; height: 500px; background: var(--orange); top: -100px; right: -100px; animation-delay: 0s; }
.hero-orb-2 { width: 300px; height: 300px; background: #3B82F6; bottom: 0; left: -80px; animation-delay: 3s; }

@keyframes orbFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.08); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: 32px 24px;
  animation: fadeUp 0.9s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249,115,22,0.18);
  border: 1px solid rgba(249,115,22,0.4);
  color: #FDBA74;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 24px;
  animation: fadeUp 0.9s 0.1s ease both;
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  color: white;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 18px;
  animation: fadeUp 0.9s 0.2s ease both;
}
.hero-accent { color: var(--orange); }

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 40px;
  line-height: 1.7;
  animation: fadeUp 0.9s 0.3s ease both;
}

/* countdown */
.countdown-wrap {
  margin-bottom: 36px;
  animation: fadeUp 0.9s 0.4s ease both;
}
.countdown-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
  font-weight: 500;
}
.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}
.count-box {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 16px 24px;
  min-width: 84px;
  text-align: center;
}
.count-box span {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.count-box label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
  display: block;
}
.count-sep {
  font-size: 2rem;
  color: rgba(255,255,255,0.4);
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: white;
  padding: 16px 36px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all 0.25s;
  box-shadow: 0 8px 32px rgba(249,115,22,0.4);
  animation: fadeUp 0.9s 0.5s ease both;
}
.hero-cta:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(249,115,22,0.5);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.4);
  font-size: 1.5rem;
  animation: bounce 2s infinite;
  z-index: 2;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ===== SEARCH SECTION ===== */
.search-section {
  background: white;
  padding: 0;
  position: relative;
  z-index: 10;
  box-shadow: var(--shadow-lg);
}

.search-card {
  max-width: 1100px;
  margin: 0 auto;
  padding: 36px 32px;
}

.search-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 28px;
  background: var(--gray-100);
  padding: 5px;
  border-radius: 12px;
  width: fit-content;
}
.stab {
  padding: 10px 22px;
  border: none;
  background: none;
  border-radius: 9px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--gray-500);
  transition: all 0.2s;
}
.stab.active {
  background: white;
  color: var(--orange);
  box-shadow: var(--shadow-sm);
}

.search-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 180px 180px auto;
  gap: 14px;
  align-items: end;
}

@media (max-width: 900px) {
  .search-grid { grid-template-columns: 1fr 1fr; }
  .search-grid .search-btn { grid-column: 1/-1; }
}
@media (max-width: 600px) {
  .search-grid { grid-template-columns: 1fr; }
  .search-card { padding: 24px 18px; }
}

.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--gray-500);
}
.form-group input, .form-group select {
  padding: 13px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--gray-800);
  background: var(--gray-50);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus, .form-group select:focus {
  border-color: var(--orange);
  background: white;
}

.search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--orange);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  padding: 13px 28px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.2s;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(249,115,22,0.35);
}
.search-btn:hover { background: var(--orange-dark); transform: translateY(-1px); }

/* ===== SECTION SHARED ===== */
.section { padding: 88px 24px; }
.section-sm { padding: 60px 24px; }
.container { max-width: 1160px; margin: 0 auto; }

.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--orange);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 560px;
  line-height: 1.7;
}

/* ===== SERVICES CARDS ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: var(--gray-200);
}
.service-img-placeholder {
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}
.service-body { padding: 24px; }
.service-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}
.service-desc { font-size: 0.92rem; color: var(--gray-500); line-height: 1.6; }

/* ===== FLEET ===== */
.fleet-section { background: var(--gray-900); }
.fleet-section .section-title { color: white; }
.fleet-section .section-sub { color: rgba(255,255,255,0.55); }
.fleet-section .section-label { color: #FDBA74; }

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
@media (max-width: 900px) { .fleet-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .fleet-grid { grid-template-columns: 1fr; } }

.fleet-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: all 0.3s;
}
.fleet-card:hover {
  background: rgba(249,115,22,0.12);
  border-color: rgba(249,115,22,0.4);
  transform: translateY(-4px);
}
.fleet-emoji { font-size: 3rem; margin-bottom: 16px; }
.fleet-name { font-size: 1rem; font-weight: 700; color: white; margin-bottom: 6px; }
.fleet-cap { font-size: 0.85rem; color: rgba(255,255,255,0.5); }

/* ===== WHY US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr; } }

.why-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: all 0.3s;
}
.why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.why-num {
  width: 48px; height: 48px;
  background: var(--orange-50);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 20px;
}
.why-title { font-size: 1.05rem; font-weight: 700; color: var(--gray-900); margin-bottom: 10px; }
.why-desc { font-size: 0.9rem; color: var(--gray-500); line-height: 1.6; }

/* ===== STATS ===== */
.stats-section {
  background: var(--orange);
  padding: 60px 24px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 700px) { .stats-grid { grid-template-columns: 1fr 1fr; } }

.stat-num {
  font-size: 2.6rem;
  font-weight: 900;
  color: white;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 0.9rem; color: rgba(255,255,255,0.75); font-weight: 500; }

/* ===== REGIONS PAGE ===== */
.regions-hero {
  background: linear-gradient(135deg, #0f1923 0%, #1a2940 100%);
  padding: 140px 24px 80px;
  text-align: center;
}
.regions-hero .section-title { color: white; }
.regions-hero .section-sub { color: rgba(255,255,255,0.65); margin: 0 auto; }
.regions-hero .section-label { color: #FDBA74; }

.regions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 900px) { .regions-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .regions-grid { grid-template-columns: 1fr; } }

.region-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
  cursor: pointer;
}
.region-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.region-img-wrap {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}
.region-body { padding: 22px; }
.region-name { font-size: 1.15rem; font-weight: 800; color: var(--gray-900); margin-bottom: 6px; }
.region-dist { font-size: 0.82rem; font-weight: 600; color: var(--orange); margin-bottom: 10px; }
.region-desc { font-size: 0.88rem; color: var(--gray-500); line-height: 1.6; margin-bottom: 16px; }
.region-tag {
  display: inline-block;
  background: var(--orange-50);
  color: var(--orange);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
}

.region-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: #25D366;
  color: white;
  border: none;
  padding: 11px;
  border-radius: 9px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: background 0.2s;
  margin-top: 14px;
}
.region-whatsapp:hover { background: #20bb5a; }

/* ===== ABOUT PAGE ===== */
.page-hero {
  background: linear-gradient(135deg, #0f1923 0%, #1a2940 100%);
  padding: 140px 24px 80px;
  text-align: center;
}
.page-hero .section-title { color: white; }
.page-hero .section-sub { color: rgba(255,255,255,0.65); margin: 0 auto; }
.page-hero .section-label { color: #FDBA74; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
}
@media (max-width: 800px) { .about-grid { grid-template-columns: 1fr; gap: 36px; } }

.about-visual {
  background: linear-gradient(135deg, var(--orange) 0%, #ea6a05 100%);
  border-radius: var(--radius-xl);
  padding: 48px;
  color: white;
  text-align: center;
  box-shadow: var(--shadow-xl);
}
.about-visual-icon { font-size: 5rem; margin-bottom: 20px; }
.about-visual h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 12px; }
.about-visual p { font-size: 0.95rem; opacity: 0.85; line-height: 1.7; }

.about-text { }
.about-text h2 { font-size: 2rem; font-weight: 800; color: var(--gray-900); margin-bottom: 18px; letter-spacing: -0.5px; }
.about-text p { font-size: 0.97rem; color: var(--gray-600); line-height: 1.8; margin-bottom: 18px; }

.about-features { list-style: none; margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.about-features li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-700);
}
.about-features li span.check {
  width: 28px; height: 28px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 700px) { .team-grid { grid-template-columns: 1fr; } }

.team-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
}
.team-avatar {
  width: 72px; height: 72px;
  background: var(--orange-50);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  margin: 0 auto 16px;
}
.team-name { font-size: 1rem; font-weight: 700; color: var(--gray-900); margin-bottom: 4px; }
.team-role { font-size: 0.85rem; color: var(--orange); font-weight: 600; }

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  transition: all 0.3s;
  animation: waPulse 2.5s infinite;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,0.6); }
.wa-float svg { width: 32px; height: 32px; fill: white; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 6px 36px rgba(37,211,102,0.8), 0 0 0 12px rgba(37,211,102,0.1); }
}

/* ===== FOOTER ===== */
footer {
  background: var(--gray-900);
  color: rgba(255,255,255,0.65);
  padding: 60px 24px 32px;
}
.footer-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 32px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.3rem; font-weight: 800; color: var(--orange);
  margin-bottom: 14px;
}
.footer-logo-icon {
  width: 34px; height: 34px;
  background: var(--orange);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.footer-desc { font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; }
.footer-contact-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem; margin-bottom: 8px;
}

.footer-col h4 { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: white; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 0.88rem; color: rgba(255,255,255,0.55); margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--orange); }

.footer-bottom {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.83rem;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom span { color: rgba(255,255,255,0.4); }

/* ===== PAGE TRANSITIONS ===== */
.fade-in { animation: fadeUp 0.7s ease both; }
.fade-in-2 { animation: fadeUp 0.7s 0.15s ease both; }
.fade-in-3 { animation: fadeUp 0.7s 0.3s ease both; }
