/* =========================================================
   ZENNIA — Stylesheet
   Brand tokens carried over from the previous site; layout,
   components and interactions rebuilt from scratch.
   ========================================================= */

:root {
    --primary: #0056b3;
    --primary-light: #3385ff;
    --primary-dark: #003d82;
    --secondary: #000a1f;
    --accent: #00a8ff;

    --bg-main: #f8f9fc;
    --bg-card: #ffffff;
    --bg-dark: #0a0f1c;
    --bg-darker: #050810;

    --text-main: #333333;
    --text-muted: #666666;
    --text-light: #f0f0f0;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition: all 0.3s ease;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 24px 48px rgba(0, 61, 130, 0.12);

    --radius-sm: 8px;
    --radius: 16px;
    --radius-lg: 26px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Anchor targets should land below the fixed header, not underneath it */
#home, #about, #divisions, #products {
    scroll-margin-top: 100px;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background: var(--bg-main);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    color: var(--secondary);
    line-height: 1.2;
}

p {
    color: var(--text-muted);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    display: block;
    max-width: 100%;
}

button {
    font-family: var(--font-body);
    cursor: pointer;
    border: none;
    background: none;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.section-subtitle {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: var(--accent);
    margin-bottom: 14px;
}

.section-title {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 640px;
}

.text-center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.text-center .section-desc {
    margin-left: auto;
    margin-right: auto;
}

.section-header {
    margin-bottom: 56px;
}

.text-center.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.text-center .section-title {
    width: 100%;
}

.text-gradient {
    background: linear-gradient(120deg, var(--primary), var(--accent), var(--primary-light));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradientShift 6s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% center; }
    50% { background-position: 100% center; }
    100% { background-position: 0% center; }
}

.badge {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.4px;
}

/* ---------------- Buttons ---------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 999px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(0, 86, 179, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 86, 179, 0.42);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-outline-dark {
    border: 2px solid rgba(0, 10, 31, 0.15);
    color: var(--secondary);
    background: transparent;
}

.btn-outline-dark:hover {
    background: rgba(0, 10, 31, 0.05);
}

.btn-light {
    background: #ffffff;
    color: var(--primary-dark);
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

.btn-lg {
    padding: 16px 34px;
    font-size: 1rem;
}

/* ---------------- Header ---------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 22px 0;
    transition: transform 0.35s ease, background 0.25s ease, padding 0.25s ease, box-shadow 0.25s ease;
}

.site-header.header-hidden {
    transform: translateY(-100%);
}

.site-header.scrolled {
    padding: 14px 0;
    background: rgba(248, 249, 252, 0.85);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-img {
    height: 150px;
    max-width: 160%;
    object-fit: contain;
    transform: translateX(-35px);
    
}

.main-nav .nav-list {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.98rem;
    color: var(--secondary);
    position: relative;
    padding: 6px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-item-products {
    position: relative;
}

.nav-caret {
    font-size: 0.7rem;
    margin-left: 5px;
    padding: 8px 4px;
    transition: transform 0.25s ease;
    cursor: pointer;
}

.nav-item-products.active .nav-caret {
    transform: rotate(180deg);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-quote {
    padding: 11px 24px;
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 26px;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--secondary);
    border-radius: 2px;
    transition: var(--transition);
}

.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);
}

/* ---------------- Mega Menu ---------------- */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 86, 179, 0.08);
    box-shadow: 0 30px 60px rgba(0, 10, 31, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    max-height: 80vh;
    overflow-y: auto;
}

.mega-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-inner {
    padding: 36px 24px 44px;
}

.mega-menu-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 22px;
    flex-wrap: wrap;
    gap: 10px;
}

.mega-menu-header h3 {
    font-size: 1.6rem;
}

.mega-view-all {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.mega-view-all i {
    transition: transform 0.25s ease;
}

.mega-view-all:hover i {
    transform: translateX(4px);
}

.mega-category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 26px;
}

.mega-tab {
    padding: 8px 18px;
    border-radius: 999px;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.88rem;
    color: var(--text-muted);
    background: var(--bg-main);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.mega-tab:hover {
    color: var(--primary);
}

.mega-tab.active {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

.mega-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
}

.mega-product-card {
    text-align: left;
    background: var(--bg-card);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.mega-product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 86, 179, 0.15);
}

.mega-product-img {
    width: 100%;
    height: 100px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.mega-product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
    transition: transform 0.4s ease;
}

.mega-product-card:hover .mega-product-img img {
    transform: scale(1.06);
}

.mega-product-info {
    padding: 10px 12px 14px;
}

.mega-product-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 2px;
}

.catalog-card-category {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--accent);
}

.product-tag {
    position: absolute;
    top: 8px;
    right: 8px;
    background: var(--secondary);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 999px;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

/* ---------------- Mobile Nav Drawer ---------------- */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(340px, 86vw);
    height: 100vh;
    background: #ffffff;
    z-index: 1100;
    padding: 100px 30px 40px;
    transition: right 0.35s ease;
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
}

