/* =========================
   StrikeGuard index.css (FULL UPDATED)
   - Keeps Top Bar + Header/Nav behavior the same
   - Removes: Quote modal styling (no longer used)
   - Adds: About “What we offer” section styling + FAQ page styling (scoped)
========================= */

/* ===== Reset ===== */
*{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; }
body{
  padding-top:0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color:#111827;
  background:#fff;
}

/* ===== Brand vars ===== */
:root{
  --accent:#e63946;
  --accent-dark:#d62828;
  --color-accent: var(--accent);
  --color-primary-200: rgba(230,57,70,0.22);

  --text:#111827;
  --muted:#6b7280;

  --border: rgba(0,0,0,0.10);
  --shadow: 0 12px 30px rgba(0,0,0,0.10);
  --shadow-soft: 0 10px 22px rgba(0,0,0,0.08);
}

/* ===== Utilities ===== */
.container{
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
}

/* Visually hidden utility (only if you use a hidden SEO heading) */
.visually-hidden{
  position:absolute !important;
  width:1px !important;
  height:1px !important;
  padding:0 !important;
  margin:-1px !important;
  overflow:hidden !important;
  clip:rect(0,0,0,0) !important;
  white-space:nowrap !important;
  border:0 !important;
}

/* =========================
   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:700;
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:2px 6px;
  border-radius:6px;
}
.top-bar a:hover,
.top-bar a[href^="tel:"]:hover{
  background: rgba(255,255,255,0.12);
}
.top-bar a:focus-visible{
  outline:2px solid rgba(255,255,255,0.7);
  outline-offset:2px;
}

/* =========================
   Header
========================= */
header{
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 999;

  display: flex;
  align-items: center;
  justify-content: space-between;

  height: 64px;
  padding: 0 14px;
  gap: 14px;

  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.logo,
.quote-btn{ flex: 0 0 auto; }

/* Logo */
.logo{ display:flex; align-items:center; min-width:0; }
.logo a{ display:flex; align-items:center; }
.logo img{
  height:56px;
  width:auto;
  max-width:220px;
  object-fit:contain;
  display:block;
}

/* Header CTA button (now Call button) */
.quote-btn{ display:flex; align-items:center; }
.quote-btn .cta-button{
  background: var(--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:700;
  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(--accent-dark);
  transform: translateY(-1px);
}

/* Hamburger (desktop hidden; enabled in mobile query) */
.hamburger{
  display:none;
  width:40px;
  height:40px;
  place-items:center;
  font-size:22px;
  background:transparent;
  border:none;
  cursor:pointer;
  z-index:3;
}

/* Overlay (mobile nav) */
.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; }

/* =========================
   Nav
========================= */
.main-nav{
  flex: 1 1 auto;
  display:flex;
  justify-content:center;
  min-width:0;
}

.main-nav > ul.nav-menu{
  list-style:none;
  display:flex;
  gap:14px;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
}

.main-nav > ul.nav-menu > li{ position:relative; }

.main-nav > ul.nav-menu > li > a{
  text-decoration:none;
  color: var(--text);

  font-weight:600;
  font-size:16px;
  letter-spacing:0.2px;

  display:block;
  padding:10px 14px;
  border-radius:10px;

  transition: color .2s ease, background .2s ease;
}
.main-nav > ul.nav-menu > li > a:hover{
  color: var(--accent);
  background: rgba(0,0,0,0.04);
}

/* Services dropdown */
.main-nav .services-summary{
  display:block;
  padding:10px 14px;
  color: var(--text);

  font-weight:600;
  font-size:16px;
  letter-spacing:0.2px;

  cursor:pointer;
  user-select:none;
  border-radius:10px;
  transition: color .2s ease, background .2s ease;
}
.main-nav .services-summary:hover{
  color: var(--accent);
  background: rgba(0,0,0,0.04);
}
.main-nav .services-summary::-webkit-details-marker{ display:none; }
.main-nav .services-summary::marker{ content:""; }

.main-nav .services-details > ul.dropdown{
  display:none;
  list-style:none;
  margin:0;
  padding:8px 0;
}
.main-nav .services-details[open] > ul.dropdown{ display:block !important; }

/* Desktop dropdown panel */
@media (min-width:769px){
  .main-nav .services-details{ position:relative; }

  .main-nav .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;
  }

  .main-nav .has-dropdown:hover .services-details > ul.dropdown{
    display:block;
  }

  .main-nav .dropdown li a{
    display:block;
    padding:10px 14px;
    text-decoration:none;
    color: var(--text);
    font-weight:600;
    font-size:14px;
    transition: background .2s ease, color .2s ease;
  }
  .main-nav .dropdown li a:hover{
    background:rgba(0,0,0,0.06);
    color: var(--accent);
  }
}

