/* ============================================================
   PRATAP ENTERPRISES - style.css  v3.0
   Mirzapur's #1 Solar Partner
   Full-Screen Hero | 100% Mobile Responsive | Premium Animated
   Fixed Blue Button Hover, Service Card Hover Details, Calculator Logic
   ============================================================ */

/* ─── RESET & BASE ──────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --blue:        #1565c0;
    --blue-dark:   #0d3b7a;
    --blue-light:  #1e88e5;
    --orange:      #ff8f00;
    --orange-light:#ffb300;
    --green:       #00c853;
    --white:       #ffffff;
    --dark:        #0a1628;
    --dark2:       #111d35;
    --text:        #1e2d44;
    --text-muted:  #5a6a80;
    --bg-light:    #f0f4ff;
    --bg-card:     #ffffff;
    --gold:        #ffd700;
    --shadow-sm:   0 4px 15px rgba(0,0,0,.08);
    --shadow-md:   0 10px 35px rgba(0,0,0,.12);
    --shadow-lg:   0 20px 60px rgba(0,0,0,.15);
    --shadow-xl:   0 30px 80px rgba(0,0,0,.2);
    --radius:      16px;
    --radius-sm:   10px;
    --trans:       all .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.65;
}

h1,h2,h3,h4,h5,h6 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }
ul { list-style: none; }

.container {
    width: 92%;
    max-width: 1280px;
    margin: 0 auto;
}

section { padding: 90px 0; }


/* ─── CUSTOM CURSOR ─────────────────────────────────────────── */
.cursor-dot, .cursor-ring {
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 10000;
    border-radius: 50%;
    transform: translate(-50%,-50%);
    transition: transform .1s ease;
}
.cursor-dot {
    width: 8px; height: 8px;
    background: var(--orange);
}
.cursor-ring {
    width: 36px; height: 36px;
    border: 2px solid rgba(255,143,0,.5);
    transition: all .15s ease;
}
@media (hover: none) { .cursor-dot, .cursor-ring { display: none; } }

/* ─── SCROLL PROGRESS ───────────────────────────────────────── */
.scroll-progress {
    position: fixed; top: 0; left: 0; right: 0;
    height: 3px; z-index: 10001;
    background: linear-gradient(90deg, var(--orange), var(--blue-light));
    transform-origin: left;
    transform: scaleX(0);
    transition: transform .1s linear;
}

/* ─── BUTTONS (FIXED HOVER - TEXT VISIBLE) ─────────────────── */
.btn-primary {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: var(--white); padding: 14px 32px;
    border-radius: 50px; font-weight: 700; font-size: .95rem;
    transition: var(--trans); border: none; cursor: pointer;
    box-shadow: 0 6px 20px rgba(21,101,192,.35);
    position: relative; overflow: hidden;
}
.btn-primary::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--blue-light), var(--blue));
    opacity: 0; transition: var(--trans);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(21,101,192,.4); }
.btn-primary:hover::after { opacity: 1; }
.btn-primary > * { position: relative; z-index: 1; }

.btn-hero {
    padding: 16px 40px;
    font-size: 1.05rem;
    box-shadow: 0 8px 30px rgba(21,101,192,.5);
}

.btn-secondary {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--white); color: var(--blue);
    padding: 14px 32px; border-radius: 50px;
    font-weight: 700; border: 2px solid var(--blue); transition: var(--trans);
}
.btn-secondary:hover { background: var(--blue); color: var(--white); transform: translateY(-3px); }

.btn-whatsapp {
    display: inline-flex; align-items: center; gap: 10px;
    background: #25D366; color: var(--white);
    padding: 14px 32px; border-radius: 50px;
    font-weight: 700; transition: var(--trans);
    box-shadow: 0 6px 20px rgba(37,211,102,.35);
}
.btn-whatsapp:hover { background: #128C7E; transform: translateY(-3px); }

.btn-outline {
    display: inline-flex; align-items: center; gap: 12px;
    background: rgba(255,255,255,.12); backdrop-filter: blur(8px);
    color: var(--white); padding: 14px 32px;
    border-radius: 50px; font-weight: 700; border: 2px solid rgba(255,255,255,.4);
    transition: var(--trans);
}
.btn-outline:hover { background: var(--white); color: var(--blue); transform: translateY(-3px); }

.btn-lg { padding: 16px 38px; font-size: 1rem; }

.pulse-btn { animation: pulsate 2s ease-in-out infinite; }
@keyframes pulsate { 0%,100%{box-shadow:0 6px 20px rgba(21,101,192,.4)} 50%{box-shadow:0 6px 40px rgba(21,101,192,.7),0 0 0 8px rgba(21,101,192,.1)} }

/* ─── SECTION HEADERS ───────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(21,101,192,.12), rgba(255,143,0,.1));
    color: var(--blue); padding: 8px 22px; border-radius: 50px;
    font-weight: 700; font-size: .8rem; letter-spacing: 1.5px;
    text-transform: uppercase; margin-bottom: 16px;
    border: 1px solid rgba(21,101,192,.2);
}
.section-header h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 16px; }
.section-header h2 span { color: var(--blue); position: relative; }
.section-header h2 span::after {
    content: '';
    position: absolute; bottom: -4px; left: 0; width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--orange));
    border-radius: 2px;
}
.section-header p { max-width: 680px; margin: 0 auto; color: var(--text-muted); font-size: 1.05rem; }
.section-header.light h2, .section-header.light p { color: var(--white); }
.section-header.light h2 span { color: var(--orange-light); }

/* ─── FLOATING WHATSAPP ─────────────────────────────────────── */
.whatsapp-float {
    position: fixed; bottom: 24px; left: 24px;
    width: 60px; height: 60px; border-radius: 50%;
    background: #25D366; color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 30px; z-index: 990;
    box-shadow: 0 6px 25px rgba(37,211,102,.45);
    transition: var(--trans);
}
.whatsapp-float:hover { transform: scale(1.12); background: #128C7E; }
.wa-pulse {
    position: absolute; width: 100%; height: 100%; border-radius: 50%;
    background: #25D366; opacity: .6;
    animation: waRing 2.5s ease-out infinite; z-index: -1;
}
@keyframes waRing { 0%{transform:scale(1);opacity:.6} 100%{transform:scale(1.7);opacity:0} }

/* ─── HEADER ────────────────────────────────────────────────── */
.header-top-bar {
    background: var(--dark); color: var(--white); padding: 9px 0; font-size: .8rem;
}
.top-bar-inner {
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
}
.top-bar-left { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.top-bar-left span i { margin-right: 5px; color: var(--orange); }
.top-divider { color: rgba(255,255,255,.3); }
.top-bar-right { display: flex; gap: 20px; }
.top-bar-right a { color: rgba(255,255,255,.85); transition: var(--trans); display: flex; align-items: center; gap: 6px; }
.top-bar-right a:hover { color: var(--orange-light); }

.header-main {
    background: var(--white); position: sticky; top: 0; z-index: 500;
    transition: box-shadow .3s ease, padding .3s ease;
}
.header-main.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,.12); }

.navbar { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; }

.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon-wrap {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--blue), var(--orange));
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
}
.logo-icon-wrap img {
    width: 100%; height: 100%; object-fit: cover;
}
.logo-glow {
    position: absolute; inset: -4px; border-radius: 14px;
    background: linear-gradient(135deg, var(--blue), var(--orange));
    opacity: 0; z-index: -1; filter: blur(8px);
    transition: opacity .3s ease;
}
.logo:hover .logo-glow { opacity: .5; }
.logo-text h1 { font-size: 1.35rem; margin-bottom: 0; line-height: 1; }
.logo-text p { font-size: .68rem; color: var(--text-muted); margin-top: 2px; }

