@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

:root {
  --teal:        #086875;
  --teal-dark:   #065660;
  --teal-mid:    #097a88;
  --teal-light:  #0a9ab0;
  --teal-pale:   #e3f3f5;
  --teal-faint:  #f0f9fa;
  --green:       #39B04A;
  --green-dark:  #2d9040;
  --green-pale:  #e8f7ea;
  --dark:        #141414;
  --dark-mid:    #1e1e1e;
  --dark-light:  #2c2c2c;
  --white:       #FFFFFF;
  --off-white:   #F6F8F9;
  --grey-100:    #ECEEF1;
  --grey-200:    #D6D9DF;
  --grey-300:    #B2B8C2;
  --grey-500:    #737C88;
  --grey-700:    #434B56;
  --text-body:   #2A2F38;
  --shadow-sm:   0 1px 4px rgba(8,104,117,.07);
  --shadow-md:   0 4px 20px rgba(8,104,117,.13);
  --shadow-lg:   0 12px 44px rgba(8,104,117,.18);
  --radius:      5px;
  --radius-lg:   10px;
  --transition:  0.22s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── Typography ── */
h1,h2,h3,h4,h5 { font-family: 'Montserrat', sans-serif; line-height: 1.2; color: var(--dark); }
h1 { font-size: clamp(1.9rem, 4.5vw, 3.2rem); font-weight: 800; letter-spacing: -.02em; }
h2 { font-size: clamp(1.4rem, 3vw, 2.2rem); font-weight: 700; letter-spacing: -.01em; }
h3 { font-size: clamp(1rem, 2vw, 1.25rem); font-weight: 600; }
h4 { font-size: .85rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
p  { color: var(--grey-700); font-size: .95rem; }

.overline {
  font-family: 'Montserrat', sans-serif;
  font-size: .7rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--teal); display: block; margin-bottom: .5rem;
}

/* ── Layout ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }
section { padding: 5rem 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }

@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  section { padding: 3rem 0; }
}

/* ── Divider ── */
.rule { width: 48px; height: 3px; background: var(--teal); margin: 1.2rem 0 1.6rem; border-radius: 2px; }
.rule.centered { margin: 1.2rem auto 1.6rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.8rem;
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-size: .84rem; font-weight: 700; letter-spacing: .04em;
  cursor: pointer; text-decoration: none;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--teal); color: var(--white); border-color: var(--teal);
}
.btn-primary:hover {
  background: var(--teal-dark); border-color: var(--teal-dark);
  box-shadow: 0 4px 18px rgba(8,104,117,.35); transform: translateY(-1px);
}
.btn-green {
  background: var(--green); color: var(--white); border-color: var(--green);
}
.btn-green:hover {
  background: var(--green-dark); border-color: var(--green-dark);
  box-shadow: 0 4px 18px rgba(57,176,74,.3); transform: translateY(-1px);
}
.btn-outline {
  background: transparent; color: var(--white); border-color: rgba(255,255,255,.55);
}
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.btn-dark { background: var(--dark); color: var(--white); border-color: var(--dark); }
.btn-dark:hover { background: var(--dark-light); border-color: var(--dark-light); transform: translateY(-1px); }
/* legacy alias */
.btn-navy { background: var(--teal); color: var(--white); border-color: var(--teal); }
.btn-navy:hover { background: var(--teal-dark); border-color: var(--teal-dark); transform: translateY(-1px); box-shadow: 0 4px 18px rgba(8,104,117,.3); }

/* ── Cards ── */
.card {
  background: var(--white); border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg); padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card-icon {
  width: 48px; height: 48px; background: var(--teal-pale);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem; font-size: 1.4rem;
}

/* ── Section headers ── */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.section-header .rule { margin: 1.2rem auto 1.6rem; }

/* ── Navbar ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(8,104,117,.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.1);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 2px 24px rgba(6,86,96,.5); }
.nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-logo img { height: 38px; display: block; }
.nav-logo span {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem; font-weight: 800; color: var(--white); letter-spacing: .01em;
}

/* ── Nav links — desktop ── */
.nav-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,.88); text-decoration: none;
  font-size: .82rem; font-weight: 600; letter-spacing: .05em;
  transition: color var(--transition); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--white); border-radius: 2px;
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

