/*
Theme Name: NDC Theme
Theme URI: https://nationaldredging.com.bd
Author: National Dredging Company (Pvt.) Limited
Author URI: https://nationaldredging.com.bd
Description: Official website theme for National Dredging Company (Pvt.) Limited
Version: 1.0.0
License: Private
Text Domain: ndc-theme
*/

/* ─── DESIGN TOKENS ──────────────────────────────────────────────────────── */
:root {
  --navy:       #0B1F3A;
  --navy-mid:   #163256;
  --river:      #1A6B9A;
  --river-light:#2E90CC;
  --steel:      #4A7FA5;
  --sand:       #C8A96E;
  --sand-light: #E8D5A3;
  --off-white:  #F5F7FA;
  --mid-grey:   #8A9BB0;
  --dark-grey:  #2C3E50;
  --white:      #FFFFFF;

  --font-display: 'Oswald', sans-serif;
  --font-body:    'Source Sans 3', sans-serif;

  --radius:   4px;
  --shadow:   0 4px 24px rgba(11,31,58,0.13);
  --shadow-sm:0 2px 8px rgba(11,31,58,0.08);
  --trans:    all 0.25s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--dark-grey);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

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

a { color: var(--river); text-decoration: none; transition: var(--trans); }
a:hover { color: var(--river-light); }

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

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

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

.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 50px 0; }

/* ─── TYPOGRAPHY SCALE ───────────────────────────────────────────────────── */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sand);
  display: block;
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--navy);
  margin-bottom: 16px;
}

.section-title.light { color: var(--white); }

.section-sub {
  font-size: 1.05rem;
  color: var(--mid-grey);
  max-width: 600px;
  margin-bottom: 48px;
}

.section-sub.light { color: var(--sand-light); }

/* ─── BUTTON ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 13px 32px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--trans);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--river);
  color: var(--white);
  border-color: var(--river);
}
.btn-primary:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-sand {
  background: var(--sand);
  color: var(--navy);
  border-color: var(--sand);
}
.btn-sand:hover {
  background: var(--sand-light);
  border-color: var(--sand-light);
  color: var(--navy);
}

/* ─── TOPBAR ─────────────────────────────────────────────────────────────── */
.topbar {
  background: var(--navy);
  padding: 8px 0;
  font-size: 0.82rem;
  color: var(--mid-grey);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar a { color: var(--mid-grey); }
.topbar a:hover { color: var(--sand); }
.topbar-contact { display: flex; gap: 24px; flex-wrap: wrap; }
.topbar-contact span { display: flex; align-items: center; gap: 6px; }

/* ─── HEADER ─────────────────────────────────────────────────────────────── */
.site-header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  width: 54px;
  height: 54px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.logo-mark svg {
  width: 36px;
  height: 36px;
}

.logo-text { line-height: 1.15; }

.logo-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.04em;
  display: block;
}

.logo-tagline {
  font-size: 0.7rem;
  color: var(--river);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Nav */
.main-nav { display: flex; align-items: center; gap: 4px; }

.nav-item {
  position: relative;
}

.nav-link {
  display: block;
  padding: 10px 16px;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  border-radius: var(--radius);
  transition: var(--trans);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--river);
  background: var(--off-white);
}

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--white);
  box-shadow: var(--shadow);
  border-top: 3px solid var(--river);
  border-radius: 0 0 var(--radius) var(--radius);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--trans);
  z-index: 100;
}

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

.dropdown-menu a {
  display: block;
  padding: 11px 18px;
  font-size: 0.86rem;
  color: var(--dark-grey);
  border-bottom: 1px solid var(--off-white);
  transition: var(--trans);
}

.dropdown-menu a:last-child { border-bottom: none; }

.dropdown-menu a:hover {
  background: var(--off-white);
  color: var(--river);
  padding-left: 24px;
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: var(--trans);
  border-radius: 2px;
}

/* ─── HERO ───────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(11,31,58,0.92) 0%, rgba(22,50,86,0.75) 55%, rgba(26,107,154,0.45) 100%),
    url('images/hero-bg.jpg') center/cover no-repeat;
}

/* Animated water line */
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--river), var(--sand), var(--river-light), var(--sand), var(--river));
  background-size: 200% 100%;
  animation: waterFlow 4s linear infinite;
}

@keyframes waterFlow {
  0%   { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
  max-width: 680px;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--sand);
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero-title span { color: var(--sand); }

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.7;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero stats bar */
.hero-stats {
  position: relative;
  z-index: 2;
  background: rgba(22,50,86,0.92);
  border-top: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide: var(--river);
}

.stat-item {
  padding: 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--sand);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--mid-grey);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ─── ABOUT STRIP ────────────────────────────────────────────────────────── */
.about-strip {
  background: var(--off-white);
}

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

.about-image-wrap {
  position: relative;
}

.about-image-wrap img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  object-fit: cover;
  height: 380px;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--navy);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}

.about-badge-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--sand);
  display: block;
  line-height: 1;
}

.about-badge-text {
  font-size: 0.75rem;
  color: var(--mid-grey);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ─── SERVICES ───────────────────────────────────────────────────────────── */
.services-section {
  background: var(--navy);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.06);
}

.service-card {
  background: var(--navy-mid);
  padding: 40px 32px;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--river);
  transform: scaleX(0);
  transition: var(--trans);
}

.service-card:hover {
  background: var(--navy);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(26,107,154,0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--trans);
}

.service-card:hover .service-icon {
  background: var(--river);
}

.service-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--river-light);
  fill: none;
  transition: var(--trans);
}

