/* ============================================
   EXPRESS SHIPPING & LOGISTICS — MASTER STYLES
   Brand: Navy / Teal / Lime / Sun Yellow
   ============================================ */

:root {
  /* Brand Colors (locked from logo) */
  --navy: #1F2A44;
  --navy-dark: #131B30;
  --navy-light: #2D3B5C;
  --teal: #2BA8B0;
  --teal-light: #4DC4CC;
  --teal-dark: #1F8A92;
  --lime: #A4CE4E;
  --lime-bright: #B8DF5E;
  --sun: #F4D43C;
  --white: #FFFFFF;
  --off-white: #F8FAFB;
  --gray-50: #F4F6F8;
  --gray-100: #E8ECF1;
  --gray-200: #CDD4DE;
  --gray-400: #8A95A8;
  --gray-600: #4A5468;
  --gray-800: #2A3245;

  /* Typography */
  --font-display: 'Manrope', 'Helvetica Neue', sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', sans-serif;
  --font-accent: 'Space Grotesk', 'Helvetica Neue', sans-serif;

  /* Spacing & Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(31, 42, 68, 0.06);
  --shadow-md: 0 8px 24px rgba(31, 42, 68, 0.10);
  --shadow-lg: 0 16px 48px rgba(31, 42, 68, 0.14);
  --shadow-xl: 0 24px 64px rgba(31, 42, 68, 0.18);
  --shadow-teal: 0 12px 32px rgba(43, 168, 176, 0.28);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--teal);
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

a:hover {
  color: var(--teal-dark);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy);
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.15rem, 2vw, 1.5rem); }

p { margin-bottom: 1rem; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   TOPBAR (above navbar)
   ============================================ */
.topbar {
  background: var(--navy-dark);
  color: var(--gray-200);
  font-size: 13px;
  padding: 10px 0;
  font-family: var(--font-accent);
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.topbar-info {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.topbar-info span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.topbar-info svg {
  width: 14px;
  height: 14px;
  color: var(--lime);
}

.topbar-social {
  display: flex;
  gap: 12px;
}

.topbar-social a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-200);
  transition: all 0.3s var(--ease);
}

.topbar-social a:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}

.topbar-social svg { width: 14px; height: 14px; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.4s var(--ease);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.nav-logo img {
  height: 56px;
  width: auto;
  transition: transform 0.3s var(--ease);
}

.nav-logo:hover img { transform: scale(1.03); }

.nav-menu {
  list-style: none;
  display: flex;
  gap: 6px;
  align-items: center;
}

.nav-menu > li {
  position: relative;
}

.nav-menu > li > a {
  display: block;
  padding: 10px 14px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: var(--radius-sm);
  transition: all 0.3s var(--ease);
  position: relative;
}

.nav-menu > li > a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s var(--ease-out);
}

.nav-menu > li > a:hover::after,
.nav-menu > li > a.active::after {
  transform: scaleX(1);
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
  color: var(--teal);
}

.nav-menu .has-dropdown > a::before {
  content: '▾';
  margin-left: 6px;
  font-size: 10px;
  display: inline-block;
  transition: transform 0.3s var(--ease);
}

