/* ===== STN — Société de Transit et de Négoce ===== */
/* Reset & Base */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy:        #06162d;
  --navy-light:  #0e2347;
  --ocean:       #055c82;
  --ocean-light: #0a7db1;
  --gold:        #e8650c;
  --gold-light:  #f5913a;
  --white:       #ffffff;
  --off-white:   #f7f9fc;
  --gray:        #5e6d82;
  --gray-light:  #e1e7ef;
  --dark:        #101828;
  --shadow:      0 8px 32px rgba(6, 22, 45, 0.12);
  --shadow-lg:   0 18px 56px rgba(6, 22, 45, 0.22);
  --transition:  all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --radius:      14px;
  --max-width:   1200px;
}

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

body {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  color: var(--dark);
  line-height: 1.75;
  background: var(--off-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4.2vw, 2.7rem); }
h3 { font-size: clamp(1.25rem, 3.2vw, 1.6rem); }

.section-title {
  text-align: center;
  margin-bottom: 18px;
}

.section-subtitle {
  text-align: center;
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 650px;
  margin: 0 auto 56px;
}

.section-tag {
  display: inline-block;
  color: var(--ocean);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  position: relative;
  padding-left: 36px;
}

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

.section-tag.center {
  padding-left: 0;
  padding-top: 18px;
  display: table;
  margin: 0 auto 12px;
}

.section-tag.center::before {
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 34px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-family: 'Poppins', sans-serif;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.6s ease;
  z-index: -1;
}

.btn:hover::before { left: 100%; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  box-shadow: 0 8px 24px rgba(232, 101, 12, 0.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(232, 101, 12, 0.45);
}

.btn-secondary {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
  backdrop-filter: blur(6px);
}
.btn-secondary:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--ocean);
  border: 2px solid var(--ocean);
}
.btn-outline:hover {
  background: var(--ocean);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===== Header / Navigation ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(6, 22, 45, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 1000;
  transition: var(--transition);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.header.scrolled {
  background: rgba(6, 22, 45, 0.95);
  box-shadow: 0 4px 30px rgba(0,0,0,0.25);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 84px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-logo img {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.2));
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.nav-logo-text .name {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 1px;
}

.nav-logo-text .tagline {
  font-size: 0.58rem;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.3;
  max-width: 130px;
}

.nav-links {
  display: flex;
  gap: 6px;
  align-items: center;
}

.nav-links a {
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  font-size: 0.93rem;
  padding: 10px 20px;
  border-radius: 50px;
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 18px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
  color: var(--navy) !important;
  font-weight: 600 !important;
}
.nav-cta:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold)) !important;
  color: var(--navy) !important;
}
.nav-cta::after { display: none !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
  padding: 8px;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(6,22,45,0.92) 0%, rgba(5,92,130,0.85) 100%);
  color: var(--white);
  text-align: center;
  padding-top: 84px;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
  opacity: 0.4;
}

.hero-particles,
.hero-content,
.hero-scroll {
  position: relative;
  z-index: 2;
}

.hero::before {
  z-index: 1;
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.6;
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 850px;
  margin: 0 auto;
  padding: 0 24px;
  z-index: 2;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  font-size: clamp(2.6rem, 6.5vw, 4.6rem);
  text-shadow: 0 4px 30px rgba(0,0,0,0.35);
  line-height: 1.15;
}

.hero h1 span {
  color: var(--gold);
  position: relative;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 42px;
  color: rgba(255,255,255,0.88);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 1.8rem;
  width: 44px;
  height: 44px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce 2.2s infinite;
  cursor: pointer;
  transition: var(--transition);
}

.hero-scroll:hover {
  border-color: var(--gold);
  color: var(--gold);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(10px); }
}

/* Animated particles */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  animation: float 12s infinite ease-in-out;
}

.particle:nth-child(1) { width: 8px; height: 8px; left: 10%; top: 70%; animation-duration: 14s; }
.particle:nth-child(2) { width: 12px; height: 12px; left: 25%; top: 30%; animation-duration: 16s; animation-delay: 1s; }
.particle:nth-child(3) { width: 6px; height: 6px; left: 70%; top: 60%; animation-duration: 13s; animation-delay: 2s; }
.particle:nth-child(4) { width: 10px; height: 10px; left: 85%; top: 25%; animation-duration: 15s; animation-delay: 3s; }
.particle:nth-child(5) { width: 7px; height: 7px; left: 50%; top: 80%; animation-duration: 17s; animation-delay: 4s; }

