:root {
            /* ========= REPLACE THESE WITH EXACT EliteListen BRAND COLORS ========= */
            --primary: #0E76FD;
            /* Primary brand */
            --secondary: #0A2540;
            /* Headlines/Dark text */
            --accent: #00D3A7;
            /* Accent, highlights */
            --bg: #F7FAFE;
            /* Subtle page background */
            --surface: #FFFFFF;
            /* Card/section surface */
            --muted: #607693;
            /* Body text */
            --warning: #FFC857;
            /* Info badge */
            --success: #2BC787;
            --danger: #FF6B6B;
            --shadow: 0 10px 30px rgba(16, 42, 67, .08);
            --radius-xl: 22px;
            --radius-lg: 16px;
            --radius-md: 12px;
            --radius-sm: 8px;
            --container: 1200px;
        }

        * {
            box-sizing: border-box
        }

        html,
        body {
            margin: 0;
            padding: 0
        }

        body {
            font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
            color: var(--secondary);
            background: linear-gradient(180deg, var(--bg), #fff 18%, var(--bg) 100%);
        }

        /* Utility */
        .container {
            max-width: var(--container);
            margin-inline: auto;
            padding-inline: 20px
        }

        .grid {
            display: grid;
            gap: 24px
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            border: 0;
            border-radius: 9px;
            padding: 14px 20px;
            font-weight: 700;
            cursor: pointer;
            text-decoration: none;
            margin-right: 50px
        }

        .btn-primary {
            background: var(--primary);
            color: #fff;
            box-shadow: 0 8px 20px rgba(14, 118, 253, .22)
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary)
        }

        .btn-lg {
            padding: 16px 24px;
            font-size: 16px;
            border-radius: 999px
        }

        .chip {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border-radius: 999px;
            padding: 8px 12px;
            font-weight: 600;
            font-size: 12px;
            background: rgba(14, 118, 253, .08);
            color: var(--primary)
        }

        .card {
            background: var(--surface);
            box-shadow: var(--shadow);
            border-radius: var(--radius-lg)
        }

        .section {
            padding: 64px 0
        }

        .subtle {
            color: var(--muted)
        }

        .kpi {
            display: flex;
            align-items: center;
            gap: 12px
        }

        .kpi b {
            font-size: 28px
        }

        .tag {
            display: inline-block;
            padding: 6px 10px;
            border-radius: 999px;
            font-size: 12px;
            font-weight: 700
        }

        .tag-green {
            background: rgba(43, 199, 135, .12);
            color: var(--success)
        }

        .tag-blue {
            background: rgba(14, 118, 253, .12);
            color: var(--primary)
        }

        /* Header */
        .topbar {
            position: sticky;
            top: 0;
            z-index: 50;
            background: rgba(255, 255, 255, .86);
            backdrop-filter: saturate(140%) blur(10px);
            border-bottom: 1px solid #e8eef7
        }

        nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 70px
        }

        nav .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 900;
            font-size: 20px;
            letter-spacing: .2px
        }

        nav .logo img {
            width: 36px;
            height: 36px
        }

        nav ul {
            display: flex;
            gap: 22px;
            list-style: none;
            margin: 0;
            padding: 0
        }

        nav a {
            color: var(--secondary);
            text-decoration: none;
            font-weight: 600
        }

        .menu-btn {
            display: none
        }

        /* Hero */
        .hero {
            padding: 80px 0 40px
        }

        .hero-wrap {
            display: grid;
            grid-template-columns: 1.1fr .9fr;
            gap: 40px;
            align-items: center
        }

        .hero h1 {
            font-size: 52px;
            line-height: 1.05;
            margin: 12px 0 12px;
            letter-spacing: -0.2px
        }

        .hero p {
            font-size: 18px;
            line-height: 1.7;
            color: var(--muted);
            max-width: 60ch
        }

        .hero-visual {
            position: relative
        }

        .hero-visual .phone {
            width: 100%;
            aspect-ratio: 4/3;
            object-fit: cover;
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow)
        }

        .floating {
            position: absolute;
            right: -16px;
            bottom: -16px;
            background: var(--surface);
            border-radius: var(--radius-lg);
            padding: 14px 18px;
            display: flex;
            align-items: center;
            gap: 12px;
            box-shadow: var(--shadow)
        }

        .floating img {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            object-fit: cover
        }

        /* Trust bar */
        .trust {
            background: linear-gradient(180deg, #fff, var(--bg));
            padding: 20px 0;
            border-top: 1px solid #eef3fb;
            border-bottom: 1px solid #eef3fb
        }

        .trust ul {
            display: flex;
            align-items: center;
            gap: 26px;
            list-style: none;
            padding: 0;
            margin: 0;
            flex-wrap: wrap;
            justify-content: center
        }

        .trust li {
            opacity: .75;
            font-weight: 700
        }

        /* Four features */
        .features {
            grid-template-columns: repeat(4, 1fr)
        }

        .feature {
            padding: 22px;
            border: 1px solid #ebf0f7;
            border-radius: var(--radius-lg);
            transition: .2s;
            display: flex;
            gap: 16px
        }

        .feature:hover {
            transform: translateY(-4px)
        }

        .feature i {
            font-style: normal;
            width: 42px;
            height: 42px;
            border-radius: 10px;
            display: grid;
            place-items: center;
            /* background: rgba(14, 118, 253, .12); */
            font-weight: 900;
            color: var(--primary)
        }

        /* CTA block */
        .cta {
            display: flex;
            gap: 16px;
            flex-wrap: wrap
        }
/* Steps section */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step.card {
    text-align: center;
    padding: 1.5rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 100, 0, 0.25); /* Green glow */
}

