/* ============================================================
   AVP ENVIRO SERVICES — Custom Stylesheet v2
   Fonts : Bebas Neue (headings) + Inter (body)
   Colors: Navy #071B3C | Gold #FFDE59 | Saffron #FF6B1A
   ============================================================ */

:root {
    --navy: #071B3C;
    --navy-light: #0e2c5c;
    --navy-soft: #13366e;
    --gold: #FFDE59;
    --gold-deep: #e8c41f;
    --saffron: #FF6B1A;
    --green-ind: #138808;
    --white: #ffffff;
    --offwhite: #f7f8fb;
    --ash: #6b7280;
    --ash-light: #9aa1b0;
    --line: #e7e9f0;
    --whatsapp: #25D366;
    --font-head: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', sans-serif;
    --ease: cubic-bezier(.22, 1, .36, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
  overflow-x: hidden;
  max-width: 100%;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}



img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

::selection {
    background: var(--gold);
    color: var(--navy);
}

::-webkit-scrollbar {
    width: 7px;
}

::-webkit-scrollbar-track {
    background: var(--offwhite);
}

::-webkit-scrollbar-thumb {
    background: var(--navy);
    border-radius: 4px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-head);
    letter-spacing: .03em;
    color: var(--navy);
    line-height: 1.05;
    margin: 0;
}

/* ============================================================
   SECTION HELPERS
   ============================================================ */
.section {
    padding: 56px 0;
    position: relative;
    overflow-y: hidden;
}

.section-sm {
    padding: 36px 0;
}

.section-dark {
    background: var(--navy) !important;
}

.bg-offwhite {
    background: var(--offwhite) !important;
}

.eyebrow {
    font-family: var(--font-head);
    letter-spacing: .22em;
    font-size: .82rem;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    background: var(--gold);
    color: var(--navy);
    padding: 6px 18px 6px 6px;
    border-radius: 30px;
}

.eyebrow::before {
    content: '';
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--navy);
    display: inline-block;
    flex-shrink: 0;
}

.section-title {
    font-size: 38px;
    font-family: 'Poppins';
    line-height: 1.06;
    text-transform: uppercase;
    margin-bottom: 0;
}

.section-sub {
    color: var(--ash);
    max-width: 640px;
    font-size: 1rem;
}

.text-gold {
    color: var(--gold-deep) !important;
}

.text-white {
    color: #fff !important;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    font-size: .9rem;
    padding: 13px 28px;
    border-radius: 5px;
    transition: all .3s var(--ease);
    border: 2px solid transparent;
    cursor: pointer;
    white-space: nowrap;
}

.btn-gold {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--navy);
    text-transform: uppercase;
    letter-spacing: .03em;
}

.btn-gold:hover {
    background: var(--navy);
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 26px rgba(7, 27, 60, .3);
}

.btn-outline-white {
    border-color: rgba(255, 255, 255, .45);
    color: #fff;
    background: transparent;
    text-transform: uppercase;
    letter-spacing: .03em;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, .12);
    border-color: #fff;
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: #fff;
    border-color: transparent;
    text-transform: uppercase;
    letter-spacing: .02em;
}

.btn-whatsapp:hover {
    background: #1ebd5a;
    transform: translateY(-3px);
    box-shadow: 0 10px 26px rgba(37, 211, 102, .4);
}

.btn-navy {
    background: var(--navy);
    color: var(--gold);
    border-color: var(--navy);
    text-transform: uppercase;
    letter-spacing: .03em;
}

.btn-navy:hover {
    background: var(--navy-light);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 15px 34px;
    font-size: .95rem;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
    background: var(--navy);
    color: #cfe0ff;
    font-size: .8rem;
    padding: 9px 0;
}

.topbar a {
    color: #cfe0ff;
    transition: color .2s;
}

.topbar a:hover {
    color: var(--gold);
}

.topbar .sep {
    color: rgba(255, 255, 255, .2);
    margin: 0 14px;
}

.topbar i {
    color: var(--gold);
    margin-right: 6px;
}

.topbar .social-mini {
    display: flex;
    align-items: center;
    gap: 6px;
}

.topbar .social-mini a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    color: #fff;
    font-size: .76rem;
    transition: all .25s;
}

.topbar .social-mini a:hover {
    background: var(--gold);
    color: var(--navy);
}

/* ============================================================
   NAVBAR — full-width, no dropdown, always hamburger
   ============================================================ */