.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-item {
    color: var(--text); font-weight: 600; font-size: .9rem;
    display: flex; align-items: center; gap: 5px;
    padding: 6px 0; position: relative; transition: var(--trans);
}
.nav-item::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--orange));
    transition: width .3s ease;
}
.nav-item:hover, .nav-item.active { color: var(--blue); }
.nav-item:hover::after { width: 100%; }

.dropdown { position: relative; }
.dropdown-menu {
    position: absolute; top: calc(100% + 10px); left: 0;
    background: var(--white); border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg); min-width: 200px;
    padding: 8px 0; opacity: 0; visibility: hidden;
    transform: translateY(-10px); transition: all .25s ease;
    border: 1px solid rgba(0,0,0,.06);
}
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li a {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 20px; color: var(--text); font-weight: 500;
    font-size: .9rem; transition: var(--trans);
}
.dropdown-menu li a:hover { background: var(--bg-light); color: var(--blue); padding-left: 26px; }
.dropdown-menu li a i { color: var(--orange); width: 16px; }

.nav-actions { display: flex; align-items: center; gap: 15px; }
.btn-call {
    background: linear-gradient(135deg, #00c853, #009624);
    color: var(--white); padding: 10px 22px;
    border-radius: 50px; font-weight: 700; font-size: .88rem;
    display: inline-flex; align-items: center; gap: 8px;
    transition: var(--trans); box-shadow: 0 4px 15px rgba(0,200,83,.3);
}
.btn-call:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,200,83,.4); }

.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 5px; }
.hamburger span {
    display: block; width: 26px; height: 2.5px;
    background: var(--text); border-radius: 3px; margin: 5px 0;
    transition: var(--trans); transform-origin: left;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(2px,-2px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(2px,2px); }

/* Mobile Menu */
.mobile-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,.55);
    z-index: 998; opacity: 0; visibility: hidden; transition: var(--trans);
    backdrop-filter: blur(4px);
}
.mobile-overlay.active { opacity: 1; visibility: visible; }
.mobile-menu {
    position: fixed; top: 0; right: -100%;
    width: min(85%, 360px); height: 100%;
    background: var(--white); z-index: 999;
    padding: 30px 24px; overflow-y: auto;
    transition: right .35s cubic-bezier(.4,0,.2,1);
    box-shadow: var(--shadow-xl);
}
.mobile-menu.active { right: 0; }
.mobile-close {
    position: absolute; top: 18px; right: 18px;
    background: var(--bg-light); border: none; width: 36px; height: 36px;
    border-radius: 50%; font-size: 1.1rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center; color: var(--text);
}
.mobile-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 36px; padding-bottom: 20px; border-bottom: 1px solid #e8eef8; }
.mobile-logo i { font-size: 1.8rem; color: var(--blue); }
.mobile-logo span { font-size: 1.2rem; font-weight: 700; font-family: 'Syne', sans-serif; }
.mobile-menu ul li { margin-bottom: 4px; }
.mobile-menu ul li a { display: block; padding: 12px 16px; color: var(--text); font-weight: 600; border-radius: var(--radius-sm); transition: var(--trans); }
.mobile-menu ul li a:hover { background: var(--bg-light); color: var(--blue); padding-left: 22px; }
.mobile-cta { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; padding-top: 20px; border-top: 1px solid #e8eef8; }

/* ─── HERO — FULL SCREEN (INCREASED HEIGHT) ────────────────── */
.hero { position: relative; }
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 750px;
    max-height: 950px;
    overflow: hidden;
}

.slide {
    position: absolute; inset: 0;
    opacity: 0; transition: opacity 1s ease;
    display: flex; align-items: center; justify-content: center;
}
.slide.active { opacity: 1; z-index: 1; }

.slide-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transform: scale(1.06);
    transition: transform 8s cubic-bezier(.1,0,.25,1);
}
.slide.active .slide-bg { transform: scale(1); }

.slide-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg,
        rgba(5,20,55,.82) 0%,
        rgba(10,30,70,.65) 50%,
        rgba(5,20,55,.7) 100%);
}

.hero-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.slide-content {
    position: relative; z-index: 3;
    display: flex; flex-direction: column; align-items: center; text-align: center;
    color: var(--white); padding: 0 20px;
    max-width: 900px; margin: 0 auto;
    padding-top: 80px;
}

.slide-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,.13); backdrop-filter: blur(12px);
    padding: 9px 24px; border-radius: 50px; font-size: .82rem; font-weight: 600;
    border: 1px solid rgba(255,255,255,.22); margin-bottom: 28px;
    letter-spacing: .5px;
}
.badge-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--orange); box-shadow: 0 0 8px var(--orange);
    animation: dotBlink 2s ease-in-out infinite;
}
@keyframes dotBlink { 0%,100%{opacity:1} 50%{opacity:.3} }

.slide-content h1 {
    font-size: clamp(2.2rem, 6vw, 4.5rem);
    color: var(--white); margin-bottom: 22px;
    text-shadow: 0 4px 20px rgba(0,0,0,.4);
    line-height: 1.15;
}
.highlight-text {
    color: var(--orange-light);
    position: relative;
    display: inline-block;
}
.highlight-text::after {
    content: '';
    position: absolute; bottom: 2px; left: 0; width: 100%; height: 3px;
    background: var(--orange); border-radius: 2px; opacity: .6;
}

.slide-content p {
    font-size: clamp(.95rem, 2vw, 1.2rem);
    color: rgba(255,255,255,.92); margin-bottom: 36px;
    max-width: 680px;
}
.slide-content p strong { color: var(--orange-light); }

.slide-stats {
    display: flex; align-items: center; justify-content: center;
    gap: 28px; margin-bottom: 40px; flex-wrap: wrap;
    background: rgba(255,255,255,.08); backdrop-filter: blur(8px);
    padding: 18px 36px; border-radius: 60px;
    border: 1px solid rgba(255,255,255,.15);
}
.slide-stats .stat { text-align: center; }
.slide-stats .stat strong { display: block; font-size: 1.8rem; font-weight: 800; line-height: 1; }
.slide-stats .stat p { font-size: .78rem; opacity: .85; margin-top: 4px; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,.25); }

.slide-btns { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; }

.hero-scroll-hint {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
    z-index: 5; text-align: center; color: rgba(255,255,255,.7); font-size: .78rem;
    animation: scrollHintAnim 2.5s ease-in-out infinite;
}
.scroll-arrow {
    width: 22px; height: 22px; margin: 8px auto 0;
    border-right: 2px solid rgba(255,255,255,.6); border-bottom: 2px solid rgba(255,255,255,.6);
    transform: rotate(45deg);
}
@keyframes scrollHintAnim { 0%,100%{opacity:.6;transform:translateX(-50%) translateY(0)} 50%{opacity:1;transform:translateX(-50%) translateY(6px)} }

.slider-dots {
    position: absolute; bottom: 24px; right: 40px;
    display: flex; gap: 10px; z-index: 10;
}
.dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: rgba(255,255,255,.4); border: none; cursor: pointer; transition: var(--trans);
}
.dot.active { background: var(--orange); transform: scale(1.4); }

.slider-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,.15); backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.2); width: 52px; height: 52px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    cursor: pointer; z-index: 10; transition: var(--trans); color: var(--white); font-size: 1.2rem;
}
.slider-arrow:hover { background: var(--blue); border-color: var(--blue); transform: translateY(-50%) scale(1.05); }
.slider-arrow.prev { left: 24px; }
.slider-arrow.next { right: 24px; }

.slide.active .animate-pop { animation: popIn .6s cubic-bezier(.34,1.56,.64,1) both; }
.slide.active .animate-up { animation: slideUpFade .7s ease both; }
.slide.active .delay-1 { animation-delay: .15s; }
.slide.active .delay-2 { animation-delay: .3s; }
.slide.active .delay-3 { animation-delay: .45s; }
@keyframes popIn { from{opacity:0;transform:scale(.8)} to{opacity:1;transform:scale(1)} }
@keyframes slideUpFade { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }

