:root {
  --navy: #0A1628;
  --navy-light: #142240;
  --blue: #1B4D8E;
  --blue-light: #2D6BC4;
  --safety-yellow: #F5C518;
  --safety-yellow-dark: #D4A912;
  --green: #0FA573;
  --green-glow: rgba(15,165,115,.12);
  --white: #F8FAFC;
  --off: #EEF2F7;
  --g100: #D8E0EA;
  --g300: #A0B1C5;
  --g500: #6B7F96;
  --g800: #1E293B;
  --font-display: 'Bebas Neue', Impact, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --container: 1200px;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 24px;
  --ease: cubic-bezier(.16,1,.3,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--g800); background: var(--white); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
.ctn { max-width: var(--container); margin: 0 auto; padding: 0 clamp(1.2rem,4vw,2.5rem); }

/* ===== HEADER ===== */
.hdr { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: all .5s var(--ease); padding: .6rem 0; }
.hdr.solid { background: rgba(10,22,40,.95); backdrop-filter: blur(16px); box-shadow: 0 2px 30px rgba(0,0,0,.2); padding: .3rem 0; }
.hdr-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { font-family: var(--font-display); font-size: 2rem; color: #fff; letter-spacing: .04em; display: flex; align-items: center; gap: .5rem; }
.logo-dot { width: 10px; height: 10px; background: var(--safety-yellow); border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{box-shadow:0 0 0 0 rgba(245,197,24,.5)} 50%{box-shadow:0 0 0 8px rgba(245,197,24,0)} }
.nav { display: flex; align-items: center; gap: 2rem; }
.nav a { color: rgba(255,255,255,.75); font-size: .88rem; font-weight: 500; transition: color .3s; position: relative; }
.nav a:hover { color: #fff; }
.nav a::after { content:''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--safety-yellow); transition: width .4s var(--ease); }
.nav a:hover::after { width: 100%; }
.nav-cta { background: var(--safety-yellow)!important; color: var(--navy)!important; font-weight: 700!important; padding: .5rem 1.3rem; border-radius: var(--r-sm); box-shadow: 0 2px 12px rgba(245,197,24,.3); transition: all .3s!important; }
.nav-cta:hover { background: #fff!important; transform: translateY(-1px); }
.nav-cta::after { display: none!important; }
.mob-toggle { display: none; background: none; border: none; cursor: pointer; padding: .5rem; }
.mob-toggle span { display: block; width: 22px; height: 2px; background: #fff; margin: 5px 0; border-radius: 2px; transition: all .3s; }

/* ===== HERO ===== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after { content:''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,22,40,.92) 0%, rgba(10,22,40,.7) 50%, rgba(10,22,40,.85) 100%); }
.hero-content { position: relative; z-index: 2; padding: 8rem 0 5rem; }
.hero-tag { display: inline-flex; align-items: center; gap: .6rem; background: rgba(245,197,24,.12); border: 1px solid rgba(245,197,24,.25); color: var(--safety-yellow); padding: .45rem 1.2rem; border-radius: 50px; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; margin-bottom: 2rem; animation: fadeUp .8s var(--ease) both; }
.hero-tag::before { content:''; width: 7px; height: 7px; background: var(--safety-yellow); border-radius: 50%; }
.hero h1 { font-family: var(--font-display); font-size: clamp(3rem,7vw,5.5rem); color: #fff; line-height: .95; letter-spacing: .02em; margin-bottom: 1.5rem; animation: fadeUp .8s .1s var(--ease) both; }
.hero h1 .hl { color: var(--safety-yellow); position: relative; }
.hero-sub { font-size: clamp(1rem,1.8vw,1.2rem); color: rgba(255,255,255,.65); max-width: 580px; margin-bottom: 2.5rem; animation: fadeUp .8s .2s var(--ease) both; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeUp .8s .3s var(--ease) both; }
.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .9rem 2rem; border-radius: var(--r-sm); font-family: var(--font-body); font-size: .95rem; font-weight: 700; cursor: pointer; border: none; transition: all .35s var(--ease); }
.btn-yellow { background: var(--safety-yellow); color: var(--navy); box-shadow: 0 4px 20px rgba(245,197,24,.35); }
.btn-yellow:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(245,197,24,.4); }
.btn-glass { background: rgba(255,255,255,.08); color: #fff; border: 1.5px solid rgba(255,255,255,.2); backdrop-filter: blur(8px); }
.btn-glass:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.4); }
.hero-stats { display: flex; gap: 3rem; margin-top: 4rem; animation: fadeUp .8s .4s var(--ease) both; }
.hero-stat { border-left: 3px solid var(--safety-yellow); padding-left: 1.2rem; }
.hero-stat-num { font-family: var(--font-display); font-size: 2.8rem; color: #fff; line-height: 1; }
.hero-stat-txt { font-size: .82rem; color: rgba(255,255,255,.5); margin-top: .2rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 500; }
@keyframes fadeUp { from{opacity:0;transform:translateY(32px)} to{opacity:1;transform:translateY(0)} }

/* ===== TRUST BAR ===== */
.trust { background: var(--navy); padding: 2.5rem 0; border-bottom: 3px solid var(--safety-yellow); }
.trust-inner { display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: .6rem; color: rgba(255,255,255,.55); font-size: .85rem; font-weight: 500; }
.trust-icon { font-size: 1.3rem; }

/* ===== ABOUT ===== */
.about { padding: clamp(4rem,8vw,7rem) 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-imgs { position: relative; }
.about-img-main { border-radius: var(--r-lg); overflow: hidden; box-shadow: 0 20px 60px rgba(10,22,40,.12); }
.about-img-main img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.about-img-float { position: absolute; bottom: -30px; right: -20px; width: 200px; border-radius: var(--r-md); overflow: hidden; box-shadow: 0 12px 40px rgba(10,22,40,.15); border: 5px solid var(--white); }
.about-img-float img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.about-badge { position: absolute; top: -16px; left: -16px; background: var(--safety-yellow); color: var(--navy); width: 90px; height: 90px; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; font-family: var(--font-display); box-shadow: 0 8px 24px rgba(245,197,24,.3); }
.about-badge-num { font-size: 2rem; line-height: 1; }
.about-badge-txt { font-size: .55rem; letter-spacing: .1em; text-transform: uppercase; font-family: var(--font-body); font-weight: 700; }
.sec-tag { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .16em; color: var(--blue-light); margin-bottom: .5rem; }
.sec-title { font-family: var(--font-display); font-size: clamp(2rem,4vw,3rem); color: var(--navy); letter-spacing: .02em; line-height: 1; margin-bottom: 1.2rem; }
.about-text { font-size: 1rem; color: var(--g500); margin-bottom: 1.5rem; }
.about-checks { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; margin-bottom: 2rem; }
.about-check { display: flex; align-items: center; gap: .5rem; font-size: .9rem; font-weight: 600; color: var(--g800); }
.about-check::before { content: '✓'; background: var(--green); color: #fff; width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .7rem; font-weight: 800; flex-shrink: 0; }

/* ===== SERVICES ===== */
.services { padding: clamp(4rem,8vw,7rem) 0; background: var(--off); position: relative; }
.services::before { content:''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--blue), var(--safety-yellow), var(--green)); }
.sec-head { text-align: center; max-width: 650px; margin: 0 auto 3.5rem; }
.sec-head p { font-size: 1.05rem; color: var(--g500); }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.svc { background: #fff; padding: 2.2rem; border-radius: var(--r-md); box-shadow: 0 4px 20px rgba(10,22,40,.05); border: 1px solid transparent; position: relative; overflow: hidden; transition: all .5s var(--ease); }
.svc::before { content:''; position: absolute; top: 0; left: 0; width: 4px; height: 0; background: var(--safety-yellow); transition: height .5s var(--ease); }
.svc:hover { transform: translateY(-8px); box-shadow: 0 16px 50px rgba(10,22,40,.1); border-color: var(--g100); }
.svc:hover::before { height: 100%; }
.svc-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1.2rem; transition: transform .4s var(--ease); }
.svc:hover .svc-icon { transform: scale(1.12) rotate(-5deg); }
.svc-icon-1 { background: rgba(27,77,142,.08); } .svc-icon-2 { background: var(--green-glow); }
.svc-icon-3 { background: rgba(245,197,24,.1); } .svc-icon-4 { background: rgba(108,92,231,.08); }
.svc-icon-5 { background: rgba(232,67,67,.08); } .svc-icon-6 { background: rgba(15,165,115,.08); }
.svc h3 { font-family: var(--font-display); font-size: 1.3rem; letter-spacing: .02em; color: var(--navy); margin-bottom: .5rem; }
.svc p { font-size: .88rem; color: var(--g500); line-height: 1.65; }

/* ===== VIDEO / CTA ===== */
.video-sec { padding: clamp(4rem,8vw,7rem) 0; background: var(--navy); position: relative; overflow: hidden; }
.video-sec::before { content:''; position: absolute; top: -300px; right: -200px; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(245,197,24,.06), transparent 70%); }
.video-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 4rem; align-items: center; }
.video-wrap { position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 16/9; background: var(--navy-light); box-shadow: 0 20px 60px rgba(0,0,0,.3); }
.video-wrap iframe { width: 100%; height: 100%; border: 0; }
.video-wrap .play-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(10,22,40,.5); cursor: pointer; transition: all .3s; }
.video-wrap .play-overlay:hover { background: rgba(10,22,40,.3); }
.play-btn { width: 72px; height: 72px; background: var(--safety-yellow); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 30px rgba(245,197,24,.4); transition: transform .3s; }
.play-btn:hover { transform: scale(1.1); }
.play-btn::after { content: ''; border-style: solid; border-width: 12px 0 12px 20px; border-color: transparent transparent transparent var(--navy); margin-left: 3px; }
.video-info .sec-tag { color: var(--safety-yellow); }
.video-info .sec-title { color: #fff; }
.video-info p { color: rgba(255,255,255,.6); font-size: 1rem; margin-bottom: 1.5rem; }
.video-features { list-style: none; margin-bottom: 2rem; }
.video-features li { color: rgba(255,255,255,.75); font-size: .92rem; padding: .5rem 0; display: flex; align-items: center; gap: .7rem; }
.video-features li::before { content: '⚡'; font-size: .85rem; }

/* ===== PROCESS ===== */
.process { padding: clamp(4rem,8vw,7rem) 0; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 3rem; position: relative; }
.process-grid::before { content:''; position: absolute; top: 42px; left: 10%; right: 10%; height: 3px; background: linear-gradient(90deg, var(--g100), var(--safety-yellow), var(--green), var(--g100)); border-radius: 2px; z-index: 0; }
.step { text-align: center; position: relative; z-index: 1; }
.step-num { width: 84px; height: 84px; border-radius: 50%; background: var(--white); border: 3px solid var(--g100); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.2rem; font-family: var(--font-display); font-size: 2rem; color: var(--navy); transition: all .4s var(--ease); position: relative; }
.step:hover .step-num { border-color: var(--safety-yellow); background: var(--safety-yellow); color: var(--navy); transform: scale(1.08); box-shadow: 0 8px 24px rgba(245,197,24,.3); }
.step-icon { font-size: 1.8rem; position: absolute; top: -8px; right: -8px; }
.step h3 { font-family: var(--font-display); font-size: 1.15rem; letter-spacing: .02em; color: var(--navy); margin-bottom: .4rem; }
.step p { font-size: .85rem; color: var(--g500); max-width: 240px; margin: 0 auto; }

/* ===== GALLERY ===== */
.gallery { padding: clamp(4rem,8vw,7rem) 0; background: var(--off); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: auto auto; gap: 1rem; }
.gallery-item { border-radius: var(--r-md); overflow: hidden; position: relative; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,22,40,.6) 0%, transparent 50%); opacity: 0; transition: opacity .4s; }
.gallery-item:hover::after { opacity: 1; }
.gallery-item:nth-child(1) { grid-column: 1/3; grid-row: 1/3; min-height: 380px; }
.gallery-item:nth-child(2) { min-height: 180px; }
.gallery-item:nth-child(3) { min-height: 180px; }
.gallery-item:nth-child(4) { min-height: 180px; }
.gallery-item:nth-child(5) { min-height: 180px; }
.gallery-caption { position: absolute; bottom: 1rem; left: 1rem; right: 1rem; z-index: 2; color: #fff; font-weight: 600; font-size: .85rem; opacity: 0; transform: translateY(10px); transition: all .4s var(--ease); }
.gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }

