/* ==========================================================================
   TRUEWATT HYBRID DARK & LIGHT SOLAR PLATFORM - GLOBAL STYLE SYSTEM
   ========================================================================== */

:root {
    --bg-dark: #0f0f0f;
    --bg-dark-secondary: #161616;
    --bg-light: #f5f3ef;
    --bg-white: #ffffff;
    --border-light: rgba(15, 15, 15, 0.08);
    --border-dark: rgba(255, 255, 255, 0.08);
    
    --accent-yellow: #ffbe18;
    --accent-yellow-hover: #e5ab15;
    --accent-gradient: linear-gradient(135deg, #ffbe18, #ffda6a);
    --brand-orange: #ff7b00;
    
    --text-dark: #0f0f0f;
    --text-muted-dark: #626260;
    --text-light: #ffffff;
    --text-muted-light: #9ca3af;
    
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.03), 0 2px 8px rgba(0, 0, 0, 0.02);
    --shadow-medium: 0 16px 48px rgba(15, 15, 15, 0.06);
    --shadow-glow: 0 0 30px rgba(255, 190, 24, 0.08);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base Rules */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-white);
    color: var(--text-dark);
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 88px;
}

.container {
    width: 92%;
    max-width: 1280px;
    margin: 0 auto;
}

/* Typography Defaults */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
    color: var(--text-dark);
}

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

/* Gradients & Highlights */
.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight-orange {
    color: var(--brand-orange);
}

.highlight-yellow {
    color: var(--accent-yellow);
}

/* Section Elements common */
.section-padding {
    padding: 100px 0;
    position: relative;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 190, 24, 0.08);
    border: 1px solid var(--border-light);
    border-radius: 40px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--accent-yellow);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.tag-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent-yellow);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-yellow);
}

.section-title {
    font-size: 46px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.section-desc {
    font-size: 18px;
    color: var(--text-muted-dark);
    /* max-width: 640px; */
    margin-bottom: 20px;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.w-100 { width: 100%; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    margin-top:10px;
}

.btn-primary {
    background: var(--accent-gradient);
    color: var(--bg-dark);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    color: var(--text-dark);
}

.btn-secondary:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

.btn-text {
    background: none;
    border: none;
    color: var(--accent-yellow);
    padding: 0;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.btn-text:hover {
    color: var(--text-dark);
}

.btn-text:hover i {
    transform: translateX(4px);
}

/* ==========================================================================
   HEADER / NAVBAR (DARK THEME)
   ========================================================================== */
.header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    height: 88px;
    z-index: 100;
    background-color: var(--bg-dark);
    border-bottom: 1px solid var(--border-dark);
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
    color: var(--text-light);
    text-decoration: none;
}

.logo-accent {
    color: var(--accent-yellow);
}

.logo-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-dark);
    font-size: 18px;
}

/* Nav Menu Links */
.desktop-nav {
    display: flex;
    gap: 30px;
    margin-left: auto;
    margin-right: 52px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-muted-light);
    font-size: 14px;
    font-weight: 600;
    padding: 8px 0;
    position: relative;
    transition: var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
    color: var(--text-light);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: var(--transition-fast);
    transform: translateX(-50%);
}

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

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.theme-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-dark);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: var(--transition-smooth);
}

.theme-btn:hover {
    border-color: var(--accent-yellow);
}

.consult-btn {
    background: var(--accent-gradient);
    color: var(--bg-dark);
    font-weight: 700;
    text-decoration: none;
    font-size: 12px;
    padding: 8px 20px;
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
    margin-right: 20px;
}

.consult-btn:hover {
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 24px;
    cursor: pointer;
}

/* Mobile Slide Drawer */
.mobile-overlay-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(15, 15, 15, 0.6);
    backdrop-filter: blur(12px);
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-overlay-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-content {
    position: fixed;
    z-index: 210;
    overflow-y: auto;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background-color: var(--bg-dark);
    border-left: 1px solid var(--border-dark);
    padding: 40px;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-overlay-menu.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-dark);
}

.mobile-menu-header .logo {
    color: var(--text-light);
}

.close-menu-btn {
    background: none;
    border: none;
    color: var(--text-muted-light);
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.close-menu-btn:hover {
    color: var(--text-light);
}

.mobile-menu-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: 40px;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-link {
    text-decoration: none;
    color: var(--text-muted-light);
    font-size: 22px;
    font-weight: 700;
    transition: var(--transition-fast);
}

.mobile-link:hover, .mobile-link.active {
    color: var(--accent-yellow);
    padding-left: 8px;
}

.mobile-menu-footer {
    padding-top: 30px;
    border-top: 1px solid var(--border-dark);
}

.mobile-menu-footer .consult-btn {
    width: 100%;
    justify-content: center;
}

/* ==========================================================================
   HERO SECTION (DARK THEME)
   ========================================================================== */
.hero-section {
    background-color: var(--bg-dark);
    padding: 48px 0 60px;
    position: relative;
}

.hero-section .section-tag {
    border-color: var(--border-dark);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 72px;
    line-height: 1.05;
    margin-bottom: 24px;
    color: var(--text-light);
}

.hero-subtitle {
    font-size: 19px;
    color: var(--text-muted-light);
    margin-bottom: 40px;
    max-width: 580px;
}

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

.hero-buttons .btn-secondary {
    background: transparent;
    border: 1px solid var(--border-dark);
    color: var(--text-light);
}

.hero-buttons .btn-secondary:hover {
    background: rgba(255,255,255,0.03);
}

.hero-stats-row {
    display: flex;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-dark);
}