/* ─── TRUST BAR ─────────────────────────────────────────────── */
.trust-bar {
    background: linear-gradient(90deg, var(--dark2), #0e2044, var(--dark2));
    padding: 14px 0; overflow: hidden; white-space: nowrap;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.trust-marquee { width: 100%; overflow: hidden; }
.trust-track {
    display: inline-flex; gap: 44px;
    animation: marquee 35s linear infinite;
}
.trust-track span {
    display: inline-flex; align-items: center; gap: 8px;
    color: rgba(255,255,255,.85); font-weight: 600; font-size: .85rem;
}
.trust-track span i { color: var(--orange-light); }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ─── ENERGY COUNTER SECTION ────────────────────────────────── */
.energy-counter-section {
    background: linear-gradient(135deg, var(--blue-dark), var(--blue), #1565c0);
    padding: 60px 0; position: relative; overflow: hidden;
}
.energy-counter-section::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.energy-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px; position: relative;
}
.energy-item {
    text-align: center; color: var(--white);
    padding: 24px 16px;
    border-right: 1px solid rgba(255,255,255,.15);
}
.energy-item:last-child { border-right: none; }
.energy-icon {
    font-size: 2rem; color: var(--orange-light); margin-bottom: 12px;
    height: 56px; display: flex; align-items: center; justify-content: center;
}
.energy-value {
    font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800;
    font-family: 'Syne', sans-serif; color: var(--white);
    line-height: 1; margin-bottom: 8px;
}
.energy-label { font-size: .82rem; color: rgba(255,255,255,.7); font-weight: 500; }

/* ─── ABOUT ─────────────────────────────────────────────────── */
.about-section { background: var(--bg-light); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img-wrap {
    position: relative; border-radius: 20px; overflow: visible;
    box-shadow: var(--shadow-lg);
}
.about-img-wrap img { border-radius: 20px; width: 100%; }
.about-img-overlay {
    position: absolute; inset: 0; border-radius: 20px;
    background: linear-gradient(to top, rgba(10,22,40,.3), transparent);
}
.about-badge-float {
    position: absolute; bottom: -18px; left: 28px;
    background: var(--white); padding: 14px 24px;
    border-radius: 50px; display: flex; align-items: center; gap: 12px;
    box-shadow: var(--shadow-md);
}
.about-badge-float i { font-size: 2rem; color: var(--orange); }
.about-badge-float strong { font-size: 1.3rem; display: block; line-height: 1; color: var(--blue); }
.about-badge-float span { font-size: .75rem; color: var(--text-muted); }
.about-years-badge {
    position: absolute; top: -18px; right: 28px;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: var(--white); padding: 14px 20px;
    border-radius: 16px; text-align: center;
    box-shadow: 0 8px 25px rgba(255,143,0,.4);
}
.years-num { display: block; font-size: 1.8rem; font-weight: 800; line-height: 1; }
.years-text { font-size: .7rem; opacity: .9; }
.about-stats-grid {
    display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 40px;
}
.astat {
    background: var(--white); padding: 16px 12px;
    border-radius: var(--radius-sm); text-align: center;
    box-shadow: var(--shadow-sm); transition: var(--trans);
}
.astat:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.astat-num { font-size: 1.8rem; font-weight: 800; color: var(--blue); font-family: 'Syne', sans-serif; }
.astat > span { font-size: 1.4rem; font-weight: 800; color: var(--orange); }
.astat p { font-size: .78rem; color: var(--text-muted); margin-top: 4px; }
.about-content h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); margin-bottom: 18px; }
.about-content h3 span { color: var(--blue); }
.about-lead { font-size: 1.05rem; font-weight: 600; margin-bottom: 16px; }
.about-highlights { margin: 28px 0; display: flex; flex-direction: column; gap: 18px; }
.highlight-item { display: flex; gap: 16px; align-items: flex-start; }
.highlight-item i {
    font-size: 1.3rem; color: var(--blue);
    background: rgba(21,101,192,.1); padding: 12px; border-radius: 12px;
    flex-shrink: 0; transition: var(--trans);
}
.highlight-item:hover i { background: var(--blue); color: var(--white); }
.highlight-item h5 { font-size: 1rem; margin-bottom: 3px; }
.highlight-item p { color: var(--text-muted); font-size: .9rem; }
.about-cta { display: flex; gap: 14px; margin-top: 24px; flex-wrap: wrap; }

/* ─── BRANDS ────────────────────────────────────────────────── */
 /* ─── BRANDS ────────────────────────────────────────────────── */
   .brands-section { background: linear-gradient(145deg, #071628, #0d2040, #071628); color: var(--white); }
.brands-section .section-tag { color: var(--orange-light); border-color: rgba(255,143,0,.3); background: rgba(255,143,0,.1); }
.brands-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); gap: 22px; margin-bottom: 36px; }
.brand-card {
    background: rgba(255,255,255,.07); backdrop-filter: blur(10px);
    border-radius: var(--radius); padding: 26px 22px; text-align: center;
    border: 1px solid rgba(255,255,255,.1); transition: var(--trans);
    position: relative; overflow: hidden;
}
.brand-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
    opacity: 0; transition: var(--trans);
}
.brand-card:hover { transform: translateY(-8px); background: rgba(255,255,255,.13); border-color: rgba(255,143,0,.3); }
.brand-card:hover::before { opacity: 1; }
.brand-card.featured { background: linear-gradient(135deg, rgba(255,143,0,.15), rgba(21,101,192,.2)); border-color: rgba(255,143,0,.4); }
.brand-badge { display: inline-block; background: var(--orange); padding: 5px 14px; border-radius: 30px; font-size: .68rem; font-weight: 700; margin-bottom: 14px; }

/* Logo Styles — Original Brand Colors Preserved */
.brand-logo {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,.08);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    overflow: hidden;
    transition: var(--trans);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    padding: 12px;
}
.brand-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    /* REMOVED: filter: brightness(0) invert(1); — now shows original colors */
}
.brand-card:hover .brand-logo img {
    transform: scale(1.05);
}
/* Fallback for icons if image fails */
.brand-logo i {
    font-size: 2.5rem;
    color: var(--orange-light);
}

.brand-card h4 { color: var(--white); margin-bottom: 6px; }
.brand-card p { font-size: .82rem; opacity: .8; margin-bottom: 14px; }
.brand-card ul { text-align: left; }
.brand-card ul li { font-size: .78rem; margin-bottom: 6px; color: rgba(255,255,255,.85); }
.brands-note {
    text-align: center; background: rgba(255,255,255,.06);
    border-radius: var(--radius); padding: 32px;
    border: 1px solid rgba(255,255,255,.1);
}
.brands-note i { font-size: 2.2rem; color: var(--orange-light); margin-bottom: 12px; display: block; }
.brands-note p { margin-bottom: 20px; color: rgba(255,255,255,.88); }

/* Responsive adjustments */
@media (max-width: 550px) {
    .brand-logo {
        width: 70px;
        height: 70px;
        padding: 10px;
    }
}

/* ─── SERVICES (HOVER WITH DETAILS) ─────────────────────────── */
.services-section { background: var(--bg-light); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 28px; }
.service-card {
    background: var(--white); padding: 32px 28px;
    border-radius: var(--radius); text-align: center;
    border: 1px solid #e4ebf8; transition: var(--trans);
    box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
    cursor: pointer;
}
.service-card-bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--blue), #1976d2);
    opacity: 0; transition: opacity .4s ease;
}
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: var(--blue); }
.service-card:hover .service-card-bg { opacity: 1; }
.service-card:hover h4, .service-card:hover p, .service-card:hover .service-range { color: var(--white); }
.service-card:hover .service-link { color: var(--orange-light); }
.service-card > * { position: relative; z-index: 1; }