.navbar-avp {
    background: #fff;
    border-bottom: 3px solid var(--gold);
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: box-shadow .3s;
}

.navbar-avp.scrolled {
    box-shadow: 0 8px 30px rgba(7, 27, 60, .12);
}

.navbar-avp .nav-container {
    max-width: 100%;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 16px;
}

.navbar-avp.scrolled .nav-container {
    height: 60px;
}

/* Brand */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.nav-brand .logo-box {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nav-brand .logo-box i {
    font-size: 1.5rem;
    color: var(--gold);
}

.nav-brand .brand-texts {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.nav-brand .brand-texts strong {
    font-family: var(--font-head);
    font-size: 1.25rem;
    letter-spacing: .04em;
    color: var(--navy);
}

.nav-brand .brand-texts small {
    font-size: .58rem;
    letter-spacing: .18em;
    color: var(--gold-deep);
    font-weight: 800;
    text-transform: uppercase;
    margin-top: 2px;
}

/* Nav links (desktop hidden at all sizes — always hamburger) */
.nav-menu {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(300px, 85vw);
    height: 100vh;
    background: var(--navy);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 28px 40px;
    gap: 0;
    transform: translateX(100%);
    transition: transform .4s var(--ease);
    box-shadow: -16px 0 50px rgba(0, 0, 0, .3);
    z-index: 1001;
    overflow-y: auto;
}

.nav-menu.open {
    transform: translateX(0);
}

.nav-menu a {
    font-family: var(--font-head);

    letter-spacing: .06em;
    color: rgba(255, 255, 255, .85);
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    transition: color .2s;
}

.nav-menu a:hover {
    color: var(--gold);
}

.nav-menu .menu-cta {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

/* Right actions */
.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.nav-call {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--navy);
    color: #fff;
    border-radius: 30px;
    padding: 9px 16px;
    font-weight: 700;
    font-size: .82rem;
}

.nav-call i {
    color: var(--gold);
}

.nav-call:hover {
    background: var(--navy-light);
    color: var(--gold);
}

/* Hamburger toggle */
.nav-toggle {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: var(--navy);
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-shrink: 0;
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: transform .35s, opacity .3s;
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Overlay */
.menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    z-index: 1000;
}

.menu-overlay.active {
    display: block;
}

/* ============================================================
   HERO — split layout (content left, image right) — CLEAN v3
   ============================================================ */
.hero {
  background: var(--navy);
  padding-top: 88px;
  padding-bottom: 48px;
  position: relative;
  overflow: hidden;
}

/* Single subtle glow — no diagonal lines */
.hero::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 70% at 75% 50%, rgba(255,222,89,.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 10% 20%, rgba(19,54,110,.6) 0%, transparent 55%);
}

.hero-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ---- Left: copy ---- */
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--navy);
  padding: 6px 16px; border-radius: 30px;
  font-size: .74rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; margin-bottom: 18px;
  font-family: var(--font-body);
}
.hero-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--navy); flex-shrink: 0;
}

.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.18;
  letter-spacing: -.01em;
  margin-bottom: 16px;
  text-transform: none;
}
.hero h1 .accent        { color: var(--gold); }
.hero h1 .accent-orange { color: #FF8C42; }

.hero-lead {
  color: rgba(255,255,255,.68);
  font-size: .98rem;
  max-width: 490px;
  margin-bottom: 28px;
  line-height: 1.72;
}
.hero-cta {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-bottom: 32px;
}

/* Stats row */
.hero-stats {
  display: flex; gap: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.11);
  flex-wrap: wrap;
}
.hero-stat b {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem; font-weight: 800;
  color: var(--gold); line-height: 1;
}
.hero-stat span {
  font-size: .72rem; color: rgba(255,255,255,.5);
  text-transform: uppercase; letter-spacing: .07em;
  margin-top: 3px; display: block;
}

/* ---- Right: image ---- */
.hero-visual { position: relative; overflow-x: hidden;}

.hero-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
}
.hero-img-wrap img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.hero-img-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, transparent 55%, rgba(7,27,60,.75));
  pointer-events: none;
}