.mobile-nav.open {
    right: 0;
}

.mobile-nav-list li {
    margin-bottom: 6px;
}

.mobile-nav-list a,
.mobile-products-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 4px;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.05rem;
    color: var(--secondary);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    width: 100%;
}

.mobile-products-toggle i {
    transition: transform 0.25s ease;
    font-size: 0.8rem;
}

.mobile-products-toggle.open i {
    transform: rotate(180deg);
}

.mobile-products-panel {
    display: none;
    flex-direction: column;
    padding-left: 12px;
}

.mobile-products-panel.open {
    display: flex;
}

.mobile-products-panel a {
    border-bottom: none;
    padding: 10px 4px;
    font-size: 0.92rem;
    font-weight: 400;
    color: var(--text-muted);
}

.mobile-products-panel a:hover {
    color: var(--primary);
}

/* ---------------- Hero ---------------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 190px;
    padding-bottom: 48px;
    background: linear-gradient(180deg, #ffffff 0%, var(--bg-main) 100%);
    overflow: hidden;
    isolation: isolate;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

/* Hero background slideshow */
.hero-bg-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 0.8s ease, transform 3s ease;
}

.hero-bg-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.94) 0%, rgba(248, 249, 252, 0.9) 42%, rgba(0, 86, 179, 0.28) 100%);
}

.hero-inner-solo {
    grid-template-columns: 1fr;
}

.hero-inner-solo .hero-copy {
    max-width: 760px;
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.05;
    background-image:
        linear-gradient(rgba(0, 86, 179, 0.8) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 86, 179, 0.8) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
}

.hero-grid-overlay.subtle {
    opacity: 0.04;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(110px);
    opacity: 0.28;
    z-index: 0;
}

.glow-a {
    width: 560px;
    height: 560px;
    background: var(--accent);
    top: -140px;
    right: -140px;
    animation: floatGlow 6s ease-in-out infinite;
}

.glow-b {
    width: 460px;
    height: 460px;
    background: var(--primary);
    bottom: -120px;
    left: -120px;
    animation: floatGlow 7s ease-in-out infinite reverse;
}

@keyframes floatGlow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(36px, -26px); }
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 40px;
}

.hero-title {
    font-size: 3.6rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin: 18px 0 14px;
}

.hero .badge {
    background: rgba(0, 86, 179, 0.08);
    color: var(--primary-dark);
    border: 1px solid rgba(0, 86, 179, 0.15);
}

.hero-subtitle {
    font-size: 1.12rem;
    color: var(--text-muted);
    max-width: 540px;
    margin-bottom: 22px;
}

.hero-actions {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.hero-actions .btn-primary {
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 4px 16px rgba(0, 86, 179, 0.3); }
    50% { box-shadow: 0 8px 30px rgba(0, 168, 255, 0.5); }
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-muted);
    font-family: var(--font-heading);
}

.hero-trust-item i {
    color: var(--accent);
}

/* Hero visual — floating product stack */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
}

.hero-float-stack {
    position: relative;
    width: 100%;
    max-width: 380px;
    height: 380px;
}

.hero-visual-ring {
    position: absolute;
    inset: 20px;
    border: 1px dashed rgba(0, 86, 179, 0.25);
    border-radius: 50%;
    animation: spinSlow 40s linear infinite;
}

@keyframes spinSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.float-card {
    position: absolute;
    width: 190px;
    height: 190px;
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow-lg);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.float-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.28s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: perspective(600px) rotateY(0deg) scale(1);
}

.float-card img.swap-out {
    opacity: 0;
    transform: perspective(600px) rotateY(70deg) scale(0.7);
}

.float-card img.swap-in {
    opacity: 1;
    animation: swapInPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes swapInPop {
    0% { transform: perspective(600px) rotateY(-70deg) scale(0.7); opacity: 0; }
    100% { transform: perspective(600px) rotateY(0deg) scale(1); opacity: 1; }
}

.card-1 {
    top: 0;
    left: 10%;
    animation: floatCard 7s ease-in-out infinite;
}

.card-2 {
    bottom: 30px;
    right: 0;
    width: 170px;
    height: 170px;
    animation: floatCard 8s ease-in-out infinite 1s;
}

.card-3 {
    bottom: 0;
    left: 0;
    width: 150px;
    height: 150px;
    animation: floatCard 9s ease-in-out infinite 0.4s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-16px); }
}

/* ---------------- Trust Badges Strip (deliberately not card/button styled) ---------------- */
.trust-badges-strip {
    padding: 0 0 100px;
    position: relative;
    z-index: 2;
}

.trust-badges-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    background: linear-gradient(180deg, #ffffff, var(--bg-main));
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 40px 34px;
    margin-top: 50px;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    cursor: default;
}

.trust-badge-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-badge-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.trust-badge-text h3 {
    font-size: 1rem;
    line-height: 1.25;
    margin-bottom: 3px;
}