.nav-menu .has-dropdown:hover > a::before {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 230px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.3s var(--ease);
  list-style: none;
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li a {
  display: block;
  padding: 10px 14px;
  color: var(--gray-800);
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all 0.25s var(--ease);
}

.dropdown li a:hover {
  background: var(--off-white);
  color: var(--teal);
  padding-left: 20px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: var(--white) !important;
  padding: 11px 22px !important;
  border-radius: var(--radius-full) !important;
  font-weight: 700 !important;
  box-shadow: var(--shadow-teal);
  transition: all 0.3s var(--ease) !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(43, 168, 176, 0.4);
  color: var(--white) !important;
}

.nav-cta::after { display: none !important; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 1100;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px auto;
  transition: all 0.3s var(--ease);
  border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(-100%);
  transition: transform 0.5s var(--ease-out);
}

.btn:hover::before { transform: translateX(0); }

.btn-primary {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: var(--white);
  box-shadow: var(--shadow-teal);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(43, 168, 176, 0.45);
  color: var(--white);
}

.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-lime {
  background: linear-gradient(135deg, var(--lime) 0%, var(--lime-bright) 100%);
  color: var(--navy);
  box-shadow: 0 12px 32px rgba(164, 206, 78, 0.4);
}

.btn-lime:hover {
  transform: translateY(-3px);
  color: var(--navy);
}

.btn svg { width: 18px; height: 18px; }

/* ============================================
   HERO SECTION (home)
   ============================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
  color: var(--white);
  padding: 80px 0 100px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-ship.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(43, 168, 176, 0.4) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(164, 206, 78, 0.25) 0%, transparent 50%);
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(164, 206, 78, 0.15);
  border: 1px solid rgba(164, 206, 78, 0.4);
  border-radius: var(--radius-full);
  color: var(--lime-bright);
  font-family: var(--font-accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeUp 0.8s var(--ease-out) 0.1s both;
}

.hero-tag::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--lime);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  margin-bottom: 24px;
  animation: fadeUp 0.9s var(--ease-out) 0.25s both;
}

.hero h1 .accent {
  background: linear-gradient(135deg, var(--lime) 0%, var(--teal-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.hero p.lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  max-width: 520px;
  animation: fadeUp 0.9s var(--ease-out) 0.4s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.9s var(--ease-out) 0.55s both;
}

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

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* Hero visual side */
.hero-visual {
  position: relative;
  animation: fadeUp 1s var(--ease-out) 0.4s both;
}

.hero-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 28px;
}

.hero-stat {
  padding: 18px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat .num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--lime-bright);
  line-height: 1;
  margin-bottom: 6px;
}

.hero-stat .label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Track shipment widget */
.track-widget h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.track-widget h4 svg {
  width: 18px; height: 18px; color: var(--lime);
}

.track-widget form {
  display: flex;
  gap: 8px;
}

.track-widget input {
  flex: 1;
  padding: 14px 18px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: all 0.3s var(--ease);
}

.track-widget input::placeholder { color: rgba(255, 255, 255, 0.5); }

.track-widget input:focus {
  border-color: var(--teal);
  background: rgba(255, 255, 255, 0.1);
}

.track-widget button {
  padding: 14px 22px;
  border-radius: var(--radius-full);
  background: var(--lime);
  color: var(--navy);
  border: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.track-widget button:hover {
  background: var(--lime-bright);
  transform: translateX(2px);
}

/* Hero floating decorative shapes */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 2;
  pointer-events: none;
}

.hero-shape-1 {
  width: 300px; height: 300px;
  top: -100px; right: -50px;
  background: rgba(43, 168, 176, 0.3);
  animation: float 8s ease-in-out infinite;
}

.hero-shape-2 {
  width: 250px; height: 250px;
  bottom: -80px; left: 30%;
  background: rgba(164, 206, 78, 0.2);
  animation: float 10s ease-in-out infinite reverse;
}

/* ============================================
   SECTION COMMONS
   ============================================ */
section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-accent);
  color: var(--teal);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 12px;
  position: relative;
  padding-left: 36px;
}

.section-eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 24px; height: 2px;
  background: var(--teal);
  transform: translateY(-50%);
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  color: var(--gray-600);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services-section {
  background: var(--off-white);
  position: relative;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.5s var(--ease-out);
  position: relative;
  border: 1px solid var(--gray-100);
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  z-index: 1;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-xl);
}

.service-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.service-card:hover .service-card-img img {
  transform: scale(1.12);
}

.service-card-icon {
  position: absolute;
  bottom: -28px;
  left: 24px;
  width: 56px;
  height: 56px;
  background: var(--white);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  color: var(--teal);
  z-index: 2;
  transition: all 0.4s var(--ease-bounce);
}

.service-card:hover .service-card-icon {
  background: var(--teal);
  color: var(--white);
  transform: rotate(360deg) scale(1.1);
}

.service-card-icon svg { width: 28px; height: 28px; }

.service-card-body {
  padding: 44px 24px 28px;
}

.service-card-body h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  transition: color 0.3s var(--ease);
}

.service-card:hover .service-card-body h3 { color: var(--teal); }

.service-card-body p {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin-bottom: 18px;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all 0.3s var(--ease);
}

.service-card-link svg {
  width: 14px; height: 14px;
  transition: transform 0.3s var(--ease);
}