/* Hover swap details - key point wise details show */
.service-card:hover .service-icon { background: rgba(255,255,255,.2); box-shadow: 0 0 0 4px rgba(255,255,255,.2); }
.service-card .hover-details {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    border-radius: var(--radius);
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 5;
    color: white;
    text-align: center;
    backdrop-filter: blur(2px);
}
.service-card:hover .hover-details {
    opacity: 1;
}
.service-card .hover-details ul {
    text-align: left;
    margin-top: 15px;
    list-style: disc;
    color: rgba(255,255,255,.95);
    font-size: 0.85rem;
}
.service-card .hover-details ul li {
    margin-bottom: 8px;
    text-align: left;
}
.service-card .hover-details i {
    font-size: 2rem;
    margin-bottom: 12px;
    color: var(--orange-light);
}

.service-icon {
    width: 72px; height: 72px;
    background: linear-gradient(135deg, var(--blue), var(--orange));
    border-radius: 20px; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 22px; font-size: 1.8rem; color: var(--white);
    transition: var(--trans);
}
.service-card h4 { font-size: 1.2rem; margin-bottom: 12px; transition: var(--trans); }
.service-card p { color: var(--text-muted); font-size: .9rem; margin-bottom: 16px; transition: var(--trans); }
.service-range {
    display: inline-block; background: rgba(21,101,192,.1); color: var(--blue);
    padding: 5px 16px; border-radius: 30px; font-size: .78rem; font-weight: 700;
    margin-bottom: 20px; transition: var(--trans);
}
.service-link {
    color: var(--blue); font-weight: 700; display: inline-flex; align-items: center; gap: 8px;
    transition: var(--trans); font-size: .9rem;
}
.service-link:hover { gap: 14px; }

/* ─── SUBSIDY BANNER ────────────────────────────────────────── */
.subsidy-banner {
    background: linear-gradient(135deg, #071628, #0a2050);
    padding: 60px 0; position: relative; overflow: hidden;
}
.subsidy-bg-animation { position: absolute; inset: 0; pointer-events: none; }
.subsidy-circle {
    position: absolute; border-radius: 50%;
    background: radial-gradient(circle, rgba(255,143,0,.15), transparent 70%);
    animation: circleFloat 6s ease-in-out infinite;
}
.c1 { width: 400px; height: 400px; top: -100px; right: -50px; }
.c2 { width: 300px; height: 300px; bottom: -80px; left: 10%; animation-delay: 2s; }
.c3 { width: 200px; height: 200px; top: 30%; right: 25%; animation-delay: 4s; }
@keyframes circleFloat { 0%,100%{transform:scale(1) translate(0,0)} 50%{transform:scale(1.15) translate(15px,-15px)} }
.subsidy-inner {
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 36px; position: relative; z-index: 1;
}
.subsidy-content { display: flex; gap: 22px; align-items: flex-start; flex: 2; }
.subsidy-icon {
    width: 72px; height: 72px; flex-shrink: 0;
    background: rgba(255,143,0,.2); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; color: var(--orange-light);
    animation: sunSpin 10s linear infinite;
}
@keyframes sunSpin { 0%{transform:rotate(0)} 100%{transform:rotate(360deg)} }
.subsidy-text h3 { color: var(--white); margin-bottom: 10px; font-size: 1.5rem; }
.subsidy-text p { color: rgba(255,255,255,.88); margin-bottom: 18px; }
.subsidy-text p strong { color: var(--orange-light); }
.subsidy-steps { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.subsidy-steps .step {
    background: rgba(255,255,255,.1); padding: 8px 18px;
    border-radius: 30px; font-size: .82rem; color: var(--white); font-weight: 600;
    display: flex; align-items: center; gap: 8px;
}
.subsidy-steps .step span {
    background: var(--orange); width: 22px; height: 22px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: .72rem; font-weight: 800;
}
.subsidy-steps .arrow { color: var(--orange-light); }
.subsidy-cta { text-align: center; flex: 1; min-width: 220px; }
.subsidy-amount {
    background: rgba(255,255,255,.08); backdrop-filter: blur(8px);
    padding: 12px 28px; border-radius: 50px; margin-bottom: 22px;
    border: 1px solid rgba(255,255,255,.15); display: inline-block;
}
.subsidy-amount span { font-size: .88rem; color: rgba(255,255,255,.75); }
.subsidy-amount strong { font-size: 2rem; color: var(--orange-light); display: block; line-height: 1; margin: 4px 0; }
.subsidy-cta .btn-primary, .subsidy-cta .btn-whatsapp { display: block; width: 100%; margin-bottom: 10px; text-align: center; }

/* ─── HOW IT WORKS ──────────────────────────────────────────── */
.how-works-section { background: var(--bg-light); }
.steps-wrapper { position: relative; }
.steps-line {
    position: absolute; top: 55px; left: 5%; right: 5%;
    height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--orange), var(--blue));
    z-index: 0;
}
.steps-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 20px; position: relative; z-index: 1; }
.step-item {
    text-align: center; padding: 20px 16px;
    background: var(--white); border-radius: var(--radius);
    box-shadow: var(--shadow-sm); border: 1px solid #e4ebf8;
    transition: var(--trans); position: relative;
}
.step-item:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: var(--blue); }
.step-num {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: var(--white); width: 28px; height: 28px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: .75rem; font-weight: 800;
}
.step-icon {
    width: 60px; height: 60px; margin: 16px auto 16px;
    background: linear-gradient(135deg, rgba(21,101,192,.1), rgba(255,143,0,.1));
    border-radius: 16px; display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: var(--blue); transition: var(--trans);
}
.step-item:hover .step-icon { background: linear-gradient(135deg, var(--blue), var(--orange)); color: var(--white); }
.step-item h4 { font-size: .95rem; margin-bottom: 8px; }
.step-item p { font-size: .8rem; color: var(--text-muted); }