.trust-badge-text p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.trust-badge-divider {
    width: 1px;
    align-self: stretch;
    background: rgba(15, 23, 42, 0.08);
    margin: 0 22px;
}

@media (max-width: 900px) {
    .trust-badges-grid {
        flex-wrap: wrap;
        row-gap: 26px;
        padding: 32px 24px;
    }
    .trust-badge-item {
        flex: 1 1 40%;
        min-width: 200px;
    }
    .trust-badge-divider {
        display: none;
    }
}

@media (max-width: 520px) {
    .trust-badge-item {
        flex: 1 1 100%;
    }
}

/* ---------------- Why-Us Feature Carousel ---------------- */
.why-us-section {
    padding-top: 40px;
}

.feature-carousel {
    display: flex;
    align-items: center;
    gap: 18px;
}

.feature-arrow {
    flex: 0 0 auto;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(0, 86, 179, 0.15);
    background: #ffffff;
    color: var(--primary);
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-arrow:hover {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.feature-carousel-viewport {
    flex: 1;
    overflow: hidden;
}

.feature-carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}

.feature-slide {
    flex: 0 0 100%;
    text-align: center;
    padding: 10px 40px 6px;
}

@media (min-width: 860px) {
    .feature-slide {
        flex: 0 0 25%;
        padding: 10px 22px 6px;
    }
}

.feature-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-md);
}

.feature-slide h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--secondary);
}

.feature-slide p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.feature-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}

.feature-carousel-dots span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(0, 86, 179, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.feature-carousel-dots span.active {
    background: var(--primary);
    width: 24px;
    border-radius: 5px;
}

/* ---------------- Counter Stats Section ---------------- */
.counter-stats-section {
    position: relative;
    padding: 70px 0;
    background: linear-gradient(120deg, var(--primary-dark), var(--primary), var(--accent));
    background-size: 220% 220%;
    animation: gradientShift 14s ease infinite;
    overflow: hidden;
}

.counter-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.35;
    z-index: 0;
    pointer-events: none;
}

.counter-glow-a {
    width: 420px;
    height: 420px;
    background: #ffffff;
    top: -180px;
    left: -100px;
    animation: floatGlow 8s ease-in-out infinite;
}

.counter-glow-b {
    width: 380px;
    height: 380px;
    background: var(--accent);
    bottom: -160px;
    right: -80px;
    animation: floatGlow 9s ease-in-out infinite reverse;
}

.counter-orbit-ring {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.counter-orbit-ring.ring-1 {
    width: 640px;
    height: 640px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: spinSlow 40s linear infinite;
}

.counter-orbit-ring.ring-2 {
    width: 460px;
    height: 460px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-style: dashed;
    animation: spinSlow 55s linear infinite reverse;
}

.live-badge {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto 34px;
    padding: 7px 16px;
    width: fit-content;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.4px;
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3ddc84;
    box-shadow: 0 0 0 rgba(61, 220, 132, 0.6);
    animation: liveDotPulse 1.6s ease-out infinite;
}

@keyframes liveDotPulse {
    0% { box-shadow: 0 0 0 0 rgba(61, 220, 132, 0.6); }
    70% { box-shadow: 0 0 0 9px rgba(61, 220, 132, 0); }
    100% { box-shadow: 0 0 0 0 rgba(61, 220, 132, 0); }
}

.counter-stats-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.counter-stat-block {
    display: flex;
    align-items: center;
    gap: 18px;
    justify-content: flex-start;
}

.counter-stat-icon {
    flex: 0 0 auto;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
}

.counter-stat-block h3 {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 800;
    margin: 0;
    line-height: 1;
}

.counter-stat-block h3 span {
    display: inline-block;
    transition: color 0.3s ease, transform 0.3s ease;
}

.counter-stat-block h3 span.tick-up {
    animation: tickFlash 0.6s ease;
}

@keyframes tickFlash {
    0% { color: #3ddc84; transform: translateY(-3px) scale(1.08); }
    100% { color: #fff; transform: translateY(0) scale(1); }
}

.counter-stat-block p {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    margin: 4px 0 0;
    font-family: var(--font-heading);
}

@media (max-width: 720px) {
    .counter-stats-grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }
}

/* ---------------- About ---------------- */
.about-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 60px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-visual-card {
    background: linear-gradient(145deg, #eef4ff, #ffffff);
    border-radius: var(--radius-lg);
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.about-visual-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 86, 179, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 86, 179, 0.06) 1px, transparent 1px);
    background-size: 34px 34px;
}

.about-logo-mark {
    width: 78%;
    height: auto;
    object-fit: cover;
    position: relative;
    border-radius: 20px;
    z-index: 1;
    filter: drop-shadow(0 15px 30px rgba(0, 86, 179, 0.25));
}

.about-badge {
    position: absolute;
    bottom: -24px;
    right: -18px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    padding: 20px 26px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.about-badge .number {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
}

.about-badge .text {
    font-size: 0.78rem;
    opacity: 0.85;
}

.lead-text {
    font-size: 1.15rem;
    color: var(--secondary);
    font-weight: 500;
    margin-bottom: 16px;
}

.about-copy p {
    margin-bottom: 14px;
}

.about-features {
    margin: 24px 0 30px;
}

.about-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--text-main);
}