/* Floating badge */
.hero-img-badge {
  position: absolute; bottom: 18px; left: 18px; z-index: 3;
  background: rgba(7,27,60,.88);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,222,89,.25);
  border-radius: 10px; padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
}
.hero-img-badge .badge-ico {
  width: 38px; height: 38px; border-radius: 8px;
  background: var(--gold); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; flex-shrink: 0;
}
.hero-img-badge strong { display: block; color: #fff; font-size: .84rem; font-weight: 700; }
.hero-img-badge span   { color: rgba(255,255,255,.55); font-size: .7rem; }

/* Top-right tag */
.hero-img-tag {
  position: absolute; top: 14px; right: 14px; z-index: 3;
  background: var(--gold); color: var(--navy);
  border-radius: 6px; padding: 6px 13px;
  font-weight: 700; font-size: .72rem; letter-spacing: .04em;
  text-transform: uppercase;
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-strip {
    background: var(--gold);
    color: var(--navy);
    padding: 13px 0;
   overflow: hidden;
    white-space: nowrap;
    font-weight: 800;
    font-size: .84rem;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.marquee-track {
    display: inline-block;
    animation: scroll-left 28s linear infinite;
}

.marquee-track span {
    margin: 0 28px;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ============================================================
   SERVICES WE PROVIDE — image cards (like screenshot 1)
   ============================================================ */
.services-provide {
    background: var(--white);
}

.svc-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(7, 27, 60, .10);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
    cursor: pointer;
}

.svc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 50px rgba(7, 27, 60, .18);
}

.svc-card.featured {
    outline: 3px solid var(--saffron);
    outline-offset: -3px;
}

.svc-card .img-box {
    height: 300px;
    overflow: hidden;
}

.svc-card .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s var(--ease);
}

.svc-card:hover .img-box img {
    transform: scale(1.1);
}

.svc-card .svc-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--navy);
    color: #fff;
    text-align: center;
    padding: 14px 12px;
    font-family: var(--font-head);
    font-size: 1.2rem;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.svc-card .svc-label .wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--whatsapp);
    color: #fff;
    border-radius: 4px;
    padding: 5px 14px;
    font-family: var(--font-body);
    font-size: .75rem;
    font-weight: 700;
    margin-top: 6px;
    transition: background .2s;
}

.svc-card .svc-label .wa-btn:hover {
    background: #1ebd5a;
}

/* ============================================================
   WHAT MAKES US STAND OUT — dark section (like screenshot 2)
   ============================================================ */
.standout-section {
    background: var(--navy);
    padding: 64px 0;
}

.standout-section .section-title {
    color: #fff;
}

.standout-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--saffron));
    border-radius: 2px;
    margin: 16px 0 44px;
}

.standout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 48px;
}

.standout-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.standout-item .si-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(255, 222, 89, .12);
    border: 2px solid rgba(255, 222, 89, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.6rem;
    color: var(--gold);
    transition: all .3s;
}

.standout-item:hover .si-icon {
    background: var(--gold);
    color: var(--navy);
}

.standout-item .si-text h5 {
    color: #fff;
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 5px;
    text-transform: none;
    letter-spacing: 0;
}

.standout-item .si-text p {
    color: #8fa3cc;
    font-size: .88rem;
    margin: 0;
}

/* ============================================================
   STAT STRIP
   ============================================================ */
.stat-strip {
    background: var(--navy);
    padding: 48px 0;
}

.stat-box {
    text-align: center;
    padding: 12px;
}

.stat-box .num {
    font-family: var(--font-head);
    font-size: 3rem;
    color: var(--gold);
    line-height: 1;
}

.stat-box .lbl {
    font-size: .78rem;
    color: #8fa3cc;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-top: 6px;
}

/* ============================================================
   CLIENT CARDS (Who We Serve)
   ============================================================ */
.client-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 24px 16px;
    text-align: center;
    transition: all .3s;
}

.client-card:hover {
    background: var(--navy);
    transform: translateY(-6px);
    box-shadow: 0 16px 34px rgba(7, 27, 60, .2);
}

.client-card i {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 10px;
    display: block;
    transition: all .3s;
}

.client-card span {
    color: var(--navy);
    font-weight: 700;
    font-size: .84rem;
    text-transform: uppercase;
    transition: all .3s;
}

.client-card:hover i,
.client-card:hover span {
    color: var(--gold);
}

/* ============================================================
   OUR OPERATION
   ============================================================ */
.operation-step {
    text-align: center;
    position: relative;
    padding: 0 10px;
}

.operation-step .circle {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-family: var(--font-head);
    font-size: 1.9rem;
    color: var(--gold);
    box-shadow: 0 12px 28px rgba(7, 27, 60, .18);
    transition: all .3s;
}

.operation-step:hover .circle {
    background: var(--gold);
    color: var(--navy);
    transform: scale(1.08);
}

