@charset "utf-8";
/* CSS Document */

/* =========================
   THEME / BASE
========================= */
:root{
  --bg: #ffffff;
  --text: #111827;
  --muted: #6b7280;
  --line: #e5e7eb;

  --primary: #0f766e;
  --primary-2: #0b5f59;

  --gold: #f3b312;
  --orange: #f59e0b;
  --dark: #0b1220;
  --card: #ffffff;
  --shadow: 0 10px 30px rgba(0,0,0,.08);

  --radius: 16px;
  --container: 1120px;
}

*{ box-sizing:border-box; }
html,body{
  margin:0;
  padding:0;
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
  letter-spacing: -0.01em;
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

.container{
  width: min(100%, calc(var(--container) + 32px));
  margin: 0 auto;
  padding: 0 16px;
}

/* A11y helper */
.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}

/* =========================
   HEADER / NAV (CLEAN + SINGLE SOURCE)
   Matches your HTML:
   .lt-nav__toggle, .lt-nav__menu, .lt-nav__dropdown, .lt-nav__dropdown-menu
========================= */
.site-header{
  position: sticky;
  top: 0;
  z-index: 9998;
  background: #fff;
}

/* Prevent dropdown clipping */
.site-header,
.site-header .container,
.header-inner,
.lt-nav{
  overflow: visible;
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding: 10px 0;
}

.brand{ display:flex; align-items:center; }
.logo-wrap{ display:inline-flex; align-items:center; }

/* Nav */
.lt-nav{ position: relative; }

/* Mobile toggle button */
.lt-nav__toggle{
  display:none;
  border:1px solid var(--line);
  background:#fff;
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 800;
}

/* Menu list (desktop default) */
.lt-nav__menu{
  list-style:none;
  display:flex;
  gap: 10px;
  align-items:center;
  margin:0;
  padding:0;
}