.hero-stat-num {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-light);
}

.hero-stat-label {
    font-size: 13px;
    color: var(--text-muted-light);
    font-weight: 600;
}

.hero-right-container {
    position: relative;
    width: 100%;
}

.hero-house-img {
    border-radius: var(--radius-xl);
    width: 100%;
    border: 1px solid var(--border-dark);
    box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}

/* Floating Badges */
.floating-card {
    position: absolute;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 48px rgba(0,0,0,0.3);
    animation: hoverFloat 6s ease-in-out infinite;
}

@keyframes hoverFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.floating-sub {
    top: 30px;
    left: -30px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(22, 22, 22, 0.85);
    border: 1px solid var(--border-dark);
    backdrop-filter: blur(12px);
    z-index: 10;
}

.shield-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 190, 24, 0.1);
    color: var(--accent-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.floating-tracker {
    bottom: 30px;
    right: -30px;
    width: 320px;
    padding: 24px;
    background: rgba(22, 22, 22, 0.85);
    border: 1px solid var(--border-dark);
    backdrop-filter: blur(12px);
    z-index: 10;
    animation-delay: 2s;
}

.tracker-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.tracker-title {
    font-size: 11px;
    font-weight: 800;
    color: var(--accent-yellow);
    letter-spacing: 0.08em;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #00ff66;
    box-shadow: 0 0 10px #00ff66;
}

.tracker-val {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 4px;
    color: var(--text-light);
}

.tracker-subtext {
    font-size: 12px;
    color: var(--text-muted-light);
}

/* ==========================================================================
   TRUST STRIP (LIGHT THEME)
   ========================================================================== */
.trust-strip {
    background-color: var(--bg-light);
    padding: 40px 0;
}

.trust-container {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-soft);
    padding: 30px 48px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.trust-title {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-dark);
    border-right: 1px solid var(--border-light);
    padding-right: 40px;
    line-height: 1.4;
    white-space: nowrap;
}

.trust-scroll {
    display: flex;
    justify-content: space-between;
    flex: 1;
    overflow-x: auto;
    gap: 24px;
}

.trust-scroll::-webkit-scrollbar {
    display: none;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted-dark);
    white-space: nowrap;
}

.trust-item i {
    color: var(--accent-yellow);
    font-size: 14px;
}

/* ==========================================================================
   PROBLEM VS SOLUTION (LIGHT BACKGROUND - MIXED CARDS)
   ========================================================================== */
.problem-solution-section {
    background-color: var(--bg-white);
    padding: 10px 0;
}

.problem-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 40px;
}

.problem-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-soft);
}

.problem-card h2 {
    color: var(--text-dark);
}

.problem-list {
    list-style: none;
    margin-top: 36px;
}

.problem-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-muted-dark);
}

.problem-list li i {
    color: var(--brand-orange);
    font-size: 18px;
}

/* Right Card (THE TRUEWATT WAY - DARK CARD) */
.solution-panel {
    background: var(--bg-dark);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-glow);
}

.solution-panel .section-tag {
    border-color: var(--border-dark);
}

.solution-panel h2 {
    color: var(--text-light);
}

.solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.solution-card-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: var(--transition-smooth);
}

.solution-card-item:hover {
    border-color: var(--accent-yellow);
    background: rgba(255,255,255,0.04);
    transform: translateY(-4px);
}

.solution-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 190, 24, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-yellow);
    font-size: 18px;
    margin-bottom: 18px;
}

.solution-card-item h3 {
    font-size: 17px;
    margin-bottom: 8px;
    color: var(--text-light);
}

.solution-card-item p {
    font-size: 13px;
    line-height: 1.4;
    color: var(--text-muted-light);
}

@media (max-width: 480px) {
    .solution-grid {
        gap: 12px;
        margin-top: 24px;
    }

    .solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

    .solution-card-item {
        padding: 16px 12px;
    }
    .solution-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 12px;
    }
    .solution-card-item h3 {
        font-size: 12px;
        margin-bottom: 6px;
        line-height: 1.3;
    }
    .solution-card-item p {
        font-size: 11px;
    }
}

/* ==========================================================================
   WHY CHOOSE US (LIGHT BEIGE BACKGROUND)
   ========================================================================== */
.why-section-wrap {
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: 20px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 20px;
}

.why-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 23px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.why-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-yellow);
    box-shadow: var(--shadow-medium);
}

.why-icon-box {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255, 190, 24, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-yellow);
    font-size: 22px;
    margin-bottom: 24px;
    transition: var(--transition-fast);
}

.why-card:hover .why-icon-box {
    background: var(--accent-yellow);
    color: var(--bg-dark);
}

.why-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.why-card p {
    font-size: 14px;
    color: var(--text-muted-dark);
}

.why-wide-card {
    grid-column: span 3;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 30px 40px;
}