/* ── Dropdown ── */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: .3rem; }
.dropdown-mega {
  position: absolute; top: calc(100% + 1rem); left: 50%;
  transform: translateX(-50%);
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); border: 1px solid var(--grey-100);
  padding: 1.5rem; min-width: 680px;
  display: none; grid-template-columns: repeat(2,1fr); gap: 1rem;
}
.nav-dropdown:hover .dropdown-mega { display: grid; }
.dropdown-col h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: .67rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  color: var(--teal); margin-bottom: .75rem;
}
.dropdown-col a {
  display: block; padding: .35rem 0;
  color: var(--dark) !important; font-size: .83rem; font-weight: 500;
  border-bottom: none !important;
}
.dropdown-col a::after { display: none !important; }
.dropdown-col a:hover { color: var(--teal) !important; }
.nav-cta { margin-left: .5rem; }

/* ── Hamburger button ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: all .3s ease;
  transform-origin: center;
}

/* ── Mobile sub-menu — hidden on desktop ── */
.mobile-sub { display: none; }

/* ════════════════════════════════════════
   MOBILE NAV  ≤ 900px
   Hamburger shows, nav links hidden by
   default and shown only when .open is
   toggled by JS. Desktop styles above are
   completely untouched.
════════════════════════════════════════ */
@media (max-width: 900px) {

  /* Show hamburger, hide desktop CTA */
  .hamburger { display: flex; }
  .nav-cta   { display: none !important; }

  /* Hide nav by default on mobile */
  .nav-links { display: none; }

  /* Show nav when .open is added by JS */
  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--teal);
    padding: .5rem 0 1rem;
    z-index: 999;
    box-shadow: 0 8px 32px rgba(0,0,0,.3);
    animation: mobileNavIn .22s ease forwards;
  }

  @keyframes mobileNavIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* Each nav item full width */
  .nav-links.open > li {
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }
  .nav-links.open > li:last-child { border-bottom: none; }

  /* Each top-level link */
  .nav-links.open > li > a {
    display: block;
    padding: .9rem 1.5rem;
    font-size: .88rem;
    font-weight: 600;
    color: rgba(255,255,255,.92);
    width: 100%;
  }
  .nav-links.open > li > a::after { display: none; }

  /* Hide desktop mega dropdown on mobile */
  .dropdown-mega { display: none !important; }

  /* Mobile services sub-menu */
  .mobile-sub {
    display: none;
    background: rgba(0,0,0,.18);
    padding: .25rem 0 .6rem;
  }
  .nav-dropdown.open .mobile-sub { display: block; }
  .mobile-sub a {
    display: block;
    padding: .6rem 2.25rem;
    font-size: .82rem;
    color: rgba(255,255,255,.78);
    text-decoration: none;
  }
  .mobile-sub a:hover { color: var(--white); }
}

/* ── Hamburger → X when active ── */
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Footer ── */
footer { background: var(--dark); color: rgba(255,255,255,.7); padding: 4rem 0 2rem; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem; margin-bottom: 3rem;
}
footer h4 {
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: .68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  margin-bottom: 1.2rem;
}
footer a { color: rgba(255,255,255,.58); text-decoration: none; font-size: .86rem; }
footer a:hover { color: var(--teal-light); }
footer ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
footer p { color: rgba(255,255,255,.58); font-size: .86rem; }
.footer-brand p { margin-top: .75rem; max-width: 260px; line-height: 1.65; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.75rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .78rem; color: rgba(255,255,255,.38);
  flex-wrap: wrap; gap: 1rem;
}
.footer-socials { display: flex; gap: 1rem; }
.footer-socials a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.18); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; color: rgba(255,255,255,.5);
  transition: all var(--transition);
}
.footer-socials a:hover { border-color: var(--teal-light); color: var(--teal-light); background: rgba(8,104,117,.25); }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* ── WhatsApp Float ── */
.wa-btn {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 999;
  width: 56px; height: 56px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4); text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
}
.wa-btn:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.55); }
.wa-btn svg { width: 28px; height: 28px; fill: #fff; }

/* ── Stat strip ── */
.stat-strip { background: var(--teal); padding: 2.5rem 0; }
.stat-strip .container {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1.5rem; text-align: center;
}
.stat-strip .stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.1rem; font-weight: 800; color: var(--white);
  line-height: 1; letter-spacing: -.02em;
}
.stat-strip .stat-lbl {
  font-size: .78rem; font-weight: 500; color: rgba(255,255,255,.78);
  margin-top: .4rem; letter-spacing: .05em;
}
@media (max-width: 600px) { .stat-strip .container { grid-template-columns: 1fr 1fr; } }