/* ─── PROJECTS ──────────────────────────────────────────────── */
.projects-section { background: var(--bg-light); }
.proj-tabs { display: flex; justify-content: center; gap: 12px; margin-bottom: 44px; flex-wrap: wrap; }
.proj-tab {
    background: var(--white); border: 1px solid #dde5f5;
    padding: 11px 26px; border-radius: 50px; font-weight: 700;
    cursor: pointer; transition: var(--trans); font-size: .88rem;
    font-family: 'Space Grotesk', sans-serif;
}
.proj-tab.active, .proj-tab:hover { background: var(--blue); color: var(--white); border-color: var(--blue); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(21,101,192,.3); }
.projects-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px,1fr)); gap: 24px; }
.proj-card {
    background: var(--white); border-radius: var(--radius);
    overflow: hidden; box-shadow: var(--shadow-sm);
    border: 1px solid #e4ebf8; transition: var(--trans);
}
.proj-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.proj-img { position: relative; height: 220px; overflow: hidden; }
.proj-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.proj-card:hover .proj-img img { transform: scale(1.08); }
.proj-overlay { position: absolute; top: 14px; right: 14px; }
.proj-badge { padding: 5px 14px; border-radius: 30px; font-size: .7rem; font-weight: 700; color: var(--white); }
.proj-badge.residential { background: var(--blue); }
.proj-badge.commercial { background: #00c853; }
.proj-badge.industrial { background: var(--orange); }
.proj-info { padding: 20px 22px; }
.proj-info h5 { font-size: 1.1rem; margin-bottom: 10px; }
.proj-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; font-size: .82rem; color: var(--text-muted); }
.proj-meta i { margin-right: 4px; color: var(--orange); }
.proj-info p { font-size: .88rem; color: var(--text-muted); }
.projects-cta { text-align: center; margin-top: 48px; padding: 32px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.projects-cta p { margin-bottom: 16px; font-size: 1.05rem; }

/* ─── CALCULATOR ────────────────────────────────────────────── */
.calculator-section { background: linear-gradient(145deg, #060f22, #0d1e40, #060f22); color: var(--white); }
.calculator-section .section-tag { color: var(--orange-light); border-color: rgba(255,143,0,.3); background: rgba(255,143,0,.1); }
.calc-wrapper {
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
    background: rgba(255,255,255,.07); border-radius: 20px; padding: 40px;
    backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.1);
}
.calc-input-side h3 { color: var(--white); margin-bottom: 28px; display: flex; align-items: center; gap: 10px; }
.calc-group { margin-bottom: 26px; }
.calc-group label { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-weight: 600; color: rgba(255,255,255,.9); }
.prop-btns, .sys-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.prop-btn, .sys-btn {
    background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
    padding: 10px 20px; border-radius: 40px; color: var(--white);
    font-weight: 600; cursor: pointer; transition: var(--trans); font-size: .85rem;
    display: flex; align-items: center; gap: 8px; font-family: 'Space Grotesk', sans-serif;
}
.prop-btn.active, .sys-btn.active, .prop-btn:hover, .sys-btn:hover { background: var(--blue); border-color: var(--blue); transform: translateY(-2px); }
.calc-slider {
    width: 100%; height: 6px; -webkit-appearance: none;
    background: linear-gradient(90deg, var(--orange), var(--blue-light)); border-radius: 5px; outline: none;
}
.calc-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 22px; height: 22px; background: var(--orange); border-radius: 50%; cursor: pointer; border: 3px solid var(--white); box-shadow: 0 2px 8px rgba(0,0,0,.3); }
.slider-labels { display: flex; justify-content: space-between; margin-top: 10px; font-size: .78rem; color: rgba(255,255,255,.6); }
.calc-btn {
    width: 100%; background: linear-gradient(135deg, var(--orange), #e65100);
    color: var(--white); padding: 16px; border: none; border-radius: 50px;
    font-size: 1.05rem; font-weight: 700; cursor: pointer; transition: var(--trans);
    display: flex; align-items: center; justify-content: center; gap: 10px;
    font-family: 'Space Grotesk', sans-serif; margin-top: 10px;
}
.calc-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(255,143,0,.4); }
.result-placeholder { text-align: center; padding: 60px 20px; }
.result-placeholder i { font-size: 4.5rem; color: var(--orange); margin-bottom: 18px; display: block; }
.result-placeholder h4, .result-placeholder p { color: var(--white); }
.result-data { animation: fadeUpIn .5s ease; }
@keyframes fadeUpIn { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
.result-header { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,.15); }
.result-header i { font-size: 1.5rem; color: var(--orange-light); }
.result-header h4 { color: var(--white); }
.result-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 24px; }
.result-item { background: rgba(255,255,255,.08); padding: 16px; border-radius: 12px; }
.result-item.main { background: rgba(255,143,0,.15); border: 1px solid rgba(255,143,0,.25); }
.result-item span { display: block; font-size: .8rem; color: rgba(255,255,255,.75); margin-bottom: 8px; }
.result-item strong { font-size: 1.4rem; color: var(--white); display: block; }
.result-item .green { color: var(--green); }
.result-cta { display: flex; gap: 14px; }
.result-cta .btn-whatsapp, .result-cta .btn-primary { flex: 1; text-align: center; }

/* ─── GALLERY ───────────────────────────────────────────────── */
.gallery-section { background: var(--bg-light); }
.gal-filters { display: flex; justify-content: center; gap: 12px; margin-bottom: 36px; flex-wrap: wrap; }
.gal-filter {
    background: var(--white); border: 1px solid #dde5f5;
    padding: 9px 26px; border-radius: 50px; font-weight: 700;
    cursor: pointer; transition: var(--trans); font-size: .88rem;
    font-family: 'Space Grotesk', sans-serif;
}
.gal-filter.active, .gal-filter:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }
.gallery-masonry { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 18px; }
.gal-item { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; aspect-ratio: 4/3; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gal-item:hover img { transform: scale(1.1); }
.gal-hover {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(5,20,55,.85));
    padding: 24px 18px; transform: translateY(100%); transition: transform .35s ease;
}
.gal-item:hover .gal-hover { transform: translateY(0); }
.gal-hover h5 { color: var(--white); margin-bottom: 3px; }
.gal-hover p { color: rgba(255,255,255,.75); font-size: .8rem; }
.lightbox {
    position: fixed; inset: 0; background: rgba(0,0,0,.96);
    z-index: 2000; display: none; align-items: center; justify-content: center;
    animation: lbFadeIn .3s ease;
}
.lightbox.active { display: flex; }
@keyframes lbFadeIn { from{opacity:0} to{opacity:1} }
.lb-content { max-width: 90vw; max-height: 90vh; }
.lb-content img { max-width: 100%; max-height: 80vh; object-fit: contain; border-radius: 12px; }
.lb-caption { text-align: center; color: var(--white); margin-top: 14px; font-size: .95rem; }
.lb-close, .lb-nav {
    position: absolute; background: rgba(255,255,255,.15); border: none;
    width: 48px; height: 48px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; color: var(--white); font-size: 1.2rem; transition: var(--trans);
}
.lb-close:hover, .lb-nav:hover { background: var(--blue); }
.lb-close { top: 20px; right: 24px; }
.lb-nav.lb-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lb-nav.lb-next { right: 20px; top: 50%; transform: translateY(-50%); }

/* ─── TESTIMONIALS (MODERN FULLY RESPONSIVE - BOX WISE LAYOUT) ────────────────── */
.testimonials-section {
    background: linear-gradient(145deg, #0a2b3e, #06314b);
    color: #ffffff;
    padding: 80px 0;
    width: 100%;
    overflow-x: clip;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header.light {
    color: #fff;
}

.section-tag {
    display: inline-block;
    background: rgba(255, 143, 0, 0.12);
    color: #ffb347;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 6px 16px;
    border-radius: 40px;
    border: 1px solid rgba(255, 143, 0, 0.35);
    backdrop-filter: blur(2px);
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2;
}

.section-header h2 span {
    color: #ff8c42;
    position: relative;
    display: inline-block;
}

.section-header p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
    margin: 0 auto;
}

/* slider & track - responsive foundation */
.testimonials-slider {
    position: relative;
    overflow-x: auto;
    overflow-y: visible;
    margin: 20px 0 15px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #ff8c42 rgba(255,255,255,0.2);
    border-radius: 28px;
}

.testimonials-slider::-webkit-scrollbar {
    height: 6px;
}

.testimonials-slider::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
}

.testimonials-slider::-webkit-scrollbar-thumb {
    background: #ff8c42;
    border-radius: 10px;
}

.testi-track {
    display: flex;
    gap: 28px;
    padding: 12px 4px 24px 4px;
    transition: none;
    width: max-content;
}

/* Card design: clean glassmorphism with stronger shadows & responsiveness */
.testi-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border-radius: 28px;
    padding: 28px 26px;
    flex-shrink: 0;
    width: 340px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    box-shadow: 0 20px 32px -12px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
}

.testi-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px);
    border-color: rgba(255, 140, 66, 0.5);
    box-shadow: 0 28px 36px -14px rgba(0, 0, 0, 0.35);
}

.testi-stars {
    font-size: 1.1rem;
    letter-spacing: 3px;
    margin-bottom: 18px;
    color: #ffcd7e;
}

.testi-card p {
    font-size: 0.98rem;
    line-height: 1.55;
    font-style: normal;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.94);
    flex-grow: 1;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 18px;
}

.testi-avatar i {
    font-size: 2.4rem;
    color: #ffaa55;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.testi-author strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
}

.testi-author span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.3px;
}