.why-wide-card .why-icon-box {
    margin-bottom: 0;
    flex-shrink: 0;
}

/* ==========================================================================
   SERVICES (LIGHT THEME BACKGROUND)
   ========================================================================== */
.services-section-wrap {
    background-color: var(--bg-white);
    padding: 20px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.service-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 380px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-yellow);
    box-shadow: var(--shadow-medium);
}

.service-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-yellow);
    font-size: 24px;
    margin-bottom: 28px;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon-wrap {
    background: rgba(255, 190, 24, 0.1);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: var(--text-dark);
}

.service-card p {
    font-size: 14px;
    margin-bottom: 24px;
    color: var(--text-muted-dark);
}

.service-learn-more {
    text-decoration: none;
    color: var(--accent-yellow);
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* ==========================================================================
   SOLAR CALCULATOR (LIGHT BACKGROUND - MIXED TARGET CARDS)
   ========================================================================== */
.calculator-section {
    background-color: var(--bg-white);
    padding: 20px 0;
}

.calc-dashboard-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.15fr 0.95fr;
    gap: 30px;
    align-items: stretch; /* Make items stretch to equal height */
    margin-top: 40px;
}

/* Left panel: benefits (LIGHT) */
.calc-benefits-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 24px;
    box-shadow: var(--shadow-soft);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.calc-benefits-card h2 {
    color: var(--text-dark);
}

.benefits-list {
    list-style: none;
    margin-top: 24px;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-muted-dark);
}

.benefits-list li i {
    color: var(--accent-yellow);
}

/* Center Form Card (LIGHT) */
.calc-main-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 24px;
    box-shadow: var(--shadow-medium);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.form-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--text-dark);
}

.form-header i {
    color: var(--accent-yellow);
}

.calc-grid-inputs {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.form-2col-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}
.form-group-wrap {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.form-group-wrap label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted-dark);
}

.calc-input-box {
    position: relative;
}

.calc-input-box input, .calc-input-box select, .calc-input-box textarea {
    width: 100%;
    height: 44px;
    background-color: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 0 18px;
    font-size: 16px;
    font-family: inherit;
    font-weight: 700;
    color: var(--text-dark);
    outline: none;
    transition: var(--transition-fast);
}

.calc-input-box input:focus, .calc-input-box select:focus, .calc-input-box textarea:focus {
    border-color: var(--accent-yellow);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(255, 190, 24, 0.1);
}

.calc-input-box select {
    appearance: none;
    cursor: pointer;
}

.calc-input-box .prefix, .calc-input-box .suffix {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 700;
    color: var(--text-muted-dark);
}

.calc-input-box .prefix { left: 18px; }
.calc-input-box .suffix { right: 18px; }

.calc-input-box.with-prefix input { padding-left: 36px; }
.calc-input-box.with-suffix input { padding-right: 56px; }

/* Switcher tabs (LIGHT) */
.property-tabs {
    display: flex;
    background-color: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 0px;
}

.property-tabs button {
    flex: 1;
    border: none;
    background: none;
    height: 40px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-muted-dark);
    cursor: pointer;
    border-radius: 12px;
    transition: var(--transition-fast);
}

.property-tabs button.active {
    background-color: var(--bg-white);
    color: var(--text-dark);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Range Slider */
.slider-group-wrap {
    margin-top: 10px;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted-dark);
    margin-bottom: 8px;
}

.custom-range-slider {
    width: 100%;
    height: 6px;
    background: rgba(15, 15, 15, 0.08);
    border-radius: 10px;
    outline: none;
    appearance: none;
    cursor: pointer;
}

.custom-range-slider::-webkit-slider-thumb {
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--accent-gradient);
    box-shadow: 0 0 10px var(--accent-yellow);
}

/* Right Panel: Result (DARK CARD) */
.calc-result-card {
    background: var(--bg-dark);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-xl);
    padding: 24px;
    color: var(--text-light);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-glow);
}

.calc-result-card h3 {
    color: var(--text-light);
}

.result-tag {
    font-size: 11px;
    font-weight: 800;
    color: var(--accent-yellow);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.result-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
}

.metric-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.metric-item {
    background-color: var(--bg-dark-secondary);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-md);
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.metric-circle-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 190, 24, 0.08);
    color: var(--accent-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.metric-label-group {
    display: flex;
    flex-direction: column;
}

.metric-lbl {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted-light);
    text-transform: uppercase;
}

.metric-value {
    font-size: 22px;
    font-weight: 800;
    color: var(--accent-yellow);
    margin-top: 2px;
}

/* Graph sliders visualizer */
.generation-graph-box {
    margin-top: 16px;
    border-top: 1px solid var(--border-dark);
    padding-top: 20px;
}

.bar-lbl-row {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted-light);
    margin-bottom: 6px;
}

.graph-bar-container {
    height: 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
}

.graph-fill-bar {
    height: 100%;
    width: 0%;
    background: var(--accent-gradient);
    border-radius: 10px;
    transition: width 0.8s ease;
}

