:root {
  --blue: #1f6fb2;
  --blue-dark: #15517f;
  --orange: #ff8c42;
  --turquoise: #20b2aa;
  --green: #3fae5c;
  --bg: #ffffff;
  --bg-alt: #f3f8fb;
  --text: #2b2f33;
  --text-light: #5a6268;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(15, 60, 90, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--bg);
}

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

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

h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 16px;
  color: #1c2530;
}

h1 { font-size: clamp(2rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); }
h3 { font-size: 1.2rem; }

p { margin: 0 0 14px; color: var(--text-light); }

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dark); }

.eyebrow {
  display: inline-block;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.78rem;
  color: var(--turquoise);
  margin-bottom: 10px;
}
.eyebrow.center { display: block; text-align: center; }
.center { text-align: center; }
.subtitle { max-width: 640px; margin: 0 auto 30px; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 8px 20px rgba(255, 140, 66, 0.35);
}
.btn-primary:hover { background: #e9762c; color: #fff; transform: translateY(-2px); }

.btn-secondary {
  background: var(--blue);
  color: #fff;
}
.btn-secondary:hover { background: var(--blue-dark); color: #fff; transform: translateY(-2px); }

.btn-secondary-outline {
  background: transparent;
  border-color: var(--blue);
  color: var(--blue);
}
.btn-secondary-outline:hover { background: var(--blue); color: #fff; }

.btn-whatsapp {
  background: #25d366;
  color: #fff;
}
.btn-whatsapp:hover { background: #1ebc59; color: #fff; transform: translateY(-2px); }

.btn-call {
  background: var(--turquoise);
  color: #fff;
  padding: 10px 20px;
  font-size: 0.9rem;
}
.btn-call:hover { background: #1a9089; color: #fff; }

.btn-block { display: block; width: 100%; text-align: center; }

.center-cta { text-align: center; margin-top: 36px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}
.logo {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--blue-dark);
}
.logo span { color: var(--orange); }
.footer-logo { display: inline-block; margin-bottom: 14px; color: #fff; }
.footer-logo span { color: var(--orange); }

.main-nav ul {
  display: flex;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav a {
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
}
.main-nav a:hover { color: var(--blue); }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--blue-dark);
}

/* Hero */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
}
.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(21, 81, 127, 0.85) 0%, rgba(31, 111, 178, 0.55) 55%, rgba(32, 178, 170, 0.35) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 700px;
  padding: 80px 20px;
}
.hero-content h1 { color: #fff; }
.hero-content p { color: rgba(255,255,255,0.92); font-size: 1.1rem; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 24px; }

/* Sections */
.section { padding: 70px 0; }
.alt-bg { background: var(--bg-alt); }

.intro-grid, .why-grid, .two-col {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.intro-img img, .why-img img, .img-wrap img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.link-arrow {
  display: inline-block;
  font-weight: 700;
  margin-top: 6px;
}

/* Cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 36px;
}
.card {
  background: #fff;
  padding: 28px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: left;
}
.card-icon { font-size: 2.2rem; margin-bottom: 12px; }
.card h3 { margin-bottom: 8px; }
.card p { margin: 0; font-size: 0.95rem; }

/* Gallery */
.gallery-grid.small {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 30px;
}
.gallery-grid.small img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.gallery-grid.full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}
.gallery-item img:hover { transform: scale(1.03); }

/* Check list */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: var(--text-light);
}
.check-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 800;
}

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 36px;
}
.step {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 20px;
  box-shadow: var(--shadow);
  text-align: center;
}
.step-number {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

/* CTA banner */
.cta-banner {
  background: linear-gradient(120deg, var(--blue) 0%, var(--turquoise) 100%);
  color: #fff;
  text-align: center;
}
.cta-banner-inner h2 { color: #fff; }
.cta-banner-inner p { color: rgba(255,255,255,0.92); max-width: 600px; margin: 0 auto 20px; }
.cta-banner-inner .hero-ctas { justify-content: center; }

/* Page hero (sub pages) */
.page-hero {
  background: linear-gradient(120deg, var(--blue-dark) 0%, var(--blue) 60%, var(--turquoise) 100%);
  color: #fff;
  padding: 80px 0 60px;
  text-align: center;
}
.page-hero h1 { color: #fff; }
.page-hero p { color: rgba(255,255,255,0.92); max-width: 700px; margin: 0 auto; }
.page-hero .eyebrow { color: #ffd9b3; }

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}
.price-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px 26px;
  position: relative;
  border: 2px solid transparent;
}
.price-card.featured {
  border-color: var(--orange);
  transform: translateY(-6px);
}
.badge {
  position: absolute;
  top: -14px;
  right: 20px;
  background: var(--orange);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 50px;
  text-transform: uppercase;
}
.price-period { font-size: 0.9rem; color: var(--text-light); margin-bottom: 12px; }
.price-amount { font-size: 1.6rem; font-weight: 800; color: var(--blue-dark); margin-bottom: 16px; }
.price-amount span { color: var(--orange); }
.pricing-notes {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 30px;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}
.contact-list { list-style: none; padding: 0; margin: 0 0 20px; }
.contact-list li { margin-bottom: 10px; }
.contact-buttons { display: flex; gap: 14px; margin: 20px 0 30px; flex-wrap: wrap; }
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }

.contact-form, .reserve-form {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-form label, .reserve-form label {
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 12px;
  margin-bottom: 4px;
}
.contact-form input, .contact-form textarea, .contact-form select,
.reserve-form input, .reserve-form textarea, .reserve-form select {
  padding: 12px 14px;
  border: 1px solid #d8e0e6;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
}
.contact-form button, .reserve-form button { margin-top: 20px; }
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-weight: 400 !important;
  font-size: 0.85rem !important;
  margin-top: 16px !important;
}
.checkbox-label input { width: auto; margin-top: 3px; }

.reserve-section { }
.reserve-form { max-width: 800px; margin: 0 auto; }
.reserve-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px 20px;
}