.service-card:hover .service-card-link {
  color: var(--teal);
}

.service-card:hover .service-card-link svg {
  transform: translateX(6px);
}

/* ============================================
   ABOUT TEASER
   ============================================ */
.about-teaser {
  background: var(--white);
}

.about-teaser .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}

.about-img-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.about-img-main:hover img { transform: scale(1.05); }

.about-img-sub {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 50%;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 8px solid var(--white);
  box-shadow: var(--shadow-lg);
}

.about-img-sub img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  top: -30px;
  left: -30px;
  background: var(--lime);
  color: var(--navy);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-weight: 800;
  box-shadow: var(--shadow-md);
}

.about-badge .big {
  display: block;
  font-size: 2.2rem;
  line-height: 1;
}

.about-badge .small {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.about-content h2 { margin-bottom: 24px; }

.about-content > p {
  color: var(--gray-600);
  margin-bottom: 18px;
  font-size: 1.02rem;
  line-height: 1.75;
}

.about-features {
  list-style: none;
  margin: 28px 0 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.about-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
}

.about-features li::before {
  content: '';
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: var(--lime);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231F2A44' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ============================================
   STATS BAND
   ============================================ */
.stats-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M0 50 L100 50 M50 0 L50 100' stroke='%23ffffff08' stroke-width='0.5'/%3E%3C/svg%3E");
  background-size: 60px 60px;
  opacity: 0.5;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 2;
}

.stat-item { text-align: center; }

.stat-item .icon {
  width: 64px; height: 64px;
  margin: 0 auto 16px;
  border-radius: 16px;
  background: rgba(43, 168, 176, 0.15);
  border: 1px solid rgba(43, 168, 176, 0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal-light);
  transition: all 0.4s var(--ease);
}

.stat-item:hover .icon {
  transform: rotate(-10deg) scale(1.1);
  background: var(--teal);
  color: var(--white);
}

.stat-item .icon svg { width: 28px; height: 28px; }

.stat-item .number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--lime-bright), var(--teal-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item .label {
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ============================================
   CUSTOMERS / AFFILIATIONS MARQUEE
   ============================================ */
.logos-section {
  padding: 80px 0;
  background: var(--white);
}

.logos-section h3 {
  text-align: center;
  font-size: 1.4rem;
  color: var(--gray-600);
  font-weight: 600;
  margin-bottom: 36px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.marquee {
  overflow: hidden;
  position: relative;
  padding: 20px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
}

.marquee-track {
  display: flex;
  gap: 60px;
  animation: scroll 40s linear infinite;
  width: max-content;
}

.marquee:hover .marquee-track { animation-play-state: paused; }

@keyframes scroll {
  to { transform: translateX(calc(-50% - 30px)); }
}

.logo-item {
  flex-shrink: 0;
  height: 70px;
  padding: 14px 32px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  transition: all 0.3s var(--ease);
  filter: grayscale(1);
  opacity: 0.65;
}

.logo-item:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: translateY(-4px);
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
}

.logo-item img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.logo-placeholder {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 14px;
  text-align: center;
  white-space: nowrap;
}

/* Affiliations - static grid */
.affiliations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.affiliation-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  transition: all 0.4s var(--ease);
  min-height: 140px;
}

.affiliation-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.affiliation-card .badge-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
}

.affiliation-card .badge-icon svg { width: 24px; height: 24px; }

.affiliation-card .name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
}

.affiliation-card .desc {
  font-size: 0.8rem;
  color: var(--gray-400);
}

/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(164, 206, 78, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  top: -300px; right: -200px;
}

.cta-band::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  bottom: -250px; left: -150px;
}

.cta-band .container { position: relative; z-index: 2; }

