:root {
  --navy: #0B192C;
  --orange: #FF5722;
  --light-gray: #F4F6F9;
  --white: #FFFFFF;
  --text: #25364A;
  --muted: #61717F;
  --border: rgba(11, 25, 44, 0.12);
  --shadow: 0 16px 40px rgba(11, 25, 44, 0.12);
  --whatsapp: #25D366;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Roboto", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(11, 25, 44, 0.08);
}

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

.brand {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  white-space: nowrap;
}

.brand .accent {
  color: var(--orange);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.language-switcher {
  appearance: none;
  border: 1px solid var(--border);
  color: var(--navy);
  background: var(--white);
  padding: 0.7rem 2.45rem 0.7rem 0.95rem;
  border-radius: 999px;
  font-weight: 500;
  cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, var(--navy) 50%), linear-gradient(135deg, var(--navy) 50%, transparent 50%);
  background-position: calc(100% - 16px) calc(50% - 3px), calc(100% - 10px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: var(--whatsapp);
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.28);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(11, 25, 44, 0.9) 0%, rgba(11, 25, 44, 0.7) 45%, rgba(11, 25, 44, 0.45) 100%),
    url("https://images.pexels.com/photos/36652843/pexels-photo-36652843.jpeg?cs=srgb&dl=pexels-rrodriguesim-36652843.jpg&fm=jpg") center/cover;
}

.hero-content {
  color: var(--white);
  padding: 4.5rem 0;
}

.hero-title {
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  font-size: clamp(2rem, 4vw, 3.8rem);
  max-width: 780px;
  margin: 0 0 1.1rem;
}

.hero-subtitle {
  max-width: 720px;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 2rem;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: var(--white);
  padding: 1rem 1.35rem;
  border-radius: 999px;
  font-weight: 900;
  font-size: 0.96rem;
  letter-spacing: 0.02em;
  box-shadow: 0 18px 40px rgba(255, 87, 34, 0.28);
  transition: transform 0.2s ease;
}

.hero-cta:hover {
  transform: translateY(-2px);
}

section {
  padding: 4.5rem 0;
}

.section-heading {
  margin-bottom: 1.5rem;
}

.section-title {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 0.55rem;
}

.section-intro {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 1.8rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(11, 25, 44, 0.16);
}

.service-card h3 {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.07rem;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 0.6rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.fleet-section {
  background: var(--light-gray);
}

.fleet-shell {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.5rem;
  align-items: center;
  background: var(--white);
  border-radius: 28px;
  padding: 2rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.fleet-media {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 320px;
  background: linear-gradient(135deg, rgba(11, 25, 44, 0.18), rgba(255, 87, 34, 0.18));
}

.fleet-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 25, 44, 0.18) 0%, rgba(11, 25, 44, 0.02) 45%, rgba(11, 25, 44, 0.18) 100%);
  pointer-events: none;
}

.fleet-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fleet-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.fleet-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  background: var(--light-gray);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 0.95rem 1rem;
}

.fleet-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  flex-shrink: 0;
}

.trust-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 246, 249, 0.94));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.3rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid var(--border);
}

.trust-icon {
  width: 2.8rem;
  height: 2.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 87, 34, 0.12);
  color: var(--orange);
  flex-shrink: 0;
}

.trust-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.contact-shell {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 1.25rem;
}

.contact-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

label {
  font-weight: 500;
  color: var(--navy);
}

input, textarea {
  width: 100%;
  border: 1px solid rgba(11, 25, 44, 0.15);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  font: inherit;
  color: var(--navy);
  background: #FCFDFF;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.submit-btn {
  width: 100%;
  border: none;
  border-radius: 999px;
  padding: 0.96rem 1.2rem;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  cursor: pointer;
}

.quick-link,
.contact-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 0.9rem;
  padding: 0.95rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  text-align: center;
}

.quick-link {
  background: var(--whatsapp);
  color: var(--white);
}

.contact-action {
  background: var(--orange);
  color: var(--white);
}

.form-status {
  min-height: 1.2rem;
  margin-top: 0.8rem;
  color: var(--navy);
  font-weight: 500;
}

.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.92);
  padding: 2.5rem 0 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.footer h4 {
  font-family: "Montserrat", Arial, sans-serif;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 0.6rem;
}

.footer p {
  margin: 0.3rem 0;
}

@media (max-width: 900px) {
  .services-grid,
  .fleet-shell,
  .trust-grid,
  .contact-shell,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .fleet-shell {
    padding: 1.5rem;
  }
}

@media (max-width: 640px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
  }

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

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 3.1rem 0;
  }

  .hero-cta {
    width: 100%;
  }

  section {
    padding: 3.4rem 0;
  }

  .services-grid {
    gap: 1rem;
  }
}