/* Footer */
.site-footer {
  background: #16324a;
  color: #cfe1ec;
  padding-top: 50px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 30px;
}
.footer-col h4 { color: #fff; margin-bottom: 14px; }
.footer-col p { color: #aac4d6; font-size: 0.9rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: #aac4d6; }
.footer-col a:hover { color: #fff; }
.footer-col .btn-whatsapp { margin-top: 14px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 0;
  font-size: 0.85rem;
  color: #8fb0c4;
}
.footer-bottom a { color: #cfe1ec; }

/* Whatsapp float */
.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  background: #25d366;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  z-index: 60;
}

/* Legal */
.legal-page h2 { margin-top: 30px; }
.legal-page { max-width: 850px; margin: 0 auto; }

/* Responsive */
@media (max-width: 900px) {
  .intro-grid, .why-grid, .two-col, .contact-grid {
    grid-template-columns: 1fr;
  }
  .two-col.reverse { direction: ltr; }
  .cards-grid, .steps-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid.small, .gallery-grid.full { grid-template-columns: repeat(2, 1fr); }
  .reserve-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .main-nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 16px 20px;
    gap: 14px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  }
  .main-nav ul.open { display: flex; }
  .nav-toggle { display: block; }
  .main-nav { position: relative; }
  .btn-call { display: none; }
  .cards-grid, .steps-grid, .pricing-grid, .gallery-grid.small, .gallery-grid.full { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .hero { min-height: 480px; }
}

/* ===== Fleet / Vehicle cards ===== */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 36px;
}
.vehicle-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.vehicle-card .vc-img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.vehicle-card .vc-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.vehicle-card:hover .vc-img img { transform: scale(1.04); }
.vc-tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--orange); color: #fff;
  font-size: .75rem; font-weight: 800;
  padding: 5px 12px; border-radius: 50px;
  text-transform: uppercase; letter-spacing: .5px;
}
.vc-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.vc-body h3 { margin-bottom: 6px; }
.vc-sub { color: var(--turquoise); font-weight: 700; font-size: .9rem; margin-bottom: 12px; }
.vc-specs { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 16px; padding: 0; list-style: none; }
.vc-specs li {
  background: var(--bg-alt); border-radius: 50px;
  padding: 5px 14px; font-size: .82rem; font-weight: 600; color: var(--text);
}
.vc-body p { font-size: .94rem; }
.vc-body .btn { margin-top: auto; align-self: flex-start; }

/* vehicle detail block on fleet page */
.vehicle-detail {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: center;
  padding: 40px 0; border-bottom: 1px solid #e6eef3;
}
.vehicle-detail:last-child { border-bottom: none; }
.vehicle-detail.reverse { direction: rtl; }
.vehicle-detail.reverse > * { direction: ltr; }
.vd-gallery { display: grid; grid-template-columns: 2fr 1fr; gap: 10px; }
.vd-gallery img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 10px; box-shadow: var(--shadow);
}
.vd-gallery img:first-child { grid-row: span 2; }
.vd-text .vc-specs { margin-bottom: 18px; }

@media (max-width: 900px) {
  .fleet-grid { grid-template-columns: 1fr; }
  .vehicle-detail, .vehicle-detail.reverse { grid-template-columns: 1fr; direction: ltr; }
}