/* Standard nav links */
.lt-nav__link{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration:none;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.lt-nav__link:hover{ background:#f3f4f6; }

/* Services caret */
.lt-nav__caret{ font-size: 12px; opacity: .75; }

/* Dropdown wrapper */
.lt-nav__dropdown{ position:relative; }

/* Style the Services BUTTON so it matches links */
.lt-nav__dropdown > button{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 700;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.lt-nav__dropdown > button:hover{ background:#f3f4f6; }

.lt-nav__dropdown > button{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:10px 12px;
  border-radius:12px;
  font-weight:700;
  color:inherit;
  background:transparent;
  border:0;           /* THIS removes the border */
  outline:none;
  appearance:none;
  cursor:pointer;
}

.lt-nav__dropdown > button:hover{
  background:#f3f4f6;
}

/* Dropdown menu */
.lt-nav__dropdown-menu{
  position:absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  margin:0;
  padding: 8px;
  list-style:none;
  background:#fff;
  border:1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  z-index: 9999;

  /* hidden by default */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  /* visual spacing only */
  transform: translateY(10px);

  transition: opacity .15s ease, transform .15s ease;
}

/* Submenu links */
.lt-nav__dropdown-link{
  display:block;
  padding: 10px 10px;
  border-radius: 12px;
  font-weight: 650;
  font-size: 13px;
  text-decoration:none;
  color: inherit;
}
.lt-nav__dropdown-link:hover{ background:#f3f4f6; }

/* Desktop open on hover/focus */
@media (min-width: 721px){
  .lt-nav__dropdown:hover > .lt-nav__dropdown-menu,
  .lt-nav__dropdown:focus-within > .lt-nav__dropdown-menu{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
}

/* JS open class supported (primarily for mobile) */
.lt-nav__dropdown.is-open > .lt-nav__dropdown-menu{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* Mobile menu + dropdown behavior */
@media (max-width: 720px){
  .lt-nav__toggle{ display:inline-flex; align-items:center; gap:8px; }

  .lt-nav__menu{
    position:absolute;
    right: 0;
    top: calc(100% + 10px);
    flex-direction:column;
    align-items:stretch;
    width: min(320px, 92vw);
    padding: 10px;
    border:1px solid var(--line);
    border-radius: 16px;
    background:#fff;
    box-shadow: var(--shadow);
    display:none;
    z-index: 9999;
  }
  .lt-nav__menu.is-open{ display:flex; }

  .lt-nav__link{ width:100%; justify-content:space-between; }
  .lt-nav__dropdown > button{ width:100%; justify-content:space-between; }

  /* Dropdown becomes inline stacked list */
  .lt-nav__dropdown-menu{
    position: static;
    min-width: auto;
    border: 0;
    box-shadow: none;
    padding: 6px 0 0 0;
    transform: none;

    /* mobile: always "visible" but hidden via display */
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display:none;
  }
  .lt-nav__dropdown.is-open > .lt-nav__dropdown-menu{ display:block; }
}

/* Logo sizing */
.logo{
  height: 72px;
  width:auto;
}
@media (max-width: 720px){
  .logo{ height: 58px; }
}

/* =========================
   HERO SLIDER
========================= */
.hero{ position: relative; }
.hero-slider{
  position:relative;
  height: clamp(340px, 52vw, 760px);
  overflow:hidden;
  background:#111;
}
.slides{
  position:absolute;
  inset:0;
}
.slide{
  position:absolute;
  inset:0;
  background-size: cover;
  background-position: center;
  opacity:0;
  transform: scale(1.03);
  transition: opacity .8s ease, transform 1.1s ease;
}
.slide.is-active{
  opacity:1;
  transform: scale(1.0);
}

.hero-overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgba(0,0,0,.55), rgba(0,0,0,.20) 55%, rgba(0,0,0,.05));
  display:flex;
  align-items:center;
}
.hero-content{
  color:#fff;
  max-width: 760px;
  padding-top: 6px;
}

.hero-content h1{
  margin:0 0 10px 0;
  font-size: clamp(28px, 3.1vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 900;
}

.hero-content p{
  margin:0 0 18px 0;
  color: rgba(255,255,255,.88);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 500;
}

.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

/* Slider controls */
.slider-btn{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  border:none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255,255,255,.86);
  color:#111;
  font-size: 28px;
  cursor:pointer;
  display:grid;
  place-items:center;
  box-shadow: var(--shadow);
}
.slider-btn:hover{ background:#fff; }
.slider-btn.prev{ left: 14px; }
.slider-btn.next{ right: 14px; }

.dots{
  position:absolute;
  left:50%;
  bottom: 14px;
  transform: translateX(-50%);
  display:flex;
  gap:8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(10px);
}
.dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.65);
  background: transparent;
  cursor:pointer;
  padding:0;
}
.dot.is-active{ background: rgba(255,255,255,.95); }

/* =========================
   BUTTONS
========================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 14px;
  border: 1px solid transparent;
  cursor:pointer;
}
.btn-primary{
  background: var(--primary);
  color:#fff;
}
.btn-primary:hover{ background: var(--primary-2); }

.btn-ghost{
  background: rgba(255,255,255,.14);
  color:#fff;
  border-color: rgba(255,255,255,.28);
}
.btn-ghost:hover{ background: rgba(255,255,255,.20); }

/* =========================
   FEATURE STRIP
========================= */
.feature-strip{ padding: 22px 0; background:#fff; }
.feature-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature-card{
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,.06);
  min-height: 500px;
}
.feature-card h3{
  margin:0 0 6px 0;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: .08em;
  opacity:.9;
}
.feature-card h2{
  margin:0 0 8px 0;
  font-size: 30px;
  letter-spacing:-.02em;
}
.feature-badge{
  display:inline-block;
  margin: 0 0 12px 0;
  font-weight: 800;
  font-size: 16px;
  opacity:.95;
}
.feature-card ul{
  margin:0;
  padding-left: 18px;
  color: rgba(17,24,39,.92);
}
.feature-card li{ margin: 6px 0; }

.feature-card--gold{ background: #ffc000; }
.feature-card--orange{ background: #ff7800; }
.feature-card--white{ background: #009900; }

/* =========================
   SECTIONS / LAYOUT
========================= */
.section{ padding: 48px 0; }

.section-alt{
  background: #f8fafc;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-title{
  margin: 0 0 10px 0;
  font-size: 28px;
  letter-spacing: -.03em;
  font-weight: 900;
}

.center{ text-align:center; }
.muted{ color: var(--muted); }
.lead{ color: #374151; line-height: 1.65; }

.two-col{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 26px;
  align-items:start;
}

/* checklist */
.checklist{
  display:grid;
  gap:10px;
  margin: 16px 0 0 0;
}
.check{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding: 12px 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background:#fff;
}
.check::before{
  content:"✓";
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  background: rgba(15,118,110,.12);
  color: var(--primary);
  font-weight: 900;
  margin-top: 1px;
}

/* media card */
.media-card{
  background:#fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.video-wrap{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0b1220;
}
.video-wrap iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}
.media-meta{
  padding: 14px 16px;
  border-top: 1px solid var(--line);
}
.meta-title{
  font-weight: 900;
  letter-spacing: -.02em;
  margin-bottom: 2px;
}
.meta-sub{
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}
.media-thumbs{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}
.media-thumbs img{
  width:100%;
  height: 180px;
  object-fit: cover;
}

/* =========================
   SERVICES (KEEP YOUR COLORS)
========================= */
.service-grid{
  margin-top: 22px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* base */
.service-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
  display:block;
  transition: transform .15s ease, box-shadow .15s ease;
}

/* your color variants (unchanged) */
.service-card1{
  background:#9FDF72;
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
  display:block;
  transition: transform .15s ease, box-shadow .15s ease;
}
.service-card2{
  background:#32D4EF;
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
  display:block;
  transition: transform .15s ease, box-shadow .15s ease;
}
.service-card3{
  background:#F7CF22;
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
  display:block;
  transition: transform .15s ease, box-shadow .15s ease;
}
.service-card4{
  background:#D12CEF;
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
  display:block;
  transition: transform .15s ease, box-shadow .15s ease;
}

/* hover */
.service-card:hover,
.service-card1:hover,
.service-card2:hover,
.service-card3:hover,
.service-card4:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(0,0,0,.10);
}

.service-card .icon{
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: transparent;
  margin-bottom: 10px;
  padding: 0;
}
.service-card .icon img{
  width: 64px;
  height: 64px;
  object-fit: contain;
  display:block;
}
.service-card h3{ margin:0 0 6px 0; }
.service-card p{ margin:0; color: var(--muted); line-height:1.55; }

/* CTA row */
.cta-row{
  margin-top: 26px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}
.cta-kicker{ color: var(--muted); font-size: 13px; }
.cta-phone{ font-weight: 900; font-size: 20px; letter-spacing: .02em; }

/* =========================
   FORM / CONTACT
========================= */
.form{
  margin-top: 14px;
  display:grid;
  gap: 12px;
}
.field-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.field label{
  display:block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
}
.field input, .field select, .field textarea{
  width:100%;
  border:1px solid var(--line);
  border-radius: 14px;
  padding: 12px 12px;
  font-size: 14px;
  outline:none;
}
.field input:focus, .field select:focus, .field textarea:focus{
  border-color: rgba(15,118,110,.55);
  box-shadow: 0 0 0 4px rgba(15,118,110,.12);
}

.contact-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}
.contact-card h3{ margin:0 0 12px 0; }
.contact-item{
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.contact-item:last-child{ border-bottom:none; }
.contact-label{
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 4px;
}
.social-row{
  margin-top: 14px;
  display:flex;
  gap: 10px;
}
.social-row a{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border:1px solid var(--line);
  display:grid;
  place-items:center;
  background:#fff;
}
.social-row a:hover{ background:#f3f4f6; }

/* =========================
   FAQ
========================= */
.faq{
  margin-top: 18px;
  max-width: 820px;
  margin-left:auto;
  margin-right:auto;
  display:grid;
  gap: 10px;
}
details{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 12px 14px;
}
summary{ cursor:pointer; font-weight: 800; }
details p{ color: var(--muted); margin: 10px 0 0 0; line-height: 1.6; }

/* =========================
   SERVICE PAGES
========================= */
.service-hero{
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
}
.cpr-hero{
  background: linear-gradient(180deg, #fff 0%, #ffffff 100%);
}

.service-hero-title{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:10px;
}
.service-hero-icon{
  width:64px;
  height:64px;
  object-fit:contain;
  flex:0 0 64px;
}
.service-hero-h1{
  margin:0;
  font-weight:900;
  letter-spacing:-.03em;
  line-height:1.08;
}
.service-hero-sub{
  margin:6px 0 0 0;
  color: var(--muted);
  font-weight:600;
}
@media (max-width: 520px){
  .service-hero-title{ align-items:flex-start; }
  .service-hero-icon{ width:56px; height:56px; }
}

/* Premium video section */
.video-card{
  margin: 28px auto 0 auto;
  max-width: 780px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.video-card__header{
  padding: 18px 18px 12px 18px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 0%, rgba(17, 24, 39, .06), transparent 40%),
    linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
}
.video-card__title{
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.video-card__sub{
  margin: 8px 0 0 0;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.45;
  max-width: 70ch;
}
.video-embed{
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #0b1220;
}
.video-embed iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
@media (max-width: 768px){
  .video-card__header{ padding: 16px; }
}

/* =========================
   FOOTER
========================= */
.site-footer{
  background: var(--dark);
  color:#e5e7eb;
  padding: 44px 0 18px;
}
.site-footer .footer-inner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 18px;
  flex-wrap:wrap;
}
.site-footer a{ color:#e5e7eb; opacity:.9; }
.site-footer a:hover{ opacity:1; text-decoration: underline; }

.site-footer .footer-links{
  display:block;
  list-style:none;
  margin:0;
  padding:0;
}
.site-footer .footer-links li{ margin: 8px 0; }

.footer-brand{
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.footer-title{
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 13px;
  color: rgba(229,231,235,.9);
}

.footer-bottom{
  margin-top: 26px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(229,231,235,.75);
  font-size: 13px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px){
  .feature-grid{ grid-template-columns: 1fr; }
  .two-col{ grid-template-columns: 1fr; }
  .service-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 720px){
  .field-row{ grid-template-columns: 1fr; }
  .slider-btn{ display:none; }
}