.operation-step h5 {
    font-family: var(--font-head);
    font-size: 1.1rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.operation-step p {
    color: var(--ash);
    font-size: .88rem;
}

.op-connector {
    position: absolute;
    top: 43px;
    left: 0;
    right: 0;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 16px);
    z-index: 0;
    pointer-events: none;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 1/1;
    box-shadow: 0 8px 22px rgba(7, 27, 60, .1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

.gallery-item:hover img {
    transform: scale(1.12);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(7, 27, 60, .9) 100%);
    display: flex;
    align-items: flex-end;
    padding: 14px;
    opacity: 0;
    transition: opacity .3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--gold);
    font-weight: 700;
    font-size: .84rem;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 4px 18px rgba(7, 27, 60, .05);
}

.testimonial-card .quote-icon {
    color: var(--gold-deep);
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.testimonial-card p {
    color: var(--ash);
    font-size: .94rem;
    margin: 0 0 16px;
}

.t-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.t-author img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.t-author .name {
    color: var(--navy);
    font-weight: 700;
    font-size: .9rem;
}

.t-author .role {
    color: var(--gold-deep);
    font-size: .76rem;
}

.stars i {
    color: var(--gold-deep);
    font-size: .82rem;
}

/* ============================================================
   BOTTOM CTA
   ============================================================ */
.bottom-cta {
    background: var(--navy);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.bottom-cta::after {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(255, 222, 89, .1), transparent 70%);
    top: -100px;
    right: -60px;
}

.bottom-cta .eyebrow-light {
    font-family: var(--font-head);
    letter-spacing: .2em;
    color: var(--gold);
    font-size: .85rem;
    text-transform: uppercase;
    margin-bottom: 14px;
    display: block;
}

.bottom-cta h2 {
    color: #fff;
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    text-transform: uppercase;
    margin-bottom: 14px;
}

.bottom-cta p {
    color: #a9bce8;
    margin: 0;
}

.phone-big {
    font-family: var(--font-head);
    font-size: 2.2rem;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-form-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 38px;
    box-shadow: 0 20px 50px rgba(7, 27, 60, .07);
}

.form-label-c {
    color: var(--ash);
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    font-weight: 700;
    margin-bottom: 6px;
    display: block;
}

.form-ctrl {
    width: 100%;
    background: var(--offwhite);
    border: 1px solid var(--line);
    color: var(--navy);
    padding: 13px 15px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: .92rem;
    transition: border-color .2s, box-shadow .2s;
}

.form-ctrl:focus {
    outline: none;
    background: #fff;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(255, 222, 89, .28);
}

.form-ctrl::placeholder {
    color: var(--ash-light);
}

textarea.form-ctrl {
    resize: none;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 22px;
}

.contact-item .ic {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.15rem;
    flex-shrink: 0;
}

.contact-item h6 {
    color: var(--navy);
    margin-bottom: 3px;
    font-size: .92rem;
    font-family: var(--font-body);
    font-weight: 700;
}

.contact-item p,
.contact-item a {
    color: var(--ash);
    font-size: .87rem;
    margin: 0;
}

.contact-item a:hover {
    color: var(--whatsapp);
}

.social-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 1rem;
    transition: all .25s;
}

.social-circle:hover {
    background: var(--navy);
    color: var(--gold);
    border-color: var(--navy);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--navy);
    padding: 54px 0 0;
    border-top: 4px solid var(--gold);
    color: #cfe0ff;
}

.site-footer h6 {
    color: var(--gold);
    font-size: .84rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 14px;
    font-family: var(--font-body);
    font-weight: 800;
}

.footer-links li {
    margin-bottom: 9px;
}

.footer-links li a {
    color: #a9bce8;
    font-size: .87rem;
    transition: color .2s;
}

.footer-links li a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin-top: 36px;
    padding: 18px 0;
    text-align: center;
    color: #7a93c0;
    font-size: .8rem;
}

/* Footer brand */
.footer-brand strong {
    font-family: var(--font-head);
    font-size: 1.2rem;
    color: #fff;
    letter-spacing: .04em;
}

.footer-brand small {
    font-size: .58rem;
    color: var(--gold);
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 800;
}

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.float-wa {
    position: fixed;
    bottom: 22px;
    right: 22px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--whatsapp);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.65rem;
    z-index: 999;
    box-shadow: 0 6px 22px rgba(37, 211, 102, .5);
    animation: pulse-wa 2.5s infinite;
}