.graph-fill-blue {
    background: linear-gradient(90deg, #00f2fe, #4facfe);
}

/* ==========================================================================
   HOW IT WORKS TIMELINE (LIGHT BEIGE BACKGROUND)
   ========================================================================== */
.how-it-works {
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: 20px 0;
}

.how-it-works .section-title {
    color: var(--text-dark);
}

.timeline-wrapper {
    position: relative;
    margin-top: 56px;
}

.timeline-line {
    position: absolute;
    top: 28px;
    left: 0;
    right: 0;
    height: 2px;
    background: repeating-linear-gradient(to right, var(--accent-yellow) 0, var(--accent-yellow) 10px, transparent 10px, transparent 20px);
    z-index: 1;
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-badge {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--bg-white);
    border: 2px solid var(--accent-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 24px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.timeline-step:hover .step-badge {
    background-color: var(--accent-yellow);
    color: var(--bg-dark);
    transform: scale(1.1);
}

.timeline-step h3 {
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--text-dark);
}

.timeline-step p {
    font-size: 13px;
    color: var(--text-muted-dark);
    line-height: 1.4;
}

/* ==========================================================================
   TESTIMONIALS (LIGHT THEME)
   ========================================================================== */
.testimonials-section {
    background-color: var(--bg-white);
    padding: 20px 0;
}

.testimonials-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.testimonial-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: 280px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-yellow);
    box-shadow: var(--shadow-medium);
}

.card-stars {
    color: var(--accent-yellow);
    font-size: 11px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 14px;
    font-style: italic;
    color: var(--text-muted-dark);
    margin-bottom: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.customer-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--border-light);
}

.customer-details {
    display: flex;
    flex-direction: column;
}

.customer-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
}

.customer-meta {
    font-size: 11px;
    color: var(--text-muted-dark);
    font-weight: 600;
}

/* ==========================================================================
   FAQ SECTION (DARK BACKGROUND ACCORDION)
   ========================================================================== */
.faq-section {
    background-color: var(--bg-dark);
    padding: 20px 0;
}

.faq-section .section-tag {
    border-color: var(--border-dark);
}

.faq-section .section-title {
    color: var(--text-light);
}

.faq-section .section-desc {
    color: var(--text-muted-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.faq-house-img-wrap {
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-dark);
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}

.faq-house-img {
    width: 100%;
    display: block;
}

.faq-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-md);
    overflow: hidden;
    background-color: rgba(255,255,255,0.01);
    transition: var(--transition-smooth);
}

.faq-item.active {
    border-color: var(--accent-yellow);
    box-shadow: var(--shadow-glow);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 30px;
    color: var(--text-light);
    font-size: 17px;
    font-weight: 700;
    font-family: inherit;
    text-align: left;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    gap: 16px;
    outline: none;
}

.faq-chevron {
    color: var(--accent-yellow);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-chevron {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding-bottom 0.35s ease;
    color: var(--text-muted-light);
    font-size: 15px;
    line-height: 1.6;
}

/* ==========================================================================
   CONTACT CTA BANNER (DARK THEME)
   ========================================================================== */
.contact-cta-banner {
    background-color: var(--bg-dark);
    padding: 50px 0 25px;
}

.contact-cta-banner .section-tag {
    border-color: var(--border-dark);
}

.contact-cta-banner .section-title {
    color: var(--text-light);
}

.contact-cta-banner .section-desc {
    color: var(--text-muted-light);
}

.cta-banner-bg {
    background: linear-gradient(135deg, var(--bg-dark-secondary) 0%, var(--bg-dark) 100%);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-xl);
    padding: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    box-shadow: 0 24px 64px rgba(0,0,0,0.4);
    position: relative;
    overflow: hidden;
}

.cta-points-row {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 28px;
}

.cta-point-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-light);
}

.cta-point-item i {
    color: var(--accent-yellow);
}

/* Contact glass form (DARK) */
.contact-glass-form {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-dark);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    padding: 30px;
}

.contact-form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.contact-glass-form label {
    color: var(--text-muted-light);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 6px;
    display: block;
}

.contact-glass-form input, .contact-glass-form select, .contact-glass-form textarea {
    background-color: rgba(255,255,255,0.03);
    border: 1px solid var(--border-dark);
    color: var(--text-light);
}

.contact-glass-form input:focus, .contact-glass-form select:focus, .contact-glass-form textarea:focus {
    border-color: var(--accent-yellow);
    background-color: rgba(255,255,255,0.05);
}

.form-timer-note {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted-light);
    margin-top: 14px;
    font-weight: 500;
}

/* ==========================================================================
   FOOTER (LIGHT THEME)
   ========================================================================== */
.footer {
    border-top: 1px solid var(--border-light);
    background-color: var(--bg-white);
    padding: 30px 0 25px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--border-light);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 26px;
    font-weight: 800;
    color: var(--text-dark);
}

.footer-logo .logo-icon {
    color: var(--bg-dark);
}

.footer-info p {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted-dark);
}

.footer-socials-row {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.footer-social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-fast);
}

.footer-social-icon:hover {
    background-color: var(--accent-yellow);
    color: var(--bg-dark);
    transform: translateY(-2px);
}

