:root {
  --deep-blue: #006994;
  --sunset: #ff6b00;
  --seafoam: #25d366;
  --fog: #f8f9fa;
  --ink: #0f172a;
  --muted: #516274;
  --card: #ffffff;
  --border: rgba(15, 23, 42, 0.09);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Open Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #ffffff;
  color: var(--ink);
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(6px);
}

.topline {
  background: var(--deep-blue);
  color: #ffffff;
  font-size: 0.9rem;
  padding: 0.35rem 1rem;
  text-align: center;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem clamp(1rem, 6vw, 4rem);
}

nav .brand {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--deep-blue);
}

nav .lang-switch {
  font-weight: 600;
  color: var(--sunset);
}

main {
  padding-bottom: 2rem;
}

section {
  padding: clamp(2rem, 6vw, 4rem) clamp(1rem, 6vw, 4rem);
}

.hero {
  background: linear-gradient(135deg, rgba(0, 105, 148, 0.08), rgba(255, 107, 0, 0.08));
  padding-top: clamp(2.5rem, 8vw, 5rem);
}

.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.hero .intro {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0;
}

.badge {
  border-radius: 50px;
  border: 1px solid var(--border);
  padding: 0.4rem 1rem;
  font-size: 0.9rem;
  background: #ffffff;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 0.85rem 1.6rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-primary {
  background: var(--sunset);
  color: #ffffff;
}

.btn-outline {
  border: 2px solid var(--deep-blue);
  background: transparent;
  color: var(--deep-blue);
}

.btn-reserve {
  background: #22c55e;
  color: #ffffff;
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 1rem 1.8rem;
}

.btn-reserve:hover {
  background: #16a34a;
}

.reserve-note {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.carfind-widget {
  margin-top: 1rem;
}

.layout-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  align-items: start;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
}

.map-card iframe {
  width: 100%;
  height: 320px;
  border: none;
  border-radius: 14px;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.process-step {
  padding-left: 1.5rem;
  border-left: 4px solid var(--deep-blue);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0 0;
}

.list li {
  list-style: none;
  padding-left: 1.2rem;
  position: relative;
}

.list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--sunset);
}

details {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  background: #ffffff;
}

details summary {
  font-weight: 600;
  cursor: pointer;
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonials {
  background: var(--fog);
}

.testimonial {
  border-left: 4px solid var(--sunset);
  padding-left: 1rem;
}

.cta-final {
  text-align: center;
}

.cta-final p {
  max-width: 600px;
  margin: 1rem auto 2rem;
  color: var(--muted);
}

footer {
  background: #031724;
  color: #ffffff;
  padding: 2.5rem clamp(1rem, 6vw, 4rem);
}

footer a {
  color: #ffffff;
  opacity: 0.85;
}

.reserve-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 1000;
}

.reserve-modal.is-visible {
  display: flex;
}

.reserve-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
}

.reserve-modal__panel {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  width: min(900px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 40px 120px rgba(0, 15, 40, 0.25);
}

.reserve-modal__panel h3 {
  margin-top: 0;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: none;
  background: rgba(241, 245, 249, 0.8);
  color: var(--ink);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
}

.modal-loading {
  margin: 0.5rem 0 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.modal-home-link {
  display: inline-flex;
  margin-top: 1rem;
  font-weight: 600;
  color: var(--deep-blue);
}

body.modal-open {
  overflow: hidden;
}

.carfind-embed iframe,
.carfind-embed div {
  width: 100%;
}

@media (max-width: 720px) {
  nav {
    flex-direction: column;
    gap: 0.6rem;
  }

  .map-card iframe {
    height: 240px;
  }
}