.cta-band h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-band p {
  font-size: 1.1rem;
  margin-bottom: 32px;
  opacity: 0.95;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.cta-band .btn-lime { color: var(--navy); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-brand img {
  height: 60px;
  filter: brightness(0) invert(1);
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

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

.footer-social a {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: all 0.3s var(--ease);
}

.footer-social a:hover {
  background: var(--teal);
  transform: translateY(-3px);
}

.footer-social svg { width: 18px; height: 18px; }

.footer h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 22px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.footer-links {
  list-style: none;
}

.footer-links li { margin-bottom: 12px; }

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
  transition: all 0.3s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--lime);
  transform: translateX(4px);
}

.footer-links a::before {
  content: '›';
  color: var(--teal);
  font-weight: 700;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-contact-item svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: var(--teal);
  margin-top: 2px;
}

.footer-newsletter {
  background: rgba(43, 168, 176, 0.1);
  border: 1px solid rgba(43, 168, 176, 0.25);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-top: 16px;
}

.footer-newsletter p {
  font-size: 0.85rem;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.85);
}

.footer-newsletter form {
  display: flex;
  gap: 6px;
}

.footer-newsletter input {
  flex: 1;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 13px;
  outline: none;
}

.footer-newsletter input::placeholder { color: rgba(255, 255, 255, 0.4); }

.footer-newsletter button {
  padding: 10px 16px;
  background: var(--lime);
  border: none;
  border-radius: var(--radius-sm);
  color: var(--navy);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.footer-newsletter button:hover { background: var(--lime-bright); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  font-size: 0.85rem;
  text-align: center;
}

.footer-bottom a { color: var(--teal-light); }

/* ============================================
   PAGE HEADER (inner pages)
   ============================================ */
.page-header {
  position: relative;
  padding: 140px 0 100px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--white);
  overflow: hidden;
  text-align: center;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--header-bg, url('../images/containers.jpg'));
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}

.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(19, 27, 48, 0.6) 100%);
}

.page-header .container { position: relative; z-index: 2; }

.page-header h1 {
  color: var(--white);
  margin-bottom: 14px;
  animation: fadeUp 0.8s var(--ease-out) both;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  font-family: var(--font-accent);
  font-size: 13px;
  font-weight: 500;
  animation: fadeUp 0.8s var(--ease-out) 0.15s both;
}

.breadcrumb a { color: var(--lime-bright); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { opacity: 0.5; }
.breadcrumb .current { color: rgba(255, 255, 255, 0.7); }

/* ============================================
   CONTENT BLOCKS (inner pages)
   ============================================ */
.content-block {
  padding: 100px 0;
}

.content-block-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.content-block-split.reverse > div:first-child { order: 2; }

.content-block-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}

.content-block-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.content-block-img:hover img { transform: scale(1.05); }

.content-block h2 { margin-bottom: 20px; }
.content-block p {
  color: var(--gray-600);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.feature-list {
  list-style: none;
  margin-top: 24px;
}

.feature-list li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
  align-items: flex-start;
}

.feature-list li:last-child { border-bottom: none; }

.feature-list .ic {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: var(--off-white);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
}

.feature-list .ic svg { width: 20px; height: 20px; }

.feature-list .ft-title {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.feature-list .ft-desc {
  font-size: 0.92rem;
  color: var(--gray-600);
}

/* ============================================
   NEWS SECTION (RSS)
   ============================================ */
.news-section {
  padding: 80px 0;
  background: var(--off-white);
}

.news-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}

.news-filter {
  padding: 10px 22px;
  border-radius: var(--radius-full);
  border: 1px solid var(--gray-200);
  background: var(--white);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.news-filter:hover { border-color: var(--teal); color: var(--teal); }

.news-filter.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.news-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal);
}

.news-thumb {
  height: 180px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  position: relative;
  overflow: hidden;
}

.news-thumb img {
  width: 100%; height: 100%; object-fit: cover;
}

.news-thumb-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
}

.news-thumb-fallback svg { width: 64px; height: 64px; }

.news-source {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(31, 42, 68, 0.85);
  backdrop-filter: blur(8px);
  color: var(--white);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-family: var(--font-accent);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.news-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-date {
  font-family: var(--font-accent);
  font-size: 12px;
  color: var(--gray-400);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.news-date svg { width: 12px; height: 12px; }

.news-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.4;
  color: var(--navy);
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-summary {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.55;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.news-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: auto;
}

.news-link svg { width: 14px; height: 14px; transition: transform 0.3s; }
.news-link:hover svg { transform: translateX(4px); }

.news-loading {
  text-align: center;
  padding: 60px 20px;
  color: var(--gray-400);
}

.news-loading .spinner {
  width: 40px; height: 40px;
  border: 3px solid var(--gray-100);
  border-top-color: var(--teal);
  border-radius: 50%;
  margin: 0 auto 16px;
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================
   FORM
   ============================================ */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 15px;
  background: var(--white);
  color: var(--navy);
  outline: none;
  transition: all 0.3s var(--ease);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(43, 168, 176, 0.12);
}

.form-group textarea { resize: vertical; min-height: 140px; }

/* ============================================
   CONTACT INFO CARDS
   ============================================ */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 60px;
}

.contact-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  text-align: center;
  transition: all 0.4s var(--ease);
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal);
}

