/* Base & Reset - Premium Dark Theme */
:root {
    --primary: #00F0FF;
    --primary-glow: rgba(0, 240, 255, 0.6);
    --secondary: #FFB800;
    --bg-main: #0B0E14;
    --bg-alt: #121822;
    --bg-card: rgba(18, 24, 34, 0.7);
    --text-main: #FFFFFF;
    --text-muted: #94A3B8;
    --border-color: rgba(0, 240, 255, 0.15);
    --font-sans: 'Outfit', sans-serif;
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --accent-gradient: linear-gradient(135deg, #00F0FF 0%, #3B82F6 100%);
    --bg-gradient: radial-gradient(circle at top right, rgba(0, 240, 255, 0.1) 0%, rgba(11, 14, 20, 1) 40%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-sans);
    background: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: var(--bg-gradient);
    background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
    color: #FFFFFF;
}

a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.text-gradient { 
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.highlight { color: transparent; -webkit-text-fill-color: transparent; background: var(--accent-gradient); -webkit-background-clip: text; background-clip: text; text-shadow: 0 0 20px var(--primary-glow); }

/* Preloader */
#preloader { position: fixed; inset: 0; z-index: 9999; display: flex; justify-content: center; align-items: center; pointer-events: none; }
.preloader-panel { position: absolute; width: 100%; height: 50vh; background: #020617; z-index: 1; }
.top-panel { top: 0; }
.bottom-panel { bottom: 0; }
.creative-loader { position: relative; z-index: 2; display: flex; justify-content: center; align-items: center; width: 100%; height: 100vh; }
.power-grid-loader { display: flex; flex-direction: column; align-items: center; gap: 20px; z-index: 10; }
.solar-svg { width: 140px; height: 140px; overflow: visible; }
.draw-path { fill: none; stroke: var(--primary); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 300; stroke-dashoffset: 300; filter: drop-shadow(0 0 8px var(--primary-glow)); animation: drawSolar 1.5s ease-out forwards; }
.draw-path.panel-surface { fill: rgba(0, 240, 255, 0.05); }
.draw-path.ray { stroke: #FFB800; filter: drop-shadow(0 0 8px rgba(255, 184, 0, 0.8)); stroke-dasharray: 100; stroke-dashoffset: 100; animation: drawRay 1s ease-out forwards 0.5s; }
.loader-status { text-align: center; font-family: var(--font-heading); color: var(--primary); text-transform: uppercase; letter-spacing: 3px; display: flex; flex-direction: column; gap: 8px; }
.power-text { font-size: 0.85rem; color: var(--text-muted); font-weight: 600; letter-spacing: 4px; }
.power-percentage { font-size: 2.5rem; font-weight: 700; text-shadow: 0 0 15px var(--primary-glow); color: #fff; }
.loader-logo { width: 260px; opacity: 0; position: absolute; transform: scale(0.8); z-index: 10; filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5)); }

@keyframes drawSolar { to { stroke-dashoffset: 0; } }
@keyframes drawRay { to { stroke-dashoffset: 0; } }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.85rem 2rem; border-radius: 50px; font-weight: 600; cursor: pointer; text-align: center; border: 1px solid transparent; transition: all 0.3s ease; font-family: var(--font-heading); font-size: 1rem;
}
.btn-primary { 
    background: var(--primary); color: #000; 
    box-shadow: 0 4px 20px var(--primary-glow); 
}
.btn-primary:hover { 
    background: #059669; transform: translateY(-2px); 
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.4); 
    color: #fff;
}
.btn-large { padding: 1.15rem 2.5rem; font-size: 1.1rem; }
.btn-block { display: block; width: 100%; }
.btn-pulse { animation: pulseBtn 2s infinite; }
@keyframes pulseBtn {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Hero Section */
.hero { position: relative; height: 100vh; min-height: 650px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.video-container { position: absolute; inset: 0; z-index: -2; overflow: hidden; background-color: #000; }
.hero-bg-video {
    width: 100vw; height: 56.25vw; min-height: 100vh; min-width: 177.77vh; 
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); object-fit: cover;
    opacity: 0.6;
}
.hero-overlay { 
    position: absolute; inset: 0; 
    background: radial-gradient(circle at center, rgba(11, 17, 32, 0.4) 0%, rgba(11, 17, 32, 0.9) 100%);
    z-index: -1; 
}
.hero-container { width: 100%; position: relative; z-index: 1; text-align: center; display: flex; flex-direction: column; align-items: center; margin-top: 0; }
.hero-content { max-width: 900px; display: flex; flex-direction: column; align-items: center; }
.hero-badge { 
    display: inline-block; padding: 0.5rem 1.5rem; 
    background: rgba(16, 185, 129, 0.1); border: 1px solid rgba(16, 185, 129, 0.3); 
    border-radius: 50px; font-size: 0.9rem; font-weight: 600; color: var(--primary); margin-bottom: 2rem; 
    text-transform: uppercase; letter-spacing: 2px; box-shadow: 0 0 20px var(--primary-glow);
}
.hero-title { font-size: 5.5rem; margin-bottom: 1.5rem; letter-spacing: -2px; line-height: 1.1; color: #ffffff; text-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.hero-subtitle { font-size: 1.35rem; color: var(--text-muted); margin-bottom: 3rem; font-weight: 400; line-height: 1.8; max-width: 700px; }
.hero-actions { display: flex; align-items: center; justify-content: center; gap: 2.5rem; flex-wrap: wrap; }
.hero-guarantee { display: flex; align-items: center; gap: 0.75rem; font-size: 1.1rem; font-weight: 500; color: var(--text-main); }
.hero-guarantee i { color: var(--primary); font-size: 1.75rem; filter: drop-shadow(0 0 5px var(--primary)); }

/* Glass Cards (General) */
.glass-card, .tilt-card {
    background: var(--bg-card); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color); border-radius: 16px; padding: 3rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.glass-card:hover, .tilt-card:hover {
    border-color: rgba(16, 185, 129, 0.4); box-shadow: 0 25px 50px rgba(0,0,0,0.5), 0 0 30px var(--primary-glow); transform: translateY(-5px);
}

/* Contact Section & B2B Calculator */
.contact-section { padding: 8rem 0; background: var(--bg-main); position: relative; }
.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; max-width: 1100px; margin: 0 auto; align-items: center; }
.calculator-card { padding: 3rem; background: var(--bg-card); border-radius: 24px; border: 1px solid var(--border-color); box-shadow: 0 20px 50px rgba(0,0,0,0.6); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.calculator-card h2 { font-size: 2.5rem; margin-bottom: 0.5rem; }
.calculator-card p { color: var(--text-muted); margin-bottom: 2rem; }
.calc-input { margin: 2rem 0; }
.calc-input label { font-weight: 500; display: block; margin-bottom: 1rem; font-size: 1.1rem; color: var(--text-main); }
.highlight-text { color: var(--primary); font-weight: 700; font-family: var(--font-heading); font-size: 1.2rem; text-shadow: 0 0 10px var(--primary-glow); }
.custom-slider { width: 100%; -webkit-appearance: none; height: 6px; border-radius: 4px; background: rgba(255,255,255,0.1); outline: none; }
.custom-slider::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 20px; height: 20px; border-radius: 50%; background: var(--primary); cursor: pointer; box-shadow: 0 0 15px var(--primary); transition: transform 0.2s; }
.custom-slider::-webkit-slider-thumb:hover { transform: scale(1.3); }
.calc-results { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.result-box { display: flex; align-items: center; gap: 1.25rem; padding: 1.5rem; background: rgba(15, 23, 42, 0.8); border-radius: 12px; border: 1px solid var(--border-color); }
.result-box .res-icon { font-size: 2.5rem; color: var(--primary); filter: drop-shadow(0 0 10px var(--primary-glow)); }
.result-box h4 { font-size: 1rem; color: var(--text-muted); margin: 0 0 0.5rem; font-family: var(--font-body); font-weight: 500; }
.res-value { font-size: 1.75rem; font-weight: 700; font-family: var(--font-heading); color: #fff; }

.contact-form-card { background: rgba(15, 23, 42, 0.6); backdrop-filter: blur(12px); border: 1px solid var(--border-color); border-radius: 16px; padding: 3.5rem; }
.contact-form-card h3 { font-size: 2.25rem; margin-bottom: 2.5rem; }
.b2b-form .form-group { margin-bottom: 1.5rem; }
.b2b-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.b2b-form label { display: block; font-size: 0.95rem; color: var(--text-muted); margin-bottom: 0.5rem; font-family: var(--font-body); }
.b2b-form input, .b2b-form select { 
    width: 100%; background: rgba(0,0,0,0.2); border: 1px solid rgba(255,255,255,0.1); 
    border-radius: 8px; padding: 1.15rem; color: #fff; font-family: inherit; font-size: 1rem; transition: all 0.3s; 
}
.b2b-form input:focus, .b2b-form select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px var(--primary-glow); background: rgba(0,0,0,0.4); }

/* Section Headers */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { font-size: 3.25rem; margin-bottom: 1rem; letter-spacing: -1px; }
.section-header p { color: var(--text-muted); font-size: 1.2rem; max-width: 700px; margin: 0 auto; }
.align-left { text-align: left; }
.align-left p { margin: 0; }

/* Benefits */
.benefits { padding: 8rem 0; background: var(--bg-main); position: relative; }
.benefits-container { display: flex; gap: 5rem; align-items: flex-start; }
.benefits-left { flex: 1; position: sticky; top: 120px; }
.benefits-right { flex: 1; display: flex; flex-direction: column; gap: 2rem; }
.benefit-card { padding: 2.5rem; }
.icon-wrapper { width: 70px; height: 70px; border-radius: 16px; background: rgba(16, 185, 129, 0.1); border: 1px solid rgba(16, 185, 129, 0.2); display: flex; align-items: center; justify-content: center; margin-bottom: 2rem; color: var(--primary); font-size: 2.5rem; box-shadow: inset 0 0 20px rgba(16, 185, 129, 0.1); }
.benefit-card h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.benefit-card p { color: var(--text-muted); font-size: 1.05rem; }

/* Tata Power Section */
.tata-power-section { padding: 8rem 0; background: var(--bg-main); border-top: 1px solid var(--border-color); }
.tata-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.tata-image { position: relative; }
.tata-content p { color: var(--text-muted); font-size: 1.1rem; line-height: 1.7; margin-bottom: 1.5rem; }
.tata-features { display: flex; gap: 1.5rem; margin-top: 2.5rem; flex-wrap: wrap; }
.tata-feat { display: flex; align-items: center; gap: 0.75rem; background: rgba(0, 240, 255, 0.1); padding: 0.75rem 1.25rem; border-radius: 50px; font-weight: 600; color: #fff; font-size: 0.95rem; border: 1px solid rgba(0, 240, 255, 0.2); }
.tata-feat i { color: var(--primary); font-size: 1.3rem; }

/* Expertise Section */
.expertise { padding: 8rem 0; background: var(--bg-alt); overflow: hidden; }
.expertise-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.expertise-content h2 { font-size: 3.5rem; margin-bottom: 1.5rem; letter-spacing: -1px; }
.expertise-content p { color: var(--text-muted); font-size: 1.15rem; margin-bottom: 3.5rem; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.stat-number { font-size: 3.5rem; color: var(--text-main); margin-bottom: 0.25rem; font-weight: 800; display: inline-block; text-shadow: 0 0 20px rgba(255,255,255,0.2); }
.stats-grid span { font-size: 3.5rem; color: var(--primary); font-weight: 800; }
.stat-label { font-size: 0.9rem; font-weight: 500; text-transform: uppercase; letter-spacing: 2px; color: var(--text-muted); }
.expertise-image { position: relative; }
.rounded-image { width: 100%; border-radius: 20px; box-shadow: 0 30px 60px rgba(0,0,0,0.6); }
.floating-badge { position: absolute; bottom: -30px; left: -30px; background: rgba(15, 23, 42, 0.9); backdrop-filter: blur(10px); border: 1px solid var(--border-color); padding: 1.5rem 2.5rem; border-radius: 16px; display: flex; align-items: center; gap: 1.25rem; font-weight: 600; font-family: var(--font-heading); font-size: 1.1rem; box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
.floating-badge i { color: var(--primary); font-size: 2.5rem; filter: drop-shadow(0 0 10px var(--primary-glow)); }

/* Financing */
.financing { padding: 8rem 0; background: var(--bg-main); }
.pricing-table { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; max-width: 1000px; margin: 0 auto; }
.pricing-card { position: relative; padding: 4rem 3rem; background: var(--bg-card); border-radius: 24px; border: 1px solid var(--border-color); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); box-shadow: 0 15px 35px rgba(0,0,0,0.4); transition: transform 0.3s; }
.pricing-card.premium { border-color: var(--primary); transform: scale(1.05); box-shadow: 0 25px 50px rgba(0,0,0,0.6), 0 0 40px var(--primary-glow); background: rgba(0, 240, 255, 0.03); }
.popular-badge { position: absolute; top: -16px; left: 50%; transform: translateX(-50%); background: var(--primary); color: #000; padding: 0.5rem 1.5rem; border-radius: 50px; font-size: 0.85rem; font-weight: 700; font-family: var(--font-heading); text-transform: uppercase; letter-spacing: 1.5px; box-shadow: 0 5px 15px var(--primary-glow); }
.card-header h3 { font-size: 2.5rem; margin-bottom: 0.5rem; }
.card-header p { color: var(--primary); font-weight: 500; margin-bottom: 2.5rem; font-size: 1.1rem; }
.features { list-style: none; }
.features li { display: flex; align-items: flex-start; gap: 1.25rem; margin-bottom: 1.5rem; color: var(--text-main); font-size: 1.1rem; }
.features li i { color: var(--primary); font-size: 1.5rem; margin-top: 2px; }

/* How It Works Showcase Section */
.how-it-works { padding: 8rem 0; background: var(--bg-main); position: relative; overflow: hidden; }
.how-it-works-showcase { display: flex; flex-direction: column; gap: 3.5rem; max-width: 1200px; margin: 0 auto; }
.hiw-image-banner { position: relative; width: 100%; border-radius: 24px; overflow: hidden; box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(16, 185, 129, 0.15); border: 1px solid var(--border-color); background: #020617; }
.solar-flow-image { width: 100%; height: auto; display: block; filter: brightness(0.95) contrast(1.08); transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s; }
.hiw-image-banner:hover .solar-flow-image { transform: scale(1.02); filter: brightness(1.05) contrast(1.1); }
.banner-badge-left, .banner-badge-right { position: absolute; bottom: 20px; padding: 0.6rem 1.4rem; border-radius: 50px; font-family: var(--font-heading); font-size: 0.95rem; font-weight: 700; display: flex; align-items: center; gap: 0.6rem; backdrop-filter: blur(16px); z-index: 5; box-shadow: 0 10px 25px rgba(0,0,0,0.5); }
.banner-badge-left { left: 24px; background: rgba(59, 130, 246, 0.85); color: #fff; border: 1px solid rgba(147, 197, 253, 0.4); }
.banner-badge-right { right: 24px; background: rgba(16, 185, 129, 0.85); color: #020617; border: 1px solid rgba(110, 231, 183, 0.4); }

.hiw-comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.hiw-system-card { padding: 2.5rem; border-radius: 24px; transition: all 0.35s ease; border: 1px solid var(--border-color); background: var(--bg-card); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); box-shadow: 0 10px 30px rgba(0,0,0,0.5); position: relative; overflow: hidden; }
.hiw-system-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 25px rgba(0, 240, 255, 0.2); border-color: var(--primary); }
.hiw-system-card.offgrid-card:hover { box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 25px rgba(16, 185, 129, 0.2); border-color: #10B981; }

.system-header { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 1.75rem; }
.system-icon { width: 60px; height: 60px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; flex-shrink: 0; }
.ongrid-header .system-icon { background: rgba(59, 130, 246, 0.15); color: #3B82F6; border: 1px solid rgba(59, 130, 246, 0.3); }
.offgrid-header .system-icon { background: rgba(16, 185, 129, 0.15); color: var(--primary); border: 1px solid rgba(16, 185, 129, 0.3); }

.system-header h3 { font-size: 1.6rem; margin-bottom: 0.3rem; color: #fff; }
.system-tag { font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); }

.system-features-container { display: flex; flex-direction: column; gap: 1.25rem; }
.system-feature { display: flex; align-items: flex-start; gap: 1.25rem; background: rgba(0, 0, 0, 0.2); padding: 1.25rem; border-radius: 16px; border: 1px solid rgba(255, 255, 255, 0.05); transition: all 0.3s ease; }
.system-feature:hover { background: rgba(0, 0, 0, 0.4); transform: translateX(5px); border-color: rgba(255, 255, 255, 0.1); }
.feat-icon { width: 45px; height: 45px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.ongrid-header ~ .system-features-container .feat-icon { background: rgba(59, 130, 246, 0.1); color: #3B82F6; }
.offgrid-header ~ .system-features-container .feat-icon { background: rgba(16, 185, 129, 0.1); color: #10B981; }
.feat-text h4 { font-size: 1.1rem; color: #fff; margin-bottom: 0.25rem; font-weight: 700; }
.feat-text p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.5; margin: 0; }

.hiw-steps-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.step-box { padding: 2.5rem 1.5rem; border-radius: 20px; position: relative; transition: all 0.3s ease; border: 1px solid var(--border-color); background: var(--bg-card); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); box-shadow: 0 10px 25px rgba(0,0,0,0.3); }
.step-box:hover { transform: translateY(-6px); border-color: var(--primary); box-shadow: 0 15px 30px rgba(0,0,0,0.5), 0 0 20px var(--primary-glow); }
.step-num { font-size: 2.2rem; font-weight: 800; font-family: var(--font-heading); color: rgba(255,255,255,0.08); position: absolute; top: 15px; right: 15px; }
.step-box h4 { font-size: 1.25rem; color: var(--primary); margin-bottom: 0.75rem; }
.step-box p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; margin: 0; }

/* Hybrid Solar Solution Section */
.hybrid-section { padding: 6rem 0; background: var(--bg); position: relative; border-top: 1px solid var(--border-color); }
.hybrid-showcase-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 3rem; align-items: center; }
.hybrid-diagram-card { border-radius: 24px; overflow: hidden; background: #ffffff; padding: 1.5rem; border: 1px solid rgba(255, 255, 255, 0.2); box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(245, 158, 11, 0.15); transition: transform 0.4s ease, box-shadow 0.4s ease; display: flex; align-items: center; justify-content: center; position: relative; }
.hybrid-diagram-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(245, 158, 11, 0.25); border-color: #F59E0B; }
.hybrid-diagram-img { width: 100%; height: auto; object-fit: contain; border-radius: 14px; display: block; filter: contrast(1.02); }
.hybrid-card { padding: 2.5rem; border-radius: 24px; border: 1px solid var(--border-color); background: var(--bg-card); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); box-shadow: 0 10px 30px rgba(0,0,0,0.5); position: relative; overflow: hidden; }
.hybrid-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 25px rgba(245, 158, 11, 0.2); border-color: #F59E0B; }
.hybrid-header .system-icon { background: rgba(245, 158, 11, 0.15); color: #F59E0B; border: 1px solid rgba(245, 158, 11, 0.3); }
.hybrid-header ~ .system-features-container .feat-icon { background: rgba(245, 158, 11, 0.1); color: #F59E0B; }
.hybrid-tag { color: #F59E0B; font-weight: 700; }

/* Trust & Marquees */
.trust-bar, .reviews-section { padding: 5rem 0; background: var(--bg-alt); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); overflow: hidden; }
.trust-title { text-align: center; font-size: 0.9rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 3px; margin-bottom: 3rem; }
.logo-scroll-gsap, .review-scroll-gsap { overflow: hidden; position: relative; white-space: nowrap; }
.logo-track-gsap, .review-track-gsap { display: inline-flex; gap: 6rem; width: max-content; }
.client-logo { display: inline-flex; align-items: center; gap: 1rem; font-family: var(--font-heading); font-size: 1.75rem; font-weight: 700; color: rgba(255,255,255,0.5); }
.client-logo i { font-size: 2.5rem; color: rgba(255,255,255,0.2); }

/* Review Cards */
.review-card { background: rgba(30, 41, 59, 0.4); border: 1px solid var(--border-color); border-radius: 16px; padding: 2.5rem; width: 450px; white-space: normal; transition: all 0.3s ease; }
.review-card:hover { background: rgba(30, 41, 59, 0.8); border-color: rgba(255,255,255,0.2); }
.review-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.reviewer-meta { display: flex; align-items: center; gap: 0.85rem; }
.reviewer-avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem; color: #fff; box-shadow: 0 4px 12px rgba(0,0,0,0.3); flex-shrink: 0; }
.reviewer-info strong { display: block; font-family: var(--font-heading); font-size: 1.1rem; color: #fff; margin-bottom: 0.15rem; }
.verified-tag { display: inline-flex; align-items: center; gap: 0.3rem; font-size: 0.8rem; color: #34A853; font-weight: 600; }
.verified-tag i { font-size: 0.95rem; }
.g-logo-wrap { width: 38px; height: 38px; background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.g-logo-svg { display: block; width: 22px; height: 22px; }
.stars { color: var(--secondary); margin-bottom: 1.5rem; display: flex; gap: 0.35rem; font-size: 1.1rem; }
.review-card p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.7; }
.google-rating { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-top: 1.5rem; }
.google-rating i { color: var(--secondary); font-size: 1.75rem; }
.google-rating span { font-family: var(--font-heading); font-weight: 700; font-size: 1.2rem; color: #fff; }

/* Impact Stats */
.impact-section { padding: 6rem 0; background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(11, 17, 32, 1) 100%); border-top: 1px solid rgba(16, 185, 129, 0.2); position: relative; }
.impact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3rem; text-align: center; }
.impact-item h3 { font-size: 4rem; font-weight: 800; margin: 0; display: flex; justify-content: center; align-items: center; color: #fff; text-shadow: 0 0 30px rgba(16, 185, 129, 0.3); }
.impact-item span.suffix { font-size: 2.5rem; margin-left: 0.5rem; color: var(--primary); }
.impact-item p { font-size: 1.1rem; color: var(--text-muted); margin-top: 1rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 500; }

/* Differentiators & About Us */
.diff-section, .about-us { padding: 8rem 0; background: var(--bg-main); }
.diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; margin-top: 4rem; }
.diff-card { background: var(--bg-card); border-radius: 20px; overflow: hidden; border: 1px solid var(--border-color); transition: transform 0.4s ease; text-align: center; }
.diff-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 20px rgba(0, 240, 255, 0.2); border-color: rgba(0, 240, 255, 0.4); }
.diff-card-img { width: 100%; height: 250px; object-fit: cover; border-bottom: 1px solid var(--border-color); }
.diff-card h3 { padding: 2rem 1.5rem 1rem; font-size: 1.4rem; color: var(--text-main); }
.diff-card p { padding: 0 1.5rem 2.5rem; color: var(--text-muted); font-size: 1.05rem; line-height: 1.6; }

.about-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-title { font-size: 3.5rem; margin-bottom: 2rem; letter-spacing: -1px; }
.lead-text { font-size: 1.4rem; font-weight: 400; color: #fff; margin-bottom: 1.5rem; line-height: 1.6; }
.about-features { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2.5rem; }
.about-features span { display: flex; align-items: center; gap: 1rem; font-size: 1.1rem; font-family: var(--font-heading); color: var(--text-main); }
.about-features span i { color: var(--primary); font-size: 1.5rem; filter: drop-shadow(0 0 8px var(--primary-glow)); }

/* Shorts Section */
.shorts-section { padding: 8rem 0; background: var(--bg-alt); }
.shorts-slider { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 2.5rem; margin-top: 4rem; padding-bottom: 3rem; -webkit-overflow-scrolling: touch; }
.shorts-slider::-webkit-scrollbar { height: 6px; }
.shorts-slider::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 10px; }
.short-card { flex: 0 0 320px; scroll-snap-align: center; border-radius: 16px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.5); height: 570px; border: 1px solid var(--border-color); }

/* FAQ Section */
.faq-section { padding: 8rem 0; background: var(--bg-main); }
.faq-container { max-width: 850px; margin: 4rem auto 0; display: flex; flex-direction: column; gap: 1.25rem; }
.faq-item { background: rgba(30, 41, 59, 0.4); border: 1px solid var(--border-color); border-radius: 16px; margin-bottom: 1.5rem; overflow: hidden; transition: all 0.3s ease; }
.faq-item:hover { border-color: rgba(255,255,255,0.2); }
.faq-question { padding: 1.75rem 2rem; font-family: var(--font-heading); font-size: 1.15rem; font-weight: 600; color: #fff; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-question i { font-size: 1.2rem; color: var(--primary); transition: transform 0.3s ease; }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer { padding: 0 2rem; max-height: 0; overflow: hidden; transition: all 0.4s ease; }
.faq-item.active .faq-answer { padding: 0 2rem 1.75rem 2rem; max-height: 300px; }
.faq-answer p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.6; margin: 0; }

.faq-container:not(.expanded) .faq-item:nth-child(n+6) { display: none; }
.faq-toggle-container { text-align: center; margin-top: 3rem; }

/* Location Section */
.location-section { padding: 8rem 0; background: var(--bg-alt); position: relative; }
.location-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.map-container { position: relative; border-radius: 20px; overflow: hidden; height: 400px; padding: 0; border: 1px solid var(--border-color); }
.map-container iframe { width: 100%; height: 100%; object-fit: cover; }
.animated-pin { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: var(--primary); font-size: 3rem; z-index: 10; pointer-events: none; }
.pulse-ring {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 60px; height: 60px; background: rgba(0, 240, 255, 0.4);
    border-radius: 50%; animation: pulseRing 2s infinite; z-index: -1;
}
@keyframes pulseRing {
    0% { transform: translate(-50%, -50%) scale(0.5); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
}

.location-details h3 { font-size: 2.25rem; margin-bottom: 1rem; }
.location-details p { color: var(--text-muted); font-size: 1.1rem; line-height: 1.7; margin-bottom: 2rem; }
.contact-info-list { display: flex; flex-direction: column; gap: 1rem; }
.contact-item { display: flex; align-items: center; gap: 1rem; font-size: 1.1rem; color: #fff; }
.contact-item i { color: var(--primary); font-size: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* Footer */
footer { background: #020617; border-top: 1px solid rgba(255,255,255,0.05); padding: 6rem 0 3rem; }
.footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 5rem; margin-bottom: 5rem; }
.footer-logo p { color: var(--text-muted); margin-top: 1.5rem; max-width: 400px; font-size: 1.1rem; line-height: 1.7; }
.footer-links h4 { margin-bottom: 2rem; font-size: 1.25rem; color: #fff; }
.footer-links a { display: block; color: var(--text-muted); margin-bottom: 1.25rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--primary); }
.footer-bottom { text-align: center; color: rgba(255,255,255,0.3); font-size: 0.95rem; padding-top: 3rem; border-top: 1px solid rgba(255,255,255,0.05); }

/* Floating Actions & Widgets */
.floating-actions { position: fixed; right: 30px; bottom: 30px; display: flex; flex-direction: column; gap: 15px; z-index: 999; }
.float-btn { width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.75rem; box-shadow: 0 10px 25px rgba(0,0,0,0.5); transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); border: 1px solid rgba(255,255,255,0.1); }
.float-btn:hover { transform: scale(1.15) translateY(-5px); }
.float-whatsapp { background: #25D366; }
.float-phone { background: var(--primary); color: #000; }
.float-chat { background: var(--secondary); color: #000; }

/* Chat Widget */
.chat-widget { position: fixed; bottom: 110px; right: 30px; width: 360px; background: var(--bg-alt); border-radius: 16px; border: 1px solid var(--border-color); box-shadow: 0 20px 50px rgba(0,0,0,0.6); display: flex; flex-direction: column; z-index: 1000; overflow: hidden; transform: translateY(20px) scale(0.95); opacity: 0; pointer-events: none; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.chat-widget.active { transform: translateY(0) scale(1); opacity: 1; pointer-events: all; }
.chat-header { background: rgba(255,255,255,0.03); border-bottom: 1px solid var(--border-color); padding: 1.5rem; display: flex; justify-content: space-between; align-items: center; }
.chat-body { padding: 1.5rem; height: 350px; overflow-y: auto; background: var(--bg-main); display: flex; flex-direction: column; gap: 1rem; }
.chat-msg { max-width: 85%; padding: 1rem 1.25rem; border-radius: 12px; font-size: 0.95rem; line-height: 1.5; }
.bot-msg { background: rgba(30, 41, 59, 0.8); color: var(--text-main); align-self: flex-start; border-bottom-left-radius: 4px; border: 1px solid var(--border-color); }
.user-msg { background: var(--primary); color: #000; align-self: flex-end; border-bottom-right-radius: 4px; font-weight: 500; }
.chat-footer { padding: 1.25rem; border-top: 1px solid var(--border-color); display: flex; gap: 0.75rem; background: rgba(255,255,255,0.02); }
.chat-footer input { flex: 1; background: rgba(0,0,0,0.3); border: 1px solid var(--border-color); padding: 0.75rem 1.25rem; border-radius: 50px; outline: none; color: #fff; }
.chat-footer button { width: 45px; height: 45px; border-radius: 50%; background: var(--primary); color: #000; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; border: none; cursor: pointer; transition: transform 0.2s; }
.chat-footer button:hover { transform: scale(1.1); }

/* Popup Modal */
.popup-modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.8); z-index: 2000; align-items: center; justify-content: center; backdrop-filter: blur(10px); }
.popup-modal.active { display: flex; }
.popup-content { background: var(--bg-alt); padding: 4rem 3rem; border-radius: 20px; width: 90%; max-width: 500px; position: relative; box-shadow: 0 25px 50px rgba(0,0,0,0.5); text-align: center; border: 1px solid var(--border-color); animation: popupAnim 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
@keyframes popupAnim { from { transform: scale(0.9) translateY(20px); opacity: 0; } to { transform: scale(1) translateY(0); opacity: 1; } }
.popup-close { position: absolute; top: 20px; right: 25px; font-size: 1.75rem; cursor: pointer; color: var(--text-muted); transition: color 0.3s; }
.popup-close:hover { color: #fff; }
.popup-content h3 { font-size: 2.25rem; margin-bottom: 1rem; color: #fff; }
.popup-content p { color: var(--text-muted); margin-bottom: 2rem; font-size: 1.1rem; }
.popup-form input { width: 100%; padding: 1.15rem; margin-bottom: 1.25rem; border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; background: rgba(0,0,0,0.3); color: #fff; font-family: var(--font-body); font-size: 1rem; }
.popup-form input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-glow); }

/* ==========================================================================
   RESPONSIVE DESIGN SYSTEM (Mobile-Friendly, Scaled Fonts & Images)
   ========================================================================== */

/* Tablet & Medium Screens */
@media (max-width: 1024px) {
    .container { padding: 0 1.5rem; }
    .hero-title { font-size: 3.75rem; }
    .expertise-wrapper, .contact-wrapper, .location-wrapper, .tata-wrapper, .about-wrapper { grid-template-columns: 1fr; gap: 3.5rem; }
    .map-container { height: 320px; }
    .pricing-table { grid-template-columns: 1fr; max-width: 550px; }
    .pricing-card.premium { transform: scale(1); }
    .benefits-container { flex-direction: column; }
    .benefits-left { position: static; text-align: center; margin-bottom: 2rem; }
    .align-left { text-align: center; }
    .hiw-comparison-grid { grid-template-columns: 1fr; }
    .hiw-steps-row { grid-template-columns: repeat(2, 1fr); }
    .diff-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}

/* Mobile Screens (Phones & Phablets) */
@media (max-width: 768px) {
    .container { padding: 0 1.25rem; }
    
    /* Global Section Paddings (Decreased for compact mobile view) */
    .contact-section, .benefits, .tata-power-section, .expertise, 
    .financing, .how-it-works, .about-us, .diff-section, 
    .shorts-section, .faq-section, .location-section { 
        padding: 4rem 0; 
    }
    
    /* Section Headers */
    .section-header { margin-bottom: 2.5rem; }
    .section-header h2 { font-size: 2rem; }
    .section-header p { font-size: 0.95rem; line-height: 1.5; }
    
    /* Preloader */
    .power-grid-loader { transform: scale(0.75); }
    .solar-svg { width: 100px; height: 100px; }
    .loader-logo { width: 200px; }
    
    /* Hero Section */
    .hero { height: auto; min-height: 520px; padding: 4.5rem 0 3rem; }
    .hero-badge { font-size: 0.75rem; padding: 0.4rem 1rem; margin-bottom: 1.25rem; }
    .hero-title { font-size: 2.4rem; letter-spacing: -1px; margin-bottom: 1rem; }
    .hero-subtitle { font-size: 1rem; line-height: 1.6; margin-bottom: 2rem; }
    .hero-actions { flex-direction: column; gap: 1rem; width: 100%; }
    .hero-actions .btn { width: 100%; font-size: 1rem; padding: 0.9rem 1.5rem; }
    .hero-guarantee { font-size: 0.95rem; }
    
    /* B2B Form & ROI Calculator */
    .contact-wrapper { gap: 2.5rem; }
    .calculator-card { padding: 1.75rem 1.25rem; border-radius: 18px; }
    .calculator-card h2 { font-size: 1.75rem; }
    .calculator-card p { font-size: 0.9rem; margin-bottom: 1.5rem; }
    .calc-input { margin: 1.25rem 0; }
    .calc-input label { font-size: 0.95rem; margin-bottom: 0.75rem; }
    .highlight-text { font-size: 1.1rem; }
    .calc-results { gap: 1rem; }
    .result-box { padding: 1rem; gap: 1rem; }
    .result-box .res-icon { font-size: 2rem; }
    .result-box h4 { font-size: 0.85rem; }
    .res-value { font-size: 1.35rem; }
    
    .contact-form-card { padding: 1.75rem 1.25rem; border-radius: 18px; }
    .contact-form-card h3 { font-size: 1.6rem; margin-bottom: 1.5rem; }
    .b2b-form .form-row { grid-template-columns: 1fr; gap: 0; }
    .b2b-form .form-group { margin-bottom: 1rem; }
    .b2b-form label { font-size: 0.88rem; }
    .b2b-form input, .b2b-form select { padding: 0.85rem 1rem; font-size: 0.92rem; }
    
    /* Trust Bar Infinite Marquee */
    .trust-bar, .reviews-section { padding: 3rem 0; }
    .trust-title { font-size: 0.78rem; letter-spacing: 2px; margin-bottom: 1.75rem; }
    .logo-track-gsap { gap: 3rem; }
    .client-logo { font-size: 1.2rem; gap: 0.6rem; }
    .client-logo i { font-size: 1.6rem; }
    
    /* How Solar Works (Decreased Images & Components) */
    .how-it-works { padding: 3.5rem 0; }
    .how-it-works-showcase { gap: 1.5rem; }
    .hiw-image-banner { border-radius: 16px; }
    .solar-flow-image { max-height: 220px; object-fit: cover; }
    .banner-badge-left, .banner-badge-right { position: static; margin: 8px auto; width: fit-content; text-align: center; font-size: 0.8rem; padding: 0.4rem 1rem; }
    .hiw-comparison-grid { gap: 1.5rem; }
    .hiw-system-card { padding: 1.5rem 1.25rem; border-radius: 18px; }
    .system-header { gap: 1rem; margin-bottom: 1.25rem; }
    .system-icon { width: 46px; height: 46px; font-size: 1.35rem; border-radius: 12px; }
    .system-header h3 { font-size: 1.25rem; }
    .system-tag { font-size: 0.75rem; }
    .system-feature { padding: 0.9rem; gap: 0.9rem; border-radius: 12px; }
    .feat-icon { width: 36px; height: 36px; font-size: 1.1rem; border-radius: 8px; }
    .feat-text h4 { font-size: 0.95rem; }
    .feat-text p { font-size: 0.85rem; }
    
    .hiw-steps-row { grid-template-columns: 1fr; gap: 0.85rem; margin-top: 0.5rem; }
    .step-box { padding: 1.25rem 1rem; border-radius: 14px; opacity: 1 !important; visibility: visible !important; }
    .step-num { font-size: 1.5rem; top: 10px; right: 12px; }
    .step-box h4 { font-size: 1.05rem; margin-bottom: 0.35rem; }
    .step-box p { font-size: 0.85rem; }
    
    /* Hybrid Section Mobile */
    .hybrid-section { padding: 3.5rem 0; }
    .hybrid-showcase-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .hybrid-diagram-card { padding: 0.75rem; border-radius: 18px; }
    .hybrid-card { padding: 1.5rem 1.25rem; border-radius: 18px; }
    
    /* Impact Stats */
    .impact-section { padding: 3.5rem 0; }
    .impact-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .impact-item h3 { font-size: 2.25rem; }
    .impact-item span.suffix { font-size: 1.4rem; }
    .impact-item p { font-size: 0.8rem; letter-spacing: 0.5px; margin-top: 0.5rem; }
    
    /* About Us (Decreased Image Size) */
    .about-wrapper { gap: 2rem; }
    .about-image img { max-height: 220px; object-fit: cover; width: 100%; border-radius: 16px; }
    .about-title { font-size: 1.85rem; margin-bottom: 1rem; }
    .lead-text { font-size: 1.05rem; margin-bottom: 1rem; }
    .about-content p { font-size: 0.9rem; line-height: 1.6; margin-bottom: 1rem; }
    .about-features { gap: 0.9rem; margin-top: 1.5rem; }
    .about-features span { font-size: 0.92rem; gap: 0.75rem; }
    .about-features span i { font-size: 1.25rem; }
    
    /* Key Differentiators (Decreased Image Size) */
    .diff-grid { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2.5rem; }
    .diff-card { border-radius: 16px; }
    .diff-card-img { height: 160px; object-fit: cover; }
    .diff-card h3 { font-size: 1.2rem; padding: 1.25rem 1rem 0.5rem; }
    .diff-card p { font-size: 0.88rem; padding: 0 1rem 1.5rem; }
    
    /* Benefits */
    .benefit-card { padding: 1.5rem 1.25rem; border-radius: 16px; }
    .icon-wrapper { width: 52px; height: 52px; font-size: 1.75rem; border-radius: 12px; margin-bottom: 1.25rem; }
    .benefit-card h3 { font-size: 1.2rem; }
    .benefit-card p { font-size: 0.88rem; }
    
    /* Tata Power Section (Decreased Image Size) */
    .tata-wrapper { gap: 2rem; }
    .tata-image img { max-height: 220px; object-fit: cover; border-radius: 16px; }
    .tata-content p { font-size: 0.9rem; line-height: 1.6; margin-bottom: 1rem; }
    .tata-features { gap: 0.75rem; margin-top: 1.5rem; }
    .tata-feat { font-size: 0.82rem; padding: 0.5rem 1rem; }
    .floating-badge { padding: 0.6rem 1rem; font-size: 0.82rem; bottom: -12px; left: 10px; border-radius: 10px; gap: 0.6rem; }
    .floating-badge i { font-size: 1.4rem; }
    
    /* Expertise Section (Decreased Image Size) */
    .expertise-wrapper { gap: 2rem; }
    .expertise-content h2 { font-size: 1.85rem; margin-bottom: 1rem; }
    .expertise-content p { font-size: 0.9rem; margin-bottom: 1.75rem; }
    .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
    .stat-number { font-size: 1.85rem; }
    .stats-grid span { font-size: 1.85rem; }
    .stat-label { font-size: 0.72rem; letter-spacing: 1px; }
    .expertise-image img { max-height: 220px; object-fit: cover; border-radius: 16px; }
    
    /* Corporate Financing Models */
    .pricing-table { gap: 2rem; }
    .pricing-card { padding: 2.5rem 1.5rem; border-radius: 18px; }
    .card-header h3 { font-size: 1.75rem; }
    .card-header p { font-size: 0.95rem; margin-bottom: 1.5rem; }
    .features li { font-size: 0.9rem; gap: 0.75rem; margin-bottom: 1rem; }
    .features li i { font-size: 1.15rem; }
    
    /* Google Reviews Marquee */
    .review-track-gsap { gap: 1.5rem; }
    .review-card { width: 280px; padding: 1.25rem; border-radius: 14px; }
    .reviewer strong { font-size: 1rem; }
    .reviewer span { font-size: 0.78rem; }
    .stars { font-size: 0.9rem; margin-bottom: 0.9rem; }
    .review-card p { font-size: 0.85rem; line-height: 1.5; }
    .google-rating i { font-size: 1.35rem; }
    .google-rating span { font-size: 1rem; }
    
    /* Video Testimonials (YouTube Shorts - Decreased Video Card Size) */
    .shorts-slider { gap: 1.25rem; margin-top: 2rem; padding-bottom: 1.5rem; }
    .short-card { flex: 0 0 240px; height: 425px; border-radius: 14px; }
    
    /* FAQ Section */
    .faq-container { margin-top: 2rem; gap: 0.9rem; }
    .faq-item { margin-bottom: 0.9rem; border-radius: 12px; }
    .faq-question { padding: 1.1rem 1.25rem; font-size: 0.95rem; }
    .faq-question i { font-size: 1rem; }
    .faq-answer { padding: 0 1.25rem; }
    .faq-item.active .faq-answer { padding: 0 1.25rem 1.25rem; }
    .faq-answer p { font-size: 0.85rem; line-height: 1.5; }
    #toggleFaqBtn { font-size: 0.95rem !important; padding: 0.75rem 1.5rem !important; }
    
    /* Installations Map Responsive */
    .installations-map-wrapper { grid-template-columns: 1fr; gap: 1.5rem; }
    .interactive-map-card { height: 380px; }
    .map-controls-bar { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .map-filter-chips { width: 100%; overflow-x: auto; padding-bottom: 0.25rem; }
    .map-filter-btn { font-size: 0.8rem; padding: 0.5rem 0.9rem; white-space: nowrap; }
    .map-hub-header h2 { font-size: 2rem; }
    .map-hub-header p { font-size: 0.95rem; }
    .map-legend-overlay { padding: 0.5rem 0.75rem; font-size: 0.72rem; }
    
    /* Footer */
    footer { padding: 3.5rem 0 2rem; }
    .footer-content { grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
    .footer-logo img { max-width: 170px; }
    .footer-logo p { font-size: 0.9rem; line-height: 1.5; margin-top: 1rem; }
    .footer-links h4 { font-size: 1.1rem; margin-bottom: 1rem; }
    .footer-links a { font-size: 0.88rem; margin-bottom: 0.75rem; }
    .footer-bottom { font-size: 0.82rem; padding-top: 1.5rem; }
    
    /* Floating Action Buttons & Chat */
    .floating-actions { right: 15px; bottom: 15px; gap: 10px; }
    .float-btn { width: 48px; height: 48px; font-size: 1.35rem; }
    .chat-widget { width: calc(100% - 30px); right: 15px; bottom: 75px; border-radius: 14px; }
    
    /* Popup Modal */
    .popup-content { padding: 2.5rem 1.5rem; width: 92%; border-radius: 16px; }
    .popup-content h3 { font-size: 1.5rem; }
    .popup-content p { font-size: 0.9rem; margin-bottom: 1.25rem; }
}

/* Extra Small Phones (<= 480px) */
@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    .hero-title { font-size: 2rem; }
    .section-header h2 { font-size: 1.7rem; }
    .stats-grid { grid-template-columns: 1fr; gap: 1rem; }
    .stat-item { padding: 0.5rem 0; }
    .impact-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .short-card { flex: 0 0 210px; height: 375px; }
    .review-card { width: 250px; }
    .btn-large { padding: 0.85rem 1.5rem; font-size: 0.95rem; }
}

/* ==========================================================================
   TATA Battery Energy Storage System (BESS) - Custom Page Styling
   ========================================================================== */
.bess-nav {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    background: rgba(11, 14, 20, 0.92); backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid var(--border-color);
    padding: 0.9rem 0;
    transition: all 0.3s ease;
}
.bess-nav-wrapper { display: flex; align-items: center; justify-content: space-between; }
.bess-nav-left { display: flex; align-items: center; gap: 2rem; }
.bess-nav-links { display: flex; align-items: center; gap: 1.5rem; }
.bess-nav-links a { font-size: 0.95rem; color: var(--text-muted); font-weight: 500; transition: color 0.2s; }
.bess-nav-links a:hover, .bess-nav-links a.active { color: var(--primary); }

.bess-nav-right { display: flex; gap: 0.85rem; align-items: center; }

/* Responsive Logo Sizing */
.bess-nav-logo-main { height: 42px; width: auto; max-width: 140px; object-fit: contain; display: block; }
.bess-nav-logo-tata { height: 28px; width: auto; max-width: 130px; object-fit: contain; display: block; }

/* Mobile Menu Toggle & Actions */
.bess-menu-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.25s ease;
}
.bess-menu-toggle:hover, .bess-menu-toggle.active {
    background: var(--primary);
    color: #0B0E14;
    border-color: var(--primary);
}

.bess-mobile-nav-actions {
    display: none;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Co-Branded Partner Logo Badges (Transparent) */
.brand-logo-group {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}
.brand-partner-badge {
    display: inline-flex;
    align-items: center;
    background: transparent;
    padding: 0 0 0 0.85rem;
    border-radius: 0;
    box-shadow: none;
    height: 38px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.brand-partner-badge img {
    height: 30px;
    width: auto;
    display: block;
    object-fit: contain;
}

.footer-brand-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.85rem;
    flex-wrap: wrap;
}
.footer-tata-badge {
    display: inline-flex;
    align-items: center;
    background: transparent;
    padding: 0 0 0 1rem;
    border-radius: 0;
    box-shadow: none;
    height: 42px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.footer-tata-badge img {
    height: 34px;
    width: auto;
    display: block;
    object-fit: contain;
}

.bess-hero {
    padding: 9rem 0 5rem;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 50% 20%, rgba(0, 240, 255, 0.12) 0%, rgba(11, 14, 20, 0.95) 70%);
}
.bess-video-hero {
    padding-top: 68px;
    width: 100%;
    background: #000;
    position: relative;
    overflow: hidden;
}
.bess-video-wrap {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background: #000;
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
}
.bess-video-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    pointer-events: none;
    transform: scale(1.02);
}

/* BESS Intro Showcase (Power On Demand) */
.bess-intro-section {
    padding: 5.5rem 0;
    background: var(--bg-main);
    position: relative;
    border-bottom: 1px solid var(--border-color);
}
.bess-intro-heading {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 3rem;
    color: #FFFFFF;
}
.bess-intro-heading .highlight-demand {
    color: #F59E0B;
    background: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.bess-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 3.5rem;
    align-items: center;
}
.bess-intro-image-card {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(245, 158, 11, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.bess-intro-image-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 35px rgba(245, 158, 11, 0.2);
    border-color: rgba(245, 158, 11, 0.4);
}
.bess-intro-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 20px;
}
.bess-intro-text {
    font-size: 1.12rem;
    line-height: 1.8;
    color: #CBD5E1;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.bess-intro-text p {
    margin: 0;
}
.bess-intro-quote {
    padding: 1rem 1.25rem;
    background: rgba(245, 158, 11, 0.08);
    border-left: 3px solid #F59E0B;
    border-radius: 0 12px 12px 0;
    color: #E2E8F0;
    font-size: 1.02rem;
    font-weight: 500;
}
.bess-hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.5rem 1.25rem; border-radius: 50px;
    background: rgba(0, 240, 255, 0.1); border: 1px solid rgba(0, 240, 255, 0.3);
    color: var(--primary); font-size: 0.85rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 1.5rem;
}
.bess-hero-title { font-size: 3.5rem; line-height: 1.15; margin-bottom: 1.5rem; }
.bess-hero-subtitle { font-size: 1.25rem; color: var(--text-muted); max-width: 800px; margin: 0 auto 2.5rem; }
.bess-hero-actions { display: flex; justify-content: center; gap: 1.25rem; flex-wrap: wrap; margin-bottom: 3.5rem; }

.bess-stats-row {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
    max-width: 1050px; margin: 0 auto;
}
.bess-stat-box {
    padding: 1.5rem 1rem; border-radius: 16px; text-align: center;
    background: rgba(18, 24, 34, 0.6); border: 1px solid var(--border-color);
    backdrop-filter: blur(12px);
}
.bess-stat-box h3 { font-size: 2rem; color: var(--primary); margin-bottom: 0.25rem; }
.bess-stat-box p { font-size: 0.85rem; color: var(--text-muted); margin: 0; text-transform: uppercase; letter-spacing: 1px; }

/* BESS Interactive Product Tabs (MySine & Powerhub) */
.bess-tabs-section { padding: 6rem 0; background: var(--bg-alt); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); position: relative; }
.bess-main-tabs-nav { display: flex; gap: 1rem; margin-bottom: 2rem; }
.bess-main-tab-btn {
    padding: 0.75rem 2.25rem; font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700;
    border: 2px solid rgba(245, 158, 11, 0.4); background: rgba(18, 24, 34, 0.8);
    color: #CBD5E1; border-radius: 10px; cursor: pointer; transition: all 0.3s ease;
}
.bess-main-tab-btn:hover { border-color: #F59E0B; color: #fff; transform: translateY(-2px); }
.bess-main-tab-btn.active {
    background: rgba(245, 158, 11, 0.15); border-color: #F59E0B; color: #F59E0B;
    box-shadow: 0 0 25px rgba(245, 158, 11, 0.25);
}

.bess-subtabs-nav {
    display: flex; gap: 2.5rem; border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 3.5rem; overflow-x: auto; white-space: nowrap; padding-bottom: 0.5rem;
}
.bess-subtab-btn {
    font-family: var(--font-heading); font-size: 1.15rem; font-weight: 600;
    color: var(--text-muted); background: none; border: none; cursor: pointer;
    padding: 0.5rem 0 0.75rem; position: relative; transition: all 0.3s ease;
}
.bess-subtab-btn:hover { color: #fff; }
.bess-subtab-btn.active { color: #F59E0B; font-weight: 700; }
.bess-subtab-btn.active::after {
    content: ''; position: absolute; bottom: -2px; left: 0; width: 100%;
    height: 3px; background: #F59E0B; border-radius: 3px;
    box-shadow: 0 0 12px rgba(245, 158, 11, 0.6);
}

.bess-tab-pane { display: none; }
.bess-tab-pane.active {
    display: grid; grid-template-columns: 1fr 1.05fr; gap: 3.5rem;
    align-items: center; animation: bessFadeIn 0.4s ease-out;
}
@keyframes bessFadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.bess-tab-img-card {
    border-radius: 20px; overflow: hidden; background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(245, 158, 11, 0.12);
}
.bess-tab-img { width: 100%; height: auto; display: block; object-fit: cover; border-radius: 20px; }

.bess-tab-content { display: flex; flex-direction: column; gap: 1.25rem; }
.bess-tab-content h3 { font-size: 2rem; color: #fff; margin-bottom: 0.5rem; }
.bess-tab-detail-item { font-size: 1.05rem; line-height: 1.6; color: #CBD5E1; }
.bess-tab-detail-item strong { color: #fff; font-weight: 700; }

.bess-tab-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-top: 0.5rem; padding-left: 0.5rem; }
.bess-tab-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 1rem; color: #CBD5E1; }
.bess-tab-list li i { font-size: 1.25rem; color: #F59E0B; flex-shrink: 0; margin-top: 2px; }

/* BESS Product Grid */
.bess-section { padding: 6rem 0; position: relative; }
.bess-section.alt-bg { background: var(--bg-alt); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }
.bess-product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.bess-card {
    background: var(--bg-card); border-radius: 24px; padding: 2.5rem 2rem;
    border: 1px solid var(--border-color); backdrop-filter: blur(16px);
    display: flex; flex-direction: column; justify-content: space-between;
    position: relative; transition: all 0.4s ease;
}
.bess-card:hover { transform: translateY(-8px); border-color: var(--primary); box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 30px var(--primary-glow); }
.bess-card.featured { border-color: #F59E0B; box-shadow: 0 10px 30px rgba(245, 158, 11, 0.15); }
.bess-card.featured:hover { border-color: #F59E0B; box-shadow: 0 20px 40px rgba(0,0,0,0.7), 0 0 35px rgba(245, 158, 11, 0.3); }

.bess-tag-wrap { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.bess-tier-tag { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 0.35rem 0.85rem; border-radius: 50px; background: rgba(255, 255, 255, 0.08); color: var(--text-muted); }
.bess-card.featured .bess-tier-tag { background: rgba(245, 158, 11, 0.15); color: #F59E0B; border: 1px solid rgba(245, 158, 11, 0.3); }
.bess-capacity-pill { font-size: 1.4rem; font-weight: 800; font-family: var(--font-heading); color: var(--primary); }
.bess-card.featured .bess-capacity-pill { color: #F59E0B; }

.bess-card-title { font-size: 1.85rem; margin-bottom: 0.5rem; }
.bess-card-desc { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 1.75rem; line-height: 1.5; min-height: 48px; }

.bess-specs-list { list-style: none; display: flex; flex-direction: column; gap: 0.85rem; margin-bottom: 2rem; }
.bess-specs-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.92rem; color: #E2E8F0; }
.bess-specs-list li i { font-size: 1.25rem; color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.bess-card.featured .bess-specs-list li i { color: #F59E0B; }

/* BESS Comparison & Advantage Table */
.bess-table-container { overflow-x: auto; background: var(--bg-card); border-radius: 20px; border: 1px solid var(--border-color); padding: 1.5rem; }
.bess-table { width: 100%; border-collapse: collapse; text-align: left; }
.bess-table th, .bess-table td { padding: 1.25rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 0.95rem; }
.bess-table th { font-family: var(--font-heading); font-size: 1.1rem; color: var(--primary); background: rgba(0,0,0,0.3); }
.bess-table td strong { color: #fff; }
.bess-table tr:hover td { background: rgba(255,255,255,0.02); }

.bess-advantage-table th.th-lfp {
    background: rgba(0, 240, 255, 0.12);
    color: var(--primary);
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    border-bottom: 2px solid var(--primary);
}
.bess-advantage-table th.th-traditional {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-muted);
}
.bess-advantage-table td.td-lfp {
    text-align: center;
    color: #38BDF8;
    font-weight: 600;
    background: rgba(0, 240, 255, 0.02);
}
.bess-advantage-table td.td-traditional {
    text-align: center;
    color: #94A3B8;
}
.bess-advantage-table tr:hover td.td-lfp {
    background: rgba(0, 240, 255, 0.06);
}

/* BESS Drivers Section Auto-Sliding Row Container */
.bess-slider-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 1.5rem 0 2.5rem;
    mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
}

.bess-slider-track {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: stretch;
    gap: 1.75rem;
    width: max-content !important;
    animation: bessAutoSlide 24s linear infinite;
    will-change: transform;
}

.bess-slider-track:hover {
    animation-play-state: paused;
}

@keyframes bessAutoSlide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 0.875rem));
    }
}

.bess-driver-card {
    flex: 0 0 320px !important;
    min-width: 320px !important;
    max-width: 320px !important;
    width: 320px !important;
    background: #FFFFFF;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

.bess-driver-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 240, 255, 0.2), 0 8px 16px rgba(0,0,0,0.5);
}

.bess-driver-img-wrap {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #e0f7fa 0%, #f3e8ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.bess-driver-body {
    padding: 1.4rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    flex-grow: 1;
    background: #FFFFFF;
}

.bess-driver-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0F172A;
    margin: 0;
    font-family: var(--font-heading);
}

.bess-driver-body p {
    font-size: 0.9rem;
    color: #64748B;
    line-height: 1.45;
    margin: 0;
}

/* BESS Adv Cards */
.bess-adv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.bess-adv-card {
    padding: 2rem; border-radius: 18px; background: var(--bg-card);
    border: 1px solid var(--border-color); transition: all 0.3s ease;
}
.bess-adv-card:hover { transform: translateY(-4px); border-color: var(--primary); }
.bess-adv-icon {
    width: 54px; height: 54px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.75rem; margin-bottom: 1.25rem;
    background: rgba(0, 240, 255, 0.12); color: var(--primary);
    border: 1px solid rgba(0, 240, 255, 0.25);
}
.bess-adv-card h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.bess-adv-card p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.5; margin: 0; }

/* BESS Responsive Queries */
@media (max-width: 991px) {
    .bess-nav { padding: 0.75rem 0; }
    .bess-desktop-only { display: none !important; }
    .bess-mobile-quote-btn { display: inline-flex !important; align-items: center; gap: 0.35rem; }
    .bess-menu-toggle { display: inline-flex; }

    .brand-logo-group { gap: 0.5rem; }
    .brand-partner-badge { padding-left: 0.5rem; height: 32px; }
    .bess-nav-logo-main { height: 34px; max-width: 120px; }
    .bess-nav-logo-tata { height: 24px; max-width: 110px; }

    /* Mobile Drawer Menu */
    .bess-nav-links {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background: rgba(11, 14, 20, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.85);
        padding: 1.25rem 1.5rem 2rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 999;
    }

    .bess-nav-links.active {
        max-height: 85vh;
        overflow-y: auto;
        opacity: 1;
        visibility: visible;
    }

    .bess-nav-links a {
        display: block;
        width: 100%;
        padding: 0.85rem 0.5rem;
        font-size: 1.05rem;
        font-weight: 600;
        color: #E2E8F0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        transition: color 0.2s, padding-left 0.2s;
    }
    .bess-nav-links a:hover, .bess-nav-links a.active {
        color: var(--primary);
        padding-left: 0.85rem;
    }

    .bess-mobile-nav-actions {
        display: flex;
    }
    .bess-mobile-nav-actions .btn {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }

    .bess-hero-title { font-size: 2.6rem; }
    .bess-intro-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .bess-intro-heading { font-size: 2.3rem; margin-bottom: 2rem; }
    .bess-tab-pane.active { grid-template-columns: 1fr; gap: 2.5rem; }
    .bess-driver-card { flex: 0 0 290px; width: 290px; }
    .bess-product-grid { grid-template-columns: 1fr; gap: 2rem; max-width: 580px; margin: 0 auto; }
    .bess-stats-row { grid-template-columns: repeat(2, 1fr); }
    .bess-adv-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .bess-hero { padding: 7rem 0 3.5rem; }
    .bess-hero-title { font-size: 2.1rem; }
    .bess-hero-subtitle { font-size: 1rem; }
    .bess-intro-section { padding: 3.5rem 0; }
    .bess-intro-heading { font-size: 1.85rem; margin-bottom: 1.5rem; }
    .bess-intro-text { font-size: 0.98rem; line-height: 1.7; gap: 1rem; }
    .bess-driver-card { flex: 0 0 260px; width: 260px; }
    .bess-driver-img-wrap { height: 150px; }
    .bess-slider-track { gap: 1.25rem; }
    .bess-stats-row { grid-template-columns: 1fr 1fr; gap: 0.85rem; }
    .bess-stat-box { padding: 1rem 0.5rem; }
    .bess-stat-box h3 { font-size: 1.5rem; }
    .bess-stat-box p { font-size: 0.75rem; }
    .bess-card { padding: 1.75rem 1.25rem; border-radius: 18px; }
    .bess-card-title { font-size: 1.5rem; }
    .bess-adv-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .bess-table th, .bess-table td { padding: 0.85rem 1rem; font-size: 0.85rem; }
}

@media (max-width: 480px) {
    .bess-nav { padding: 0.6rem 0; }
    .bess-nav-logo-main { height: 30px; max-width: 100px; }
    .bess-nav-logo-tata { height: 21px; max-width: 90px; }
    .brand-partner-badge { height: 26px; padding-left: 0.4rem; }
    .bess-mobile-quote-btn { padding: 0.4rem 0.75rem !important; font-size: 0.78rem !important; }
    .bess-menu-toggle { width: 36px; height: 36px; font-size: 1.25rem; border-radius: 8px; }
    .bess-nav-links { top: 52px; }
}

