/* ================================================================
   SAMEX – PT. SAMUDERA EXPRESS TRASINDO
   Static Website Clone – samex-trans.co.id
   Colors: Primary #9DFF20 | Secondary #345C00 | Tertiary #F6F6F6
   Font: DM Sans (same as original WordPress theme)
================================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #000;
  background: #fff;
  line-height: 1.7;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: color .25s; }
img { max-width: 100%; height: auto; display: block; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
ul, ol { padding-left: 1.5rem; }
li { margin-bottom: .35rem; }
h1,h2,h3,h4,h5 { line-height: 1.3; font-weight: 400; }

/* ---- CSS Variables ---- */
:root {
  --primary:    #02013d;
  --secondary:  #ff9100;
  --tertiary:   #F6F6F6;
  --black:      #000000;
  --white:      #ffffff;
  --text:       #3f3f3f;
  --text-light: #666;
  --border:     #e2e2e2;
  --shadow-sm:  0 2px 8px rgba(0,0,0,.06);
  --shadow-md:  0 4px 20px rgba(0,0,0,.10);
  --shadow-lg:  0 8px 40px rgba(0,0,0,.14);
  --radius:     3px;
  --maxw:       1200px;
  --t:          .3s ease;
}

/* ---- Utility ---- */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 30px; }
.text-center { text-align: center; }
.sr-only { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); }

/* ================================================================
   HEADER
================================================================ */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t);
}
#site-header.scrolled { box-shadow: var(--shadow-md); }

.header-wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 30px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.site-logo a { display: flex; align-items: center; gap: 10px; }
.site-logo img { height: 58px; width: auto; }
.logo-fallback {
  font-size: 1.5rem; font-weight: 700;
  color: var(--secondary); letter-spacing: -.5px;
  display: none;
}

/* Navigation */
.main-nav { display: flex; align-items: center; }
.main-nav ul { list-style: none; display: flex; gap: 4px; padding: 0; margin: 0; }
.main-nav ul li a {
  display: block;
  padding: 8px 18px;
  font-size: 15px;
  font-weight: 500;
  color: #333;
  border-radius: var(--radius);
  position: relative;
  transition: color var(--t);
}
.main-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 18px; right: 18px;
  height: 2px;
  background: var(--secondary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}
.main-nav ul li a:hover,
.main-nav ul li a.active { color: var(--secondary); }
.main-nav ul li a:hover::after,
.main-nav ul li a.active::after { transform: scaleX(1); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px; height: 38px;
  background: none;
  border: 1.5px solid #ccc;
  border-radius: var(--radius);
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: #333;
  border-radius: 2px;
  transition: var(--t);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================================================================
   HERO SLIDER  — matches original 1519×522 ratio
================================================================ */
.hero-slider {
  position: relative;
  overflow: hidden;
  background: #1a1a1a;
  max-height: 560px;
}
.slider-track {
  display: flex;
  transition: transform .65s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.slide {
  min-width: 100%;
  position: relative;
  flex-shrink: 0;
}
.slide img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center;
  display: block;
}
/* Prev/Next arrows */
.s-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 20;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(0,0,0,.45);
  border: none;
  color: #fff;
  font-size: .9rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background var(--t);
}
.s-arrow:hover { background: rgba(0,0,0,.72); }
.s-arrow.prev { left: 14px; }
.s-arrow.next { right: 14px; }
/* Bullet dots */
.s-bullets {
  position: absolute;
  bottom: 13px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 7px;
  z-index: 20;
}
.s-bullets button {
  width: 11px; height: 11px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,.5);
  cursor: pointer;
  padding: 0;
  transition: background var(--t), transform var(--t);
}
.s-bullets button.active {
  background: #fff;
  transform: scale(1.2);
}

/* ================================================================
   SECTION HEADER BANNER  (dark green strip with white title)
================================================================ */
.section-banner {
  background: var(--secondary);
  padding: 20px 30px;
  text-align: center;
}
.section-banner h2 {
  color: #fff;
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 700;
  margin: 0;
}

/* ================================================================
   SPLIT SECTION  (50/50 image + text)
================================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.split .split-img { overflow: hidden; }
.split .split-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  min-height: 360px;
}
.split .split-body {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* Flip the order (image right) */
.split.rev { direction: rtl; }
.split.rev > * { direction: ltr; }

/* Background variants */
.split.bg-white   .split-body { background: #fff; }
.split.bg-gray    .split-body { background: var(--tertiary); }
.split.bg-dark    .split-body { background: var(--secondary); }

.split-body h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: var(--secondary);
}
.split.bg-dark .split-body h2 { color: var(--primary); }