@keyframes pulse-wa {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, .55);
    }

    70% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.float-call {
    position: fixed;
    bottom: 22px;
    right: 88px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    z-index: 999;
    box-shadow: 0 6px 22px rgba(7, 27, 60, .4);
}

.float-call:hover {
    background: var(--navy-light);
}

/* ============================================================
   AOS CUSTOM
   ============================================================ */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}





/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
    .section {
        padding: 44px 0;
    }

    .hero {
        padding-top: 118px;
        padding-bottom: 44px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 0 20px;
    }

    .hero-visual {
        max-width: 540px;
        margin: 0 auto;
    }

    .hero-img-wrap img {
        height: 380px;
    }

    .hero h1 {
        text-align: center;
    }

    .hero-lead {
        margin: 0 auto 28px;
        text-align: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-eyebrow {
        margin: 0 auto 18px;
    }

    .hero-copy {
        text-align: center;
    }

    .standout-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .navbar-avp .nav-container {
        padding: 0 20px;
    }
}

@media (max-width: 767px) {
    .section {
        padding: 36px 0;
    }

    .topbar {
        display: none;
    }

    .hero {
        padding-top: 88px;
    }

    .svc-card .img-box {
        height: 220px;
    }

    .contact-form-card {
        padding: 22px;
    }

    .float-wa {
        width: 50px;
        height: 50px;
        bottom: 16px;
        right: 16px;
        font-size: 1.4rem;
    }

    .float-call {
        width: 50px;
        height: 50px;
        bottom: 16px;
        right: 76px;
        font-size: 1.25rem;
    }

    .hero-img-wrap img {
        height: 200px;
        margin-top: 16px;
        border-radius: 16px;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }

    .hero-stat b {
        font-size: 1.5rem;
    }

    .nav-brand .brand-texts strong {
        font-size: 1.05rem;
    }

    .hero h1 {
        font-family: Poppins, sans-serif;
        font-size:25px;
        font-weight: 500;
        color: rgb(255, 255, 255);
        line-height: 1.18;
        margin-bottom: 16px;
        text-transform: none;
    }
}















/* Clean White Background About Section */
.premium-about-section {
    position: relative;
    padding: 30px 0;
    background-color: var(--white);
    overflow: hidden;
}

/* Subtle background grid pattern on white */
.premium-about-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(7, 27, 60, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
    z-index: 1;
}

/* Eyebrow badge styling */
.about-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--offwhite);
    border: 1px solid var(--line);
    color: var(--navy-soft);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

/* Title using 'Bebas Neue' heading font */
.about-title {
    font-family: 'Poppins' sans-serif !important;
    font-size: 2.5rem;
    /* Bebas Neue looks beautiful when large */
    font-weight: 500;
    line-height: 1.05;
    margin-bottom: 20px;
    letter-spacing: 1px;
    color: var(--navy);
}

/* Orange Saffron highlight */
.highlight-text {
    color: var(--saffron);
}

/* Concise Description */
.about-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--ash);
    margin-bottom: 24px;
    max-width: 540px;
}

/* Simple & clean highlights list (Concise for mobile) */
.simple-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--navy-light);
}

.highlight-item i {
    color: var(--green-ind);
    font-size: 1.1rem;
}

/* Explore Services Button */
.btn-gold-premium {
    font-family: var(--font-body);
    background-color: var(--gold);
    color: var(--navy) !important;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s var(--ease);
    box-shadow: 0 4px 12px rgba(255, 222, 89, 0.2);
    border: 2px solid var(--gold);
}

.btn-gold-premium:hover {
    background-color: var(--gold-deep);
    border-color: var(--gold-deep);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(232, 196, 31, 0.35);
}

/* WhatsApp Button using your variables */
.btn-whatsapp-premium {
    font-family: var(--font-body);
    background-color: transparent;
    color: var(--whatsapp) !important;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s var(--ease);
    border: 2px solid var(--whatsapp);
}

.btn-whatsapp-premium:hover {
    background-color: var(--whatsapp);
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.25);
}

/* RIGHT COLUMN: Visual overlap composition */
.about-visual-compose {
    position: relative;
    width: 100%;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    z-index: 2;
}

/* Clean, fully visible Image Card */
.main-image-card {
    position: relative;
    width: 80%;
    height: 90%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(7, 27, 60, 0.15);
    border: 1px solid var(--line);
    transition: transform 0.4s var(--ease);
}

.main-image-card:hover {
    transform: translateY(-5px);
}

.main-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    /* Fully clear opacity */
    filter: none;
    /* No dark filter, clear visibility */
}