.contact-card .ic {
  width: 60px; height: 60px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%);
  color: var(--white);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
}

.contact-card .ic svg { width: 26px; height: 26px; }

.contact-card h4 { font-size: 1.05rem; margin-bottom: 8px; }
.contact-card p { color: var(--gray-600); font-size: 0.92rem; margin: 0; line-height: 1.6; }
.contact-card a { color: var(--teal); font-weight: 600; }

/* ============================================
   TABLE (ULD, Glossary)
   ============================================ */
.data-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.data-table th {
  background: var(--navy);
  color: var(--white);
  padding: 16px 20px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}

.data-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.92rem;
  color: var(--gray-800);
  vertical-align: top;
}

.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--off-white); }
.data-table .code {
  font-family: var(--font-accent);
  font-weight: 700;
  color: var(--teal);
}

/* ============================================
   GLOSSARY
   ============================================ */
.glossary-search {
  max-width: 600px;
  margin: 0 auto 40px;
  position: relative;
}

.glossary-search input {
  width: 100%;
  padding: 16px 20px 16px 52px;
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-full);
  font-size: 15px;
  font-family: var(--font-body);
  outline: none;
  transition: all 0.3s var(--ease);
}

.glossary-search input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(43, 168, 176, 0.12);
}

.glossary-search svg {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  width: 20px; height: 20px;
  color: var(--gray-400);
}

.glossary-letters {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-bottom: 40px;
}

.glossary-letter {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.glossary-letter:hover,
.glossary-letter.active {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
  transform: translateY(-2px);
}

.glossary-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.glossary-item {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  transition: all 0.3s var(--ease);
}

.glossary-item:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-sm);
}