.about-features i {
    color: var(--accent);
    margin-top: 4px;
}

/* ---------------- Divisions (Bento) ---------------- */
.bg-dark-section {
    background: var(--bg-darker);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.bg-dark-section .section-desc,
.bg-dark-section p {
    color: rgba(240, 240, 240, 0.65);
}

.bg-dark-section h3 {
    color: #ffffff;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 22px;
    position: relative;
    z-index: 1;
}

.bento-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.bento-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(260px circle at var(--mx, 50%) var(--my, 50%), rgba(0, 168, 255, 0.16), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.bento-card:hover::before {
    opacity: 1;
}

.bento-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 168, 255, 0.25);
}

.bento-large {
    grid-column: span 2;
    grid-row: span 2;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.bento-img {
    position: relative;
    height: 220px;
    overflow: hidden;
    border-radius: var(--radius) var(--radius) 0 0;
}

.bento-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bento-card:hover .bento-img img {
    transform: scale(1.06);
}

.bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(5, 8, 16, 0.85), transparent 60%);
}

.bento-content {
    padding: 26px 30px 30px;
}

.bento-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.bento-icon.standalone {
    margin-top: 4px;
}

.bento-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.bento-card p {
    font-size: 0.92rem;
}

.bento-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--accent);
    font-size: 0.9rem;
}

.bento-link i {
    transition: transform 0.25s ease;
}

.bento-link:hover i {
    transform: translateX(4px);
}

/* ---------------- Products Catalogue ---------------- */
.tab-pill-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 44px;
}

.tab-pill {
    padding: 10px 22px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.92rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.tab-pill:hover {
    color: var(--primary);
    border-color: rgba(0, 86, 179, 0.25);
}

.tab-pill.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 6px 16px rgba(0, 86, 179, 0.25);
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 26px;
}

.catalog-card {
    text-align: left;
    background: #ffffff;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.catalog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 86, 179, 0.15);
}

.catalog-card-img {
    height: 170px;
    background: linear-gradient(145deg, #f3f6fc, #ffffff);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.catalog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 16px;
    transition: transform 0.4s ease;
}

.catalog-card:hover .catalog-card-img img {
    transform: scale(1.07);
}

.catalog-card-info {
    padding: 18px 20px 22px;
}

.catalog-card-info h4 {
    font-size: 1.05rem;
    margin-top: 4px;
    margin-bottom: 8px;
}

.catalog-card-info p {
    font-size: 0.88rem;
}

/* ---------------- CTA Banner ---------------- */
.cta-banner {
    background: linear-gradient(120deg, var(--primary-dark), var(--primary), var(--accent));
    padding: 70px 0;
}

.cta-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cta-banner-inner h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 8px;
}

.cta-banner-inner p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 480px;
}

/* ---------------- Footer ---------------- */

.site-footer {
    background: var(--bg-darker);
    color: var(--text-light);
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo-img {
    height: auto;
    max-width: 68%;
    background: #ffffff;
    border-radius: 50%;
    padding: 18px 34px;
    margin-bottom: 30px;
}

.footer-brand p {
    color: rgba(240, 240, 240, 0.6);
    font-size: 0.92rem;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4,
.footer-cta h4 {
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: rgba(240, 240, 240, 0.62);
    font-size: 0.92rem;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--accent);
}

.contact-info li {
    color: rgba(240, 240, 240, 0.75);
    font-size: 0.92rem;
    margin-bottom: 8px;
}

.contact-info li i {
    color: var(--accent);
    margin-right: 8px;
    width: 16px;
}

.contact-name {
    color: #fff !important;
    font-weight: 600;
    font-family: var(--font-heading);
}

.footer-cta p {
    color: rgba(240, 240, 240, 0.6);
    font-size: 0.9rem;
    margin-bottom: 18px;
}

.footer-bottom {
    padding: 22px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(240, 240, 240, 0.45);
    font-size: 0.85rem;
}
/* ---------------- Product Detail Modal ---------------- */
.product-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 24px;
}

.product-modal.open {
    opacity: 1;
    visibility: visible;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 10, 31, 0.65);
    backdrop-filter: blur(6px);
}

.modal-panel {
    position: relative;
    background: #ffffff;
    border-radius: var(--radius-lg);
    max-width: 780px;
    width: 100%;
    max-height: 86vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    transform: translateY(20px) scale(0.98);
    transition: transform 0.3s ease;
}

.product-modal.open .modal-panel {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 10, 31, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    z-index: 5;
    transition: var(--transition);
}

.modal-close:hover {
    background: rgba(0, 10, 31, 0.12);
    transform: rotate(90deg);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
}