/* Dots navigation (interactive) */
.testi-dots {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.testi-dot {
    width: 10px;
    height: 10px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: all 0.25s ease-in-out;
    border: none;
    padding: 0;
}

.testi-dot.active {
    background: #ff8c42;
    width: 28px;
    transform: scale(1);
    box-shadow: 0 0 6px #ff9f4a;
}

/* ========== RESPONSIVE BREAKPOINTS: DIFFERENT STRUCTURE & LAYOUT ========== */

/* Laptops & medium screens: show 2.5 cards but still horizontal scroll handled */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    .testi-card {
        width: 310px;
        padding: 24px 22px;
    }
    .testi-track {
        gap: 24px;
    }
    .section-header h2 {
        font-size: 2rem;
    }
}

/* Tablet (landscape & portrait) — adjust spacing & card width, bigger tap target */
@media (max-width: 820px) {
    .testimonials-section {
        padding: 60px 0;
    }
    .testi-card {
        width: 320px;
        padding: 26px 20px;
        border-radius: 24px;
    }
    .testi-stars {
        font-size: 1rem;
    }
    .testi-card p {
        font-size: 0.92rem;
    }
    .testi-author strong {
        font-size: 0.95rem;
    }
    .testi-dots {
        gap: 12px;
    }
    .testi-dot {
        width: 8px;
        height: 8px;
    }
    .testi-dot.active {
        width: 24px;
    }
}

/* Mobile large & small: completely different card stacking + edge-to-edge softness */
@media (max-width: 640px) {
    .testimonials-section {
        padding: 48px 0;
    }
    .container {
        padding: 0 16px;
    }
    .section-header {
        margin-bottom: 32px;
    }
    .section-header h2 {
        font-size: 1.75rem;
    }
    .section-header p {
        font-size: 0.9rem;
        padding: 0 8px;
    }
    .section-tag {
        font-size: 0.75rem;
        padding: 4px 14px;
    }
    
    /* slider: becomes almost full-width swipe, but horizontal scroll remains intuitive */
    .testimonials-slider {
        margin: 0 -4px;
        padding-bottom: 6px;
    }
    
    .testi-track {
        gap: 18px;
        padding: 6px 2px 20px 2px;
    }
    
    .testi-card {
        width: 280px;
        padding: 20px 18px;
        border-radius: 24px;
        backdrop-filter: blur(10px);
    }
    
    .testi-stars {
        font-size: 0.9rem;
        margin-bottom: 12px;
        letter-spacing: 2px;
    }
    
    .testi-card p {
        font-size: 0.85rem;
        line-height: 1.48;
        margin-bottom: 18px;
    }
    
    .testi-author {
        gap: 10px;
        padding-top: 14px;
    }
    
    .testi-avatar i {
        font-size: 2rem;
    }
    
    .testi-author strong {
        font-size: 0.85rem;
    }
    
    .testi-author span {
        font-size: 0.7rem;
    }
    
    .testi-dots {
        margin-top: 20px;
        gap: 10px;
    }
    
    .testi-dot {
        width: 7px;
        height: 7px;
    }
    
    .testi-dot.active {
        width: 22px;
    }
}

/* Extra small devices (<= 480px): refined card shape, remove heavy gap, better readability */
@media (max-width: 480px) {
    .testi-card {
        width: 260px;
        padding: 18px 16px;
        border-radius: 20px;
    }
    
    .testi-stars {
        font-size: 0.85rem;
        letter-spacing: 2px;
    }
    
    .testi-card p {
        font-size: 0.8rem;
        line-height: 1.45;
    }
    
    .testi-author strong {
        font-size: 0.8rem;
    }
    
    .testi-author span {
        font-size: 0.65rem;
    }
    
    .testi-track {
        gap: 14px;
    }
    
    .section-header h2 {
        font-size: 1.55rem;
    }
}

/* Small landscape mode (height limited, keep scrolling comfortable) */
@media (max-width: 768px) and (orientation: landscape) {
    .testimonials-section {
        padding: 40px 0;
    }
    .testi-card {
        width: 290px;
        padding: 18px 20px;
    }
    .testi-card p {
        font-size: 0.85rem;
        margin-bottom: 14px;
    }
}

/* Optional: smooth scroll snap for modern touch (improves mobile UX) */
@media (max-width: 768px) {
    .testimonials-slider {
        scroll-snap-type: x mandatory;
    }
    .testi-card {
        scroll-snap-align: start;
    }
}

/* ─── WHY US ────────────────────────────────────────────────── */
.whyus-section { background: var(--bg-light); }
.whyus-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 28px; }
.why-item {
    background: var(--white); padding: 32px 26px;
    border-radius: var(--radius); text-align: center;
    position: relative; transition: var(--trans);
    box-shadow: var(--shadow-sm); border: 1px solid #e4ebf8; overflow: hidden;
}
.why-item::before {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--orange));
    transform: scaleX(0); transition: transform .35s ease;
}
.why-item:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.why-item:hover::before { transform: scaleX(1); }
.why-num {
    position: absolute; top: -14px; left: 22px;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: var(--white); width: 36px; height: 36px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 1rem; box-shadow: 0 4px 12px rgba(21,101,192,.4);
}
.why-icon { font-size: 2.4rem; color: var(--blue); margin-bottom: 18px; transition: var(--trans); }
.why-item:hover .why-icon { transform: scale(1.15) rotate(5deg); }
.why-item h4 { margin-bottom: 10px; }
.why-item p { color: var(--text-muted); font-size: .9rem; }