/* Image Gradient Overlay (Very light, only at the bottom) */
.image-overlay-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(7, 27, 60, 0.3) 0%, transparent 40%);
    pointer-events: none;
}

/* Clean Badge on Image */
.trust-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--navy);
    color: var(--white);
    border-radius: 8px;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(7, 27, 60, 0.25);
}

.trust-badge i {
    color: var(--gold);
}

/* Floating Stats Grid - Contrast Slabs on White Background */
.floating-stats-grid {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 200px;
    z-index: 5;
}

.glass-stat-card {
    background: var(--navy);
    /* Deep Navy background for contrast */
    border-left: 4px solid var(--saffron);
    border-radius: 12px;
    padding: 14px 18px;
    box-shadow: 0 10px 25px rgba(7, 27, 60, 0.25);
    transition: all 0.25s var(--ease);
}

.glass-stat-card:hover {
    transform: translateX(-8px);
    box-shadow: 0 12px 30px rgba(7, 27, 60, 0.35);
}

.stat-number {
    font-family: var(--font-head);
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--gold);
    /* Gold stats color */
    line-height: 1;
    margin-bottom: 2px;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* RESPONSIVE DESIGN STYLES */
@media (max-width: 1199.98px) {
    .about-title {
        font-size: 3.5rem;
    }

    .about-visual-compose {
        height: 440px;
    }

    .floating-stats-grid {
        width: 180px;
    }

    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 991.98px) {
    .premium-about-section {
        padding: 60px 0;
    }

    .about-title {
        font-size: 3.2rem;
    }

    .about-visual-compose {
        margin-top: 40px;
        height: 400px;
        justify-content: center;
    }

    .main-image-card {
        width: 75%;
    }

    .floating-stats-grid {
        right: 5%;
        width: 170px;
    }
}

@media (max-width: 767.98px) {
    .about-visual-compose {
        height: 360px;
        overflow: hidden;
    width: 100%;
    }

    .main-image-card {
        width: 80%;
        height: 100%;
    }

    .floating-stats-grid {
        right: 0px;
        width: 140px;
    }

    .stat-number {
        font-size: 1.8rem;
    }
}