/* =========================
   Mobile header layout + drawer
========================= */
@media (max-width:768px){
  header{
    display:grid;
    grid-template-columns: 1fr auto 40px;
    grid-template-areas: "logo quote hamburger";
    align-items:center;
    gap:10px;
    height:64px;
  }

  .logo{ grid-area:logo; justify-self:start; min-width:0; }

  .logo img{
    height:56px;
    max-width:100%;
    transform: scale(1.08);
    transform-origin:left center;
  }

  .quote-btn{ grid-area:quote; justify-self:end; }
  .quote-btn .cta-button{
    height:30px;
    padding:0 10px;
    font-size:12px;
    border-radius:10px;
  }

  .hamburger{
    display:grid;
    grid-area:hamburger;
    justify-self:end;
  }

  .main-nav > ul.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;
  }
  .main-nav > ul.nav-menu.active{ transform:translateX(0); }

  .main-nav > ul.nav-menu > li > a{
    color:#fff;
    padding:12px 14px;
    font-weight:700;
    border-radius:0;
    background:transparent;
  }

  .main-nav .services-summary{
    color:#fff;
    padding:12px 14px;
    width:100%;
    border-radius:0;
    background:transparent;
    font-weight:700;
  }

  .main-nav .services-details > ul.dropdown{
    position:static;
    width:100%;
    background:transparent;
    box-shadow:none;
    padding:6px 0 0;
  }

  .main-nav .dropdown li a{
    color:#fff;
    padding:10px 14px;
    display:block;
    font-weight:700;
  }
}

/* =========================
   HERO SLIDER
========================= */
.hero-slider{
  position:relative;
  width:100%;
  height:100vh;
  overflow:hidden;
  z-index:1;
}

.slide{
  position:absolute;
  inset:0;
  opacity:0;
  transition: opacity 1s ease;
  z-index:0;
}
.slide.active{ opacity:1; z-index:2; }

.slide img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.slide-text{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
  text-align:center;
  color:#fff;
  background:rgba(0,0,0,0.42);
  padding:20px;
  border-radius:12px;
  max-width:min(820px, 84%);
  box-shadow:0 10px 28px rgba(0,0,0,0.28);
}

.slide-text h2{
  font-size: clamp(22px, 2.4vw, 36px);
  margin-bottom:10px;
  line-height:1.15;
}
.slide-text p{
  font-size: clamp(14px, 1.25vw, 18px);
  margin-bottom:16px;
  line-height:1.6;
}

.slide-text .btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background: var(--accent);
  color:#fff;
  padding:10px 18px;
  border-radius:10px;
  text-decoration:none;
  font-weight:800;
  border:1px solid rgba(255,255,255,0.14);
  transition: background .2s ease, transform .2s ease;
  white-space:nowrap;
}
.slide-text .btn:hover{
  background: var(--accent-dark);
  transform: translateY(-1px);
}

@media (max-width:768px){
  .hero-slider{
    height:60vh;
    min-height: 460px;
  }

  .slide-text{
    left:16px;
    right:16px;
    top:auto;
    bottom:16px;
    transform:none;

    max-width: none;
    padding:14px;
    border-radius:14px;
    text-align:left;
  }

  .slide-text h2{
    font-size: 1.25rem;
    margin-bottom:8px;
  }
  .slide-text p{
    font-size: 0.98rem;
    margin-bottom:12px;
  }
  .slide-text .btn{
    padding:10px 14px;
    font-size:14px;
  }
}