.footer-columns-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer-column h4 {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.footer-column a {
    text-decoration: none;
    color: var(--text-muted-dark);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 14px;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-column a i {
    font-size: 12px;
    color: var(--accent-yellow);
    width: 16px;
}

.footer-column a:hover {
    color: var(--text-dark);
    padding-left: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    font-size: 13px;
    color: var(--text-muted-dark);
    font-weight: 600;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    text-decoration: none;
    color: var(--text-muted-dark);
    transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--accent-yellow);
}

/* ==========================================================================
   VENDORS COMPARISON TABLE & GRID (LIGHT THEME)
   ========================================================================== */
.table-responsive-container {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    background: var(--bg-white);
    box-shadow: var(--shadow-soft);
}

.vendors-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.vendors-table th {
    background: var(--bg-light);
    color: var(--text-dark);
    padding: 14px 18px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-bottom: 1px solid var(--border-light);
}

.vendors-table td {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-light);
    font-size: 14px;
    color: var(--text-muted-dark);
}

.vendors-table tr:hover td {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.vendor-col-name {
    font-weight: 700;
    color: var(--text-dark) !important;
}

.vendor-badge {
    background: rgba(0, 255, 102, 0.08);
    color: #00ff66;
    padding: 4px 10px;
    border-radius: 40px;
    font-size: 11px;
    font-weight: 700;
    margin-left: 8px;
}

.featured-vendors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.vendor-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.vendor-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-yellow);
}

.vendor-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 20px;
}

.vendor-title {
    font-size: 20px;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.vendor-stars {
    color: var(--accent-yellow);
    font-size: 12px;
}

.vendor-tags-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.vendor-tag-item {
    font-size: 11px;
    font-weight: 700;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    padding: 4px 10px;
    border-radius: 40px;
    color: var(--text-muted-dark);
}

.vendor-meta-list {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vendor-meta-item {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-muted-dark);
}

.vendor-meta-val {
    font-weight: 700;
    color: var(--text-dark);
}

.newsletter-form {
    display: flex;
    gap: 12px;
    width: 100%;
    justify-content: flex-end;
    align-items: center;
}

/* ==========================================================================
   BLOG ARCHIVE & POSTS (LIGHT THEME)
   ========================================================================== */
.blog-featured-card {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    padding: 40px;
    margin-bottom: 56px;
    align-items: center;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-soft);
}

.blog-featured-card h2 a {
    color: var(--text-dark) !important;
}

.blog-featured-card h2 a:hover {
    color: var(--accent-yellow) !important;
}

.blog-featured-img-wrap {
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
}

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

.blog-info-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-yellow);
    margin-bottom: 12px;
}

.blog-info-meta span {
    color: var(--text-muted-dark);
}

.blog-featured-title {
    font-size: 38px;
    margin-bottom: 18px;
    color: var(--text-dark);
}

.latest-blogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.blog-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-yellow);
}

.blog-card-img-box {
    height: 220px;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid var(--border-light);
}

.blog-card-img-box img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.blog-card-body {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-card-body h3 {
    font-size: 19px;
    margin-bottom: 12px;
    line-height: 1.3;
    color: var(--text-dark);
}

.blog-card-body h3 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition-fast);
}

.blog-card-body h3 a:hover {
    color: var(--accent-yellow);
}

.blog-card-body p {
    font-size: 13px;
    margin-bottom: 20px;
    color: var(--text-muted-dark);
}

/* ==========================================================================
   BLOG DETAILS (LIGHT READ EXPERIENCE)
   ========================================================================== */
.blog-details-layout {
    display: grid;
    grid-template-columns: 80px 1fr 280px;
    gap: 40px;
    align-items: start;
    margin-top: 40px;
}

.blog-share-bar {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.blog-share-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    color: var(--text-muted-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    transition: var(--transition-fast);
}

.blog-share-icon:hover {
    border-color: var(--accent-yellow);
    color: var(--accent-yellow);
}

.blog-content-body {
    font-size: 17px;
    color: var(--text-muted-dark);
    line-height: 1.8;
}

.blog-content-body h2 {
    font-size: 32px;
    margin: 40px 0 20px;
    color: var(--text-dark);
}

.blog-content-body p {
    margin-bottom: 24px;
}

.blog-content-body blockquote {
    border-left: 4px solid var(--accent-yellow);
    padding-left: 24px;
    font-style: italic;
    color: var(--text-dark);
    margin: 32px 0;
    font-size: 20px;
}

.blog-sidebar {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.toc-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-soft);
}

.toc-card h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.toc-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.toc-link {
    text-decoration: none;
    color: var(--text-muted-dark);
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition-fast);
}

.toc-link:hover, .toc-link.active {
    color: var(--accent-yellow);
}

/* ==========================================================================
   ABOUT PAGE TIMELINE & TEAMS (LIGHT THEME)
   ========================================================================== */
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.about-stat-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.about-stat-card h3 {
    font-size: 40px;
    margin-bottom: 6px;
}

.about-timeline-box {
    margin-top: 56px;
    position: relative;
}

.about-timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-light);
    transform: translateX(-50%);
}

.about-timeline-item {
    width: 50%;
    padding: 0 40px;
    position: relative;
    margin-bottom: 48px;
}

.about-timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.about-timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent-yellow);
    border: 3px solid var(--bg-white);
    top: 6px;
    box-shadow: 0 0 10px var(--accent-yellow);
    z-index: 10;
}

