/* EliteWay – Rentals & Transfers | Saint Lucia */

:root {
  --color-brand-blue: #0077c8;
  --color-brand-blue-dark: #005a99;
  --color-brand-blue-light: #3399d6;
  --color-brand-yellow: #ffd100;
  --color-brand-yellow-hover: #e6bc00;
  --color-navy: #0a1628;
  --color-navy-deep: #061018;
  --color-teal: var(--color-brand-blue);
  --color-teal-light: var(--color-brand-blue-light);
  --color-gold: var(--color-brand-yellow);
  --color-gold-hover: var(--color-brand-yellow-hover);
  --color-sand: #f4f7fa;
  --color-sand-dark: #e2e8ef;
  --color-white: #ffffff;
  --color-text: #0f1c2e;
  --color-text-muted: #2d4055;
  --font-display: "Source Sans 3", system-ui, sans-serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --shadow-sm: 0 2px 8px rgba(6, 16, 24, 0.06);
  --shadow-md: 0 8px 32px rgba(6, 16, 24, 0.12);
  --shadow-lg: 0 16px 48px rgba(6, 16, 24, 0.18);
  --radius: 8px;
  --radius-lg: 12px;
  --header-h: 72px;
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--color-brand-blue);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-brand-blue-dark);
}

.container {
  width: min(1140px, 92vw);
  margin-inline: auto;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-text);
}

h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.85rem, 4vw, 2.75rem); margin: 0 0 0.5rem; }
h3 { font-size: 1.35rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--color-brand-yellow);
  color: var(--color-navy-deep);
  border-color: var(--color-brand-yellow);
  box-shadow: 0 4px 14px rgba(255, 209, 0, 0.35);
}

.btn-primary:hover {
  background: var(--color-brand-yellow-hover);
  border-color: var(--color-brand-yellow-hover);
  color: var(--color-navy-deep);
}

.btn-outline-light {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-white);
}

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

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

.btn-block {
  width: 100%;
}

/* Header / Navbar */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(6, 16, 24, 0.97);
  border-bottom: 3px solid var(--color-brand-yellow);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo:hover {
  opacity: 0.92;
}

.logo-img {
  height: 44px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.logo-img-footer {
  height: 52px;
  max-width: 200px;
  filter: brightness(1.05);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  font-weight: 500;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--color-brand-yellow);
}

.nav-cta {
  padding: 0.5rem 1rem !important;
  background: var(--color-brand-yellow);
  color: var(--color-navy-deep) !important;
  border-radius: var(--radius);
}

.nav-cta:hover {
  background: var(--color-brand-yellow-hover) !important;
  color: var(--color-navy-deep) !important;
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: var(--transition);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
}

.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    105deg,
    rgba(6, 16, 24, 0.88) 0%,
    rgba(0, 60, 120, 0.55) 45%,
    rgba(0, 119, 200, 0.25) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 4rem 0 5rem;
  max-width: 680px;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-brand-yellow);
  margin: 0 0 1rem;
}

.hero h1 {
  color: var(--color-white);
  margin: 0 0 1rem;
}

.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 2rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

.hero-trust li::before {
  content: "◆ ";
  color: var(--color-brand-yellow);
  font-size: 0.5rem;
  vertical-align: middle;
}

/* Section group titles — plain text at top of section */
.section-group-title {
  margin: 0 0 2.25rem;
  text-align: center;
  font-family: var(--font-body);
  font-size: clamp(1.15rem, 2.4vw, 1.65rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-brand-blue);
}

#services-group-title::after {
  content: "";
  display: block;
  width: 4.5rem;
  height: 3px;
  margin: 0.75rem auto 0;
  background: var(--color-brand-yellow);
}

