/* =========================
   fly.css (FULL UPDATED)
   - No quote modal
   - One clean header/nav system
   - Fly page styles kept
========================= */

/* =========================
   Reset + Base
========================= */
*{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; }

:root{
  --sg-accent:#e63946;
  --sg-accent-dark:#d62828;
  --sg-text:#111827;
  --sg-muted:rgba(17,24,39,0.72);
  --sg-border:rgba(0,0,0,0.10);
  --sg-soft:#f7f9fc;
  --sg-shadow: 0 12px 30px rgba(0,0,0,0.10);
  --sg-shadow-soft: 0 10px 22px rgba(0,0,0,0.08);
}

body{
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--sg-text);
  background:#fff;
  padding-top:0;
}

/* Container */
.container{
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================
   Top Bar
========================= */
.top-bar{
  background:#333;
  color:#fff;
  padding:6px 12px;
  font-size:12px;
  text-align:center;
  position:relative;
  z-index:10000;
  line-height:1.4;
}

.top-bar a,
.top-bar a[href^="tel:"]{
  color:#fff !important;
  text-decoration:none !important;
  font-weight:800;
}
.top-bar a:hover{
  text-decoration: underline;
}

/* =========================
   Header + Nav
========================= */
header{
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 999;

  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas: "logo nav cta";
  align-items: center;
  gap: 16px;

  height: 64px;
  padding: 0 14px;
  background:#fff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.logo{ grid-area: logo; display:flex; align-items:center; min-width:0; }
.logo a{ display:flex; align-items:center; }
.logo img{
  height: 46px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display:block;
}

.main-nav{ grid-area: nav; display:flex; justify-content:center; min-width:0; }
.nav-menu{
  list-style:none;
  display:flex;
  gap:14px;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
}

.nav-menu > li{ position:relative; }

.nav-menu > li > a{
  text-decoration:none;
  color: var(--sg-text);
  font-weight:700;
  font-size:16px;
  display:block;
  padding:10px 14px;
  border-radius:10px;
  transition: color .2s ease, background .2s ease;
}
.nav-menu > li > a:hover{
  color: var(--sg-accent);
  background: rgba(0,0,0,0.04);
}

/* Services dropdown */
.services-summary{
  display:block;
  padding:10px 14px;
  color: var(--sg-text);
  font-weight:700;
  font-size:16px;
  cursor:pointer;
  user-select:none;
  border-radius:10px;
  transition: color .2s ease, background .2s ease;
}
.services-summary:hover{
  color: var(--sg-accent);
  background: rgba(0,0,0,0.04);
}
.services-summary::-webkit-details-marker{ display:none; }
.services-summary::marker{ content:""; }

.services-details > ul.dropdown{
  display:none;
  list-style:none;
  margin:0;
  padding:8px 0;
}
.services-details[open] > ul.dropdown{ display:block !important; }

@media (min-width:769px){
  .services-details{ position:relative; }

  .services-details > ul.dropdown{
    position:absolute;
    top: calc(100% + 8px);
    left:0;
    min-width:240px;
    background:#fff;
    border-radius:12px;
    box-shadow:0 15px 40px rgba(0,0,0,0.12);
    border: 1px solid rgba(0,0,0,0.06);
    z-index:9999;
    overflow:hidden;
  }

  .has-dropdown:hover .services-details > ul.dropdown{
    display:block;
  }

  .dropdown li a{
    display:block;
    padding:10px 14px;
    text-decoration:none;
    color: var(--sg-text);
    font-weight:700;
    font-size:14px;
    transition: background .2s ease, color .2s ease;
  }
  .dropdown li a:hover{
    background:rgba(0,0,0,0.06);
    color: var(--sg-accent);
  }
}

/* Header CTA (call button area) */
.quote-btn{
  grid-area: cta;
  display:flex;
  align-items:center;
  justify-content:flex-end;
}

.quote-btn .cta-button{
  background: var(--sg-accent);
  color:#fff;

  height:32px;
  padding:0 12px;
  border-radius:10px;

  display:inline-flex;
  align-items:center;
  justify-content:center;

  font-size:13px;
  font-weight:900;
  letter-spacing:0.2px;

  text-decoration:none;
  border:1px solid rgba(0,0,0,0.08);
  white-space:nowrap;
  transition: background .2s ease, transform .15s ease;
}
.quote-btn .cta-button:hover{
  background: var(--sg-accent-dark);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger{
  display:none;
  width:40px;
  height:40px;
  place-items:center;
  font-size:22px;
  background:transparent;
  border:none;
  cursor:pointer;
  z-index:3;
}

/* Overlay */
.overlay{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.4);
  z-index:998;
  opacity:0;
  transition:opacity .25s ease;
}
.overlay.active{ display:block; opacity:1; }

/* Mobile nav drawer */
@media (max-width:768px){
  header{
    grid-template-columns: 1fr auto 40px;
    grid-template-areas: "logo cta hamburger";
    gap:10px;
    height:64px;
  }

  .logo img{
    height:56px;
    max-width: 170px;
  }

  .quote-btn .cta-button{
    height:30px;
    padding:0 10px;
    font-size:12px;
    border-radius:10px;
  }

  .hamburger{
    display:grid;
    grid-area:hamburger;
    justify-self:end;
  }

  .nav-menu{
    flex-direction:column;
    background:#333;
    position:fixed;
    top:64px;
    right:0;
    width:240px;
    height:calc(100vh - 64px);
    overflow-y:auto;
    transform:translateX(100%);
    transition:transform .3s ease-in-out;
    z-index:9999;
    padding:8px 0;
    gap:0;
    flex-wrap:nowrap;
  }
  .nav-menu.active{ transform:translateX(0); }

  .nav-menu > li > a{
    color:#fff;
    padding:12px 14px;
    font-weight:900;
    border-radius:0;
    background:transparent;
  }

  .services-summary{
    color:#fff;
    padding:12px 14px;
    width:100%;
    border-radius:0;
    background:transparent;
    font-weight:900;
  }

  .services-details > ul.dropdown{
    position:static;
    width:100%;
    background:transparent;
    box-shadow:none;
    padding:6px 0 0;
  }

  .dropdown li a{
    color:#fff;
    padding:10px 14px;
    display:block;
    font-weight:800;
  }
}

/* =========================
   Fly Buttons
========================= */
.fly-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:44px;
  padding: 0 18px;
  border-radius: 12px;
  font-weight: 900;
  text-decoration:none;
  letter-spacing: 0.2px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.fly-btn-primary{
  background: var(--sg-accent);
  color: #fff;
  box-shadow: 0 10px 24px rgba(230,57,70,0.28);
}
.fly-btn-primary:hover{
  background: var(--sg-accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(230,57,70,0.34);
}

.fly-btn-outline{
  background: rgba(255,255,255,0.85);
  color: #111;
  border-color: rgba(0,0,0,0.18);
  box-shadow: 0 8px 18px rgba(0,0,0,0.06);
}
.fly-btn-outline:hover{
  transform: translateY(-1px);
  background: #fff;
}

/* =========================
   Fly HERO
========================= */
.fly-hero{
  position: relative;
  padding: 56px 0 26px;
  overflow: hidden;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  background:
    radial-gradient(1100px 480px at 18% 0%, rgba(230,57,70,0.18), transparent 55%),
    radial-gradient(900px 420px at 90% 10%, rgba(0,0,0,0.06), transparent 60%),
    linear-gradient(180deg, #ffffff, #fbfbfd);
}

.fly-hero::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    linear-gradient(135deg, rgba(230,57,70,0.10), transparent 55%),
    repeating-linear-gradient(90deg, rgba(0,0,0,0.03) 0 1px, transparent 1px 10px);
  opacity: 0.35;
  pointer-events:none;
}

.fly-hero-inner{
  position: relative;
  z-index: 1;
  display:grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: center;
}

.fly-kicker{
  font-size: 13px;
  font-weight: 900;
  color: rgba(17,24,39,0.62);
  margin: 0 0 10px;
}

.fly-hero h1{
  margin: 0 0 12px;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.8px;
}

.fly-lead{
  margin: 0 0 18px;
  color: rgba(17,24,39,0.80);
  line-height: 1.7;
  font-size: 16px;
  max-width: 62ch;
}

.fly-hero-cta{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 16px;
}

.fly-badges{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
}

.fly-badge{
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 10px 18px rgba(0,0,0,0.05);
}

/* Right hero media */
.fly-hero-media{
  display: grid;
  gap: 12px;
  align-content: center;
}

.fly-hero-photo{
  height: 330px;
  border-radius: 22px;
  border: 1px solid rgba(0,0,0,0.10);
  box-shadow: var(--sg-shadow);
  background:
    linear-gradient(180deg, rgba(0,0,0,0.10), rgba(0,0,0,0.30)),
    url("flyservice.webp"); /* <-- change filename if needed */
  background-size: cover;
  background-position: center;
}

.fly-hero-stat{
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 10px 18px rgba(0,0,0,0.06);
}

.stat-title{
  margin: 0 0 6px;
  font-weight: 900;
  color: rgba(17,24,39,0.92);
}
.stat-text{
  margin: 0;
  color: rgba(17,24,39,0.70);
  line-height: 1.6;
  font-size: 14px;
}

/* =========================
   TRUST
========================= */
.fly-trust{
  padding: 18px 0 28px;
  background: #fff;
}

.fly-trust-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.fly-trust-card{
  position: relative;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--sg-shadow-soft);
  overflow: hidden;
}

.fly-trust-card::before{
  content:"";
  position:absolute;
  top:0; left:0; right:0;
  height: 4px;
  background: linear-gradient(90deg, var(--sg-accent), rgba(230,57,70,0.25));
}

.fly-trust-card h3{
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 900;
}
.fly-trust-card p{
  margin: 0;
  color: var(--sg-muted);
  line-height: 1.6;
  font-size: 14px;
}

/* =========================
   Sections / Cards
========================= */
.fly-main{ padding: 10px 0 0; }
.fly-section{ padding: 40px 0; }

.fly-section-alt{
  background: var(--sg-soft);
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.fly-section-head h2{
  margin: 0 0 8px;
  font-size: clamp(24px, 2.8vw, 34px);
  letter-spacing: -0.3px;
}
.fly-section-head p{
  margin: 0 0 18px;
  color: var(--sg-muted);
  line-height: 1.7;
  max-width: 78ch;
}

.fly-two-col{
  display:grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
  align-items: start;
}

.fly-card{
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 20px;
  padding: 18px;
  box-shadow: var(--sg-shadow-soft);
}
.fly-card-soft{ background: rgba(255,255,255,0.88); }

.fly-card h2,
.fly-card h3{
  margin-top: 0;
  font-weight: 900;
}

.fly-list{
  margin: 12px 0 0;
  padding-left: 18px;
}
.fly-list li{
  margin: 10px 0;
  line-height: 1.6;
  color: rgba(17,24,39,0.86);
}

.fly-note{
  margin-top: 12px;
  color: rgba(17,24,39,0.74);
  line-height: 1.6;
}

.fly-inline-cta{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

/* Steps */
.fly-steps{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 14px;
  margin-top: 14px;
}

.fly-step{
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 18px rgba(0,0,0,0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.fly-step:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(0,0,0,0.10);
}

.fly-step-num{
  display:inline-flex;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  align-items:center;
  justify-content:center;
  font-weight: 900;
  color: var(--sg-accent);
  background: rgba(230,57,70,0.12);
  border: 1px solid rgba(230,57,70,0.18);
  margin-bottom: 10px;
}

.fly-step h3{
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 900;
}
.fly-step p{
  margin: 0;
  color: var(--sg-muted);
  line-height: 1.6;
  font-size: 14px;
}

.fly-center-cta{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

/* Coverage card */
.fly-coverage-card{ margin-top: 14px; }

.fly-coverage-pills{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 4px;
}

.fly-pill{
  display:flex;
  flex-direction: column;
  gap: 4px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 12px 14px;
  box-shadow: 0 10px 18px rgba(0,0,0,0.05);
}
.fly-pill strong{
  font-weight: 900;
  color: rgba(17,24,39,0.92);
  line-height: 1.2;
}
.fly-pill span{
  font-weight: 800;
  color: rgba(17,24,39,0.68);
  line-height: 1.35;
  font-size: 13px;
}

.fly-coverage-cta{ margin-top: 14px; }

/* Strip CTA */
.fly-strip{
  display:flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 20px;
  padding: 16px;
  box-shadow: var(--sg-shadow-soft);
  margin-top: 16px;
}

.fly-strip h3{ margin: 0 0 6px; font-weight: 900; }
.fly-strip p{
  margin: 0;
  color: var(--sg-muted);
  line-height: 1.6;
}
.fly-strip-actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* FAQ */
.fly-faq{
  display:grid;
  gap: 10px;
  margin-top: 14px;
}

.fly-faq-item{
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 18px;
  padding: 12px 14px;
  box-shadow: 0 10px 18px rgba(0,0,0,0.06);
}

.fly-faq-item summary{
  cursor: pointer;
  font-weight: 900;
}
.fly-faq-item p{
  margin-top: 10px;
  color: var(--sg-muted);
  line-height: 1.7;
}

/* Final */
.fly-final{
  padding: 44px 0 50px;
  background:
    radial-gradient(900px 420px at 20% 0%, rgba(230,57,70,0.18), transparent 60%),
    linear-gradient(180deg, #fff, #fbfbfd);
  border-top: 1px solid rgba(0,0,0,0.06);
}

.fly-final-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
}

.fly-final-inner h2{
  margin: 0 0 8px;
  font-weight: 900;
  letter-spacing: -0.3px;
}
.fly-final-inner p{
  margin: 0;
  color: var(--sg-muted);
  line-height: 1.7;
  max-width: 78ch;
}

.fly-final-actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* =========================
   Footer
========================= */
.site-footer{
  background:#222;
  color:#fff;
  padding:40px 20px 20px;
  font-size:15px;
}
.footer-container{
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:30px;
  max-width:1200px;
  margin:0 auto;
}
.footer-col h3, .footer-col h4{
  margin-bottom:12px;
  color: var(--sg-accent);
}
.footer-col p, .footer-col a{ color:#ccc; line-height:1.5; }
.footer-col ul{ list-style:none; padding:0; }
.footer-col ul li{ margin-bottom:8px; }
.footer-col ul li a{ text-decoration:none; transition: color .2s ease; }
.footer-col ul li a:hover{ color: var(--sg-accent); }

.footer-bottom{
  text-align:center;
  margin-top:30px;
  border-top:1px solid rgba(255,255,255,0.2);
  padding-top:15px;
  font-size:14px;
  color:#aaa;
}

@media (max-width:768px){
  .footer-container{ flex-direction:column; text-align:center; }
  .footer-col{ margin-bottom:20px; }
}

/* =========================
   Sticky buttons
========================= */
.whatsapp-sticky{
  position:fixed;
  bottom:80px;
  right:20px;
  z-index:9999;
  width:50px;
  height:50px;
  background:#25D366;
  border-radius:50%;
  box-shadow:0 4px 6px rgba(0,0,0,0.3);
  display:flex;
  align-items:center;
  justify-content:center;
  transition: transform .2s ease;
}
.whatsapp-sticky:hover{ transform:scale(1.08); }
.whatsapp-sticky img{ width:28px; height:28px; }

.call-sticky{
  position:fixed;
  bottom:20px;
  right:20px;
  z-index:9999;
  width:50px;
  height:50px;
  background:#000;
  border-radius:50%;
  box-shadow:0 4px 6px rgba(0,0,0,0.3);
  display:flex;
  align-items:center;
  justify-content:center;
  transition: transform .2s ease;
}
.call-sticky:hover{ transform:scale(1.08); }

/* =========================
   Responsive
========================= */
@media (max-width: 980px){
  .fly-hero-inner{ grid-template-columns: 1fr; }
  .fly-hero-photo{ height: 260px; }
  .fly-trust-grid{ grid-template-columns: 1fr; }
  .fly-two-col{ grid-template-columns: 1fr; }
  .fly-steps{ grid-template-columns: 1fr 1fr; }
  .fly-coverage-pills{ grid-template-columns: 1fr; }
  .fly-final-inner{ flex-direction: column; align-items: flex-start; }
  .fly-strip{ flex-direction: column; align-items: flex-start; }
}