/* ─── FAQ ───────────────────────────────────────────────────── */
.faq-section { background: var(--white); }
.faq-grid { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
    background: var(--bg-light); border-radius: var(--radius-sm);
    border: 1px solid #e4ebf8; overflow: hidden; transition: var(--trans);
}
.faq-item.open { border-color: var(--blue); box-shadow: 0 4px 20px rgba(21,101,192,.12); }
.faq-question {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 24px; cursor: pointer; font-weight: 700; gap: 16px;
    transition: var(--trans);
}
.faq-item.open .faq-question { color: var(--blue); }
.faq-question i { flex-shrink: 0; transition: transform .3s ease; color: var(--blue); }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s ease; }
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 20px; }
.faq-answer p { color: var(--text-muted); font-size: .92rem; line-height: 1.7; }

 /* ─── CONTACT ───────────────────────────────────────────────── */
    .contact-section { background: linear-gradient(145deg, #060f22, #0d1e40); }
    .contact-section .section-tag { color: var(--orange-light); border-color: rgba(255,143,0,.3); background: rgba(255,143,0,.1); }
    .contact-wrapper { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; }
    .contact-card-main {
        background: rgba(255,255,255,.07); backdrop-filter: blur(12px);
        border-radius: var(--radius); padding: 36px; border: 1px solid rgba(255,255,255,.1);
    }
    .contact-logo {
        width: 56px; height: 56px;
        background: linear-gradient(135deg, var(--orange), var(--blue));
        border-radius: 14px; display: flex; align-items: center; justify-content: center;
        font-size: 1.6rem; color: var(--white); margin-bottom: 18px;
    }
    .contact-card-main h3 { color: var(--white); }
    .contact-card-main > p { color: rgba(255,255,255,.7); margin-bottom: 24px; }
    .contact-details { margin: 0 0 24px 0; }
    .cd-item { display: flex; gap: 14px; margin-bottom: 18px; }
    .cd-icon {
        width: 44px; height: 44px; flex-shrink: 0;
        background: rgba(255,255,255,.1); border-radius: 12px;
        display: flex; align-items: center; justify-content: center;
        color: var(--orange-light); font-size: 1.1rem;
    }
    .cd-item span { display: block; font-size: .75rem; color: rgba(255,255,255,.6); margin-bottom: 3px; }
    .cd-item a, .cd-item strong { color: var(--white); font-weight: 700; font-size: .92rem; }
    .cd-item a:hover { color: var(--orange-light); }
    
    /* New Multi-Address Styles (Map Removed) */
    .addresses-section {
        margin: 24px 0;
        padding: 20px 0;
        border-top: 1px solid rgba(255,255,255,.1);
        border-bottom: 1px solid rgba(255,255,255,.1);
    }
    .addresses-title {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 18px;
        font-weight: 700;
        color: var(--orange-light);
        font-size: 1rem;
    }
    .addresses-title i {
        font-size: 1.1rem;
    }
    .address-list {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    .address-item {
        display: flex;
        gap: 12px;
        align-items: flex-start;
    }
    .address-icon {
        width: 32px;
        height: 32px;
        background: rgba(255,143,0,.15);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--orange-light);
        font-size: 0.85rem;
        flex-shrink: 0;
        margin-top: 2px;
    }
    .address-content {
        flex: 1;
    }
    .address-content strong {
        display: block;
        color: var(--white);
        font-size: 0.85rem;
        margin-bottom: 4px;
        font-weight: 600;
    }
    .address-content p {
        color: rgba(255,255,255,.7);
        font-size: 0.82rem;
        line-height: 1.4;
        margin: 0;
    }
    
    .contact-quick-btns { display: flex; gap: 12px; margin: 22px 0 0 0; flex-wrap: wrap; }
    .contact-quick-btns .btn-primary, .contact-quick-btns .btn-whatsapp { padding: 11px 20px; font-size: .85rem; }
    .contact-form-side {
        background: var(--white); border-radius: var(--radius);
        padding: 36px; box-shadow: var(--shadow-xl);
    }
    .contact-form h3 { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
    .contact-form > p { color: var(--text-muted); margin-bottom: 24px; font-size: .9rem; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
    .form-group { margin-bottom: 18px; }
    .form-group label { display: block; margin-bottom: 7px; font-weight: 600; font-size: .88rem; }
    .form-group input, .form-group select, .form-group textarea {
        width: 100%; padding: 13px 16px;
        border: 1.5px solid #dde5f5; border-radius: 10px;
        font-family: 'Space Grotesk', sans-serif; font-size: .9rem;
        transition: var(--trans); background: #f8faff;
    }
    .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
        outline: none; border-color: var(--blue);
        box-shadow: 0 0 0 4px rgba(21,101,192,.1); background: var(--white);
    }
    .form-check { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
    .form-check input { width: 18px; height: 18px; cursor: pointer; accent-color: var(--blue); }
    .form-check label { font-weight: 600; cursor: pointer; font-size: .9rem; }
    .btn-submit {
        width: 100%; background: linear-gradient(135deg, var(--blue), var(--blue-dark));
        color: var(--white); padding: 15px; border: none; border-radius: 50px;
        font-size: .95rem; font-weight: 700; cursor: pointer; transition: var(--trans);
        display: flex; align-items: center; justify-content: center; gap: 10px;
        font-family: 'Space Grotesk', sans-serif;
        box-shadow: 0 6px 20px rgba(21,101,192,.35);
    }
    .btn-submit:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(21,101,192,.4); }
    
    /* Responsive */
    @media (max-width: 900px) {
        .contact-wrapper { grid-template-columns: 1fr; gap: 30px; }
    }
    @media (max-width: 550px) {
        .form-row { grid-template-columns: 1fr; gap: 0; }
        .contact-card-main, .contact-form-side { padding: 24px; }
        .address-item { gap: 10px; }
        .address-icon { width: 28px; height: 28px; }
    }
/* ─── FOOTER ────────────────────────────────────────────────── */
.footer { background: #04080f; color: #8090a8; }
.footer-top { padding: 64px 0 44px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-logo i { font-size: 2rem; color: var(--orange); }
.footer-logo h3 { color: var(--white); margin-bottom: 0; font-size: 1.2rem; }
.footer-logo p { font-size: .72rem; color: #8090a8; }
.footer-col p { margin-bottom: 20px; line-height: 1.7; font-size: .88rem; }
.footer-socials { display: flex; gap: 12px; margin-top: 20px; }
.footer-socials a {
    width: 38px; height: 38px; background: rgba(255,255,255,.07);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: var(--white); transition: var(--trans); font-size: .9rem;
}
.footer-socials a:hover { background: var(--blue); transform: translateY(-3px); }
.footer-col h4 { color: var(--white); margin-bottom: 20px; font-size: 1rem; position: relative; padding-bottom: 10px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 36px; height: 2px; background: var(--orange); border-radius: 2px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: #8090a8; transition: var(--trans); font-size: .88rem; display: inline-block; }
.footer-col ul li a:hover { color: var(--white); padding-left: 5px; }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 14px; align-items: flex-start; font-size: .88rem; }
.footer-contact li i { margin-top: 2px; color: var(--orange); flex-shrink: 0; }
.footer-contact li a { color: #8090a8; }
.footer-contact li a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 20px 0; text-align: center; font-size: .82rem; }
.footer-bottom p { margin-bottom: 6px; }
.footer-bottom strong { color: var(--white); }
.footer-bottom a { color: var(--orange-light); }

/* ─── CHATBOT ───────────────────────────────────────────────── */
.chatbot-btn {
    position: fixed; bottom: 24px; right: 24px;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    width: 60px; height: 60px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; z-index: 990; box-shadow: var(--shadow-lg);
    transition: var(--trans); border: none; color: var(--white); font-size: 1.5rem;
}
.chatbot-label {
    position: absolute; right: 72px;
    background: var(--white); padding: 6px 14px; border-radius: 20px;
    font-size: .75rem; font-weight: 700; color: var(--blue);
    white-space: nowrap; opacity: 0; transition: var(--trans);
    box-shadow: var(--shadow-sm); pointer-events: none;
}
.chatbot-btn:hover { transform: scale(1.08); }
.chatbot-btn:hover .chatbot-label { opacity: 1; right: 76px; }
.chatbot-pulse { position: absolute; inset: 0; border-radius: 50%; background: var(--blue); animation: chatPulse 2.5s ease-out infinite; z-index: -1; }
@keyframes chatPulse { 0%{transform:scale(1);opacity:.6} 100%{transform:scale(1.5);opacity:0} }
.chatbot-window {
    position: fixed; bottom: 96px; right: 20px; width: 380px;
    max-width: calc(100vw - 36px); background: var(--white);
    border-radius: 20px; box-shadow: var(--shadow-xl); z-index: 995;
    display: none; flex-direction: column; overflow: hidden;
    border: 1px solid #dde5f5;
}
.chatbot-window.active { display: flex; animation: chatSlideUp .3s ease; }
@keyframes chatSlideUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
.chat-header {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    padding: 16px 20px; display: flex; align-items: center; gap: 12px; color: var(--white);
}
.chat-avatar {
    width: 44px; height: 44px; background: rgba(255,255,255,.2);
    border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
}
.chat-title h4 { color: var(--white); margin-bottom: 2px; font-size: .95rem; }
.chat-status { font-size: .7rem; display: flex; align-items: center; gap: 6px; opacity: .85; }
.online-dot { width: 8px; height: 8px; background: var(--green); border-radius: 50%; display: inline-block; animation: dotBlink 2s infinite; }
.chat-close { margin-left: auto; background: none; border: none; color: var(--white); font-size: 1.1rem; cursor: pointer; opacity: .8; transition: var(--trans); }
.chat-close:hover { opacity: 1; }
.chat-messages {
    height: 370px; overflow-y: auto; padding: 18px;
    display: flex; flex-direction: column; gap: 14px; background: #f5f8ff;
}
.chat-messages::-webkit-scrollbar { width: 4px; }
.chat-messages::-webkit-scrollbar-track { background: transparent; }
.chat-messages::-webkit-scrollbar-thumb { background: rgba(21,101,192,.3); border-radius: 2px; }
.chat-msg { display: flex; gap: 10px; align-items: flex-start; }
.chat-msg.user { flex-direction: row-reverse; }
.msg-avatar {
    width: 32px; height: 32px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--blue), var(--orange));
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: .85rem; color: var(--white);
}
.msg-bubble {
    max-width: 82%; background: var(--white); padding: 12px 16px;
    border-radius: 18px 18px 18px 4px; font-size: .88rem; line-height: 1.5;
    box-shadow: 0 2px 10px rgba(0,0,0,.07);
}
.chat-msg.user .msg-bubble {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: var(--white); border-radius: 18px 18px 4px 18px;
}
.quick-replies { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.qr-btn {
    background: rgba(21,101,192,.08); border: 1px solid rgba(21,101,192,.2);
    padding: 6px 14px; border-radius: 30px; font-size: .75rem; cursor: pointer;
    transition: var(--trans); font-weight: 600; font-family: 'Space Grotesk', sans-serif;
}
.qr-btn:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }
.chat-input-area {
    display: flex; gap: 10px; padding: 14px;
    border-top: 1px solid #e8eef8; background: var(--white);
}
.chat-input-area input {
    flex: 1; padding: 11px 16px; border: 1.5px solid #dde5f5;
    border-radius: 30px; font-family: 'Space Grotesk', sans-serif; font-size: .88rem; outline: none; transition: var(--trans);
}
.chat-input-area input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(21,101,192,.1); }
.chat-input-area button {
    background: var(--blue); border: none; width: 44px; height: 44px;
    border-radius: 50%; color: var(--white); cursor: pointer; transition: var(--trans); font-size: .9rem;
}
.chat-input-area button:hover { background: var(--blue-dark); transform: scale(1.05); }

/* ─── SCROLL TOP ────────────────────────────────────────────── */
.scroll-top {
    position: fixed; bottom: 96px; right: 96px;
    width: 46px; height: 46px;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    border: none; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white); cursor: pointer; z-index: 98;
    opacity: 0; visibility: hidden; transition: var(--trans);
    box-shadow: var(--shadow-sm);
}
.scroll-top.show { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--orange); transform: translateY(-3px); }

/* ─── REVEAL ANIMATION ──────────────────────────────────────── */
[data-reveal] {
    opacity: 0; transform: translateY(36px);
    transition: opacity .7s ease, transform .7s ease;
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1200px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(3, 1fr); }
    .steps-line { display: none; }
}
@media (max-width: 992px) {
    section { padding: 70px 0; }
    .hero-slider { height: 100svh; min-height: 650px; max-height: 850px; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .nav-actions .btn-call span { display: none; }
    .about-grid { grid-template-columns: 1fr; }
    .about-visual { max-width: 520px; margin: 0 auto; }
    .calc-wrapper { grid-template-columns: 1fr; }
    .contact-wrapper { grid-template-columns: 1fr; }
    .subsidy-inner { flex-direction: column; }
    .subsidy-content { flex-direction: column; }
    .steps-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
    .hero-slider { min-height: 600px; }
    .slide-content h1 { font-size: clamp(1.8rem, 7vw, 2.6rem); }
    .slide-content p { font-size: .92rem; }
    .slide-stats { gap: 16px; padding: 14px 22px; }
    .stat-divider { display: none; }
    .slider-arrow { display: none; }
    .header-top-bar { display: none; }
    .brands-grid { grid-template-columns: 1fr 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .projects-grid { grid-template-columns: 1fr; }
    .gallery-masonry { grid-template-columns: 1fr 1fr; }
    .whyus-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .result-grid { grid-template-columns: 1fr; }
    .energy-grid { grid-template-columns: repeat(2,1fr); }
    .energy-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.15); padding: 20px; }
    .subsidy-steps { flex-direction: column; align-items: flex-start; }
    .subsidy-steps .arrow { transform: rotate(90deg); }
    .steps-grid { grid-template-columns: 1fr; }
}
@media (max-width: 576px) {
    .container { width: 95%; }
    .hero-slider { min-height: 550px; }
    .slide-content { padding-top: 70px; }
    .slide-stats { flex-wrap: wrap; gap: 12px; }
    .slide-btns { flex-direction: column; align-items: center; width: 100%; }
    .slide-btns a { width: 100%; justify-content: center; }
    .gallery-masonry { grid-template-columns: 1fr; }
    .brands-grid { grid-template-columns: 1fr; }
    .chatbot-window { width: calc(100vw - 30px); right: 15px; }
    .about-stats-grid { grid-template-columns: repeat(2,1fr); }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .subsidy-cta .btn-primary, .subsidy-cta .btn-whatsapp { width: 100%; display: block; text-align: center; }
    .slider-dots { right: 50%; transform: translateX(50%); }
    .energy-grid { grid-template-columns: 1fr; }
    .testi-card { min-width: 100%; }
}