.section-group-title--light {
  color: var(--color-brand-yellow);
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-light {
  background: linear-gradient(180deg, #eef4fa 0%, var(--color-sand) 100%);
}

.section-dark {
  background: var(--color-navy);
  color: rgba(255, 255, 255, 0.92);
}

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

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-header.align-left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.section-header-light .section-intro {
  color: rgba(255, 255, 255, 0.75);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-brand-blue);
  margin-bottom: 0.5rem;
}

.section-label-light {
  color: var(--color-brand-yellow);
}

.section-intro {
  color: var(--color-text-muted);
  margin: 0.75rem 0 0;
  font-size: 1.05rem;
}

/* Service cards */
.card-grid {
  display: grid;
  gap: 1.5rem;
}

.card-grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.service-card {
  background: var(--color-white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-sand-dark);
  border-top: 4px solid var(--color-brand-blue);
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--color-brand-yellow);
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.25rem;
  color: var(--color-brand-blue);
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  margin: 0 0 0.5rem;
}

.service-card p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  font-weight: 500;
}

/* Premium section */
.premium-section {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

.premium-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-navy-deep) 0%, var(--color-brand-blue-dark) 55%, var(--color-brand-blue) 100%);
  z-index: 0;
}

.premium-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-brand-yellow);
}

.premium-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.premium-copy h2 {
  color: var(--color-white);
}

.premium-sub {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin: 0 0 1.5rem;
}

.premium-list {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
}

.premium-list li {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
}

.premium-list li:last-child {
  border-bottom: none;
}

.premium-list strong {
  display: block;
  color: var(--color-white);
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.premium-list span {
  font-size: 0.9rem;
  opacity: 0.85;
}

.premium-gallery {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.gallery-slider {
  position: relative;
  aspect-ratio: 4 / 3;
}

.gallery-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.gallery-slide.active {
  opacity: 1;
  z-index: 1;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-slide figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(transparent, rgba(6, 16, 24, 0.85));
  color: var(--color-white);
  font-size: 0.9rem;
  font-weight: 500;
}

.gallery-dots {
  position: absolute;
  bottom: 3.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}

.gallery-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--color-white);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition);
}

.gallery-dots .dot.active {
  background: var(--color-brand-yellow);
  border-color: var(--color-brand-yellow);
}

/* Rentals */
.rental-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.rental-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-sand-dark);
  border-bottom: 3px solid var(--color-brand-blue);
  transition: transform var(--transition), border-bottom-color var(--transition);
}

.rental-card:hover {
  transform: translateY(-4px);
  border-bottom-color: var(--color-brand-yellow);
}

.rental-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.rental-card-body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.rental-card h3 {
  margin: 0 0 0.35rem;
}

.rental-price {
  color: var(--color-brand-blue);
  font-size: 1rem;
  margin: 0 0 0.5rem;
  font-weight: 600;
}

.rental-price strong {
  font-size: 1.2rem;
  color: var(--color-text);
}

.rental-card-body p:last-child {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.rental-disclaimer {
  text-align: center;
  margin: 2rem 0 0;
  color: var(--color-text-muted);
}

/* Fleet */
#fleet {
  contain: layout style;
}

.fleet-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
  margin-top: 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  contain: layout style;
}

.fleet-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  content-visibility: auto;
  contain-intrinsic-size: auto 320px;
  contain: layout style paint;
}

@media (hover: hover) {
  .fleet-card {
    transition: border-color var(--transition);
  }

  .fleet-card:hover {
    border-color: var(--color-brand-yellow);
  }
}

.fleet-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.04);
}

.fleet-card-body {
  padding: 1.25rem;
}

.fleet-card h3 {
  color: var(--color-white);
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
}

.fleet-card .fleet-meta {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

.fleet-card .fleet-hint {
  font-size: 0.75rem;
  color: var(--color-brand-yellow);
  margin-top: 0.5rem;
}

/* Requirements */
.requirements-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.requirements-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.requirements-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--color-sand-dark);
  font-size: 1rem;
}

.requirements-list .check {
  flex-shrink: 0;
  color: var(--color-brand-blue);
  font-weight: 700;
}

.terms-link {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.95rem;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: start;
}

.about-copy p {
  color: var(--color-text-muted);
}

.about-stats {
  display: grid;
  gap: 1rem;
}