@media (max-width: 575.98px) {
    .premium-about-section {
        padding: 50px 0;
    }

    .about-title {
        font-size: 30px
    }

    .about-visual-compose {
        height: auto;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-top: 30px;
        overflow: hidden;
    width: 100%;
    }

    .main-image-card {
        width: 100%;
        height: 280px;
    }

    /* 2x2 Grid for Mobile - Very Clean and Fits Screen easily */
    .floating-stats-grid {
        position: relative;
        transform: none;
        top: 0;
        right: 0;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .glass-stat-card {
        padding: 12px;
    }

    .glass-stat-card:hover {
        transform: translateY(-3px);
    }

    .btn-gold-premium,
    .btn-whatsapp-premium {
        width: 100%;
        justify-content: center;
    }
}














 /* Redesigned Services Section */
    .services-provide {
      padding: 30px 0;
      background-color: var(--white);
    }
    .services-provide .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--offwhite);
      border: 1px solid var(--line);
      color: var(--navy-soft);
      padding: 6px 14px;
      border-radius: 100px;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 16px;
    }
    .services-provide .section-title {
      font-family: var(--font-body); /* Changed to var(--font-body) matching screenshot header styling */
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 12px;
    }
    .services-provide .section-sub {
      font-size: 1rem;
      color: var(--ash);
      max-width: 750px;
      line-height: 1.6;
    }
    /* Card Layout - Exactly like the Screenshot */
    .svc-card-new {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 18px; /* Gap between image and capsule button */
      background: transparent;
      border: none;
      padding: 0;
      text-decoration: none;
      transition: all 0.3s var(--ease);
    }
    /* 1. Large Image container with 24px rounded corners */
    .svc-card-new .img-box-new {
      width: 100%;
      aspect-ratio: 1 / 1; /* Makes card image square exactly as in screenshot */
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(7, 27, 60, 0.08);
      border: 1px solid var(--line);
      transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
    }
    .svc-card-new .img-box-new img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s var(--ease);
    }
    /* 2. Capsule Button label below the image */
    .svc-card-new .svc-btn-new {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      background-color: var(--navy);
      color: var(--white) !important;
      font-family: var(--font-body);
      font-size: 1rem;
      font-weight: 600;
      padding: 12px 20px;
      border-radius: 100px; /* Capsule shape exactly like screenshot */
      text-align: center;
      box-shadow: 0 4px 12px rgba(7, 27, 60, 0.15);
      border: 2px solid var(--navy);
      transition: all 0.3s var(--ease);
    }
    /* Micro-interactions on Hover */
    .svc-card-new:hover .img-box-new {
      transform: translateY(-8px);
      box-shadow: 0 15px 35px rgba(7, 27, 60, 0.15);
    }
    .svc-card-new:hover .img-box-new img {
      transform: scale(1.05);
    }
    .svc-card-new:hover .svc-btn-new {
      background-color: var(--gold);
      color: var(--navy) !important;
      border-color: var(--gold);
      box-shadow: 0 6px 18px rgba(255, 222, 89, 0.3);
      transform: translateY(-2px);
    }
    /* View all services CTA styling */
    .btn-view-all {
      background-color: var(--navy);
      color: var(--white) !important;
      font-weight: 600;
      padding: 12px 28px;
      border-radius: 8px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: 2px solid var(--navy);
      transition: all 0.25s var(--ease);
    }
    .btn-view-all:hover {
      background-color: var(--navy-light);
      border-color: var(--navy-light);
      transform: translateY(-2px);
    }
    .btn-whatsapp-cta {
      background-color: transparent;
      color: var(--whatsapp) !important;
      font-weight: 600;
      padding: 12px 28px;
      border-radius: 8px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: 2px solid var(--whatsapp);
      transition: all 0.25s var(--ease);
    }
    .btn-whatsapp-cta:hover {
      background-color: var(--whatsapp);
      color: var(--white) !important;
      transform: translateY(-2px);
    }
    /* Responsive adjustments */
    @media (max-width: 991.98px) {
      .services-provide .section-title {
        font-size: 2.2rem;
      }
      .svc-card-new .svc-btn-new {
        font-size: 0.9rem;
        padding: 10px 16px;
      }
    }
    @media (max-width: 575.98px) {
      .services-provide {
        padding: 50px 0;
      }
      .services-provide .section-title {
        font-size: 1.8rem;
      }
      /* On mobile, cards have slightly smaller gap but maintain aspect ratio */
      .svc-card-new {
        gap: 12px;
      }
      .svc-card-new .img-box-new {
        border-radius: 16px; /* slightly smaller radius for mobile screens */
      }
      .svc-card-new .svc-btn-new {
        font-size: 0.8rem;
        padding: 8px 12px;
      }
    }

    /* 12-service responsive grid — same card style, smaller label font for longer text */
    .svc-card-new .svc-btn-new {
      line-height: 1.25;
      white-space: normal;
    }
    @media (min-width: 576px) and (max-width: 991.98px) {
      .svc-card-new .svc-btn-new { font-size: .85rem; padding: 10px 14px; }
    }
    @media (max-width: 575.98px) {
      .svc-card-new .svc-btn-new { font-size: .78rem; }
    }


    @media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 100%;
    }
}

/* Mobile */
@media (max-width: 768px){
    .logo img{
        height: 40px;
    }
    .hero-eyebrow {
        font-size: 10px;
    }
}

@media (max-width: 768px) {
  .section  { padding: 36px 0; }
  .topbar   { display: none; }

  .hero {
    padding-top: 72px;
    padding-bottom: 36px;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 0;
       overflow: hidden;
    width: 100%;
    padding: 0 16px;
  }

  /* Image TOP pe */
  .hero-visual {
    order: -1;
    width: 100%;
  }
  .hero-img-wrap { border-radius: 12px; }
  .hero-img-wrap img {
    aspect-ratio: 16 / 9;
    width: 100%;
    object-fit: cover;
    object-position: center top;
  }

  .hero-img-badge { display: none; }
  .hero-img-tag { font-size: .65rem; padding: 5px 10px; top: 10px; right: 10px; }

  .hero-copy { text-align: center; padding-top: 22px; }
  .hero-eyebrow { font-size: .68rem; padding: 5px 13px; margin: 0 auto 14px; }

  .hero h1 {
    font-size: clamp(1.45rem, 5.5vw, 1.85rem);
    line-height: 1.25;
    margin-bottom: 12px;
  }
  .hero-lead { font-size: .88rem; margin: 0 auto 20px; max-width: 100%; }

  .hero-cta { flex-direction: row; gap: 10px; margin-bottom: 22px; justify-content: center; }
  .hero-cta .btn { flex: 1 1 0; padding: 11px 14px; font-size: .8rem; justify-content: center; min-width: 0; }

  .hero-stats { justify-content: center; gap: 0; padding-top: 18px; }
  .hero-stat { flex: 1; text-align: center; padding: 0 8px; border-right: 1px solid rgba(255,255,255,.1); }
  .hero-stat:last-child { border-right: none; }
  .hero-stat b    { font-size: 1.3rem; }
  .hero-stat span { font-size: .62rem; }

  .svc-card .img-box { height: 200px; }
  .contact-form-card { padding: 20px; }
  .float-wa   { width: 48px; height: 48px; bottom: 14px; right: 14px; font-size: 1.3rem; }
  .float-call { width: 48px; height: 48px; bottom: 14px; right: 72px; font-size: 1.2rem; }
}