/* =========================
   TRUST BADGES
========================= */
.trust{
  background: linear-gradient(135deg, #f0f8ff, #e6f7f1);
  padding: 3rem 1rem;
}
.trust-inner{ max-width:1200px; margin:0 auto; }
.trust-badges{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:2rem;
}
.badge{
  background:#fff;
  border-radius:12px;
  padding:1.5rem;
  text-align:center;
  width:220px;
  box-shadow:0 6px 12px rgba(0,0,0,0.08);
  transition: transform .2s ease, box-shadow .2s ease;
}
.badge:hover{
  transform: translateY(-6px);
  box-shadow:0 10px 18px rgba(0,0,0,0.12);
}
.badge img{ width:60px; height:60px; margin-bottom:1rem; }
.badge p{ font-size:1rem; font-weight:700; color:#333; margin:0; }
.badge:nth-child(1){ border-top:4px solid #0077b6; }
.badge:nth-child(2){ border-top:4px solid #2a9d8f; }
.badge:nth-child(3){ border-top:4px solid var(--accent); }
.badge:nth-child(4){ border-top:4px solid #ffb703; }

/* =========================
   SERVICES
========================= */
.services h2{
  font-size:2.4rem;
  font-weight:800;
  color:#2c3e50;
  text-align:center;
  margin-bottom:1rem;
}
.services .section-intro{
  font-size:1.1rem;
  max-width:700px;
  margin:0 auto 2.5rem;
  color:#555;
  line-height:1.6;
  text-align:center;
}

.service-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
  max-width:1200px;
  margin:40px auto;
  padding:0 20px;
}

.service-card{
  background: linear-gradient(135deg, #fff, #f9f9ff);
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 6px 14px rgba(0,0,0,0.1);
  transition: transform .3s ease, box-shadow .3s ease, border .3s ease;
  display:flex;
  flex-direction:column;
}

.service-card:hover{
  transform: translateY(-6px);
  box-shadow:0 10px 20px rgba(0,0,0,0.15);
  border:2px solid var(--color-accent);
}

.service-card a{ text-decoration:none; color:inherit; }
.service-card img{
  width:100%;
  height:200px;
  object-fit:cover;
  border-bottom:3px solid var(--color-primary-200);
  transition: transform .3s ease, opacity .3s ease;
  display:block;
}
.service-card img:hover{
  opacity:.95;
  transform: scale(1.03);
}

.service-card-body{ padding:1.25rem; text-align:left; }
.service-card-body h3{
  font-size:1.35rem;
  font-weight:900;
  color:#1a2a3a;
  margin-bottom:.6rem;
  text-transform:uppercase;
}
.service-card-body p{
  font-size:1rem;
  color:#4a5568;
  line-height:1.5;
  margin-bottom:12px;
}

.card-link{ text-decoration:none; color:inherit; display:inline-block; }

.service-card.blue{
  background: linear-gradient(135deg, #0077b6, #0096c7);
  color:#fff;
  text-align:center;
  padding:.75rem;
  font-weight:800;
  border-radius:12px;
}
.service-card.blue:hover{
  background: linear-gradient(135deg, #0096c7, #00b4d8);
}

@media (max-width:1024px){ .service-grid{ grid-template-columns:repeat(2, 1fr); } }
@media (max-width:768px){ .service-grid{ grid-template-columns:1fr; } }

/* =========================
   ABOUT FEATURES (What we offer)
========================= */
.about-features{
  padding: 56px 0;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.about-features h2{
  text-align:center;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 900;
  color:#1f2937;
  letter-spacing: -0.3px;
  margin-bottom: 26px;
}

.feature-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.feature-card:hover{
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(230,57,70,0.30);
}

.feature-icon{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  color: var(--accent);
  background: rgba(230,57,70,0.10);
  border: 1px solid rgba(230,57,70,0.20);
  margin-bottom: 12px;
}
.feature-icon svg{ width:24px; height:24px; }

.feature-card h3{
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 900;
  color:#111827;
}
.feature-card p{
  margin: 0;
  color: rgba(17,24,39,0.78);
  line-height: 1.7;
  font-size: 15px;
}

@media (max-width: 980px){
  .feature-grid{ grid-template-columns: 1fr; }
}

/* =========================
   FAQ PAGE STYLES (scoped)
========================= */
.faq-page{
  padding: 44px 0;
  background:#fff;
  color:#111827;
}
.faq-page h1{
  font-size: clamp(1.8rem, 2.6vw, 2.35rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}
.faq-page .faq-intro{
  color: #4b5563;
  line-height: 1.7;
  margin: 0 0 22px;
  max-width: 72ch;
}

/* FAQ accordion */
.faq-list{
  display: grid;
  gap: 12px;
}
.faq-list details{
  background: #fff;
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.04);
  overflow: hidden;
}
.faq-list details[open]{
  border-color: rgba(230,57,70,0.35);
  box-shadow: 0 10px 26px rgba(0,0,0,0.06);
}
.faq-list summary{
  cursor: pointer;
  font-weight: 850;
  color: #111827;
  line-height: 1.35;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  user-select: none;
  padding: 2px 0;
}
.faq-list summary::-webkit-details-marker{ display:none; }
.faq-list summary::marker{ content:""; }
.faq-list summary::after{
  content: "▾";
  font-size: 16px;
  line-height: 1;
  opacity: 0.75;
  transform: rotate(0deg);
  transition: transform .18s ease, opacity .18s ease;
}
.faq-list details[open] summary::after{
  transform: rotate(180deg);
  opacity: 1;
}
.faq-list details p{
  margin: 10px 0 0;
  color: #4b5563;
  line-height: 1.7;
  font-size: 15.5px;
}
.faq-page a{
  color: inherit;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px dotted rgba(17,24,39,0.35);
}
.faq-page a:hover{
  border-bottom-color: rgba(230,57,70,0.7);
}

/* FAQ callout */
.faq-callout{
  margin-top: 18px;
  padding: 18px;
  border-radius: 16px;
  background: rgba(230,57,70,0.06);
  border: 1px solid rgba(230,57,70,0.18);
  box-shadow: 0 10px 22px rgba(0,0,0,0.06);
}
.faq-callout h2{
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.2px;
}
.faq-callout p{
  margin: 0 0 10px;
  color: rgba(17,24,39,0.78);
  line-height: 1.7;
}
.faq-callout-links{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}
.faq-callout-links a{
  border-bottom: none;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 999px;
  padding: 10px 14px;
  box-shadow: 0 10px 18px rgba(0,0,0,0.05);
}
.faq-callout-links a:hover{
  border-color: rgba(230,57,70,0.35);
}
.faq-callout-links span{
  color: rgba(17,24,39,0.60);
  font-weight: 800;
}

/* =========================
   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(--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(--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); }
