/* ============================================
   PT DJAKARTOLLOYD NUSANTARA — STYLESHEET
   Elegant Maritime | Navy & Gold Palette
   Font: Cormorant Garamond + DM Sans
   ============================================ */

:root {
  --navy:     #0a1628;
  --navy-mid: #112240;
  --navy-lt:  #1a3157;
  --gold:     #c9a84c;
  --gold-lt:  #e8c97a;
  --white:    #ffffff;
  --off-white:#f5f3ee;
  --gray:     #8899aa;
  --gray-lt:  #cdd6e0;
  --text:     #2c3e50;
  --text-lt:  #5a6b7c;
  --radius:   4px;
  --shadow:   0 8px 32px rgba(0,0,0,0.12);
  --trans:    all 0.35s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

h1,h2,h3,h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.15;
}

h1 { font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 600; }
h3 { font-size: 1.45rem; font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }

p { line-height: 1.75; color: var(--text-lt); }

a { color: inherit; text-decoration: none; transition: var(--trans); }

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

ul { list-style: none; }

address { font-style: normal; }

.container {
  width: 92%;
  max-width: 1220px;
  margin: 0 auto;
}

.section-pad { padding: 100px 0; }

.bg-dark {
  background: var(--navy);
  color: var(--white);
}
.bg-dark p { color: var(--gray-lt); }

.accent { color: var(--gold); }

.section-tag {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 4px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.section-tag.light { color: var(--gold-lt); border-color: var(--gold-lt); }

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}
.section-header p { margin-top: 16px; font-size: 1.05rem; }

.btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--trans);
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}
.full-width { width: 100%; text-align: center; }
.mt-2 { margin-top: 24px; }

/* ===== PRELOADER ===== */
#preloader {
  position: fixed; inset: 0;
  background: var(--navy);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s, visibility 0.5s;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.ship-icon { font-size: 3rem; animation: bob 1.5s ease-in-out infinite; }
.preloader-bar {
  width: 200px; height: 3px;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  margin: 20px auto 0;
  overflow: hidden;
}
.preloader-bar span {
  display: block; height: 100%;
  background: var(--gold);
  border-radius: 10px;
  animation: load 1.8s ease forwards;
}
@keyframes bob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes load { 0%{width:0} 100%{width:100%} }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--trans);
}
#navbar.scrolled {
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.nav-container {
  width: 92%;
  max-width: 1220px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}