@media (max-width: 420px) {
  .hero h1 { font-size: 1.35rem; }
  .hero-cta .btn { font-size: 10px; padding: 10px 10px; }
  .hero-img-wrap img { aspect-ratio: 4 / 3; }
}






/* ============================================================
   OVERFLOW NUCLEAR FIX — paste at very bottom of CSS
   ============================================================ */

html, body {
  overflow-x: hidden !important;
  max-width: 100vw !important;
}

/* Bootstrap row negative margin fix */
.row {
  --bs-gutter-x: 1.5rem;
  margin-right: 0 !important;
  margin-left: 0 !important;
}

/* Every section clipped */
section, .marquee-strip, .topbar,
.bottom-cta, .site-footer, nav {
  overflow-x: hidden !important;
  max-width: 100vw !important;
}

/* About section floating stats — biggest culprit */
.about-visual-compose {
  overflow: hidden !important;
}

.floating-stats-grid {
  max-width: 190px;
}

/* Mobile complete fix */
@media (max-width: 767px) {

  /* Kill ALL horizontal overflow sources */
  *, *::before, *::after {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* But exclude fixed elements */
  .float-wa, .float-call, .nav-menu, .menu-overlay {
    max-width: none !important;
  }

  /* Hero */
  .hero-inner {
    padding: 0 16px !important;
    width: 100% !important;
    overflow: hidden !important;
  }

  .hero-visual {
    order: -1 !important;
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 10px;
  }

  .hero-img-wrap img {
    aspect-ratio: 16 / 9 !important;

    width: 100% !important;
  }

  /* About section — stack columns properly */
  .about-visual-compose {
    height: auto !important;
    flex-direction: column !important;
    align-items: center !important;
    overflow: hidden !important;
    width: 100% !important;
    padding: 0 !important;
  }

  .main-image-card {
    width: 100% !important;
    height: 260px !important;
    position: relative !important;
  }

  .floating-stats-grid {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    margin-top: 16px !important;
  }

  /* Container fluid padding */
  .container-fluid {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  /* Bootstrap row fix for mobile */
  .row {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  /* Standout grid single column */
  .standout-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  /* Client cards — 3 per row on mobile */
  .col-4 {
    width: 33.333% !important;
  }

  /* Service cards button text smaller */
  .svc-btn-new {
    font-size: 0.75rem !important;
    padding: 8px 10px !important;
  }

  /* Hero CTA buttons */
  .hero-cta {
    flex-direction: row !important;
    gap: 8px !important;
  }
  .hero-cta .btn {
    flex: 1 !important;
    padding: 10px 8px !important;
    font-size: .78rem !important;
    min-width: 0 !important;
  }

  /* Stats row */
  .hero-stats {
    gap: 0 !important;
    padding-top: 16px !important;
  }
  .hero-stat {
    flex: 1 !important;
    padding: 0 6px !important;
    text-align: center !important;
    border-right: 1px solid rgba(255,255,255,.12) !important;
  }
  .hero-stat:last-child { border-right: none !important; }
  .hero-stat b { font-size: 1.25rem !important; }
  .hero-stat span { font-size: .6rem !important; }

  /* Section padding */
  .section { padding: 36px 0 !important; }
  .premium-about-section { padding: 36px 0 !important; }
  .standout-section { padding: 40px 0 !important; }

  /* Contact form */
  .contact-form-card { padding: 18px !important; }

  /* Nav container */
  .nav-container { padding: 0 16px !important; }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 1.3rem !important;
    line-height: 1.3 !important;
  }
  .hero-cta .btn {
    font-size: .72rem !important;
    padding: 9px 6px !important;
  }
  .svc-btn-new {
    font-size: .7rem !important;
  }
}