:root {
    --bg-color: #0B0E14;
    --surface-color: #151A23;
    --surface-color-hover: #1E2532;
    --primary-color: #00E676;
    /* Vibrant Green */
    --primary-color-hover: #00C853;
    --text-primary: #F8FAFC;
    --text-secondary: #94A3B8;
    --text-muted: #64748B;
    --border-color: rgba(255, 255, 255, 0.08);
    --glow: 0 0 20px rgba(0, 230, 118, 0.3);

    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ─── Light Theme ───────────────────────────────────────────── */
[data-theme="light"] {
    --bg-color: #F4F7FA;
    --surface-color: #FFFFFF;
    --surface-color-hover: #EDF2F7;
    --primary-color: #00A854;
    --primary-color-hover: #007A3D;
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-muted: #94A3B8;
    --border-color: rgba(0, 0, 0, 0.10);
    --glow: 0 0 20px rgba(0, 168, 84, 0.25);
}

/* Smooth transition when theme changes */
*,
*::before,
*::after {
    transition: background-color 0.35s ease, color 0.35s ease,
        border-color 0.35s ease, box-shadow 0.35s ease;
}

/* ────────────────────────────────────────────────────────────── */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 30%;
    background-color: var(--primary-color);
    opacity: 0.2;
    z-index: -1;
    transform: skewX(-15deg);
}

.section-padding {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

/* Base Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition-base);
    border: none;
    outline: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #000;
    box-shadow: var(--glow);
}

.btn-primary:hover {
    background-color: var(--primary-color-hover);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 230, 118, 0.5);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Animations Variables/Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: rgba(11, 14, 20, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: background-color var(--transition-base);
}

.navbar.scrolled {
    background-color: rgba(11, 14, 20, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links li a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding-bottom: 4px;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: #fff;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-base);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1001;
}

.mobile-toggle .bar {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-toggle .bar:nth-child(1) {
    top: 0;
}

.mobile-toggle .bar:nth-child(2) {
    top: 11px;
}

.mobile-toggle .bar:nth-child(3) {
    bottom: 0;
}

.mobile-toggle.active .bar:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

.mobile-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active .bar:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

/* ─── Theme Toggle Button ────────────────────────────────────── */
.theme-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    cursor: pointer;
    flex-shrink: 0;
    margin-left: 12px;
    transition: background var(--transition-base), transform var(--transition-base), border-color var(--transition-base);
}

.theme-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: rotate(20deg) scale(1.1);
    border-color: var(--primary-color);
}

.theme-toggle-btn svg {
    width: 18px;
    height: 18px;
    position: absolute;
    transition: opacity 0.3s ease, transform 0.4s ease;
}

