/* ============ Base reset ============ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  color: #1b1b1b;
  background-color: #fffdf8; /* creamy white */
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: #0e7490;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(90%, 1200px);
  margin-inline: auto;
}

[id] {
  scroll-margin-top: 90px;
}

/* ============ Header ============ */
header {
  background: #ffffff;
  position: relative; /* not sticky anymore */
  top: auto;
  z-index: 50;
  border-bottom: none; /* remove white dividing line */
}

.nav {
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-block: 0.6rem 1rem;
}

/* centered brand */
.brand {
  text-align: center;
  color: #0e7490;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.brand img.site-logo {
  width: clamp(180px, 30vw, 220px);
  height: auto;
  border-radius: 20px;
  object-fit: contain;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.04);
}

.brand strong {
  font-size: 1.35rem;
  font-weight: 700;
  color: #0e7490;
}

.brand small {
  font-size: 0.78rem;
  color: #5f6e76;
}

/* ============ WhatsApp left, Menu right ============ */
.top-actions {
  position: absolute;
  left: 16px;
  top: 12px;
  transform: none;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
}

/* WhatsApp button */
.top-actions .whatsapp-link,
.top-actions a[href*="wa.me"] {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
}

.top-actions .whatsapp-link img,
.top-actions a[href*="wa.me"] img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.top-actions .whatsapp-link span,
.top-actions a[href*="wa.me"] span {
  font-size: 0.7rem;
  font-weight: 600;
  color: #0a8f4c;
  white-space: nowrap;
}

/* Menu button on the right */
.burger,
#menuBtn {
  position: absolute;
  right: 16px;
  top: 12px;
  transform: none;
  background: #fff;
  border: 2px solid #0e7490;
  color: #0e7490;
  border-radius: 14px;
  padding: 0.45rem 1.1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(14, 116, 144, 0.12);
}

/* small screens */
@media (max-width: 600px) {
  .nav {
    min-height: 150px;
  }

  .top-actions {
    left: 10px;
  }

  .top-actions .whatsapp-link span,
  .top-actions a[href*="wa.me"] span {
    display: none;
  }

  .burger,
  #menuBtn {
    right: 10px;
  }
}

/* ============ Drawer ============ */
#drawer[hidden] {
  display: none;
}

#drawer {
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  padding-bottom: 0.5rem;
}

.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.03);
  border-radius: 14px;
  padding: 0.6rem 1rem;
  margin-left: auto;
  max-width: 210px;
}

.drawer-links a {
  padding: 0.3rem 0.1rem;
  border-radius: 8px;
  text-decoration: none;
  color: #1b1b1b;
}

.drawer-links a:hover {
  background: #e9f7ff;
}

/* ============ Hero ============ */
.hero {
  background: #eaf5ff; /* baby blue section */
  padding: 2rem 0 3rem;
}

.hero-grid {
  display: grid;
  gap: 1.8rem;
  align-items: center;
}

.hero-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  padding: 0.8rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  max-width: 520px;
  margin-inline: auto; /* center trailer pod image */
}

.hero-card img {
  border-radius: 12px;
  display: block;
  margin-inline: auto;
}

.hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: #043b4f;
  margin-bottom: 0.5rem;
}

.hero .lead {
  color: #5f6e76;
  margin-bottom: 1rem;
}

.hero-cta {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: #0e7490;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 0.6rem 1.1rem;
  cursor: pointer;
  font-weight: 600;
}

.btn:hover {
  background: #0b5f77;
}

.btn.outline {
  background: transparent;
  color: #0e7490;
  border: 2px solid #0e7490;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

/* ============ Sections ============ */
section {
  padding: 3rem 0;
}

.section-title {
  font-size: 1.8rem;
  text-align: center;
  color: #043b4f;
  margin-bottom: 0.4rem;
}

.muted {
  color: #5f6e76;
}

/* ============ grids ============ */
.features,
.how,
.pricing {
  display: grid;
  gap: 1rem;
}

.features {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.how {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.pricing {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.feature,
.step,
.price-card,
.contact-aside,
.faq details {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 14px;
  padding: 1rem 0.9rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
}

/* how steps */
.step {
  text-align: left;
}

.step .num {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: #0e7490;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step h3 {
  margin: 0 0 0.35rem 0;
  font-size: 1rem;
}

.step p {
  margin: 0;
  color: #5f6e76;
}

/* ============ Contact ============ */
.contact {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 1.5rem;
}

@media (max-width: 880px) {
  .contact {
    grid-template-columns: 1fr;
  }
}

form label {
  font-weight: 600;
  margin-top: 0.6rem;
  display: block;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  padding: 0.55rem 0.6rem;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(14, 116, 144, 0.35);
  border-color: rgba(14, 116, 144, 0.35);
}

#photoList {
  list-style: none;
  padding-left: 0;
  margin-top: 0.5rem;
}

#photoList li {
  display: flex;
  gap: 0.4rem;
  align-items: center;
  margin-bottom: 0.35rem;
}

#photoList button {
  background: #fff5f5;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 6px;
  padding: 0.1rem 0.4rem;
  cursor: pointer;
  font-size: 0.7rem;
}

/* ============ FAQ ============ */
.faq details {
  margin-bottom: 0.5rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: #043b4f;
}

/* ============ Footer ============ */
footer {
  background: #043b4f;
  color: #fff;
  padding: 1rem 0;
  text-align: center;
}

footer a {
  color: #fff;
}

/* ============ Cookie banner ============ */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 14px;
  padding: 0.7rem 1rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  z-index: 80;
}

.cookie-banner[hidden] {
  display: none !important;
}

/* ============ Responsive tweaks ============ */
@media (max-width: 500px) {
  .container {
    width: 92%;
  }

  .hero-cta {
    flex-direction: column;
  }
}