.glossary-item dt {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.glossary-item dd {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ============================================
   CBM CALCULATOR
   ============================================ */
.calc-wrap {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.calc-form {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
}

.calc-result {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  padding: 36px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.calc-result h3 {
  color: var(--white);
  margin-bottom: 24px;
  font-size: 1.2rem;
}

.calc-result-item {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.calc-result-item:last-child { border-bottom: none; }

.calc-result-item .lbl {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 4px;
}

.calc-result-item .val {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--lime-bright);
}

/* ============================================
   TRACKING PAGE
   ============================================ */
.tracking-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal-dark) 100%);
  color: var(--white);
  padding: 80px 30px;
  border-radius: var(--radius-lg);
  text-align: center;
  margin-bottom: 60px;
}

.tracking-hero h2 { color: var(--white); margin-bottom: 14px; }

.tracking-form {
  max-width: 600px;
  margin: 30px auto 0;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tracking-form input {
  flex: 1 1 280px;
  padding: 16px 22px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 15px;
  outline: none;
}

.tracking-form input::placeholder { color: rgba(255, 255, 255, 0.5); }
.tracking-form input:focus { background: rgba(255, 255, 255, 0.15); border-color: var(--lime); }

.tracking-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.tracking-step {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  text-align: center;
  border: 1px solid var(--gray-100);
  position: relative;
  transition: all 0.3s var(--ease);
}

.tracking-step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.tracking-step .num {
  position: absolute;
  top: -20px; left: 50%;
  transform: translateX(-50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
}

.tracking-step h4 { margin: 14px 0 8px; font-size: 1.05rem; }
.tracking-step p { color: var(--gray-600); font-size: 0.9rem; margin: 0; }

/* ============================================
   CAREER
   ============================================ */
.career-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.career-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: all 0.4s var(--ease);
}

.career-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.career-card .role-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(43, 168, 176, 0.1);
  color: var(--teal);
  border-radius: var(--radius-full);
  font-family: var(--font-accent);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.career-card h4 { font-size: 1.15rem; margin-bottom: 8px; }
.career-card .loc {
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.career-card .loc svg { width: 14px; height: 14px; }

.career-card p { font-size: 0.92rem; color: var(--gray-600); margin-bottom: 18px; }

/* ============================================
   ADMIN PANEL
   ============================================ */
.admin-wrap {
  max-width: 1000px;
  margin: 0 auto;
}

.admin-login {
  max-width: 440px;
  margin: 0 auto;
  background: var(--white);
  padding: 44px 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}

.admin-login h2 {
  text-align: center;
  margin-bottom: 8px;
}

.admin-login .sub {
  text-align: center;
  color: var(--gray-600);
  margin-bottom: 30px;
  font-size: 0.92rem;
}

.admin-tabs {
  display: flex;
  gap: 4px;
  background: var(--gray-50);
  padding: 5px;
  border-radius: var(--radius-full);
  margin-bottom: 32px;
  width: fit-content;
}

.admin-tab {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  background: transparent;
  border: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  color: var(--gray-600);
  transition: all 0.3s var(--ease);
}

.admin-tab.active {
  background: var(--navy);
  color: var(--white);
}

.admin-panel { display: none; }
.admin-panel.active { display: block; }

.admin-upload {
  background: var(--white);
  border: 2px dashed var(--gray-200);
  border-radius: var(--radius-md);
  padding: 40px;
  text-align: center;
  margin-bottom: 30px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.admin-upload:hover {
  border-color: var(--teal);
  background: var(--off-white);
}

.admin-upload svg {
  width: 48px; height: 48px;
  color: var(--teal);
  margin-bottom: 12px;
}

.admin-upload h4 { margin-bottom: 6px; }
.admin-upload p { color: var(--gray-600); font-size: 0.9rem; margin: 0; }

.admin-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}

.admin-logo-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 16px;
  position: relative;
  transition: all 0.3s var(--ease);
}

.admin-logo-card:hover { box-shadow: var(--shadow-sm); }

.admin-logo-card .img-area {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.admin-logo-card .img-area img {
  max-height: 80%;
  max-width: 90%;
  object-fit: contain;
}

.admin-logo-card .name {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  text-align: center;
  word-break: break-word;
}

.admin-logo-card .delete-btn {
  width: 100%;
  padding: 8px;
  background: #FEE2E2;
  color: #DC2626;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.admin-logo-card .delete-btn:hover { background: #DC2626; color: var(--white); }

/* ============================================
   FLOATING WHATSAPP
   ============================================ */
.float-whatsapp {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.5);
  z-index: 999;
  transition: all 0.3s var(--ease);
  animation: float 4s ease-in-out infinite;
}

.float-whatsapp:hover {
  transform: scale(1.1);
  color: white;
}

.float-whatsapp svg { width: 30px; height: 30px; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { max-width: 540px; margin: 0 auto; }
  .about-teaser .container { grid-template-columns: 1fr; gap: 60px; }
  .about-img-sub { right: 20px; bottom: -30px; }
  .content-block-split { grid-template-columns: 1fr; gap: 50px; }
  .content-block-split.reverse > div:first-child { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .calc-wrap { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  section { padding: 70px 0; }
  .container { padding: 0 20px; }

  .nav-toggle { display: block; }

  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 85%;
    max-width: 360px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 90px 24px 30px;
    gap: 4px;
    box-shadow: var(--shadow-xl);
    transition: right 0.4s var(--ease);
    overflow-y: auto;
  }

  .nav-menu.active { right: 0; }

  .nav-menu > li > a {
    padding: 14px 16px;
    border-bottom: 1px solid var(--gray-100);
    border-radius: 0;
  }

  .nav-menu > li > a::after { display: none; }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: var(--off-white);
    margin-top: 6px;
    padding: 6px 12px;
    display: none;
  }

  .has-dropdown.open .dropdown { display: block; }

  .topbar { display: none; }

  .hero { min-height: auto; padding: 60px 0 80px; }
  .hero h1 { font-size: 2.2rem; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 14px; }

  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-img-sub { display: none; }
  .about-features { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* Reveal-on-scroll utility */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
