/* =========================================
   StrikeGuard page-matching styles
   (About + What we offer)
   ========================================= */

:root{
  --ink: #0b1220;          /* dark heading ink */
  --text: #0f172a;         /* body */
  --muted: #475569;        /* secondary text */
  --border: #e8e8ee;

  --accent: #ef3b45;       /* red CTA */
  --accent-2: #d92b35;     /* hover */
  --tint: #fff1f2;         /* soft pink wash */

  --card: #ffffff;
  --shadow: 0 18px 50px rgba(2, 6, 23, 0.10);
  --shadow-soft: 0 12px 30px rgba(2, 6, 23, 0.08);

  --radius-lg: 28px;
  --radius-md: 18px;

  --max: 1120px;
}

*,
*::before,
*::after{ box-sizing: border-box; }

body{
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}

img{ display:block; max-width:100%; height:auto; }

a{
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
a:hover{ color: var(--accent-2); }

.container{
  width: min(var(--max), 100% - 2rem);
  margin-inline: auto;
}

/* =========================================
   About section (match hero vibe)
   ========================================= */
.about{
  padding: clamp(2.5rem, 5vw, 4.25rem) 0;
  background:
    radial-gradient(900px 500px at 10% 15%, rgba(239, 59, 69, 0.14), transparent 60%),
    radial-gradient(900px 500px at 40% 10%, rgba(239, 59, 69, 0.08), transparent 65%),
    linear-gradient(180deg, #fafafa, #ffffff 55%);
}

.about-wrap{
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.5rem, 4vw, 3.25rem);
  align-items: start;
}

.about-text h1{
  margin: 0 0 0.65rem;
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.about-text h2{
  margin: 0 0 1.15rem;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  font-weight: 600;
  color: var(--muted);
}

.about-text p{
  margin: 0 0 1rem;
  color: #0f172a;
}

.about-text p:last-child{ margin-bottom: 0; }

/* Image column as a large rounded card */
.about-image{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-image img{
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* Mobile stacking */
@media (max-width: 900px){
  .about-wrap{ grid-template-columns: 1fr; }
  .about-image{ order: 0; }
}

/* =========================================
   Features section
   ========================================= */
.features{
  padding: clamp(2.25rem, 4.5vw, 3.75rem) 0;
  background: #fff;
}

.features > h2{
  width: min(var(--max), 100% - 2rem);
  margin: 0 auto 1.35rem;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  letter-spacing: -0.02em;
  color: var(--ink);
}

.feature-grid{
  width: min(var(--max), 100% - 2rem);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.feature{
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.25rem 1.15rem;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature::before{
  content:"";
  position:absolute;
  left: 0;
  top: 0;
  height: 4px;
  width: 100%;
  background: rgba(239, 59, 69, 0.55);
}

.feature:hover{
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(239, 59, 69, 0.25);
}

.feature-icon{
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(239, 59, 69, 0.10);
  color: var(--accent);
  margin-bottom: 0.85rem;
}

.feature-title{
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.feature-text{
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

@media (max-width: 980px){
  .feature-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px){
  .feature-grid{ grid-template-columns: 1fr; }
  .feature{ padding: 1.15rem; }
}

/* Focus */
a:focus-visible,
.feature:focus-within{
  outline: 3px solid rgba(239, 59, 69, 0.22);
  outline-offset: 3px;
  border-radius: calc(var(--radius-lg) + 2px);
}

/* =========================================
   Trust strip
========================================= */
.trust-strip{
  padding: clamp(2rem, 4vw, 3rem) 0;
  background:
    radial-gradient(900px 500px at 10% 10%, rgba(239, 59, 69, 0.10), transparent 60%),
    #fff;
}

.trust-strip h2{
  margin: 0 0 1rem;
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  letter-spacing: -0.02em;
  color: var(--ink);
}

.trust-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.trust-item{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0.9rem 1rem;
  box-shadow: var(--shadow-soft);
  color: var(--ink);
  font-weight: 600;
}

/* =========================================
   CTA band (bottom section)
========================================= */
.cta-band{
  padding: clamp(2.25rem, 4.5vw, 3.5rem) 0;
  background: linear-gradient(180deg, #fff, #fafafa);
}

.cta-wrap{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.5rem;
  background:
    radial-gradient(900px 500px at 12% 25%, rgba(239, 59, 69, 0.14), transparent 60%),
    var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.cta-text h2{
  margin: 0 0 0.35rem;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  letter-spacing: -0.02em;
  color: var(--ink);
}

.cta-text p{
  margin: 0;
  color: var(--muted);
  max-width: 52ch;
}

.cta-actions{
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* Buttons (reusable) */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.1rem;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
  white-space: nowrap;
}

.btn-primary{
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 26px rgba(239, 59, 69, 0.25);
}

.btn-primary:hover{
  background: var(--accent-2);
  transform: translateY(-1px);
}

.btn-outline{
  background: #fff;
  color: var(--ink);
  border-color: rgba(2, 6, 23, 0.14);
}

.btn-outline:hover{
  border-color: rgba(239, 59, 69, 0.35);
  transform: translateY(-1px);
}

@media (max-width: 980px){
  .trust-grid{ grid-template-columns: repeat(2, 1fr); }
  .cta-wrap{ flex-direction: column; align-items: flex-start; }
  .cta-actions{ justify-content: flex-start; }
}
@media (max-width: 520px){
  .trust-grid{ grid-template-columns: 1fr; }
}

/* Hide skip link until focused (accessible) */
.skip-link,
a[href="#main"]{
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: #fff;
  color: #000;
  border: 1px solid #ddd;
  border-radius: 0.75rem;
  text-decoration: none;
}

.skip-link:focus,
a[href="#main"]:focus{
  left: 1rem;
  top: 1rem;
  outline: 3px solid rgba(239, 59, 69, 0.25);
  outline-offset: 3px;
}

/* =========================
   Reset
========================= */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
body { padding-top: 0; }

/* =========================
   Top Bar
========================= */
.top-bar {
  background: #333;
  color: #fff;
  padding: 6px 12px;
  font-size: 12px;
  text-align: center;
  position: relative;
  z-index: 10000;
}

.top-bar a,
.top-bar a[href^="tel"] {
  color: #fff !important;
  text-decoration: none !important;
}

/* =========================
   Header (Base)
========================= */
header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 999;

  display: flex;
  align-items: center;
  justify-content: space-between;

  height: 64px;
  padding: 0 14px;
  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  box-shadow: none;
}

/* Logo (default sizing; mobile overrides make it bigger) */
.logo {
  display: flex;
  align-items: center;
  min-width: 0;
}
.logo img {
  height: 46px;
  width: auto;
  max-height: none;
  max-width: 180px;
  object-fit: contain;
  display: block;
}

/* =========================
   Call Button (Header CTA)
========================= */
.call-btn {
  display: flex;
  align-items: center;
}

.call-btn .cta-button {
  background: #e63946;
  color: #fff;

  height: 38px;
  padding: 0 14px;
  border-radius: 10px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;

  text-decoration: none;
  transition: background 0.2s ease;
  box-shadow: none;
  transform: none !important;
  border: 1px solid rgba(0,0,0,0.08);
  white-space: nowrap;
}

.call-btn .cta-button:hover {
  background: #d62828;
}

/* =========================
   Hamburger
========================= */
.hamburger {
  display: none; /* shown on mobile */
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  font-size: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 3;
  padding: 0;
}

/* =========================
   Overlay
========================= */
.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.overlay.active { display: block; opacity: 1; }

/* =============================
   MAIN NAV (top-level only)
============================= */
.main-nav > ul.nav-menu {
  list-style: none;
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.main-nav > ul.nav-menu > li { position: relative; }

/* Top-level links */
.main-nav > ul.nav-menu > li > a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  transition: color 0.2s ease, background-color 0.2s ease;
  display: block;
  padding: 16px 24px;
}
.main-nav > ul.nav-menu > li > a:hover { color: #e63946; }

/* =============================
   SERVICES DROPDOWN (<details>)
============================= */
.main-nav .has-dropdown { position: relative; }

.main-nav .services-summary {
  display: block;
  padding: 16px 24px;
  color: #333;
  font-weight: bold;
  cursor: pointer;
  user-select: none;
}

.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: 100%;
    left: 0;
    min-width: 240px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    z-index: 9999;
  }

  .main-nav .has-dropdown:hover .services-details > ul.dropdown {
    display: block;
  }

  .main-nav .dropdown li a {
    display: block;
    padding: 10px 16px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
  }
  .main-nav .dropdown li a:hover {
    background: rgba(0,0,0,0.06);
  }
}

/* =============================
   Mobile styles
   BIG logo (left), Call TRUE CENTER (small), Hamburger right
============================= */
@media (max-width: 768px) {

  header{
    position: sticky;
    top: 0;
    height: 64px;
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    overflow: visible;
    padding: 0 12px;
    z-index: 999;
    display: block; /* mobile layout uses absolute children */
  }

  .logo{
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 6;
    display: flex;
    align-items: center;
  }
  .logo img{
    height: 76px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    display: block;
  }

  /* Call button: TRUE center */
  .call-btn{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 7;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Call button small */
  .call-btn .cta-button{
    height: 30px;
    padding: 0 10px;
    font-size: 12px;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.1px;
    white-space: nowrap;
    transform: none !important;
    box-shadow: none;
  }

  .hamburger{
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 7;

    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    font-size: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
  }

  .main-nav > ul.nav-menu {
    flex-direction: column;
    background: #333;
    position: fixed;
    top: 64px;
    right: 0;
    width: 220px;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 2;
    padding: 8px 0;
    gap: 0;
  }

  .main-nav > ul.nav-menu.active { transform: translateX(0); }

  .main-nav > ul.nav-menu > li > a {
    color: #fff;
    padding: 12px 14px;
    display: block;
  }

  .main-nav .services-summary {
    color: #fff;
    padding: 12px 14px;
    width: 100%;
  }

  .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: 600;
  }
}

/* =============================
   Desktop layout
============================= */
@media (min-width: 769px) {
  header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "logo nav quote";
    align-items: center;
    gap: 20px;
    padding: 0 14px;
  }

  .logo { grid-area: logo; position: static; transform: none; }
  .main-nav { grid-area: nav; justify-self: center; }
  .call-btn { grid-area: quote; justify-self: end; }

  .hamburger { display: none; }

  .logo img{
    height: 46px;
    max-width: 180px;
  }

  .main-nav > ul.nav-menu {
    position: static;
    flex-direction: row;
    transform: none;
    background: transparent;
    padding: 0;
    width: auto;
  }

  .main-nav > ul.nav-menu > li > a,
  .main-nav .services-summary {
    color: #333;
  }
}

/* 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: #e63946;
}

.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 0.3s ease;
}

.footer-col ul li a:hover {
  color: #e63946;
}

.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;
}

/* Mobile */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
  .footer-col {
    margin-bottom: 20px;
  }
}

/* Sticky WhatsApp */
.whatsapp-sticky {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 9999;
  width: 50px;
  height: 50px;
  background-color: #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 0.3s ease;
}
.whatsapp-sticky:hover { transform: scale(1.1); }
.whatsapp-sticky img { width: 28px; height: 28px; }

/* Sticky Call */
.call-sticky {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  width: 50px;
  height: 50px;
  background-color: #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 0.3s ease;
}
.call-sticky:hover { transform: scale(1.1); }