.modal-product-img {
    background: linear-gradient(145deg, #f3f6fc, #ffffff);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    min-height: 320px;
}

.modal-product-img img {
    width: 100%;
    max-height: 260px;
    object-fit: contain;
}

.modal-product-info {
    padding: 40px 40px 40px 30px;
}

.modal-product-info h3 {
    font-size: 1.6rem;
    margin: 8px 0 14px;
}

.modal-product-info p {
    margin-bottom: 20px;
}

.modal-spec-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--text-main);
    margin-bottom: 10px;
}

.modal-spec-list i {
    color: var(--accent);
    margin-top: 3px;
}

.modal-actions {
    display: flex;
    gap: 14px;
    margin-top: 26px;
    flex-wrap: wrap;
}

/* ---------------- Quote Page ---------------- */
.quote-page-header {
    position: relative;
    padding: 118px 0 20px;
    text-align: center;
    background: linear-gradient(180deg, #ffffff 0%, var(--bg-main) 100%);
    overflow: hidden;
}

.quote-page-header h1 {
    font-size: 2.3rem;
    font-weight: 800;
    margin: 14px 0 10px;
}

.quote-page-header p {
    max-width: 520px;
    margin: 0 auto;
    font-size: 0.95rem;
}

.quote-section {
    padding-top: 20px;
}

.quote-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}

.quote-form-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 30px 36px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--secondary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 11px 16px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--bg-main);
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(0, 86, 179, 0.1);
}

.phone-input-group {
    display: flex;
    align-items: stretch;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: var(--bg-main);
    overflow: hidden;
    transition: var(--transition);
}

.phone-input-group:focus-within {
    border-color: var(--primary);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(0, 86, 179, 0.1);
}

.phone-prefix {
    display: flex;
    align-items: center;
    padding: 0 12px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--secondary);
    background: rgba(0, 0, 0, 0.04);
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    white-space: nowrap;
}

.phone-input-group input {
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    flex: 1;
}

.phone-input-group input:focus {
    outline: none;
}

.char-counter {
    display: block;
    text-align: right;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 6px;
}

.char-counter.char-counter-warn {
    color: #e0972e;
}

.char-counter.char-counter-limit {
    color: #d64545;
    font-weight: 600;
}

.field-error {
    display: block;
    min-height: 18px;
    font-size: 0.8rem;
    color: #d64545;
    margin-top: 6px;
}

.field-error:empty {
    margin-top: 0;
}

.form-group input.field-invalid,
.form-group textarea.field-invalid,
.phone-input-group.field-invalid {
    border-color: #d64545 !important;
}

.field-error-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.field-error-row .field-error {
    flex: 1;
}

.field-error-row .char-counter {
    flex-shrink: 0;
    margin-top: 6px;
}

.btn-submit {
    width: 100%;
    margin-top: 8px;
}

.quote-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.quote-side-card {
    background: #ffffff;
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow-sm);
}

.quote-side-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    font-size: 1.1rem;
}

.quote-side-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.quote-side-card p {
    font-size: 0.9rem;
}

.quote-contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--text-main);
    margin-bottom: 12px;
}

.quote-contact-list li span {
    color: var(--text-muted);
    font-size: 0.82rem;
}

.quote-contact-list i {
    color: var(--primary);
    width: 16px;
}

/* =========================================================
   Responsive
   ========================================================= */
/* ---------------- Decorative section backgrounds ---------------- */
.about-section,
.products-section {
    position: relative;
    overflow: hidden;
}

.about-section::before,
.products-section::before {
    content: '';
    position: absolute;
    top: -160px;
    right: -160px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 168, 255, 0.14), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.about-section::after,
.products-section::after {
    content: '';
    position: absolute;
    bottom: -180px;
    left: -180px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 86, 179, 0.10), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.about-section .container,
.products-section .container {
    position: relative;
    z-index: 1;
}

.brand-partners-section {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f2f6fd 100%);
}

/* ---------------- Brand Partners ---------------- */
.brand-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
}

.brand-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    background: #ffffff;
    border-radius: var(--radius);
    padding: 32px 18px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 86, 179, 0.08);
    overflow: hidden;
    transition: var(--transition);
}

.brand-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(220px circle at var(--mx, 50%) var(--my, 50%), rgba(0, 168, 255, 0.14), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.brand-card:hover::before {
    opacity: 1;
}

.brand-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 86, 179, 0.2);
}

.brand-icon {
    width: 120px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.brand-icon img {
    max-width: 100%;
    max-height: 70px;
    object-fit: contain;
}

.brand-card h3 {
    font-size: 1.1rem;
}

.brand-card p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-muted);
}

/* ---------------- Products teaser ---------------- */
.products-teaser-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-bottom: 40px;
}

.products-teaser-cta {
    display: flex;
    justify-content: center;
}

/* ---------------- Chatbot Widget ---------------- */
.chat-widget-toggle {
    position: fixed;
    right: 26px;
    bottom: 26px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #ffffff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 14px 30px rgba(0, 86, 179, 0.35);
    z-index: 1400;
    transition: var(--transition);
}