.stat-card {
  background: var(--color-sand);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-brand-yellow);
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-brand-blue);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.about-quote {
  margin: 0.5rem 0 0;
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--color-brand-blue-dark), var(--color-brand-blue));
  color: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-lg);
  border: none;
  border-left: 4px solid var(--color-brand-yellow);
}

.about-quote p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.55;
}

/* Inquiry form */
.section-inquiry {
  background: linear-gradient(180deg, var(--color-sand) 0%, var(--color-white) 100%);
}

.section-inquiry .section-header::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--color-brand-yellow);
  margin: 1rem auto 0;
  border-radius: 2px;
}

#inquiry {
  scroll-margin-top: var(--header-h);
}

.inquiry-wrapper {
  max-width: 720px;
  margin: 0 auto;
}

.inquiry-form {
  background: var(--color-white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-sand-dark);
  border-top: 4px solid var(--color-brand-blue);
}

.form-row {
  margin-bottom: 1.25rem;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-row label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.4rem;
}

.required { color: #c0392b; }
.optional { font-weight: 400; color: var(--color-text-muted); }

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid var(--color-sand-dark);
  border-radius: var(--radius);
  background: var(--color-white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--color-brand-blue);
  box-shadow: 0 0 0 3px rgba(0, 119, 200, 0.2);
}

.form-row input.invalid {
  border-color: #c0392b;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-checkbox input {
  width: auto;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.form-checkbox label {
  margin: 0;
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.form-success {
  text-align: center;
  background: var(--color-white);
  padding: 3rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-sand-dark);
}

.form-success.hidden,
.hidden {
  display: none !important;
}

.form-success-logo {
  height: 48px;
  width: auto;
  margin: 0 auto 1rem;
  object-fit: contain;
}

.success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  background: var(--color-brand-blue);
  color: var(--color-white);
  font-size: 2rem;
  line-height: 64px;
  border-radius: 50%;
}

.form-success h3 {
  margin: 0 0 0.75rem;
}

.success-detail {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin: 1rem 0 1.5rem;
}

/* Footer */
.site-footer {
  background: var(--color-navy-deep);
  color: rgba(255, 255, 255, 0.85);
  padding: 4rem 0 0;
  border-top: 4px solid var(--color-brand-yellow);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.footer-col h4 {
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.75);
}

.footer-col a:hover {
  color: var(--color-brand-yellow);
}

.footer-logo {
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.85rem;
  margin: 0 0 1rem;
  opacity: 0.7;
}

.footer-contact li {
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  color: var(--color-white);
  transition: background var(--transition), color var(--transition);
}

.social-links a:hover {
  background: var(--color-brand-yellow);
  color: var(--color-navy-deep);
}

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

.footer-bottom a {
  color: rgba(255, 255, 255, 0.75);
}

.footer-disclaimer {
  margin: 0.75rem 0 0;
  font-size: 0.8rem;
  opacity: 0.6;
  max-width: 560px;
  margin-inline: auto;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(6, 16, 24, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  max-width: 960px;
  width: 100%;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-height: 90vh;
}

.lightbox-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}

.lightbox-info {
  padding: 2rem;
  overflow-y: auto;
}

.lightbox-info h3 {
  margin: 0 0 0.5rem;
}

.lightbox-info ul {
  margin: 1rem 0;
  padding-left: 1.25rem;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  font-size: 1.75rem;
  line-height: 1;
  background: rgba(255, 255, 255, 0.15);
  color: var(--color-white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background var(--transition);
}

.lightbox-close:hover {
  background: var(--color-brand-yellow);
  color: var(--color-navy);
}

/* Responsive */
@media (max-width: 900px) {
  .premium-grid,
  .about-grid,
  .requirements-layout,
  .lightbox-content {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--color-navy-deep);
    padding: 1rem 0 2rem;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--transition), opacity var(--transition), visibility var(--transition);
  }

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

  .nav-menu li {
    width: 100%;
    text-align: center;
  }

  .nav-menu a {
    display: block;
    padding: 0.85rem 1.5rem;
  }

  .nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

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

  .inquiry-form {
    padding: 1.5rem;
  }

  .lightbox-content img {
    max-height: 240px;
  }
}