.about-timeline-item:nth-child(odd) .timeline-dot {
    right: -8px;
}

.about-timeline-item:nth-child(even) .timeline-dot {
    left: -8px;
}

.timeline-year {
    font-size: 13px;
    font-weight: 800;
    color: var(--accent-yellow);
    margin-bottom: 6px;
}

.timeline-title {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.team-member-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.team-member-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 2px solid var(--border-light);
}

.team-member-card h3 {
    font-size: 18px;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.team-member-card p {
    font-size: 13px;
    font-weight: 600;
}

/* ==========================================================================
   CONTACT PAGE DETAILS (LIGHT THEME)
   ========================================================================== */
.contact-layout-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
    align-items: start;
    margin-top: 40px;
}

.contact-layout-grid h1 {
    color: var(--text-dark);
}

.contact-method-list {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-method-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    box-shadow: var(--shadow-soft);
}

.contact-method-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 190, 24, 0.08);
    color: var(--accent-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.contact-method-info h4 {
    font-size: 15px;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.contact-method-info a, .contact-method-info p {
    font-size: 14px;
    text-decoration: none;
    color: var(--text-muted-dark);
}

.map-placeholder-box {
    height: 550px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    background: var(--bg-white);
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 27px;
}

.map-placeholder-box h3 {
    color: var(--text-dark);
}

/* ==========================================================================
   CASE STUDIES SHOWCASE (LIGHT THEME)
   ========================================================================== */
.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 48px;
}

.case-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.case-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-yellow);
}

.case-img-box {
    height: 280px;
    overflow: hidden;
    border-bottom: 1px solid var(--border-light);
}

.case-body {
    padding: 40px;
}

.case-body h3 {
    color: var(--text-dark);
}

.case-savings-strip {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin-top: 24px;
}

.case-savings-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.case-savings-lbl {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted-dark);
}

.case-savings-val {
    font-size: 15px;
    font-weight: 800;
    color: var(--accent-yellow);
}

/* ==========================================================================
   REUSABLE GLOBAL MODAL (DARK THEME)
   ========================================================================== */
.service-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 8, 22, 0.85);
    backdrop-filter: blur(12px);
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.service-modal.active {
    opacity: 1;
    pointer-events: all;
}

.service-modal-box {
    max-width: 600px;
    width: 100%;
    background: var(--bg-dark-secondary);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-xl);
    padding: 40px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--text-light);
}

.service-modal.active .service-modal-box {
    transform: translateY(0);
}

.service-modal-box h3 {
    color: var(--text-light);
}

.service-modal-box .section-tag {
    border-color: var(--border-dark);
}

.close-modal-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: var(--text-muted-light);
    font-size: 24px;
    cursor: pointer;
}