.split-body h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #777;
  margin-bottom: .8rem;
}
.split-body p,
.split-body li { color: var(--text); font-size: .97rem; }
.split.bg-dark .split-body p,
.split.bg-dark .split-body li { color: rgba(255,255,255,.84); }

/* ================================================================
   FULL-WIDTH TEXT SECTION
================================================================ */
.full-section {
  padding: 56px 30px;
}
.full-section.bg-dark { background: var(--secondary); }
.full-section.bg-gray { background: var(--tertiary); }
.full-section.bg-white { background: #fff; }
.full-section .inner { max-width: var(--maxw); margin: 0 auto; }
.full-section h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: var(--secondary);
}
.full-section.bg-dark h2 { color: var(--primary); }
.full-section p,
.full-section li { color: var(--text); font-size: .97rem; }
.full-section.bg-dark p,
.full-section.bg-dark li { color: rgba(255,255,255,.84); }

/* ================================================================
   SERVICES CARDS GRID  (4 columns)
================================================================ */
.services-grid-section { padding: 56px 30px; background: #fff; }
.services-grid-section .inner { max-width: var(--maxw); margin: 0 auto; }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 36px;
}
.service-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t);
  text-align: center;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card img {
  width: 100%; height: 190px;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.service-card:hover img { transform: scale(1.04); }
.service-card h3 {
  padding: 14px 14px 18px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--secondary);
}
.service-card a.card-link {
  display: block;
  padding: 0 14px 16px;
  font-size: .85rem;
  color: var(--secondary);
  font-weight: 600;
  text-decoration: underline;
  opacity: .8;
}
.service-card a.card-link:hover { opacity: 1; }

/* ================================================================
   WHY CHOOSE US  (4 icon cards)
================================================================ */
.why-section { padding: 56px 30px; background: var(--tertiary); }
.why-section .inner { max-width: var(--maxw); margin: 0 auto; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 36px;
}
.why-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 24px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.why-icon {
  width: 68px; height: 68px;
  background: var(--tertiary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.why-icon svg {
  width: 36px; height: 36px;
  fill: var(--secondary);
}
.why-card h3 {
  font-size: .98rem;
  font-weight: 600;
  color: #222;
}

/* ================================================================
   PAGE HERO BANNER  (inner pages)
================================================================ */
.page-hero {
  background: var(--secondary);
  padding: 64px 30px 56px;
  text-align: center;
  color: #fff;
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: .5rem;
}
.page-hero p {
  font-size: 1.05rem;
  opacity: .82;
  max-width: 580px;
  margin: 0 auto;
}
/* Breadcrumb */
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: .88rem;
  opacity: .7;
}
.breadcrumb a { color: var(--primary); }
.breadcrumb span { opacity: .6; }

/* ================================================================
   SERVICE DETAIL ROWS  (Services page)
================================================================ */
.service-detail { border-bottom: 1px solid var(--border); }
.service-detail:last-of-type { border-bottom: none; }
.service-detail .split-body h2 { font-size: 1.5rem; }
.service-detail .split-body h3 {
  font-size: .95rem;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: .6rem;
  margin-top: 1.2rem;
}
.service-detail .split-body ul { margin-top: .4rem; }
.service-detail .split-body li { font-size: .93rem; }

/* ================================================================
   CONTACT PAGE
================================================================ */
.contact-section { padding: 64px 30px; background: #fff; }
.contact-wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}
/* Info panel */
.contact-info h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 28px;
}
.c-row {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
  align-items: flex-start;
}
.c-icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--secondary);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem;
}
.c-icon.wa-icon { background: #25D366; }
.c-text h4 { font-size: .82rem; color: #999; font-weight: 500; margin-bottom: 2px; }
.c-text p { font-size: .96rem; margin: 0; }
.c-text a { color: var(--secondary); }
.c-text a:hover { text-decoration: underline; }

/* Contact form */
.contact-form h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 28px;
}
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #222;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #ccc;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: .96rem;
  color: #222;
  background: #fff;
  transition: border-color var(--t), box-shadow var(--t);
  outline: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(52,92,0,.12);
}
.field textarea { min-height: 130px; resize: vertical; }