/* ─── UTILITIES ─────────────────────────────────────────────── */
.stars { color: var(--gold); font-size: .82rem; }
.site-notification {
    position: fixed; bottom: 24px; left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--green); color: var(--white);
    padding: 14px 28px; border-radius: 50px;
    display: flex; align-items: center; gap: 10px;
    font-weight: 700; font-size: .92rem;
    box-shadow: 0 8px 30px rgba(0,0,0,.25);
    z-index: 10000;
    transition: transform .4s cubic-bezier(.34,1.56,.64,1);
    white-space: nowrap;
    font-family: 'Space Grotesk', sans-serif;
}
.site-notification.error { background: #f44336; }
.typing-dot {
    display: inline-block; width: 8px; height: 8px;
    background: var(--blue); border-radius: 50%;
    margin: 0 2px;
    animation: typingBounce 1.2s ease-in-out infinite;
}
.typing-dot:nth-child(2) { animation-delay: .2s; }
.typing-dot:nth-child(3) { animation-delay: .4s; }
@keyframes typingBounce {
    0%,60%,100% { transform: translateY(0); }
    30%          { transform: translateY(-8px); }
}
.header-main.scrolled .navbar { padding: 10px 0; }
.nav-item .fa-chevron-down { font-size: .65rem; transition: transform .3s ease; }
.dropdown:hover .nav-item .fa-chevron-down { transform: rotate(180deg); }
@keyframes revealCard {
    from { opacity: 0; transform: scale(.95) translateY(16px); }
    to   { opacity: 1; transform: scale(1)   translateY(0); }
}
@keyframes particleFloat {
    0%,100% { transform: translateY(0) scale(1); opacity: .6; }
    50%      { transform: translateY(-40px) scale(1.3); opacity: 1; }
}
.service-card .hover-details {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    border-radius: var(--radius);
    padding: 28px;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    opacity: 0; transition: opacity 0.4s ease; z-index: 5;
    color: white; text-align: center; backdrop-filter: blur(2px);
}
.service-card:hover .hover-details { opacity: 1; }
.service-card .hover-details ul {
    text-align: left; margin-top: 15px; list-style: disc; color: rgba(255,255,255,.95); font-size: 0.85rem;
}
.service-card .hover-details ul li { margin-bottom: 8px; }
.service-card .hover-details i { font-size: 2rem; margin-bottom: 12px; color: var(--orange-light); }

/* Print styles */
@media print {
    .preloader, .cursor-dot, .cursor-ring, .scroll-progress,
    .whatsapp-float, .chatbot-btn, .chatbot-window, .scroll-top,
    .mobile-menu, .mobile-overlay, .slider-arrow, .slider-dots { display: none !important; }
    body { font-size: 12pt; }
    .hero-slider { height: auto; min-height: unset; }
    section { padding: 30px 0; break-inside: avoid; }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
    .trust-track { animation: none; }
    .slide-bg { transform: none !important; }
}
:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 3px;
    border-radius: 4px;
}
::selection { background: rgba(21,101,192,.25); color: var(--text); }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-light); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--blue-dark); }