/* ===== TESTIMONIALS ===== */
.testi { padding: clamp(4rem,8vw,7rem) 0; background: var(--navy); position: relative; overflow: hidden; }
.testi::after { content:''; position: absolute; bottom: -200px; left: -100px; width: 400px; height: 400px; border: 80px solid rgba(245,197,24,.03); border-radius: 50%; }
.testi .sec-tag { color: var(--safety-yellow); }
.testi .sec-title { color: #fff; }
.testi .sec-head p { color: rgba(255,255,255,.5); }
.testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.testi-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07); border-radius: var(--r-md); padding: 2rem; backdrop-filter: blur(6px); transition: all .4s var(--ease); position: relative; }
.testi-card:hover { background: rgba(255,255,255,.08); transform: translateY(-4px); }
.testi-card::before { content: '"'; position: absolute; top: .5rem; right: 1.5rem; font-family: var(--font-display); font-size: 5rem; color: rgba(245,197,24,.1); line-height: 1; }
.testi-stars { color: var(--safety-yellow); font-size: .85rem; letter-spacing: 2px; margin-bottom: .8rem; }
.testi-card blockquote { font-size: .92rem; color: rgba(255,255,255,.75); line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: .7rem; }
.testi-av { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--green)); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: .82rem; }
.testi-name { font-weight: 700; color: #fff; font-size: .88rem; }
.testi-role { font-size: .75rem; color: rgba(255,255,255,.4); }

/* ===== CTA BANNER ===== */
.cta-banner { padding: 4rem 0; background: linear-gradient(135deg, var(--safety-yellow) 0%, var(--safety-yellow-dark) 100%); position: relative; overflow: hidden; }
.cta-banner::before { content:''; position: absolute; top: -50%; right: -10%; width: 400px; height: 400px; border: 60px solid rgba(255,255,255,.08); border-radius: 50%; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-inner h2 { font-family: var(--font-display); font-size: clamp(1.8rem,3.5vw,2.8rem); color: var(--navy); letter-spacing: .02em; line-height: 1.05; }
.cta-inner p { color: rgba(10,22,40,.6); font-size: 1rem; max-width: 500px; }
.btn-dark { background: var(--navy); color: #fff; box-shadow: 0 4px 20px rgba(10,22,40,.3); }
.btn-dark:hover { background: var(--navy-light); transform: translateY(-2px); }

/* ===== CONTACT ===== */
.contact { padding: clamp(4rem,8vw,7rem) 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; }
.contact-info { position: sticky; top: 100px; }
.c-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.c-icon { width: 48px; height: 48px; min-width: 48px; border-radius: 12px; background: var(--off); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; transition: all .3s; }
.c-item:hover .c-icon { background: var(--safety-yellow); }
.c-item h4 { font-size: .88rem; font-weight: 700; margin-bottom: .1rem; }
.c-item p { font-size: .88rem; color: var(--g500); }
.wa-btn { display: inline-flex; align-items: center; gap: .6rem; background: #25D366; color: #fff; padding: .85rem 1.8rem; border-radius: var(--r-sm); font-weight: 700; font-size: .95rem; margin-top: 1rem; box-shadow: 0 4px 18px rgba(37,211,102,.3); transition: all .3s; }
.wa-btn:hover { background: #20BD5A; transform: translateY(-2px); }
.form-wrap { background: #fff; border: 1px solid var(--g100); border-radius: var(--r-lg); padding: 2.5rem; box-shadow: 0 8px 32px rgba(10,22,40,.06); }
.form-wrap h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--navy); margin-bottom: 1.5rem; letter-spacing: .02em; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.f-group { margin-bottom: 1.1rem; }
.f-group label { display: block; font-size: .82rem; font-weight: 700; color: var(--g800); margin-bottom: .3rem; }
.f-group input, .f-group select, .f-group textarea {
  width: 100%; padding: .72rem 1rem; border: 1.5px solid var(--g100);
  border-radius: var(--r-sm); font-family: var(--font-body); font-size: .9rem;
  color: var(--g800); background: var(--white); outline: none; transition: all .3s;
}
.f-group input:focus, .f-group select:focus, .f-group textarea:focus { border-color: var(--blue-light); box-shadow: 0 0 0 3px rgba(27,77,142,.1); }
.f-group textarea { resize: vertical; min-height: 100px; }
.f-submit { width: 100%; margin-top: .5rem; }

/* ===== FOOTER ===== */
.footer { background: var(--navy); color: rgba(255,255,255,.5); padding: 4rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand { font-family: var(--font-display); font-size: 1.8rem; color: #fff; margin-bottom: .8rem; letter-spacing: .02em; }
.footer-desc { font-size: .88rem; line-height: 1.7; }
.footer h4 { font-family: var(--font-display); font-size: 1.1rem; color: #fff; margin-bottom: 1rem; letter-spacing: .04em; }
.footer-links a { display: block; font-size: .88rem; padding: .25rem 0; color: rgba(255,255,255,.45); transition: color .3s; }
.footer-links a:hover { color: var(--safety-yellow); }
.footer-social { display: flex; gap: .8rem; margin-top: 1rem; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.06); display: flex; align-items: center; justify-content: center; font-size: .9rem; transition: all .3s; }
.footer-social a:hover { background: var(--safety-yellow); color: var(--navy); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding-top: 1.5rem; text-align: center; font-size: .8rem; }

/* ===== SCROLL REVEAL ===== */
.rv { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.rv.vis { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media(max-width:1024px) {
  .svc-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid::before { display: none; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-item:nth-child(1) { grid-column: 1/2; grid-row: auto; min-height: 220px; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width:768px) {
  .nav { display: none; position: absolute; top: 60px; left: 0; right: 0; background: var(--navy); flex-direction: column; padding: 1.5rem; gap: 1rem; box-shadow: 0 12px 40px rgba(0,0,0,.3); border-radius: 0 0 var(--r-md) var(--r-md); }
  .nav.open { display: flex; }
  .mob-toggle { display: block; }
  .hero h1 { font-size: 2.5rem; }
  .hero-stats { flex-direction: column; gap: 1.5rem; }
  .about-grid, .video-grid, .contact-grid { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .about-img-float { display: none; }
  .about-badge { width: 70px; height: 70px; }
  .about-badge-num { font-size: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; align-items: center; }
  .f-row { grid-template-columns: 1fr; }
}

/* ===== SCROLL REVEAL ===== */
.rv { opacity: 0; transform: translateY(30px); transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }
.rv.vis { opacity: 1; transform: translateY(0); }

/* ===== ASTRA / WP OVERRIDES ===== */
/* Kill ALL Astra wrappers that might leak through wp_head() */
body.sahipre-template {
  font-family: var(--font-body) !important;
  color: var(--g800) !important;
  background: var(--white) !important;
  line-height: 1.7 !important;
  overflow-x: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* WP Admin bar offset */
body.sahipre-template.admin-bar .hdr { top: 32px; }
@media (max-width: 782px) {
  body.sahipre-template.admin-bar .hdr { top: 46px; }
}

/* Override Astra's default heading/body styles */
body.sahipre-template h1,
body.sahipre-template h2,
body.sahipre-template h3,
body.sahipre-template h4,
body.sahipre-template h5,
body.sahipre-template h6 {
  font-family: var(--font-display) !important;
  color: inherit;
  margin-top: 0;
}

body.sahipre-template p {
  margin-bottom: 0;
}

body.sahipre-template a {
  text-decoration: none;
}

/* Reset any Astra container styles */
body.sahipre-template .ast-container,
body.sahipre-template .site-content,
body.sahipre-template #page,
body.sahipre-template #content,
body.sahipre-template .entry-content {
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
}

/* Hide Astra's header/footer if they somehow appear */
body.sahipre-template .ast-above-header-wrap,
body.sahipre-template .ast-below-header-wrap,
body.sahipre-template .ast-main-header-wrap,
body.sahipre-template #masthead,
body.sahipre-template .ast-footer-overlay,
body.sahipre-template .ast-small-footer,
body.sahipre-template .site-footer,
body.sahipre-template .ast-above-header,
body.sahipre-template .ast-below-header,
body.sahipre-template .main-header-bar {
  display: none !important;
}

/* Ensure full-width sections */
body.sahipre-template .hero,
body.sahipre-template .trust,
body.sahipre-template .about,
body.sahipre-template .services,
body.sahipre-template .video-sec,
body.sahipre-template .process,
body.sahipre-template .gallery,
body.sahipre-template .testi,
body.sahipre-template .cta-banner,
body.sahipre-template .contact,
body.sahipre-template .footer {
  display: block !important;
  width: 100% !important;
  float: none !important;
  position: relative;
}

/* Fix Astra link color overrides */
body.sahipre-template a:hover,
body.sahipre-template a:focus {
  text-decoration: none;
}