/* Alert */
.form-alert {
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: .93rem;
  margin-bottom: 18px;
  display: none;
}
.form-alert.show { display: flex; align-items: center; gap: 8px; }
.form-alert.success { background: #e8f5e9; color: #2a7a2a; border: 1px solid #a5d6a7; }
.form-alert.error   { background: #fff0f0; color: #c0392b; border: 1px solid #f5b5b5; }

/* Map */
.map-container {
  max-width: var(--maxw);
  margin: 48px auto 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.map-container iframe { display: block; width: 100%; border: none; }

/* ================================================================
   BUTTONS
================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 26px;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: .93rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: background var(--t), color var(--t), transform var(--t);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--primary); color: #000; }
.btn-primary:hover { background: #8de615; }
.btn-secondary { background: var(--secondary); color: #fff; }
.btn-secondary:hover { background: #294800; }
.btn-wa { background: #25D366; color: #fff; }
.btn-wa:hover { background: #1da851; }
.btn-outline {
  background: transparent;
  color: var(--secondary);
  border: 2px solid var(--secondary);
}
.btn-outline:hover { background: var(--secondary); color: #fff; }

/* Submit button */
.btn-submit {
  background: var(--secondary);
  color: #fff;
  border: none;
  padding: 13px 32px;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background var(--t), transform var(--t);
}
.btn-submit:hover { background: #294800; transform: translateY(-1px); }
.btn-submit:disabled { opacity: .7; cursor: not-allowed; transform: none; }

/* ================================================================
   WHATSAPP FLOAT
================================================================ */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 9999;
  width: 56px; height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.65rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform var(--t), box-shadow var(--t);
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.6);
  color: #fff;
}

/* ================================================================
   FOOTER
================================================================ */
.site-footer { background: #1a1a1a; color: #fff; }
.footer-main {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 52px 30px 40px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
}
.footer-col h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 18px;
}
.footer-col p { font-size: .9rem; color: rgba(255,255,255,.7); line-height: 1.65; }

.footer-info-row {
  display: flex; gap: 0; margin-bottom: 10px;
  font-size: .88rem; color: rgba(255,255,255,.7);
  align-items: baseline;
}
.footer-info-row .lbl {
  font-weight: 600;
  color: #fff;
  min-width: 110px;
  flex-shrink: 0;
}
.footer-info-row a { color: rgba(255,255,255,.7); }
.footer-info-row a:hover { color: var(--primary); }

.footer-right { text-align: right; }
.footer-right .hours { font-size: .9rem; color: rgba(255,255,255,.7); margin-bottom: 28px; }
.footer-logo img { height: 50px; width: auto; margin-left: auto; }
.footer-logo-text { font-size: 1.4rem; font-weight: 700; color: var(--primary); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 16px 30px;
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .83rem;
  color: rgba(255,255,255,.4);
}

/* ================================================================
   SCROLL ANIMATIONS
================================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-left.visible { opacity: 1; transform: translateX(0); }
.fade-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-right.visible { opacity: 1; transform: translateX(0); }

/* ================================================================
   RESPONSIVE — Mobile-First, tested breakpoints:
   1024px (tablet landscape), 768px (tablet portrait),
   480px (large phone), 375px (iPhone SE / small phone)
================================================================ */

/* ---- Tablet landscape ---- */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .why-grid   { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .split .split-body { padding: 48px 40px; }
  .footer-main { gap: 36px; }
}

/* ---- Tablet portrait / large phone (768px) ---- */
@media (max-width: 768px) {

  /* --- Header --- */
  #site-header { position: relative; }
  .header-wrap { padding: 0 16px; height: 68px; }
  .site-logo img { height: 48px; }

  /* Hamburger */
  .nav-toggle { display: flex; }

  /* Dropdown nav */
  .main-nav {
    display: none;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: #fff;
    border-top: 1px solid var(--border);
    border-bottom: 2px solid var(--border);
    box-shadow: 0 6px 24px rgba(0,0,0,.12);
    padding: 8px 0 16px;
    flex-direction: column;
    z-index: 9990;
  }
  .main-nav.open { display: flex; }
  .main-nav ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
    padding: 0;
  }
  .main-nav ul li a {
    padding: 13px 20px;
    font-size: 1rem;
    border-radius: 0;
    border-bottom: 1px solid #f0f0f0;
  }
  .main-nav ul li:last-child a { border-bottom: none; }
  .main-nav ul li a::after { display: none; }

  /* --- Hero Slider --- */
  .hero-slider { max-height: 220px; }
  .slide img { height: 220px; object-position: center; }
  .s-arrow { width: 32px; height: 32px; font-size: .8rem; }
  .s-bullets button { width: 9px; height: 9px; }

  /* --- Section banner --- */
  .section-banner { padding: 16px 16px; }
  .section-banner h2 { font-size: 1.2rem; }

  /* --- Split sections → stack vertically --- */
  .split,
  .split.rev { grid-template-columns: 1fr; direction: ltr; }

  /* Image always on TOP when stacked */
  .split .split-img { order: 0; }
  .split .split-body { order: 1; padding: 32px 20px; }

  /* Image height when stacked */
  .split .split-img img {
    width: 100%;
    height: 220px;
    min-height: unset;
    object-fit: cover;
  }

  /* Text sizes inside split */
  .split-body h2 { font-size: 1.4rem; margin-bottom: 1rem; }
  .split-body h3 { font-size: .93rem; }
  .split-body p,
  .split-body li { font-size: .93rem; }

  /* --- Full-width text sections --- */
  .full-section { padding: 36px 20px; }
  .full-section h2 { font-size: 1.4rem; margin-bottom: .9rem; }
  .full-section p { font-size: .93rem; }

  /* --- Services grid → 2 cols --- */
  .services-grid-section { padding: 36px 16px; }
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .service-card img { height: 150px; }
  .service-card h3 { font-size: .9rem; padding: 10px 10px 12px; }
  .service-card a.card-link { font-size: .8rem; padding: 0 10px 12px; }

  /* --- Why grid → 2 cols --- */
  .why-section { padding: 36px 16px; }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .why-card { padding: 24px 14px 20px; }
  .why-icon { width: 56px; height: 56px; }
  .why-icon svg { width: 28px; height: 28px; }
  .why-card h3 { font-size: .88rem; }

  /* --- Page hero --- */
  .page-hero { padding: 40px 20px 32px; }
  .page-hero h1 { font-size: 1.8rem; }
  .page-hero p { font-size: .95rem; }
  .breadcrumb { font-size: .8rem; margin-top: 12px; }

  /* --- Contact --- */
  .contact-section { padding: 36px 16px; }
  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .contact-info h2,
  .contact-form h2 { font-size: 1.35rem; margin-bottom: 20px; }
  .c-row { margin-bottom: 16px; }
  .c-icon { width: 36px; height: 36px; min-width: 36px; font-size: .85rem; }
  .c-text h4 { font-size: .78rem; }
  .c-text p { font-size: .9rem; }
  .form-row-2 { grid-template-columns: 1fr; }
  .field label { font-size: .84rem; }
  .field input,
  .field select,
  .field textarea { font-size: .93rem; padding: 10px 12px; }
  .btn-submit { width: 100%; justify-content: center; font-size: .95rem; }
  .map-container { margin-top: 32px; }
  .map-container iframe { height: 280px; }

  /* --- Footer --- */
  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 36px 20px 28px;
  }
  .footer-right { text-align: left; }
  .footer-logo img { margin-left: 0; height: 42px; }
  .footer-logo-text { text-align: left; }
  .footer-col h3 { font-size: .95rem; }
  .footer-col p { font-size: .87rem; }
  .footer-info-row { font-size: .84rem; }
  .footer-info-row .lbl { min-width: 90px; }
  .footer-bottom {
    padding: 14px 20px;
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }

  /* --- WA float --- */
  .wa-float { width: 50px; height: 50px; font-size: 1.4rem; bottom: 20px; right: 16px; }

  /* --- Disable fade animations (too distracting on small screens, can cause jank) --- */
  .fade-up, .fade-left, .fade-right {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---- Small phone (480px) ---- */
@media (max-width: 480px) {
  /* Header */
  .header-wrap { height: 60px; }
  .site-logo img { height: 42px; }
  .main-nav { top: 60px; }

  /* Slider shorter on small phones */
  .hero-slider { max-height: 190px; }
  .slide img { height: 190px; }

  /* Single column cards */
  .cards-grid { grid-template-columns: 1fr; gap: 12px; }
  .service-card img { height: 180px; }

  /* Why 2 col stays, just smaller */
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

  /* Section paddings tighter */
  .full-section { padding: 28px 16px; }
  .services-grid-section { padding: 28px 16px; }
  .why-section { padding: 28px 16px; }
  .contact-section { padding: 28px 16px; }
  .page-hero { padding: 32px 16px 28px; }

  /* Split body padding tighter */
  .split .split-body { padding: 28px 16px; }
  .split-body h2 { font-size: 1.25rem; }

  /* Footer tighter */
  .footer-main { padding: 28px 16px 20px; }
}

/* ---- Very small phone (360px and below) ---- */
@media (max-width: 360px) {
  .hero-slider { max-height: 170px; }
  .slide img { height: 170px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-card { padding: 20px 14px 16px; }
  .section-banner h2 { font-size: 1.1rem; }
  .page-hero h1 { font-size: 1.5rem; }
}