/* Dark mode → show sun, hide moon */
[data-theme="dark"] .icon-sun {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

[data-theme="dark"] .icon-moon {
    opacity: 0;
    transform: scale(0.5) rotate(30deg);
    pointer-events: none;
}

/* Light mode → show moon, hide sun */
[data-theme="light"] .icon-sun {
    opacity: 0;
    transform: scale(0.5) rotate(-30deg);
    pointer-events: none;
}

[data-theme="light"] .icon-moon {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

/* Light mode: style the button itself */
[data-theme="light"] .theme-toggle-btn {
    background: rgba(0, 0, 0, 0.05);
    color: #0F172A;
}

/* ─── Light Theme Section Overrides ─────────────────────────── */

/* Global text overrides */
[data-theme="light"] .section-header h2,
[data-theme="light"] .global-email {
    color: #0F172A !important;
}

[data-theme="light"] .link-group ul li strong {
    color: #0F172A;
}

/* Navbar */
[data-theme="light"] .navbar {
    background-color: rgba(244, 247, 250, 0.88);
    border-bottom-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .navbar.scrolled {
    background-color: rgba(244, 247, 250, 0.97);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .nav-links li a {
    color: #475569;
}

[data-theme="light"] .nav-links li a:hover,
[data-theme="light"] .nav-links li a.active {
    color: #0F172A;
}

[data-theme="light"] .logo {
    color: var(--primary-color);
}

[data-theme="light"] .mobile-toggle .bar {
    background-color: #0F172A;
}

/* Hero */
[data-theme="light"] .hero {
    background-image:
        linear-gradient(90deg, rgba(244, 247, 250, 0.97) 0%, rgba(244, 247, 250, 0.75) 55%, rgba(244, 247, 250, 0.3) 100%),
        url('images/group-no-mark.jpg');
}

[data-theme="light"] .hero::before {
    background: radial-gradient(circle, rgba(0, 168, 84, 0.07) 0%, transparent 70%);
}

[data-theme="light"] .hero-content h1 {
    color: #0F172A;
}

[data-theme="light"] .hero-content p {
    color: #475569;
}

[data-theme="light"] .btn-secondary {
    background-color: rgba(0, 0, 0, 0.05);
    color: #0F172A;
    border-color: rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .btn-secondary:hover {
    background-color: rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.25);
}

/* Battery mockup */
[data-theme="light"] .battery-body {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.02));
    border-color: rgba(0, 0, 0, 0.12);
}

/* Stats */
[data-theme="light"] .stats {
    background-color: #FFFFFF;
    border-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .stat-card p {
    color: #0F172A;
}

/* Benefit cards */
[data-theme="light"] .benefit-card {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 0, 0, 0.09);
}

[data-theme="light"] .benefit-card:hover {
    background: #fff;
    border-color: rgba(0, 168, 84, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), inset 0 0 0 1px rgba(0, 168, 84, 0.1);
}

[data-theme="light"] .benefit-image-wrapper {
    background: rgba(0, 168, 84, 0.04);
    border-color: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .benefit-card h3 {
    color: #0F172A;
}

/* Green Alt */
[data-theme="light"] .green-alt {
    background: linear-gradient(180deg, #F4F7FA 0%, #E8EEF5 100%);
    border-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .green-alt-content h2 {
    color: #0F172A;
}

[data-theme="light"] .green-alt-image {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.01));
    border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .compatible-vehicles {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .feature-list li {
    color: #0F172A;
}

/* No Modification / Product Cards */
[data-theme="light"] .product-card {
    background: #FFFFFF;
    border-color: rgba(0, 0, 0, 0.09);
}

[data-theme="light"] .product-caption {
    background: #F8FAFC;
}

[data-theme="light"] .product-caption .brand {
    color: #0F172A;
}

/* Testimonials */
[data-theme="light"] .testimonials {
    background-color: #F4F7FA;
}

[data-theme="light"] .testimonial-card-new {
    background: #FFFFFF;
    border-color: rgba(0, 0, 0, 0.09);
}

[data-theme="light"] .testimonial-card-new:hover {
    border-color: rgba(0, 168, 84, 0.3);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .testimonial-img-wrapper {
    background: #f0f0f0;
    border-color: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .testimonial-body h4 {
    color: #0F172A;
}

[data-theme="light"] .testimonial-body p {
    color: #475569;
}

[data-theme="light"] .slider-btn {
    background: #FFFFFF;
    border-color: rgba(0, 0, 0, 0.12);
    color: #0F172A;
}

/* Contact / Office Cards */
[data-theme="light"] .contact-gallery {
    background-color: #EDF2F7;
}

[data-theme="light"] .office-card {
    background: #FFFFFF;
    border-color: rgba(0, 0, 0, 0.09);
}

[data-theme="light"] .office-card-overlay {
    background: rgba(0, 0, 0, 0.45);
}

[data-theme="light"] .office-card-body {
    background: #FFFFFF;
}

[data-theme="light"] .office-address,
[data-theme="light"] .office-email,
[data-theme="light"] .office-phone {
    color: #475569;
}

[data-theme="light"] .office-icon {
    stroke: #475569;
}

/* Contact form wrapper */
[data-theme="light"] .contact-form-wrapper {
    background: #FFFFFF;
    border-color: rgba(0, 0, 0, 0.09);
}

/* Footer */
[data-theme="light"] .footer {
    background-color: #E8EEF5;
    border-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .footer-bottom {
    background-color: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .footer p,
[data-theme="light"] .footer li,
[data-theme="light"] .link-group ul li a {
    color: #475569;
}

[data-theme="light"] .link-group h4 {
    color: #0F172A;
}

/* ──────────────────────────────────────────────────────────── */

/* Hero Section */

.hero {
    min-height: 100vh;
    padding-top: 100px;
    /* Offset for navbar */
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(90deg, var(--bg-color) 0%, rgba(11, 14, 20, 0.6) 50%, rgba(11, 14, 20, 0.2) 100%), url('images/group-no-mark.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -10%;
    width: 50vmax;
    height: 50vmax;
    background: radial-gradient(circle, rgba(0, 230, 118, 0.08) 0%, rgba(11, 14, 20, 0) 70%);
    z-index: 0;
}

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

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glow-orb {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
    animation: pulse 4s infinite alternate;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.15;
    }

    100% {
        transform: scale(1.1);
        opacity: 0.25;
    }
}

.battery-mockup {
    position: relative;
    width: 140px;
    height: 280px;
    z-index: 2;
    transform: rotate(15deg);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: rotate(15deg) translateY(0px);
    }

    50% {
        transform: rotate(15deg) translateY(-20px);
    }

    100% {
        transform: rotate(15deg) translateY(0px);
    }
}

.battery-body {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(255, 255, 255, 0.05);
}

.battery-cap {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 15px;
    background: linear-gradient(90deg, #333, #555, #333);
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    box-shadow: inset 0 2px 5px rgba(255, 255, 255, 0.2);
}

.battery-level {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 85%;
    background: linear-gradient(180deg, #00E676 0%, #00B25C 100%);
    box-shadow: 0 0 30px rgba(0, 230, 118, 0.6);
    animation: fillLevel 10s cubic-bezier(0.1, 0.7, 1, 0.1) infinite alternate;
}

@keyframes fillLevel {
    0% {
        height: 10%;
        background: linear-gradient(180deg, #FF3D00 0%, #D50000 100%);
        box-shadow: 0 0 30px rgba(255, 61, 0, 0.6);
    }

    20% {
        height: 30%;
        background: linear-gradient(180deg, #FFC400 0%, #FF9100 100%);
        box-shadow: 0 0 30px rgba(255, 196, 0, 0.6);
    }

    50% {
        height: 85%;
        background: linear-gradient(180deg, #00E676 0%, #00B25C 100%);
        box-shadow: 0 0 30px rgba(0, 230, 118, 0.6);
    }

    100% {
        height: 95%;
        background: linear-gradient(180deg, #00E676 0%, #00B25C 100%);
        box-shadow: 0 0 40px rgba(0, 230, 118, 0.8);
    }
}

/* Stats Section */
.stats {
    background-color: var(--surface-color);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 60px 0;
    position: relative;
    z-index: 5;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card {
    text-align: center;
    padding: 24px;
}

.stat-card h3 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 8px;
    font-variant-numeric: tabular-nums;
}

.stat-card h3 span {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-left: 4px;
}

.stat-card p {
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.stat-card span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Benefits Section */
.benefits {
    position: relative;
}

.benefits::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -10%;
    width: 40vmax;
    height: 40vmax;
    background: radial-gradient(circle, rgba(0, 230, 118, 0.05) 0%, rgba(11, 14, 20, 0) 70%);
    z-index: 0;
    pointer-events: none;
}

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

.benefit-card {
    background: rgba(21, 26, 35, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 32px;
    backdrop-filter: blur(10px);
    transition: all var(--transition-base);
}

.benefit-card:hover {
    transform: translateY(-8px);
    background: var(--surface-color-hover);
    border-color: rgba(0, 230, 118, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(0, 230, 118, 0.1);
}

.benefit-image-wrapper {
    width: 100%;
    height: 180px;
    border-radius: 12px;
    background: rgba(0, 230, 118, 0.03);
    overflow: hidden;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-base);
}

.benefit-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.benefit-card:hover .benefit-image-wrapper {
    border-color: rgba(0, 230, 118, 0.3);
    background: rgba(0, 230, 118, 0.08);
}

.benefit-card:hover .benefit-img {
    transform: scale(1.05);
}

.benefit-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.benefit-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

/* Green Alternative Section */
.green-alt {
    background: linear-gradient(180deg, var(--bg-color) 0%, var(--surface-color) 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.green-alt-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.green-alt-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.green-alt-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.feature-list {
    margin-bottom: 40px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.125rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 16px;
}

.feature-list li svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.compatible-vehicles {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
}

.compatible-vehicles span {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.tags {
    display: flex;
    gap: 10px;
}

.tag {
    background: rgba(0, 230, 118, 0.1);
    color: var(--primary-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(0, 230, 118, 0.2);
}

.green-alt-image {
    position: relative;
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.green-alt-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.green-alt-image:hover .green-alt-img {
    transform: scale(1.05);
}



/* No Modification Needed Section */
.no-mod .section-header p {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: none;
    margin-bottom: 10px;
}

.no-mod .section-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -2px;
}

.product-link {
    display: block;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.no-mod-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    background: #05060A;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, border-color 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.product-image {
    background: #fff;
    aspect-ratio: 16/10;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-caption {
    padding: 24px;
    background: #0A0D12;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-caption .category {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.product-caption .brand {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
}

.product-caption .brand::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

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

@media (max-width: 600px) {
    .no-mod-grid {
        grid-template-columns: 1fr;
    }
}

/* Testimonials */
.testimonials {
    background-color: var(--bg-color);
}

/* Slider wrapper: positions the prev/next buttons on each side */
.testimonial-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}

/* The visible viewport */
.testimonial-track-container {
    flex: 1;
    overflow: hidden;
}

/* The inner track that slides */
.testimonial-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

/* Each card */
.testimonial-card-new {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 0;
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color var(--transition-base), transform var(--transition-base);
}

.testimonial-card-new:hover {
    border-color: rgba(0, 230, 118, 0.35);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

/* Feedback screenshot image */
.testimonial-img-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #05060A;
    border-bottom: 1px solid var(--border-color);
    flex-shrink: 0;
}

.testimonial-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.4s ease;
}

.testimonial-card-new:hover .testimonial-img-wrapper img {
    transform: scale(1.04);
}

/* Text body below the image */
.testimonial-body {
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.stars {
    color: #FFC107;
    font-size: 1.15rem;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.testimonial-body h4 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 700;
}

.testimonial-body p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
    font-style: italic;
    flex-grow: 1;
}

/* Prev / Next arrow buttons */
.slider-btn {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    z-index: 2;
}

.slider-btn svg {
    width: 20px;
    height: 20px;
}

.slider-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #000;
    box-shadow: var(--glow);
    transform: scale(1.1);
}

.slider-btn:disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}

/* Dot indicators */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-color);
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: all var(--transition-base);
    padding: 0;
}

.dot.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.25);
    box-shadow: 0 0 8px rgba(0, 230, 118, 0.6);
}

/* Responsive */
@media (max-width: 1024px) {
    .testimonial-card-new {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width: 640px) {
    .testimonial-card-new {
        flex: 0 0 calc(100%);
    }

    .slider-btn {
        width: 36px;
        height: 36px;
    }
}

/* Contact Gallery */
.contact-gallery {
    background-color: var(--bg-color);
}

.section-divider {
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* Office Cards Grid */
.office-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 40px;
}

.office-card {
    background: #05060A;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.office-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 230, 118, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0, 230, 118, 0.1);
}

.office-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #0D1117;
}

.office-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.office-card:hover .office-card-image img {
    transform: scale(1.08);
}

.office-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 230, 118, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.office-card:hover .office-card-overlay {
    opacity: 1;
}

.portfolio-icons {
    display: flex;
    gap: 15px;
}

.icon-link {
    width: 45px;
    height: 45px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.icon-link svg {
    width: 20px;
    height: 20px;
}

.icon-link:hover {
    transform: scale(1.15);
    background: var(--bg-color);
    color: var(--primary-color);
}

.office-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    color: var(--primary-color);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid rgba(0, 230, 118, 0.3);
    pointer-events: none;
}

.office-card-body {
    padding: 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex-grow: 1;
    background: #0A0D12;
    border-top: 1px solid var(--border-color);
}

.office-info-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.office-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--primary-color);
    stroke: var(--primary-color);
}

.office-email {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: color var(--transition-fast), text-decoration var(--transition-fast);
    word-break: break-all;
}

.office-email:hover {
    color: var(--primary-color-hover);
    text-decoration: underline;
}

.office-phone {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    transition: color var(--transition-fast);
}

.office-phone:hover {
    color: var(--primary-color);
}

.office-address {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Contact Form below the grid */
.contact-form-wrapper {
    width: 100%;
}

.contact-iframe {
    width: 100%;
    height: 520px;
    border-radius: 12px;
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: block;
}

@media (max-width: 900px) {
    .office-cards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .office-card-body {
        padding: 18px 16px;
    }
}


/* Footer */
.footer {
    background-color: #05060A;
    /* Even darker */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 16px;
    max-width: 300px;
}

.global-email {
    margin-top: 24px !important;
    font-size: 1.1rem;
    color: #fff !important;
}

.global-email a {
    color: var(--primary-color);
    font-weight: 600;
}

.global-email a:hover {
    text-decoration: underline;
}

.footer-links {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.link-group h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.link-group ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.link-group ul li {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.link-group ul li strong {
    color: #fff;
    display: block;
    margin-bottom: 4px;
}

.link-group ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }

    .hero-content p {
        margin: 0 auto 40px;
    }

    .hero-buttons {
        justify-content: center;
    }

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

    .green-alt-container {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--surface-color);
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
        gap: 24px;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.4s ease;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .benefits-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 480px) {
    .stats-container {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }
}