.chat-robot {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.chat-widget-toggle:hover {
    transform: scale(1.08);
}

.chat-widget-toggle .fa-times {
    display: none;
}

.chat-widget-toggle.open .chat-robot {
    display: none;
}

.chat-widget-toggle.open .fa-times {
    display: block;
}

.chat-widget-panel {
    position: fixed;
    right: 26px;
    bottom: 100px;
    width: 340px;
    max-width: calc(100vw - 40px);
    height: 460px;
    max-height: calc(100vh - 150px);
    background: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 1399;
    opacity: 0;
    transform: translateY(20px) scale(0.96);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.chat-widget-panel.open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

/* ---------------- WhatsApp floating button (sits above the chatbot icon) ---------------- */
.whatsapp-float-btn {
    position: fixed;
    right: 29px;
    bottom: 100px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 29px;
    box-shadow: 0 14px 30px rgba(37, 211, 102, 0.4);
    z-index: 1401;
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-float-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 16px 34px rgba(37, 211, 102, 0.55);
}

.whatsapp-float-btn.hidden {
    display: none;
}

/* ---------------- Chat greeting bubble ---------------- */
.chat-greeting-bubble {
    position: fixed;
    right: 100px;
    bottom: 34px;
    max-width: 300px;
    background: #ffffff;
    color: #1a1a1a;
    padding: 12px 14px 12px 16px;
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    z-index: 1398;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    animation: chatGreetingPop 0.5s ease 1s both;
}

.chat-greeting-bubble p {
    margin: 0;
    line-height: 1.4;
    white-space: nowrap;
    flex: 1;
}

.chat-greeting-bubble::after {
    content: '';
    position: absolute;
    right: 16px;
    bottom: -8px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #ffffff;
}

.chat-greeting-close {
    flex-shrink: 0;
    background: transparent;
    border: none;
    font-size: 16px;
    line-height: 1;
    color: #888;
    cursor: pointer;
    padding: 2px 4px;
    margin: -2px -4px 0 0;
}

.chat-greeting-close:hover {
    color: #333;
}

.chat-greeting-bubble.hidden {
    display: none;
}

@keyframes chatGreetingPop {
    from { opacity: 0; transform: translateY(8px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 480px) {
    .whatsapp-float-btn { right: 19px; bottom: 92px; width: 50px; height: 50px; font-size: 24px; }
    .chat-widget-toggle { right: 16px; bottom: 18px; width: 50px; height: 50px; font-size: 1.25rem; }
    .chat-robot { width: 30px; height: 30px; }
    .chat-greeting-bubble {
        right: 76px;
        bottom: 20px;
        max-width: 200px;
        font-size: 13px;
        padding: 10px 12px 10px 14px;
    }
    .chat-greeting-bubble p {
        white-space: normal;
    }
    .chat-greeting-bubble::after {
        right: -7px;
        bottom: 14px;
        border-top: 7px solid transparent;
        border-bottom: 7px solid transparent;
        border-left: 7px solid #ffffff;
    }

    .logo-img {
        height: 64px;
        max-width: 100%;
        transform: none;
    }

    .brand-grid {
        gap: 16px;
    }

    .brand-card {
        padding: 22px 12px;
    }

    .brand-icon {
        width: 100px;
        height: 64px;
        margin-bottom: 14px;
    }

    .brand-icon img {
        max-height: 56px;
    }
}

.chat-widget-header {
    background: linear-gradient(120deg, var(--primary-dark), var(--primary));
    color: #fff;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-widget-header img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff;
    padding: 4px;
}

.chat-widget-header h4 {
    color: #fff;
    font-size: 0.98rem;
    margin: 0;
}

.chat-widget-header span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.75);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.chat-online-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #3ddc84;
    display: inline-block;
    animation: liveDotPulse 1.6s ease-out infinite;
}

.chat-widget-close {
    margin-left: auto;
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.chat-widget-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.chat-widget-body {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: var(--bg-main);
}

.chat-msg {
    max-width: 82%;
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 0.88rem;
    line-height: 1.45;
    animation: chatMsgIn 0.25s ease;
}

@keyframes chatMsgIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.chat-msg-time {
    display: block;
    font-size: 0.68rem;
    margin-top: 4px;
    opacity: 0.6;
}

.chat-msg.bot .chat-msg-time {
    color: var(--text-muted);
}

.chat-msg.user .chat-msg-time {
    color: rgba(255, 255, 255, 0.8);
    text-align: right;
}

.chat-typing {
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 12px 16px;
    border-radius: 14px;
    border-bottom-left-radius: 4px;
    background: #ffffff;
    border: 1px solid rgba(0, 86, 179, 0.1);
}

.chat-typing span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.5;
    animation: typingBounce 1.1s ease-in-out infinite;
}

.chat-typing span:nth-child(2) { animation-delay: 0.15s; }
.chat-typing span:nth-child(3) { animation-delay: 0.3s; }

@keyframes typingBounce {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
    30% { transform: translateY(-4px); opacity: 1; }
}

.chat-msg.bot {
    align-self: flex-start;
    background: #ffffff;
    border: 1px solid rgba(0, 86, 179, 0.1);
    color: var(--text-main);
    border-bottom-left-radius: 4px;
}

.chat-msg.user {
    align-self: flex-end;
    background: linear-gradient(120deg, var(--primary), var(--primary-dark));
    color: #fff;
    border-bottom-right-radius: 4px;
}

.chat-quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 16px 12px;
    background: var(--bg-main);
}

.chat-quick-btn {
    font-size: 0.78rem;
    padding: 7px 12px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(0, 86, 179, 0.25);
    color: var(--primary);
    font-weight: 500;
    transition: var(--transition);
}

.chat-quick-btn:hover {
    background: var(--primary);
    color: #fff;
}

.chat-heart-btn {
    align-self: flex-start;
    font-size: 1.6rem;
    line-height: 1;
    padding: 10px 16px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(214, 51, 108, 0.3);
    cursor: pointer;
    transition: var(--transition);
    animation: heartPulse 1.4s ease-in-out infinite;
}

.chat-heart-btn:hover {
    transform: scale(1.12);
    background: #fff0f4;
}

.chat-heart-btn:disabled {
    cursor: default;
    animation: none;
    opacity: 0.6;
}

@keyframes heartPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.chat-widget-input {
    display: flex;
    gap: 8px;
    padding: 12px 14px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    background: #fff;
}

.chat-widget-input input {
    flex: 1;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 999px;
    padding: 10px 16px;
    font-size: 0.88rem;
    font-family: var(--font-body);
}

.chat-widget-input input:focus {
    outline: none;
    border-color: var(--primary);
}

.chat-widget-input button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}