@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0.1; }
  25%      { transform: translateY(-25px) translateX(12px); opacity: 0.3; }
  50%      { transform: translateY(-50px) translateX(-8px); opacity: 0.15; }
  75%      { transform: translateY(-30px) translateX(8px); opacity: 0.25; }
}

/* ===== Sections ===== */
.section {
  padding: 110px 0;
  position: relative;
  scroll-margin-top: 50px;
}

.section-light { background: var(--white); }
.section-dark   { background: var(--navy); color: var(--white); }
.section-gray   { background: var(--off-white); }

.section-dark h2,
.section-dark h3 { color: var(--white); }

/* Wave separators */
.wave-top, .wave-bottom {
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-top { top: -1px; transform: rotate(180deg); }
.wave-bottom { bottom: -1px; }

.wave-top svg, .wave-bottom svg {
  display: block;
  width: calc(100% + 1.3px);
  height: 70px;
}

/* ===== About / Presentation ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-text .section-tag { color: var(--gold); padding-left: 0; padding-top: 16px; }
.about-text .section-tag::before { left: 0; top: 0; width: 36px; height: 3px; }

.about-text h2 { margin-bottom: 22px; }

.about-text p {
  color: var(--gray);
  margin-bottom: 18px;
}

.about-text .btn { margin-top: 14px; }

.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  position: relative;
}

.about-image::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 10px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  z-index: 2;
  pointer-events: none;
}

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

.about-image:hover img { transform: scale(1.06); }

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 70px;
}

.stat-item {
  text-align: center;
  padding: 34px 20px;
  background: linear-gradient(145deg, var(--navy-light) 0%, rgba(14,35,71,0.7) 100%);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--ocean-light));
  opacity: 0.7;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(6,22,45,0.2);
}

.stat-item .number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
  font-family: 'Playfair Display', serif;
}

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

/* ===== Services Cards ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.services-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 760px;
  margin: 34px auto 0;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 46px 34px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.04);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 0;
  background: linear-gradient(90deg, var(--ocean), var(--gold));
  transition: height 0.4s ease;
}

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

.service-card:hover::before { height: 5px; }

.service-icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 26px;
  background: linear-gradient(135deg, var(--ocean) 0%, var(--navy) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--white);
  position: relative;
  box-shadow: 0 10px 30px rgba(5,92,130,0.25);
}

.service-icon::after {
  content: '';
  position: absolute;
  inset: -6px;
  border: 2px dashed var(--gold);
  border-radius: 50%;
  opacity: 0.4;
  animation: spin 20s linear infinite;
}

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

.service-card h3 { margin-bottom: 14px; }

.service-card p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* ===== Fleet ===== */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 44px;
}

.fleet-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}

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

.fleet-card-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

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

.fleet-card:hover .fleet-card-image img {
  transform: scale(1.08);
}

.fleet-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(6,22,45,0.55) 100%);
  opacity: 0.8;
  transition: opacity 0.4s;
}

.fleet-card:hover .fleet-card-image::after {
  opacity: 0.4;
}

.fleet-card-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  padding: 8px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  z-index: 2;
}

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

.fleet-card-body h3 { margin-bottom: 10px; }

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

/* ===== Fleet Detail Page ===== */
.boat-hero {
  position: relative;
  min-height: 58vh;
  display: flex;
  align-items: flex-end;
  padding: 140px 0 60px;
  color: var(--white);
}

.boat-hero.gentle {
  background:
    linear-gradient(135deg, rgba(6,22,45,0.82) 0%, rgba(5,92,130,0.65) 100%),
    url('../GENTLE/IMG_3720.jpg') center/cover no-repeat;
}

.boat-hero.gallant {
  background:
    linear-gradient(135deg, rgba(6,22,45,0.82) 0%, rgba(5,92,130,0.65) 100%),
    url('../GALLANT/IMG_3679.jpg') center/cover no-repeat;
}

.boat-hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  text-shadow: 0 3px 20px rgba(0,0,0,0.3);
}

.boat-hero h1 span { color: var(--gold); }

.boat-hero p {
  color: rgba(255,255,255,0.85);
  font-size: 1.15rem;
  margin-top: 10px;
  max-width: 600px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 44px;
}

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

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

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

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

.gallery-item::after {
  content: '🔍';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  background: rgba(6,22,45,0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

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

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(6, 22, 45, 0.96);
  backdrop-filter: blur(12px);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  padding: 40px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: var(--radius);
  box-shadow: 0 20px 80px rgba(0,0,0,0.6);
  transform: scale(0.92);
  transition: transform 0.4s ease;
}

.lightbox.active img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 34px;
  color: var(--white);
  font-size: 2.8rem;
  cursor: pointer;
  background: rgba(255,255,255,0.1);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  line-height: 1;
}