/* Step icons */
.step-icon {
    font-size: 2.5rem;
    color: #FF7F2A; /* New primary color */
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.step.card:hover .step-icon {
    color:  #FF7F2A; /* Darker on hover */
}

/* Step numbers */
.step-number {
    width: 50px;
    height: 50px;
    line-height: 50px;
    background:  #FF7F2A;
    color: #fff;
    font-weight: bold;
    font-size: 1.2rem;
    border-radius: 50%;
    display: inline-block;
    margin-bottom: 1rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step.card:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

/* Headings & Text */
.step h3 {
    margin: 0.5rem 0;
    font-size: 1.15rem;
    color: #006400;
}

.step p {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.5;
}



        /* Certificates */
        .certs {
            grid-template-columns: repeat(3, 1fr)
        }

        .cert {
            padding: 18px;
            border: 1px dashed #dfe8f4;
            border-radius: var(--radius-md);
            background: #fff
        }

        .cert img {
            width: 100%;
            border-radius: 10px
        }

        /* Services */
        /* .services {
            grid-template-columns: repeat(3, 1fr)
        }

        .service {
            overflow: hidden
        }

        .service img {
            width: 100%;
            height: 180px;
            object-fit: cover
        }

        .service .body {
            padding: 18px
        } */

        /* Products Showcase */
        .products {
            grid-template-columns: repeat(4, 1fr)
        }

        .product img {
            width: 100%;
            height: 354px;
            object-fit: cover;
            border-top-left-radius: var(--radius-lg);
            border-top-right-radius: var(--radius-lg)
        }

        /* Smart Solutions */
        .smart {
            background: linear-gradient(135deg, rgba(14, 118, 253, .06), rgba(0, 211, 167, .10));
            border-radius: var(--radius-xl);
            padding: 32px;
            display: grid;
            grid-template-columns: 1.2fr .8fr;
            gap: 24px;
            align-items: center
        }

        .smart img {
            width: 100%;
            border-radius: 14px
        }

        /* Locations */
        .locations {
            grid-template-columns: 1.2fr .8fr
        }

        .cities {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 10px
        }

        .cities button {
            border: 1px solid #e3edf8;
            background: #fff;
            padding: 10px;
            border-radius: 999px;
            font-weight: 600;
            cursor: pointer
        }

        /* Testimonials */
        .testi-grid {
            grid-template-columns: repeat(4, 1fr)
        }

        .quote {
            padding: 18px;
            border: 1px solid #e8eef7;
            border-radius: var(--radius-lg);
            background: #fff
        }

        .stars {
            color: #FFA629
        }

        /* FAQ */
        .faq .item {
            border-bottom: 1px solid #e8eef7
        }

        .faq summary {
            list-style: none;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 0;
            font-weight: 700
        }

        .faq summary::-webkit-details-marker {
            display: none
        }

        .faq .content {
            padding: 0 0 18px 0;
            color: var(--muted)
        }

        /* Big CTA */
        .big-cta {
            background: var(--dark);
            color: #fff;
            border-radius: var(--radius-xl);
            padding: 36px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px
        }

        /* Footer */
        footer {
            background: var(--secondary);
            color: #d9e6f5;
            margin-top: 64px
        }

        footer .top {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 20px
        }

        footer a {
            color: #d9e6f5;
            text-decoration: none
        }

        footer .bottom {
            border-top: 1px solid rgba(255, 255, 255, .15);
            margin-top: 18px;
            padding: 18px 0;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px
        }

        /* Floating WhatsApp */
        .wa {
            position: fixed;
            right: 18px;
            bottom: 18px;
            z-index: 60
        }

        .wa a {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #25D366;
            color: #fff;
            border-radius: 999px;
            padding: 12px 16px;
            font-weight: 800;
            box-shadow: 0 8px 28px rgba(37, 211, 102, .4)
        }

        /* Appointment Drawer */
        .drawer {
            position: fixed;
            inset: 0;
            background: rgba(3, 10, 22, .45);
            display: none;
            align-items: flex-end;
            justify-content: center;
            z-index: 70
        }

        .drawer.open {
            display: flex
        }

        .drawer .panel {
            background: #fff;
            width: 100%;
            max-width: 560px;
            border-top-left-radius: 24px;
            border-top-right-radius: 24px;
            padding: 22px 18px 18px
        }

        .form {
            display: grid;
            gap: 12px
        }

        .form input,
        .form select,
        .form textarea {
            padding: 12px 14px;
            border: 1px solid #e3edf8;
            border-radius: 12px;
            font: inherit
        }

        /* Responsiveness */
        @media (max-width: 1000px) {
            .hero-wrap {
                grid-template-columns: 1fr
            }

            /* .features {
                grid-template-columns: repeat(2, 1fr)
            } */

            .services {
                grid-template-columns: repeat(2, 1fr)
            }

            .products {
                grid-template-columns: repeat(2, 1fr)
            }

            .smart {
                grid-template-columns: 1fr
            }

            .locations {
                grid-template-columns: 1fr
            }

            .testi-grid {
                grid-template-columns: repeat(2, 1fr)
            }

            footer .top {
                grid-template-columns: 1fr 1fr
            }
        }

        @media (max-width: 720px) {
            .menu-btn {
                display: inline-flex;
                border: 1px solid #e3edf8;
                border-radius: 12px;
                padding: 10px
            }

            nav ul {
                display: none
            }

            /* .features {
                grid-template-columns: 1fr
            } */

            .services {
                grid-template-columns: 1fr
            }

            .products {
                grid-template-columns: 1fr
            }

            .testi-grid {
                grid-template-columns: 1fr
            }

            .cities {
                grid-template-columns: repeat(2, 1fr)
            }

            .big-cta {
                flex-direction: column;
                align-items: flex-start
            }
        }


/* Trust Bar Styling */
.trust-bar {
  background: #fff;
  padding: 2rem 1rem;
  text-align: center;
}

.trust-bar-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.trust-bar-header p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.trust-bar-container {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  justify-content: center;
  scrollbar-width: none;
}
.trust-bar-container::-webkit-scrollbar {
  display: none;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  font-size: 15px;
  font-weight: 500;
  color: #333;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.brand img {
  height: 22px;
  width: auto;
}

.brand:hover {
  background: rgba(0, 128, 255, 0.08);
  color: #007bff;
}

.brand.active {
  background: #007bff;
  color: #fff;
  box-shadow: 0 3px 8px rgba(0, 123, 255, 0.3);
  font-weight: 600;
}


/* Features Section */

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.feature.card {
    /* background: rgba(255, 255, 255, 0.85); */
    padding: 25px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.feature-icon {
    font-size: 2.5rem;
    line-height: 1;
    flex-shrink: 0;
    background: linear-gradient(135deg, #ff7eb3, #ff758c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature.card:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.feature.card h3 {
    margin: 0;
    font-size: 1.2rem;
}

.feature i {
    font-size: 2.5rem;
    color: #ff5722;
    margin-bottom: 10px;
    transition: transform 0.3s, color 0.3s;
}

.feature:hover i {
    transform: scale(1.2);
    color: #e64a19;
}

.feature.card {
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature.card:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}


.subtle {
    color: #666;
    font-size: 0.95rem;
}



/* Grid layout */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

/* Service cards */
.service.card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  background: #fff;
  display: flex;
  flex-direction: column;
}

.service.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service.card .body {
  padding: 1.5rem; /* increased padding */
  flex: 1;
}

.service.card h3 {
  margin-bottom: 0.5rem;
}

.service.card p.subtle {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1rem;
}

/* Unified button style */
.btn-primary {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  background: #006400;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s ease;
  font-weight: 500;
}

.btn-primary:hover {
  background: #FF7F2A;
}


/* Price style */
.product .price-text {
    font-size: 0.9rem; /* small text for 'From' */
    color: #555;
}
.product .price-amount {
    font-weight: bold;
    font-size: 1.1rem;
}

/* Hover animation */
.product.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}



.smart-section {
    background: linear-gradient(135deg, #f9fdf9, #eef9f0);
    padding: 60px 0;
}
.smart {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}
.smart-text {
    flex: 1;
    min-width: 280px;
}
.smart-img img {
width: 175px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    object-fit: cover;
}
.cta {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}
.btn-green {
    background-color: #006400;
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
}
.btn-green:hover {
    background-color: #004d00;
}
.btn-outline-green {
    border: 2px solid #006400;
    color: #006400;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
}
.btn-outline-green:hover {
    background-color: #006400;
    color: white;
}




.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.quote.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    padding: 20px;
    height: 100%; /* equal height */
}

.testimonial-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 10px;
    border: 2px solid #ccc;
}

.stars {
    color: #FFD700;
    font-size: 1.2em;
    margin-bottom: 10px;
}

.quote p {
    flex: 1; /* equalize text area */
    font-style: italic;
}




.wa-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    border-radius: 50px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    z-index: 999;
}
.wa-float img {
    width: 24px;
    height: 24px;
}
.wa-float:hover {
    background-color: #20b358;
    transform: scale(1.05);
}
@media (max-width: 600px) {
    .wa-float {
        padding: 10px 14px;
        font-size: 14px;
    }
    .wa-float img {
        width: 20px;
        height: 20px;
    }
}

.trust-bar .brand:hover {
    background: #FF7F2A;
    color: white;
    transform: translateY(-5px);
  }
  .trust-bar .brand:hover img {
    filter: brightness(0) invert(1);
  }

.features-section {
    padding: 60px 20px;
    background: #f9fbff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.feature-card {
    background: #fff;
    border-radius: 14px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.feature-card .icon {
    background: linear-gradient(135deg, #006400, #629762);
    color: white;
    font-size: 28px;
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
    color: #222;
}

.feature-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Default drawer hidden */
.mobile-drawer {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    padding: 20px;
    transition: bottom 0.3s ease;
    z-index: 9999;
}
.mobile-drawer.active {
    bottom: 0;
}