@media (max-width: 992px) {
    .main-nav {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-copy {
        order: 1;
    }

    .hero-visual {
        order: 0;
        min-height: 320px;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions,
    .hero-trust {
        justify-content: center;
    }

    .brand-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    @media (max-width: 480px) {
        .brand-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    .products-teaser-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-visual {
        max-width: 420px;
        margin: 0 auto;
    }

    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .quote-layout {
        grid-template-columns: 1fr;
    }

    .modal-body {
        grid-template-columns: 1fr;
    }

    .modal-product-img {
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        min-height: 220px;
    }
}

@media (max-width: 640px) {
    .section {
        padding: 70px 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 1.9rem;
    }

    .logo-img {
        height: 64px;
        max-width: 100%;
        transform: none;
    }

    .hero {
        padding-top: 140px;
        padding-bottom: 40px;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-large {
        grid-column: span 1;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cta-banner-inner {
        text-align: center;
        justify-content: center;
    }

    .mega-menu-inner {
        padding: 26px 20px 34px;
    }

    .mega-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .quote-form-card {
        padding: 28px;
    }

    .quote-page-header h1 {
        font-size: 2.1rem;
    }
}

/* ---------------- Brand Landing Pages (acer.html, exide.html, etc.) ---------------- */
.brand-hero-logo-wrap {
    width: 130px;
    height: 92px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 86, 179, 0.08);
    padding: 14px 20px;
}

.brand-hero-logo-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.brand-hero-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.brand-hero-back {
    margin-top: 24px;
}

.brand-hero-back a {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: none;
}

.brand-hero-back a:hover {
    color: var(--primary, #0056b3);
}

.other-brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

/* ---------------- Brand FAQ (SEO + user trust) ---------------- */
.brand-faq {
    max-width: 780px;
    margin: 0 auto;
}

.brand-faq details {
    background: #ffffff;
    border: 1px solid rgba(0, 86, 179, 0.08);
    border-radius: var(--radius);
    padding: 18px 22px;
    margin-bottom: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.brand-faq details[open] {
    border-color: rgba(0, 86, 179, 0.2);
}

.brand-faq summary {
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
}

.brand-faq summary::-webkit-details-marker {
    display: none;
}

.brand-faq summary::after {
    content: '+';
    flex-shrink: 0;
    font-size: 1.3rem;
    line-height: 1;
    color: var(--primary, #0056b3);
    transition: transform 0.2s ease;
}

.brand-faq details[open] summary::after {
    content: '\2212';
}

.brand-faq .faq-answer {
    margin-top: 12px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
}

@media (max-width: 900px) {
    .other-brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .brand-hero-logo-wrap {
        width: 110px;
        height: 78px;
    }
}

@media (max-width: 520px) {
    .other-brands-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------------- Proof of Deployment (acer.html) ---------------- */
.deployment-proof-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 28px;
    align-items: stretch;
}

.deployment-proof-photo {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: #000;
    min-height: 320px;
}

.deployment-proof-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.deployment-proof-quote {
    position: relative;
    border-radius: var(--radius);
    min-height: 320px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #fff;
    padding: 44px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 22px;
}

.quote-mark {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.35);
}

.quote-text {
    font-size: 1.3rem;
    line-height: 1.55;
    font-weight: 500;
    color: #fff;
}

.quote-attribution {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.quote-author {
    font-weight: 700;
    font-size: 1rem;
}

.quote-role {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 860px) {
    .deployment-proof-grid {
        grid-template-columns: 1fr;
    }
    .deployment-proof-photo,
    .deployment-proof-quote {
        min-height: 260px;
    }
    .deployment-proof-quote {
        padding: 34px 28px;
    }
    .quote-text {
        font-size: 1.15rem;
    }
}

/* ---------------- Field Work page (fieldwork.html) ---------------- */
.fieldwork-hero {
    padding: 118px 0 40px;
}

.fieldwork-gallery-section {
    padding-bottom: 70px;
}

.fieldwork-stats-section {
    padding-top: 0;
    padding-bottom: 70px;
}

.fieldwork-narrative-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

.fieldwork-locations-section {
    padding-top: 60px;
    padding-bottom: 70px;
}

.fieldwork-stats-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    background: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 34px 30px;
}

.fieldwork-stat-item {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1 1 220px;
    cursor: default;
}

.fieldwork-stat-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.fieldwork-stat-item h3 {
    font-size: 1.02rem;
    margin-bottom: 2px;
}

.fieldwork-stat-item p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.fieldwork-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 40px;
}

.fieldwork-narrative-section .section-subtitle {
    font-size: 1.7rem;
    letter-spacing: 0.5px;
    text-transform: none;
    font-weight: 700;
    color: var(--secondary);
}

.fieldwork-narrative-section .section-title {
    font-size: 1.5rem;
}

.fieldwork-process-step {
    background: #ffffff;
    border-radius: var(--radius);
    padding: 28px 24px;
    box-shadow: var(--shadow-sm);
}

.fieldwork-process-num {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: rgba(0, 86, 179, 0.18);
    margin-bottom: 10px;
}

.fieldwork-process-step h4 {
    font-size: 1.02rem;
    margin-bottom: 8px;
}

.fieldwork-process-step p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.fieldwork-gallery-featured {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 24px;
    margin-top: 40px;
}

.fieldwork-gallery-main,
.fieldwork-gallery-item,
.fieldwork-gallery-side {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    margin: 0;
    background: #000;
}

/* ---- Left featured slider (2 movable photos) ---- */
.fieldwork-slider {
    height: 560px;
}

.fieldwork-slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
}

.fieldwork-slide {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    margin: 0;
}

.fieldwork-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fieldwork-slide-img-contain {
    object-fit: contain !important;
    background: #000;
}

.fieldwork-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    z-index: 5;
    transition: background 0.25s ease, transform 0.25s ease;
}

.fieldwork-slider-arrow:hover {
    background: rgba(0, 0, 0, 0.75);
}

.fieldwork-slider-prev {
    left: 16px;
}

.fieldwork-slider-next {
    right: 16px;
}

.fieldwork-slider-dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.fieldwork-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
}

.fieldwork-slider-dot.active {
    background: #fff;
    transform: scale(1.25);
}

/* ---- Right side vertical slider (3 airport photos, up/down) ---- */
.fieldwork-slider-vertical {
    height: 560px;
}

.fieldwork-slider-track-vertical {
    flex-direction: column;
    width: 100%;
}

.fieldwork-slider-track-vertical .fieldwork-slide {
    flex: 0 0 50%;
    height: 50%;
    width: 100%;
}

.fieldwork-slider-up {
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
}

.fieldwork-slider-down {
    bottom: 16px;
    top: auto;
    left: 50%;
    transform: translateX(-50%);
}

.fieldwork-slider-dots-vertical {
    bottom: auto;
    top: 50%;
    left: auto;
    right: 16px;
    transform: translateY(-50%);
    flex-direction: column;
}

.fieldwork-gallery-main figcaption,
.fieldwork-gallery-item figcaption,
.fieldwork-slide figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 16px 20px;
    font-size: 0.92rem;
    color: #fff;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.75), transparent);
    z-index: 2;
}

.fieldwork-locations-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 10px;
}

.fieldwork-location-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 999px;
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--secondary);
    cursor: default;
}

.fieldwork-location-pill i {
    color: var(--primary);
}

@media (max-width: 900px) {
    .fieldwork-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .fieldwork-gallery-featured {
        grid-template-columns: 1fr;
    }
    .fieldwork-slider {
        height: 340px;
    }
}

@media (max-width: 520px) {
    .fieldwork-process-grid {
        grid-template-columns: 1fr;
    }
    .fieldwork-stats-row {
        padding: 26px 20px;
    }
}
/* ---------------- Thank You / Success Page ---------------- */
.success-icon-wrap {
    width: 84px;
    height: 84px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2fbf71, #22a35e);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 30px rgba(47, 191, 113, 0.35);
}

.success-icon-wrap i {
    color: #fff;
    font-size: 2rem;
}

.success-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 26px;
    flex-wrap: wrap;
}