/* ==========================================================================
   MOBILE RESPONSIVE OVERRIDES
   ========================================================================== */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 54px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 33px;
    }
    
    .floating-card {
        position: static !important;
        margin-top: 20px;
        animation: none !important;
        width: 100% !important;
        max-width: 100% !important;
        box-shadow: var(--shadow-soft) !important;
    }
    
    .trust-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .trust-title {
        border-right: none;
        border-bottom: 1px solid var(--border-light);
        width: 100%;
        padding-right: 0;
        padding-bottom: 14px;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .why-wide-card {
        grid-column: span 2;
    }
    
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .calc-dashboard-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    /* Horizontal scrollable timeline for mobile viewports */
    .timeline-wrapper {
        overflow-x: auto;
        padding-bottom: 24px;
        -webkit-overflow-scrolling: touch;
        margin-left: -15px; /* Bleed out of container for full width scroll */
        margin-right: -15px;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .timeline-grid {
        min-width: 900px;
        gap: 16px;
    }
    
    .timeline-line {
        min-width: 900px;
    }
    
    .featured-vendors-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .latest-blogs-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .blog-featured-card {
        grid-template-columns: 1fr;
    }
    
    .blog-details-layout {
        grid-template-columns: 1fr;
    }
    
    .blog-share-bar {
        flex-direction: row;
        position: relative;
        top: 0;
        justify-content: center;
    }
    
    .blog-sidebar {
        position: relative;
        top: 0;
    }
    
    .about-stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .about-timeline-line {
        left: 20px;
    }
    
    .about-timeline-item {
        width: 100%;
        padding-left: 40px;
        text-align: left !important;
    }
    
    .about-timeline-item:nth-child(even) {
        left: 0;
    }
    
    .about-timeline-item .timeline-dot {
        left: 12px !important;
        right: auto !important;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-layout-grid {
        grid-template-columns: 1fr;
    }
    
    .case-studies-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-banner-bg {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .desktop-nav, .header-right .consult-btn {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .header {
        height: 72px;
    }
    
    body {
        padding-top: 72px;
    }
    
    /* Trust Strip CSS Marquee */
    .trust-container {
        overflow: hidden !important;
    }
    
    .trust-scroll {
        display: flex !important;
        gap: 32px !important;
        width: max-content !important;
        animation: marquee 18s linear infinite !important;
        justify-content: flex-start !important;
    }
    
    /* Testimonials Mobile: Exactly 1 per row/screen */
    .testimonials-cards-wrapper {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    
    /* Case Study Savings Strip Mobile */
    .case-savings-strip {
        padding: 10px 12px !important;
        gap: 8px !important;
    }
    
    .case-savings-val {
        font-size: 13px !important;
    }
    
    .case-savings-lbl {
        font-size: 10px !important;
    }
    
    /* Native App Spacings & Paddings */
    .section-padding {
        padding: 48px 0;
    }
    
    .section-title {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 12px;
    }
    
    .section-desc {
        font-size: 15px;
        margin-bottom: 10px;
    }
    
    .hero-section {
        padding: 48px 0 31px;
    }
    
    .hero-title {
        font-size: 32px;
        line-height: 1.1;
        margin-bottom: 16px;
    }
    
    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 24px;
    }
    
    /* Card Layout Tightening */
    .why-card, .service-card, .testimonial-card, .vendor-card, .problem-card, .solution-panel, .about-stat-card, .team-member-card, .contact-method-card, .case-card {
        padding: 10px !important;
        border-radius: var(--radius-md) !important;
        min-height: auto !important;
    }
    
    .why-wide-card {
        padding: 20px !important;
        border-radius: var(--radius-md) !important;
    }
    
    /* Native App Calculator Results Grid */
    .calc-result-card {
        padding: 20px !important;
        border-radius: var(--radius-lg) !important;
    }
    
    .calc-result-card .metric-container {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    
    .calc-result-card .metric-item {
        padding: 12px !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 6px !important;
        margin-bottom: 0 !important;
        border-radius: var(--radius-sm) !important;
    }
    
    .calc-result-card .metric-circle-icon {
        width: 32px !important;
        height: 32px !important;
        font-size: 14px !important;
    }
    
    .calc-result-card .metric-value {
        font-size: 15px !important;
        margin-top: 0 !important;
    }
    
    .calc-result-card .metric-lbl {
        font-size: 9px !important;
    }
    
    .generation-graph-box {
        margin-top: 12px !important;
        padding-top: 12px !important;
    }
    
    .why-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .why-card {
        padding: 16px 12px;
    }
    
    .why-icon-box {
        width: 36px;
        height: 36px;
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .why-card h3 {
        font-size: 13px;
        line-height: 1.3;
        margin-bottom: 6px;
    }
    
    .why-card p {
        font-size: 11px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-vendors-grid {
        grid-template-columns: 1fr;
    }
    
    .latest-blogs-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .about-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .form-2col-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .footer-columns-wrapper {
        flex-direction: column;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: center !important;
        gap: 16px !important;
    }
    .newsletter-form .calc-input-box {
        max-width: none !important;
        width: 100% !important;
    }
    .newsletter-form .btn {
        width: 100% !important;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
            margin-bottom: 21px;
            margin-top: 21px;
    }

    .hero-stat-num {
    font-size: 33px;
    font-weight: 800;
    color: var(--text-light);
}
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .hero-stats-row {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: space-between;
        padding-bottom: 14px;
    }
    
    .cta-banner-bg {
        padding: 24px 2px;
    }
    
    .contact-glass-form {
        padding: 20px 16px !important;
    }
    
    .contact-form-row {
        flex-direction: row !important;
        gap: 12px !important;
        margin-bottom: 12px !important;
    }
    
    .contact-glass-form input, .contact-glass-form select {
        height: 40px !important;
        font-size: 14px !important;
    }
    
    .contact-glass-form input::placeholder, .contact-glass-form textarea::placeholder {
        font-size: 13px !important;
    }
    
    .contact-glass-form h3 {
        font-size: 18px !important;
        margin-bottom: 4px !important;
    }
    
    .contact-glass-form p {
        font-size: 13px !important;
        margin-bottom: 16px !important;
    }
}

/* Seamless horizontal loop marquee */
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==========================================================================
   LATEST BLOGS SECTION – Dark Mode
   ========================================================================== */
.latest-blogs-section {
    background-color: var(--bg-dark);
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.latest-blogs-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.latest-blogs-header .section-title {
    color: var(--text-white);
    margin-bottom: 8px;
}

.latest-blogs-header .section-desc {
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 0;
    max-width: 480px;
}

/* 3-column grid on desktop */
.latest-blogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* ---- Card ---- */
.lb-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.lb-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
    border-color: rgba(255, 185, 0, 0.3);
}

/* ---- Image box ---- */
.lb-card-img-box {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.lb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

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

/* ---- Category badge ---- */
.lb-category-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(255, 185, 0, 0.15);
    border: 1px solid rgba(255, 185, 0, 0.4);
    color: var(--accent-yellow, #ffb900);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 4px 12px;
    border-radius: 40px;
    text-transform: uppercase;
    backdrop-filter: blur(6px);
}

/* ---- Card body ---- */
.lb-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

/* ---- Meta row ---- */
.lb-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 500;
}

.lb-meta i {
    color: var(--accent-yellow, #ffb900);
    font-size: 11px;
}

.lb-dot {
    color: rgba(255, 255, 255, 0.25);
}

/* ---- Title ---- */
.lb-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.45;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.lb-title a {
    color: var(--text-white, #ffffff);
    text-decoration: none;
    transition: color 0.2s ease;
}

.lb-title a:hover {
    color: var(--accent-yellow, #ffb900);
}

/* ---- Description ---- */
.lb-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.65;
    margin: 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ---- Read link ---- */
.lb-read-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent-yellow, #ffb900);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: gap 0.2s ease, opacity 0.2s ease;
    margin-top: auto;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.lb-read-link:hover {
    gap: 10px;
    opacity: 0.85;
}

/* ==========================================================================
   RESPONSIVE – Latest Blogs
   ========================================================================== */

/* 2 columns on tablet */
@media (max-width: 1024px) {
    .latest-blogs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .latest-blogs-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* 2 columns on mobile (≤768px) */
@media (max-width: 768px) {
    .latest-blogs-section {
        padding: 16px 0;
    }
    .latest-blogs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .lb-card-img-box {
        height: 150px;
    }
    .lb-card-body {
        padding: 16px;
        gap: 10px;
    }
    .lb-title {
        font-size: 14px;
    }
    .lb-desc {
        font-size: 12.5px;
        /* Hide description on small screens to save space */
        display: none;
    }
}

/* 1 column only on very small phones (≤400px) */
@media (max-width: 400px) {
    .latest-blogs-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .lb-card-img-box {
        height: 180px;
    }
    .lb-desc {
        display: block;
    }
}
/* ==========================================================================
   SERVICES CAROUSEL (.svc-card)
   ========================================================================== */

/* The card container */
.svc-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.svc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.15);
}

/* Image Box */
.svc-card-img-box {
    position: relative;
    width: 100%;
    height: 220px; /* Fixed height for image */
    overflow: hidden;
}

.svc-card-img-box img.svc-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures aspect ratio is maintained and fills box */
    transition: transform 0.5s ease;
}

.svc-card:hover .svc-card-img-box img.svc-img {
    transform: scale(1.08);
}

/* Card Body */
.svc-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1; /* Pushes the read more link to the bottom if content is short */
    background: #111; /* Fallback for glass card effect if needed */
}

/* Title - 2 Lines Clamped */
.svc-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
    
    /* Clamp to exactly 2 lines */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: calc(20px * 1.4 * 2); /* font-size * line-height * lines */
}

.svc-title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.svc-title a:hover {
    color: #b58d3d;
}

/* Content/Description - 4 Lines Clamped */
.svc-desc {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    margin-bottom: 24px;
    
    /* Clamp to exactly 4 lines */
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: calc(14.5px * 1.6 * 4); /* font-size * line-height * lines */
}

/* Read More Link */
.svc-read-link {
    margin-top: auto; /* Pushes to bottom */
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #b58d3d;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.svc-read-link i {
    transition: transform 0.3s ease;
}

.svc-read-link:hover {
    color: #fff;
    gap: 12px;
    text-decoration: none;
}

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

/* ==========================================================================
   STYLISH OWL CAROUSEL ARROWS
   ========================================================================== */
.services-owl, .blogs-owl, .testimonials-owl {
    position: relative;
    padding-bottom: 20px;
}

.services-owl .owl-stage, .blogs-owl .owl-stage, .testimonials-owl .owl-stage {
    display: flex;
}

.services-owl .owl-item, .blogs-owl .owl-item, .testimonials-owl .owl-item {
    display: flex;
    flex: 1 0 auto;
}

.services-owl .owl-nav, .blogs-owl .owl-nav, .testimonials-owl .owl-nav {
    position: absolute;
    top: -80px; /* Align with section title */
    right: 0;
    margin: 0 !important;
}

.services-owl .owl-nav button.owl-prev, .blogs-owl .owl-nav button.owl-prev, .testimonials-owl .owl-nav button.owl-prev,
.services-owl .owl-nav button.owl-next, .blogs-owl .owl-nav button.owl-next, .testimonials-owl .owl-nav button.owl-next {
    width: 48px;
    height: 48px;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    font-size: 18px !important;
    margin-left: 12px !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.services-owl .owl-nav button.owl-prev:hover, .blogs-owl .owl-nav button.owl-prev:hover, .testimonials-owl .owl-nav button.owl-prev:hover,
.services-owl .owl-nav button.owl-next:hover, .blogs-owl .owl-nav button.owl-next:hover, .testimonials-owl .owl-nav button.owl-next:hover {
    background: #b58d3d !important;
    border-color: #b58d3d !important;
    transform: scale(1.05);
}

.testimonials-owl .owl-nav button.owl-prev,
.testimonials-owl .owl-nav button.owl-next {
    background: var(--bg-white) !important;
    border: 1px solid var(--border-light) !important;
    color: var(--text-dark) !important;
    box-shadow: var(--shadow-soft);
}

.testimonials-owl .owl-nav button.owl-prev:hover,
.testimonials-owl .owl-nav button.owl-next:hover {
    background: var(--accent-yellow) !important;
    color: var(--bg-dark) !important;
    border-color: var(--accent-yellow) !important;
}

@media (max-width: 768px) {
    .services-owl .owl-nav, .blogs-owl .owl-nav, .testimonials-owl .owl-nav {
        position: static;
        margin-top: 24px !important;
        display: flex;
        justify-content: center;
    }
}