.logo-anchor { font-size: 1.5rem; }
.logo-text { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; }
.logo-text strong { color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 8px 22px;
  border-radius: var(--radius);
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--gold-lt) !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--trans);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,22,40,0.92) 0%,
    rgba(10,22,40,0.75) 50%,
    rgba(10,22,40,0.6) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 92%;
  max-width: 1220px;
  margin: 0 auto;
  padding-top: 80px;
}
.hero-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  padding-left: 40px;
  position: relative;
}
.hero-badge::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 30px; height: 1px;
  background: var(--gold);
}
.hero-content h1 {
  color: var(--white);
  max-width: 680px;
  animation: fadeUp 0.9s ease both 0.2s;
}
.hero-content p {
  color: rgba(255,255,255,0.8);
  font-size: 1.15rem;
  max-width: 560px;
  margin: 20px 0 36px;
  animation: fadeUp 0.9s ease both 0.4s;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.9s ease both 0.6s;
}
.hero-scroll {
  position: absolute;
  bottom: 100px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  background: rgba(201,168,76,0.12);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(201,168,76,0.3);
  display: flex;
  justify-content: center;
}
.stat {
  padding: 22px 48px;
  text-align: center;
  border-right: 1px solid rgba(201,168,76,0.2);
}
.stat:last-child { border-right: none; }
.stat strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
}
.stat span {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ===== TICKER ===== */
.ticker-wrap {
  background: var(--gold);
  overflow: hidden;
  padding: 14px 0;
}
.ticker {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}
.ticker span {
  display: inline-block;
  padding: 0 30px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
}
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images {
  position: relative;
}
.about-img-main {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: var(--shadow);
}
.about-img-secondary {
  position: absolute;
  bottom: -40px; right: -40px;
  width: 220px;
  height: 180px;
  object-fit: cover;
  border: 5px solid var(--white);
  border-radius: 2px;
  box-shadow: var(--shadow);
}
.about-badge-card {
  position: absolute;
  top: 30px; left: -30px;
  background: var(--gold);
  padding: 20px 24px;
  border-radius: 2px;
  text-align: center;
  box-shadow: var(--shadow);
}
.badge-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
}
.badge-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
}
.about-text h2 { margin-bottom: 20px; }
.about-text .lead {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.7;
}
.about-text p { margin-bottom: 14px; }
.about-pillars { margin: 30px 0; display: flex; flex-direction: column; gap: 18px; }
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: var(--off-white);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}
.pillar-icon { font-size: 1.4rem; }
.pillar strong { display: block; color: var(--text); margin-bottom: 4px; }
.pillar span { font-size: 0.88rem; color: var(--text-lt); }

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--gold);
  transition: width 0.4s ease;
}
.service-card:hover { transform: translateY(-6px); background: rgba(255,255,255,0.08); }
.service-card:hover::before { width: 100%; }
.svc-icon { font-size: 2.2rem; margin-bottom: 20px; }
.service-card h3 { color: var(--white); margin-bottom: 14px; }
.service-card p { margin-bottom: 16px; font-size: 0.93rem; }
.service-card ul { margin-bottom: 20px; display: flex; flex-direction: column; gap: 8px; }
.service-card ul li {
  font-size: 0.88rem;
  color: var(--gray-lt);
  padding-left: 16px;
  position: relative;
}
.service-card ul li::before {
  content: '—';
  position: absolute; left: 0;
  color: var(--gold);
  font-weight: 700;
}
.svc-link { color: var(--gold); font-size: 0.88rem; font-weight: 600; }
.svc-link:hover { color: var(--gold-lt); }

/* ===== FLEET ===== */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.fleet-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--trans);
}
.fleet-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.2); }
.fleet-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.fleet-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.fleet-card:hover .fleet-img-wrap img { transform: scale(1.06); }
.fleet-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
}
.fleet-info {
  padding: 26px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-top: none;
}
.fleet-info h3 { font-size: 1.25rem; margin-bottom: 12px; }
.fleet-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 14px;
}
.fleet-specs span { font-size: 0.82rem; color: var(--text-lt); }
.fleet-specs strong { color: var(--text); }
.fleet-info p { font-size: 0.88rem; }

/* ===== COVERAGE ===== */
.coverage-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.coverage-map-wrap {
  position: relative;
}
.coverage-map {
  width: 100%;
  border-radius: 2px;
  opacity: 0.85;
  filter: sepia(20%);
}
.map-overlay-text {
  position: absolute;
  bottom: 20px; right: 20px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  padding: 8px 18px;
  border-radius: var(--radius);
}
.coverage-ports h3 { color: var(--white); margin-bottom: 24px; }
.ports-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 30px;
}
.port-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--gray-lt);
}
.port-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.intl-routes {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius);
  padding: 20px;
}
.intl-routes h4 { color: var(--gold); margin-bottom: 8px; }
.intl-routes p { color: var(--gray-lt); font-size: 0.9rem; }

/* ===== WHY US ===== */
.whyus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-card {
  padding: 36px 28px;
  border: 1px solid var(--gray-lt);
  border-radius: var(--radius);
  transition: var(--trans);
  position: relative;
}
.why-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(201,168,76,0.1);
  transform: translateY(-4px);
}
.why-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 16px;
}
.why-card h3 { margin-bottom: 12px; font-size: 1.15rem; }
.why-card p { font-size: 0.9rem; }