.service-card:hover .service-icon svg {
  stroke: var(--white);
}

.service-title {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 12px;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--mid-grey);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ─── FLEET ──────────────────────────────────────────────────────────────── */
.fleet-section { background: var(--white); }

.fleet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.fleet-card {
  border: 1px solid #E0E8F0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--trans);
}

.fleet-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.fleet-card-image {
  height: 220px;
  background: var(--navy-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.fleet-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fleet-card-image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.fleet-card-image-placeholder svg {
  width: 64px;
  height: 64px;
  stroke: rgba(255,255,255,0.3);
  fill: none;
}

.fleet-card-image-placeholder span {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
}

.fleet-vessel-label {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--river);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius);
}

.fleet-card-body { padding: 28px; }

.fleet-card-name {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 16px;
}

.fleet-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
}

.spec-item {}

.spec-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mid-grey);
  display: block;
  margin-bottom: 2px;
}

.spec-value {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 500;
}

/* ─── PROJECTS ───────────────────────────────────────────────────────────── */
.projects-section { background: var(--off-white); }

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.project-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--trans);
}

.project-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.project-card-image {
  height: 200px;
  background: var(--navy-mid);
  overflow: hidden;
  position: relative;
}

.project-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.project-card:hover .project-card-image img {
  transform: scale(1.05);
}

.project-card-body { padding: 22px; }

.project-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--river);
  margin-bottom: 8px;
}

.project-title {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.project-desc {
  font-size: 0.88rem;
  color: var(--mid-grey);
  margin-bottom: 0;
}

/* ─── NEWS ───────────────────────────────────────────────────────────────── */
.news-section { background: var(--white); }

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.news-card {
  border-bottom: 3px solid var(--off-white);
  padding-bottom: 24px;
  transition: var(--trans);
}

.news-card:hover { border-color: var(--river); }

.news-date {
  font-size: 0.78rem;
  color: var(--mid-grey);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.news-title {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 8px;
  transition: var(--trans);
}

.news-card:hover .news-title { color: var(--river); }

.news-excerpt {
  font-size: 0.88rem;
  color: var(--mid-grey);
  margin-bottom: 12px;
}

.news-read-more {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--river);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ─── CTA BAND ───────────────────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--river) 100%);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-text h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--white);
  margin-bottom: 8px;
}

.cta-text p {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  margin: 0;
}

/* ─── FOOTER ─────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  color: var(--mid-grey);
  font-size: 0.9rem;
}

.footer-top { padding: 60px 0; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo-mark {
  width: 44px;
  height: 44px;
  background: var(--river);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-logo-mark svg {
  width: 28px;
  height: 28px;
  stroke: var(--white);
  fill: none;
}

.footer-logo-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 600;
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--mid-grey);
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 9px; }
.footer-links a {
  color: var(--mid-grey);
  font-size: 0.88rem;
  transition: var(--trans);
}
.footer-links a:hover { color: var(--sand); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  align-items: flex-start;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--river-light);
  fill: none;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item span {
  font-size: 0.86rem;
  color: var(--mid-grey);
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
}

.footer-bottom a { color: var(--mid-grey); }
.footer-bottom a:hover { color: var(--sand); }

/* ─── PAGE HERO ──────────────────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(105deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--river), var(--sand), var(--river-light));
}

.page-hero-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--white);
  margin-bottom: 8px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  color: var(--mid-grey);
}

.breadcrumb a { color: var(--mid-grey); }
.breadcrumb a:hover { color: var(--sand); }
.breadcrumb span { color: var(--sand); }

/* ─── GALLERY ────────────────────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11,31,58,0.5);
  opacity: 0;
  transition: var(--trans);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay svg {
  width: 40px;
  height: 40px;
  stroke: var(--white);
  fill: none;
}

/* ─── CONTACT ────────────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  align-items: start;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: var(--off-white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--river);
  fill: none;
}

.contact-info-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mid-grey);
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 0.95rem;
  color: var(--dark-grey);
  font-weight: 500;
}

/* Contact form */
.contact-form .form-group { margin-bottom: 18px; }

.contact-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #D0DCE8;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark-grey);
  background: var(--white);
  transition: var(--trans);
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--river);
  box-shadow: 0 0 0 3px rgba(26,107,154,0.1);
}

.contact-form textarea { height: 130px; resize: vertical; }

/* ─── ADMIN / CMS NOTICE ─────────────────────────────────────────────────── */
.wp-admin-bar-notice {
  background: var(--river);
  color: var(--white);
  text-align: center;
  padding: 8px;
  font-size: 0.82rem;
}

/* ─── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
}

@media (max-width: 768px) {
  .section-pad { padding: 56px 0; }

  .main-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 24px 40px;
    gap: 0;
    overflow-y: auto;
    z-index: 999;
  }

  .main-nav.open { display: flex; }

  .nav-item { width: 100%; }

  .nav-link {
    color: var(--white);
    padding: 14px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    border-radius: 0;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: rgba(255,255,255,0.05);
    border-radius: 0;
    margin-left: 16px;
  }

  .dropdown-menu a { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.06); }

  .nav-toggle { display: flex; position: relative; z-index: 1001; }

  .about-grid,
  .fleet-grid,
  .contact-grid { grid-template-columns: 1fr; }

  .services-grid,
  .projects-grid,
  .news-grid { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  .stats-inner { grid-template-columns: repeat(2, 1fr); }

  .cta-inner { flex-direction: column; text-align: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .about-badge { position: static; margin-top: 16px; display: inline-block; }

  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