/* ── Page hero ── */
.page-hero {
  background: var(--dark); padding: 7.5rem 0 4rem;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 80% at 92% 50%, rgba(8,104,117,.28) 0%, transparent 70%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23086875' fill-opacity='0.07'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero .container { position: relative; }
.page-hero h1 { color: var(--white); }
.page-hero .overline { color: var(--teal-light); }
.page-hero p { color: rgba(255,255,255,.68); max-width: 560px; margin-top: .75rem; }
.breadcrumb {
  display: flex; align-items: center; gap: .5rem;
  font-size: .75rem; font-weight: 600; letter-spacing: .06em;
  color: rgba(255,255,255,.38); margin-bottom: 1.5rem; list-style: none;
}
.breadcrumb a { color: rgba(255,255,255,.38); text-decoration: none; }
.breadcrumb a:hover { color: var(--teal-light); }
.breadcrumb li + li::before { content: '/'; margin-right: .5rem; }

/* ── Testimonial cards ── */
.testimonial-card {
  background: var(--white); border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg); padding: 1.75rem; box-shadow: var(--shadow-sm);
}
.testimonial-card .stars { color: #f59e0b; font-size: .9rem; margin-bottom: .75rem; }
.testimonial-card .quote { font-size: .88rem; color: var(--grey-700); font-style: italic; line-height: 1.65; }
.testimonial-card .author { margin-top: 1.1rem; font-size: .82rem; font-weight: 700; color: var(--dark); }
.testimonial-card .role { font-size: .76rem; color: var(--grey-500); }

/* ── Table ── */
.data-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.data-table th {
  background: var(--dark); color: var(--white); padding: .9rem 1.2rem; text-align: left;
  font-family: 'Montserrat', sans-serif; font-size: .68rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
}
.data-table td {
  padding: .85rem 1.2rem; border-bottom: 1px solid var(--grey-100);
  color: var(--grey-700); vertical-align: top;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:nth-child(even) td { background: var(--off-white); }
.data-table .tag {
  display: inline-block; background: var(--teal-pale); color: var(--teal-dark);
  border-radius: 100px; padding: .15rem .65rem; font-size: .72rem; font-weight: 700;
}

/* ── Badge ── */
.badge {
  display: inline-block; padding: .25rem .75rem; border-radius: 100px;
  font-size: .72rem; font-weight: 700; letter-spacing: .05em;
  background: var(--teal-pale); color: var(--teal-dark);
}
.badge.dark { background: var(--teal); color: var(--white); }

/* ── FAQ Accordion ── */
.faq-item { border-bottom: 1px solid var(--grey-100); }
.faq-item:first-child { border-top: 1px solid var(--grey-100); }
.faq-q {
  width: 100%; background: none; border: none;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.2rem 0; cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: .9rem; font-weight: 600; color: var(--dark); text-align: left;
}
.faq-q .icon { font-size: 1.2rem; color: var(--teal); transition: transform .25s; flex-shrink: 0; }
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 0 1.2rem; font-size: .88rem; color: var(--grey-700); line-height: 1.7; }
.faq-item.open .faq-a { display: block; }

/* ── Contact form ── */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-size: .72rem; font-weight: 700;
  color: var(--dark); margin-bottom: .4rem; letter-spacing: .08em; text-transform: uppercase;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: .75rem 1rem;
  border: 1.5px solid var(--grey-200); border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-size: .88rem; color: var(--dark); background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--teal); box-shadow: 0 0 0 3px rgba(8,104,117,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { opacity: 0; animation: fadeUp .65s ease forwards; }
.fade-up.d1 { animation-delay: .1s; }
.fade-up.d2 { animation-delay: .22s; }
.fade-up.d3 { animation-delay: .34s; }
.fade-up.d4 { animation-delay: .46s; }

/* Trust pilotBadge */
.tp-badge a {
  text-decoration: none;
}

.tp-inner {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #0d0d0d;
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 10px 16px;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.3s ease;
}

.tp-inner:hover {
  border-color: #00b67a;
  box-shadow: 0 0 12px rgba(0,182,122,0.2);
}

/* Left section */
.tp-left {
  display: flex;
  align-items: center;
  gap: 6px;
}

.tp-star {
  color: #00b67a;
  font-size: 18px;
}

.tp-text {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}

/* Divider */
.tp-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.15);
}

/* Stars */
.tp-stars {
  color: #00b67a;
  font-size: 14px;
  letter-spacing: 1px;
}