/* ===== CLIENTS ===== */
.clients-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
}
.client-logo {
  padding: 20px 32px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  transition: var(--trans);
  cursor: default;
}
.client-logo:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.08);
}
.logo-placeholder {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  min-width: 100px;
}
.logo-placeholder small { display: block; font-size: 0.72rem; font-family: 'DM Sans',sans-serif; color: var(--gray); font-weight: 400; margin-top: 2px; }
.testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 32px;
}
.stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 16px; }
.testimonial-card p {
  font-size: 0.97rem;
  line-height: 1.7;
  color: var(--gray-lt);
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author strong { display: block; color: var(--white); }
.testimonial-author span { font-size: 0.82rem; color: var(--gold); }

/* ===== TEAM ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.team-card {
  text-align: center;
  padding: 30px 20px;
  border: 1px solid var(--gray-lt);
  border-radius: var(--radius);
  transition: var(--trans);
}
.team-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(201,168,76,0.1);
  transform: translateY(-4px);
}
.team-photo {
  width: 100px; height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 3px solid var(--gold);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { font-size: 1.2rem; margin-bottom: 6px; }
.team-card span {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.team-card p { font-size: 0.88rem; }

/* ===== CTA BANNER ===== */
.cta-banner {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  text-align: center;
}
.cta-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.9), rgba(10,22,40,0.75));
}
.cta-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}
.cta-content h2 { color: var(--white); margin-bottom: 16px; }
.cta-content p { color: rgba(255,255,255,0.8); margin-bottom: 32px; }

/* ===== CONTACT ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 70px;
  align-items: start;
}
.contact-info h3 { font-size: 1.6rem; margin-bottom: 30px; }
.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-lt);
}
.contact-item:last-child { border-bottom: none; }
.c-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.contact-item strong { display: block; margin-bottom: 6px; color: var(--text); }
.contact-item p, .contact-item a { font-size: 0.92rem; color: var(--text-lt); }
.contact-item a:hover { color: var(--gold); }

.contact-form { background: var(--off-white); padding: 40px; border-radius: var(--radius); }
.contact-form h3 { margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 8px; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--white);
  border: 1.5px solid var(--gray-lt);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  color: var(--text);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; }
.form-note { text-align: center; font-size: 0.78rem; color: var(--gray); margin-top: 12px; }
.form-success {
  background: #d4edda;
  color: #155724;
  padding: 14px;
  border-radius: var(--radius);
  text-align: center;
  font-size: 0.92rem;
  margin-top: 16px;
}
.hidden { display: none !important; }

/* ===== FOOTER ===== */
.footer-main {
  background: var(--navy);
  padding: 70px 0 50px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-logo strong { color: var(--gold); }
.footer-brand p { font-size: 0.88rem; color: var(--gray); line-height: 1.7; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  font-weight: 700;
  transition: var(--trans);
}
.footer-socials a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h4 { color: var(--white); font-size: 0.9rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.88rem; color: var(--gray); }
.footer-col a:hover { color: var(--gold); }
.footer-col address p { font-size: 0.88rem; color: var(--gray); margin-bottom: 8px; line-height: 1.6; }
.footer-col address a { color: var(--gray); }
.footer-col address a:hover { color: var(--gold); }
.footer-bottom {
  background: rgba(0,0,0,0.3);
  padding: 18px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; color: var(--gray); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 0.82rem; color: var(--gray); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 500;
  width: 48px; height: 48px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--trans);
  box-shadow: 0 4px 16px rgba(201,168,76,0.4);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-4px); }

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@keyframes fadeUp {
  from { opacity:0; transform:translateY(24px); }
  to   { opacity:1; transform:translateY(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .whyus-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-images { max-width: 550px; margin: 0 auto; }
  .coverage-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .section-pad { padding: 70px 0; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  .nav-links { display: none; flex-direction: column; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--navy); justify-content: center; align-items: center; gap: 28px; z-index: 999; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.2rem; }
  .hamburger { display: flex; z-index: 1000; position: relative; }
  .hero-stats { position: static; flex-wrap: wrap; }
  .stat { padding: 16px 24px; }
  .services-grid,
  .fleet-grid,
  .whyus-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-img-secondary { display: none; }
  .about-badge-card { left: 10px; }
  .ports-grid { grid-template-columns: 1fr; }
  .hero-scroll { display: none; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .team-grid { grid-template-columns: 1fr; }
  .clients-logos { gap: 12px; }
  .contact-form { padding: 24px; }
}