.lightbox-close:hover {
  background: var(--gold);
  color: var(--navy);
  transform: rotate(90deg);
}

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: stretch;
}

.contact-info-card {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 48px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--gold), var(--ocean-light));
}

.contact-info-card h3 {
  color: var(--white);
  margin-bottom: 32px;
  font-family: 'Playfair Display', serif;
}

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

.contact-item .icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(232, 101, 12, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--gold);
  transition: var(--transition);
}

.contact-item:hover .icon {
  background: var(--gold);
  color: var(--navy);
  transform: scale(1.1);
}

.contact-item .label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 4px;
}

.contact-item .value {
  font-size: 1.05rem;
  color: var(--white);
  font-weight: 500;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.04);
}

.contact-form h3 {
  margin-bottom: 28px;
  font-family: 'Playfair Display', serif;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--navy);
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--gray-light);
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  background: var(--off-white);
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--ocean);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(5, 92, 130, 0.08);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.contact-form .btn {
  width: 100%;
  justify-content: center;
  margin-top: 10px;
}

.map-embed {
  margin-top: 60px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 420px;
  border: 1px solid rgba(0,0,0,0.05);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== CTA Banner ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--ocean) 0%, var(--navy) 100%);
  color: var(--white);
  text-align: center;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 50%, rgba(232, 101, 12, 0.12) 0%, transparent 35%),
    radial-gradient(circle at 85% 50%, rgba(255,255,255,0.06) 0%, transparent 35%);
}

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

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.cta-banner p {
  color: rgba(255,255,255,0.88);
  margin-bottom: 32px;
  font-size: 1.15rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Footer ===== */
.footer {
  background: linear-gradient(180deg, #080f1e 0%, var(--dark) 100%);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 28px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--ocean), var(--gold), var(--ocean));
}

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

.footer-brand .nav-logo-text .name { color: var(--white); }

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

.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 22px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 36px;
  height: 2px;
  background: var(--gold);
}

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

.footer-col ul li a {
  font-size: 0.92rem;
  transition: var(--transition);
  display: inline-block;
}

.footer-col ul li a:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.92rem;
}

.footer-contact-item .icon {
  color: var(--gold);
  font-size: 1.05rem;
  margin-top: 3px;
}

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

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

/* ===== Page Hero (inner pages) ===== */
.page-hero {
  position: relative;
  min-height: 48vh;
  display: flex;
  align-items: center;
  padding-top: 84px;
  color: var(--white);
  text-align: center;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.page-hero.services {
  background-image:
    linear-gradient(135deg, rgba(6,22,45,0.86) 0%, rgba(5,92,130,0.72) 100%),
    url('../GALLANT/IMG_3675.jpg');
}

.page-hero.flotte {
  background-image:
    linear-gradient(135deg, rgba(6,22,45,0.86) 0%, rgba(5,92,130,0.72) 100%),
    url('../GENTLE/IMG_3727.jpg');
}

.page-hero.contact {
  background-image:
    linear-gradient(135deg, rgba(6,22,45,0.88) 0%, rgba(5,92,130,0.78) 100%),
    url('../GALLANT/IMG_3686.jpg');
}

.page-hero h1 {
  color: var(--white);
  text-shadow: 0 3px 25px rgba(0,0,0,0.35);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
}

.page-hero h1 span { color: var(--gold); }

.page-hero p {
  color: rgba(255,255,255,0.88);
  font-size: 1.15rem;
  margin-top: 14px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}

.page-hero-content {
  max-width: 850px;
  margin: 0 auto;
  padding: 50px 24px;
  position: relative;
  z-index: 2;
}

/* ===== Animations ===== */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-image { max-width: 600px; margin: 0 auto; }

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

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

@media (max-width: 768px) {
  .nav {
    height: 76px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 76px;
    left: 0; right: 0;
    background: rgba(6, 22, 45, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 24px;
    gap: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

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

  .nav-links a {
    width: 100%;
    text-align: center;
    padding: 14px;
  }

  .nav-links a::after { display: none; }

  .nav-toggle {
    display: block;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .stats {
    grid-template-columns: 1fr 1fr;
  }

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

  .section { padding: 70px 0; }

  .page-hero { min-height: 40vh; background-attachment: scroll; }
}

@media (max-width: 480px) {
  .stats {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn { width: 100%; justify-content: center; }

  .contact-info-card, .contact-form { padding: 32px 24px; }
}
