:root{
  --bg: #eef3f6;
  --white: #ffffff;
  --text: #0f172a;
  --muted: #5b6475;

  --brand: #2f6f84;
  --brand-dark: #23586a;

  --shadow: 0 18px 50px rgba(15, 23, 42, .12);
  --radius: 18px;
}

*{ box-sizing: border-box; }
html, body{
  margin: 0;
  padding: 0;
  font-family: "Lato", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}
a{ color: inherit; text-decoration: none; }
img{ max-width: 100%; display: block; }

input, select, textarea, button{ font-family: inherit; }

.container{
  width: min(1100px, 92%);
  margin: 0 auto;
}

/* ===== HEADER / NAV ===== */
.header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15,23,42,.06);
}
.nav{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
}
.brand{
  position: relative;
  display: flex;
  align-items: center;
  height: 34px;
  padding-left: 120px;
  gap: 10px;
  overflow: visible;
}
.brand__logo{
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 58px;
  width: auto;
  object-fit: contain;
  display: block;
}
.brand__name{
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.nav__toggle{
  display: none;
  border: 0;
  background: transparent;
  font-size: 22px;
  cursor: pointer;
}

.nav__links{
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 700;
  color: #344054;
}

.nav__links a{
  font-size: 14px;
  opacity: .95;
}
.nav__links a:hover{ opacity: 1; }

/* ===== DROPDOWN (FIXED) ===== */
/* =========================
   NAV DROPDOWN (FINAL)
   ========================= */
.nav__dropdown{
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav__dropbtn{
  /* remove default button style */
  appearance: none;
  -webkit-appearance: none;

  background: transparent;
  border: 0;
  outline: none;
  padding: 0;
  margin: 0;

  cursor: pointer;

  /* match your nav links */
  font: inherit;
  font-weight: 700;
  font-size: 14px;
  color: #344054;
  opacity: .95;

  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav__dropbtn:hover{ opacity: 1; }

.nav__caret{
  font-size: 12px;
  transform: translateY(1px);
}

/* dropdown panel */
.nav__dropdown-menu{
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;

  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
  padding: 8px;
  z-index: 9999;
}

.nav__dropdown-menu a{
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: #111;
  font-weight: 700;
  font-size: 14px;
}

.nav__dropdown-menu a:hover{
  background: rgba(0,0,0,.06);
}

/* Desktop open on hover */
@media (min-width: 881px){
  .nav__dropdown:hover .nav__dropdown-menu,
  .nav__dropdown:focus-within .nav__dropdown-menu{
    display: block;
  }
}

/* Mobile open with JS class */
.nav__dropdown.open .nav__dropdown-menu{
  display: block;
}

/* Mobile layout: dropdown items should not be absolute */
@media (max-width: 880px){
  .nav__dropdown{
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav__dropbtn{
    width: 100%;
    padding: 6px 0;
    justify-content: flex-start;
  }

  .nav__dropdown-menu{
    position: static;
    min-width: 0;
    width: 100%;
    box-shadow: none;
    border: 0;
    padding: 0 0 0 12px;
    background: transparent;
  }

  .nav__dropdown-menu a{
    padding: 8px 0;
    color: #344054;
  }
}
/* ===== MOBILE NAV ===== */
@media (max-width: 880px){
  .nav__toggle{ display: block; }
  .nav__links{
    display: none;
    position: absolute;
    left: 0; right: 0;
    top: 64px;
    background: rgba(255,255,255,.98);
    border-bottom: 1px solid rgba(15,23,42,.06);
    padding: 14px 22px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .nav__links.is-open{ display: flex; }

  /* Dropdown becomes stacked (NOT absolute) */
  .nav__dropdown{
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav__dropbtn{
    width: 100%;
    justify-content: flex-start;
    padding: 6px 0;
  }

  .nav__dropdown-menu{
    position: static;
    width: 100%;
    min-width: 0;

    box-shadow: none;
    border: 0;
    padding: 0 0 0 10px;
    background: transparent;
  }

  .nav__dropdown-menu a{
    padding: 8px 0;
    border-radius: 0;
    color: #344054;
  }

  .nav__dropdown:hover .nav__dropdown-menu{
    display: none; /* disable hover open on mobile */
  }
}

/* ===== BUTTONS ===== */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  transition: transform .06s ease, opacity .2s ease, background .2s ease;
}
.btn:active{ transform: translateY(1px); }

.btn--primary{ background: var(--brand); color: #fff; }
.btn--primary:hover{ background: var(--brand-dark); }
.btn--block{ width: 100%; }

.btn--white{
  background: #fff;
  border-color: rgba(15,23,42,.12);
  color: #0f172a;
}
.btn--white:hover{ background: rgba(255,255,255,.92); }

.btn--green{ background: #22c55e; color: #fff; }
.btn--green:hover{ opacity: .92; }

.btn--messenger{ background: #1877f2; color: #fff; }
.btn--messenger:hover{ opacity: .92; }

.btn--whatsapp{
  background: var(--brand);
  color: #fff;
  padding: 10px 16px;
  border-radius: 14px;
}

/* ===== SECTIONS ===== */
.section{ padding: 68px 0; }
.section--white{ background: #fff; }
.section--light{ background: var(--bg); }

.section__title{
  text-align: center;
  margin-bottom: 26px;
}
.section__title h2{
  margin: 0;
  font-size: 38px;
  font-weight: 900;
}
.section__title p{
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 600;
}
.section__title small{
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

/* ===== HERO ===== */
.hero--overlay{
  background: var(--bg);
  padding: 30px 0 70px;
}
.hero2{
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
}
.hero2__image{
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 70%;
  border-radius: 28px;
  border-bottom-left-radius: 160px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: url("assets/hero.png") center / cover no-repeat;
}
.hero2__card{
  position: relative;
  z-index: 2;
  width: min(520px, 92%);
  padding: 30px;
  border-radius: 18px;
  background: rgba(255,255,255,.90);
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}
.hero2__card h1{
  margin: 0 0 14px;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.05;
  font-weight: 900;
}
.hero2__sub{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 600;
}
.hero2__actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
@media (max-width: 900px){
  .hero2{ min-height: auto; padding-bottom: 320px; }
  .hero2__image{
    width: 100%;
    height: 340px;
    top: auto;
    bottom: 0;
    border-bottom-left-radius: 28px;
  }
  .hero2__card{ width: 100%; }
}

/* ===== WHY CARDS ===== */
.cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 20px;
}
.card{
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 12px 30px rgba(15,23,42,.08);
  text-align: center;
}
.card .icon{ font-size: 34px; margin-bottom: 10px; }
.card h3{ margin: 0; font-size: 15px; font-weight: 900; }
@media (max-width: 900px){ .cards{ grid-template-columns: 1fr; } }

/* ===== PRICING ===== */
.pricing{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 22px;
}
.price-card{
  background: #fff;
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 12px 35px rgba(15,23,42,.10);
  position: relative;
}
.price-card--popular{ border: 2px solid var(--brand); }
.badge{
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--brand);
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
}
.price-card h3{ margin: 0 0 8px; font-size: 20px; font-weight: 900; }
.price{ font-size: 34px; font-weight: 900; color: var(--brand); margin-bottom: 10px; }
.muted{ color: var(--muted); font-weight: 600; }
.price-card ul{ margin: 10px 0 16px; padding-left: 18px; }
.price-card li{ margin: 8px 0; color: #122034; font-weight: 700; }
@media (max-width: 900px){ .pricing{ grid-template-columns: 1fr; } }

/* ===== SERVICES PILLS ===== */
.service-pills{
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.pill{
  border: 0;
  background: var(--brand);
  color: #fff;
  padding: 14px 18px;
  border-radius: 14px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(15,23,42,.10);
}
.pill:hover{ background: var(--brand-dark); }

/* ===== QUOTE ===== */
.quote{ margin-top: 40px; }
.quote__grid{
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  gap: 18px;
  align-items: start;
}
.quote__form{
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(15,23,42,.08);
}
.quote__form h3{ margin: 0 0 14px; font-weight: 900; }
.quote__form label{
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
  font-weight: 800;
  font-size: 13px;
}
.quote__form select{
  padding: 12px 12px;
  border-radius: 10px;
  border: 1px solid rgba(15,23,42,.15);
  background: #fff;
  font-size: 14px;
}
.note{ display: block; margin-top: 10px; color: var(--muted); font-weight: 600; font-size: 12px; }
.req{ color: #ef4444; font-weight: 900; }

.quote__result{
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(15,23,42,.08);
  min-height: 260px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  text-align: center;
}
.quotePreview{
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 14px;
  align-items: center;
  text-align: left;
}
.quotePreview__imgWrap{
  background: #e8f0f5;
  border-radius: 14px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.quotePreview__imgWrap img{
  width: 100%;
  max-width: 170px;
  height: auto;
}
.metaTitle{ margin: 6px 0 12px; font-weight: 900; }
.metaValue{ margin: 6px 0 12px; font-weight: 900; }
.quoteLine{ border: 0; border-top: 1px solid rgba(15,23,42,.10); margin: 8px 0; }
.quote__price{ font-size: 40px; font-weight: 900; color: var(--brand); }
.quote__desc{ color: var(--muted); font-weight: 700; line-height: 1.45; }

@media (max-width: 980px){
  .quote__grid{ grid-template-columns: 1fr; }
  .quotePreview{ grid-template-columns: 1fr; text-align: center; }
  .quotePreview__meta{ text-align: center; }
}

/* ===== BOOKING FORM ===== */
#book{ width: 100%; }

.booking{
  width: min(860px, 95%);
  margin: 0 auto;
  background: #f3f7fa;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 18px 50px rgba(15,23,42,.10);
}

.booking .grid-2{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 14px;
}

.booking .field{
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.booking label{
  font-weight: 900;
  font-size: 13px;
  color: #0f172a;
}

.booking input,
.booking select,
.booking textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 10px;
  border: 1px solid rgba(15,23,42,.15);
  background: #fff;
  font-size: 14px;
  outline: none;
}

.booking textarea{
  resize: vertical;
  min-height: 110px;
}

.form-msg{
  text-align: center;
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 700;
}

@media (max-width: 760px){
  .booking{ padding: 16px; }
  .booking .grid-2{ grid-template-columns: 1fr; }
}

/* ===== FOOTER ===== */
.site-footer{
  width: 100%;
  background: #2e6f83;
  color: #ffffff;
  padding: 56px 0 0;
}

.footer-grid{
  display: grid;
  grid-template-columns: 1.6fr 0.9fr 0.9fr 1.1fr;
  gap: 42px;
  align-items: start;
  padding-bottom: 42px;
}

.footer-brand{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-logo-img{
  width: 160px;
  height: auto;
  object-fit: contain;
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  display: block;
  margin-bottom: 10px;
}

.footer-logo-text{
  font-size: 24px;
  font-weight: 900;
  letter-spacing: .2px;
}

.footer-office-title{
  margin-top: 4px;
  font-size: 16px;
  font-weight: 900;
}

.footer-office-address{
  font-size: 13px;
  font-weight: 700;
  opacity: .95;
  line-height: 1.55;
  max-width: 320px;
}

.footer-title{
  margin: 0 0 14px;
  font-weight: 900;
  font-size: 16px;
}

.footer-links{
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li{ margin: 10px 0; }

.footer-links a{
  color: #fff;
  opacity: .95;
  font-weight: 700;
  font-size: 13px;
}
.footer-links a:hover{
  opacity: 1;
  text-decoration: underline;
}

.footer-contact .contact-item{
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 12px 0;
  font-weight: 800;
  text-decoration: none;
  color: #fff;
}

.footer-contact .ico{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(0,0,0,.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.footer-contact .ico svg{
  width: 18px;
  height: 18px;
  fill: #ffffff;
  opacity: .95;
}

.footer-contact .contact-text{ opacity: .98; }

.social-row{
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer-contact a.social-btn{
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.95);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1f4d73;
  text-decoration: none;
}
.footer-contact a.social-btn svg{
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.footer-contact a.social-btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.88);
}

.footer-bottom{
  border-top: 1px solid rgba(255,255,255,.18);
  padding: 22px 0;
}
.footer-bottom-inner{
  margin: 0 auto;
  text-align: center;
  font-weight: 800;
  font-size: 16px;
  opacity: .95;
  width: 100%;
}

@media (max-width: 980px){
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px){
  .footer-grid{ grid-template-columns: 1fr; }

  .footer-brand{ align-items: center; text-align: center; }
  .footer-office-address{ margin-left: auto; margin-right: auto; }
  .footer-col{ text-align: center; }
  .social-row{ justify-content: center; }
  .footer-contact .contact-item{ justify-content: center; }
}