/* =============================================
   EazyExim — Global Styles
   ============================================= */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: #1e2533; background: #fff; overflow-x: hidden; }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 80px;
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease;
  overflow: visible;
}
.navbar.scrolled {
  background: #0d1b3e;
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.navbar.solid {
  background: #0d1b3e;
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

/* Logo */
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon { width: 46px; height: 46px; }
.logo-icon svg { width: 100%; height: 100%; }
.logo-text-wrap { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-size: 22px; font-weight: 800; color: #ffffff; letter-spacing: 0.5px; }
.logo-sub { font-size: 10px; color: rgba(255,255,255,0.7); letter-spacing: 1.5px; text-transform: uppercase; }

/* Nav links */
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links li { position: relative; }
.nav-links li a {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 8px 16px; font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,0.92); text-decoration: none;
  border-radius: 50px; transition: background 0.2s; white-space: nowrap;
}
.nav-links li a.active { background: #ffffff; color: #1a1a1a; font-weight: 600; }
.nav-links li a:not(.active):hover { background: rgba(255,255,255,0.15); }
.arr { font-size: 9px; opacity: 0.75; }

/* Request Quote */
.nav-cta {
  padding: 10px 22px !important; border: 2px solid #fff !important;
  border-radius: 50px !important; font-weight: 600 !important;
  background: transparent !important; color: #fff !important;
  transition: background 0.2s, color 0.2s !important;
}
.nav-cta:hover { background: #fff !important; color: #0d1b3e !important; }

/* Dropdown */
.dropdown {
  position: absolute; top: calc(100% + 6px); left: 0;
  background: #fff; border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  min-width: 250px; padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all 0.22s ease; z-index: 200;
}
.nav-links li:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: flex !important; align-items: center; gap: 10px;
  padding: 11px 14px !important; font-size: 13.5px !important;
  color: #333 !important; border-radius: 7px !important;
  background: transparent !important; font-weight: 400 !important;
}
.dropdown a:hover { background: #e8f0fb !important; color: #1a5a9e !important; }
.drop-icon {
  width: 30px; height: 30px; background: #e8f0fb; border-radius: 7px;
  display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0;
}


/* ── PAGE HERO (for inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, #0d1b3e 0%, #1a3a6b 100%);
  padding: 140px 40px 70px;
  text-align: center;
}
.page-hero h1 { font-size: clamp(32px, 4vw, 52px); font-weight: 800; color: #fff; }
.page-hero p { font-size: 16px; color: rgba(255,255,255,0.90); margin-top: 12px; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; margin-top: 16px; font-size: 13px; color: rgba(255,255,255,0.6); }
.breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: #4a90d9; }

/* ── SECTION COMMON ── */
.section { padding: 90px 40px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 52px; }
.eyebrow {
  display: inline-block; background: #e8f0fb; color: #1a5a9e;
  padding: 5px 16px; border-radius: 50px; font-size: 12px;
  font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 14px;
}
.sec-title { font-size: clamp(22px, 5vw, 38px); font-weight: 800; color: #0d1b3e; line-height: 1.25; }
.sec-desc { font-size: clamp(13px, 3vw, 15px); color: #666; max-width: 600px; margin: 12px auto 0; line-height: 1.8; }
.divider { width: 50px; height: 3px; background: #4a90d9; border-radius: 2px; margin: 14px auto 0; }

/* ── SIDE ENQUIRY BUTTON ── */
.side-enquiry {
  position: fixed; right: 0; top: 50%; transform: translateY(-50%); z-index: 999;
  background: #0d1b3e; color: #fff; text-decoration: none;
  border-radius: 10px 0 0 10px; padding: 20px 12px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  box-shadow: -4px 0 20px rgba(0,0,0,0.2); transition: background 0.2s, padding 0.2s;
}
.side-enquiry:hover { background: #1a3a6b; padding: 20px 16px; }
.side-enquiry-text {
  writing-mode: vertical-rl; text-orientation: mixed;
  font-size: 12.5px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #fff;
}

/* ── WHATSAPP ── */
.wa-btn {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 54px; height: 54px; background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: transform 0.2s; animation: waPulse 2.5s infinite;
}
.wa-btn:hover { transform: scale(1.1); }
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50%      { box-shadow: 0 4px 32px rgba(37,211,102,0.75); }
}
.wa-icon { width: 30px; height: 30px; fill: #fff; }

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed; bottom: 32px; left: 32px;
  width: 44px; height: 44px; background: #2a72c3; color: #fff;
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 700; text-decoration: none;
  box-shadow: 0 4px 16px rgba(42,114,195,0.4);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s, transform 0.2s; z-index: 999;
}
.back-to-top.show { opacity: 1; pointer-events: all; }
.back-to-top:hover { transform: translateY(-3px); }

/* ── FOOTER ── */
footer {
  background: #071409; color: rgba(255,255,255,0.80);
  padding: 64px 40px 32px;
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.fbrand-name { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.fbrand-name span { color: #f5a623; }
.fbrand-desc { font-size: 13px; line-height: 1.75; max-width: 250px; }
.fcol-title {
  font-size: 12px; font-weight: 700; color: #fff; text-transform: uppercase;
  letter-spacing: 2px; margin-bottom: 18px; padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.flinks { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.flinks a { font-size: 13px; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s, padding-left 0.2s; }
.flinks a:hover { color: #f5a623; padding-left: 4px; }
.fci { display: flex; gap: 10px; margin-bottom: 12px; font-size: 13px; }
.fci-icon { color: #f5a623; margin-top: 2px; flex-shrink: 0; }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; font-size: 12.5px;
}
.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-bottom a:hover { color: #f5a623; }

/* ── UX: Tap targets & focus styles ── */
a, button { -webkit-tap-highlight-color: transparent; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid #4a90d9; outline-offset: 2px; border-radius: 4px;
}
img { max-width: 100%; height: auto; }

/* ── REVEAL ANIMATION ── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.2s; } .d3 { transition-delay: 0.3s; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .navbar { padding: 0 20px; }
  .sec-title { font-size: 26px; }
  .sec-desc { font-size: 14px; }
}

@media (max-width: 900px) {
  .navbar { padding: 0 20px; height: 70px; }
  .nav-links { display: none; }
  .nav-links.mobile-open {
    display: flex; flex-direction: column;
    position: fixed; top: 70px; left: 0; right: 0;
    background: #0d1b3e; padding: 16px 20px 28px;
    gap: 2px; z-index: 999;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    max-height: calc(100vh - 70px); overflow-y: auto;
  }
  .nav-links.mobile-open li a {
    padding: 12px 16px; font-size: 15px; border-radius: 8px;
    min-height: 44px; display: flex; align-items: center;
  }
  .nav-links.mobile-open .dropdown {
    position: static; opacity: 1; visibility: visible;
    transform: none; box-shadow: none;
    background: rgba(255,255,255,0.06); border-radius: 8px;
    margin: 4px 0 4px 12px; padding: 4px;
    display: none;
  }
  .nav-links.mobile-open .dropdown a {
    color: rgba(255,255,255,0.85) !important; font-size: 13.5px !important;
    padding: 10px 12px !important; min-height: 40px;
  }
  .nav-links.mobile-open .dropdown a:hover { background: rgba(255,255,255,0.1) !important; }
  .drop-icon { background: rgba(255,255,255,0.1); }
  .hamburger { display: flex; }
  .hamburger span { transition: transform 0.3s ease, opacity 0.3s ease; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .logo-name { font-size: 19px; }
}

@media (max-width: 560px) {
  .navbar { padding: 0 16px; }
  .section { padding: 60px 20px; }
  .sec-title { font-size: 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .side-enquiry { display: none; }
  .wa-btn { bottom: 18px; right: 18px; width: 50px; height: 50px; }
  .back-to-top { bottom: 18px; left: 18px; width: 40px; height: 40px; font-size: 18px; }
  .logo-sub { display: none; }
  .logo-name { font-size: 18px; }
  .nav-cta { font-size: 13px !important; padding: 9px 18px !important; }
}

@media (max-width: 400px) {
  .navbar { height: 64px; }
  .nav-links.mobile-open { top: 64px; }
}
