@import url('https://fonts.cdnfonts.com/css/aspekta');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

:root {
    --sun: #F59E0B;
    --sun-dark: #D97706;
    --sun-light: #FEF3C7;
    --sun-pale: #FFFBEB;
    --navy: #0F172A;
    --navy-mid: #1E293B;
    --navy-light: #334155;
    --orange: #EA580C;
    --orange-light: #FED7AA;
    --white: #FFFFFF;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-400: #94A3B8;
    --gray-600: #475569;
    --gray-800: #1E293B;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.1), 0 4px 16px rgba(0, 0, 0, 0.06);
    --shadow-glow: 0 0 40px rgba(245, 158, 11, 0.2);
}

html {
    scroll-behavior: smooth;
    font-size: 16px
}

body {
    font-family: 'Aspekta', sans-serif;
    color: var(--navy);
    background: #fff;
    overflow-x: hidden;
    line-height: 1.6
}

a {
    text-decoration: none;
    color: inherit
}

img {
    max-width: 100%;
    display: block
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px
}

/* ── HEADER ── */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
    transition: box-shadow .3s
}

#header.scrolled {
    box-shadow: var(--shadow-md)
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: 20px
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 160px;
    font-weight: 800;
    font-size: 20px;
    color: var(--navy)
}

.logo-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #e76e0a, var(--orange));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px
}

.logo span {
    color: #c0943f
}

nav {
    display: flex;
    align-items: center;
    gap: 6px
}

nav a {
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
    transition: all .2s;
    white-space: nowrap
}

nav a:hover {
    color: var(--navy);
    background: var(--gray-100)
}

.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy)
}

.phone-link i {
    color: #c0943f
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all .25s;
    white-space: nowrap
}

.btn-primary {
    background: linear-gradient(135deg, #e76e0a, var(--orange));
    color: #fff;
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4)
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5)
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 1.5px solid var(--gray-200)
}

.btn-outline:hover {
    border-color: #e76e0a;
    color: #c0943f;
    background: var(--sun-pale)
}

.btn-white {
    background: #fff;
    color: var(--navy);
    box-shadow: var(--shadow-md)
}

.btn-white:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg)
}

.btn-dark {
    background: var(--navy);
    color: #fff
}

.btn-dark:hover {
    background: var(--navy-mid);
    transform: translateY(-1px)
}

.btn-lg {
    padding: 15px 32px;
    font-size: 16px;
    border-radius: var(--radius-lg)
}

/* ── HERO ── */
#hero {
    min-height: 100vh;
    /* background: linear-gradient(135deg, #0F172A 0%, #1E293B 40%, #0F2A1A 100%); */
    background-image: url("../bg.png");
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 70px;
    overflow: hidden
}

.hero-bg {
    position: absolute;
    inset: 0;
    opacity: .18;
    background-image: url("../bg.png")
}

.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    pointer-events: none
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 60px 0
}

.hero-content {
    color: #fff
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: #e76e0a;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px
}

.hero-badge i {
    font-size: 14px
}

.hero-content h1 {
    font-family: 'Aspekta', sans-serif;
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px
}

.hero-content h1 span {
    color: #e76e0a
}

.hero-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.75;
    margin-bottom: 32px;
    max-width: 520px
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 36px
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 500
}

.trust-badge i {
    color: #e76e0a;
    font-size: 15px
}

.hero-form-card {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    padding: 36px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4)
}

.form-header {
    margin-bottom: 24px
}

.form-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px
}

.form-header p {
    font-size: 13px;
    color: var(--gray-600)
}

.form-group {
    margin-bottom: 16px
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: 6px
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-family: 'Aspekta', sans-serif;
    color: var(--navy);
    background: #fff;
    transition: border-color .2s, box-shadow .2s;
    outline: none
}

.form-group input:focus,
.form-group select:focus {
    border-color: #e76e0a;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.12)
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.form-submit {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #e76e0a, var(--orange));
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all .25s;
    margin-top: 8px
}

.form-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(245, 158, 11, 0.5)
}

.form-note {
    text-align: center;
    font-size: 12px;
    color: var(--gray-400);
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px
}

/* ── STATS ── */
#stats {
    padding: 70px 0;
    background: var(--navy)
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08)
}

.stat-item {
    background: var(--navy);
    padding: 48px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: background .3s
}

.stat-item:hover {
    background: var(--navy-mid)
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, #e76e0a, transparent)
}

.stat-number {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    color: #e76e0a;
    line-height: 1;
    margin-bottom: 8px;
    font-family: 'Aspekta', sans-serif;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500
}

/* ── WHY SOLAR ── */
#why-solar {
    padding: 40px 0;
    background: var(--gray-50)
}

.section-header {
    text-align: center;
    margin-bottom: 60px
}

.section-tag {
    display: inline-block;
    background: var(--sun-light);
    color: #c0943f;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px
}

.section-title {
    font-family: 'Aspekta', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.25;
    margin-bottom: 16px
}

.section-subtitle {
    font-size: 17px;
    color: var(--gray-600);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.benefit-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--gray-200);
    transition: all .3s;
    position: relative;
    overflow: hidden
}

.benefit-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    transform: scaleX(0);
    transition: transform .3s
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent
}

.benefit-card:hover::after {
    transform: scaleX(1)
}

.benefit-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: var(--sun-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #c0943f;
    margin-bottom: 20px
}

.benefit-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px
}

.benefit-card p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7
}

/* ── CALCULATOR ── */
#calculator {
    padding: 40px 0;
    background: #fff
}

.calc-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start
}

.calc-card {
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    padding: 40px;
    border: 1px solid var(--gray-200)
}

.calc-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 10px
}

.calc-card h3 i {
    color: #c0943f
}

.calc-results {
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    border-radius: var(--radius-xl);
    padding: 40px
}

.calc-results h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 10px
}

.calc-results h3 i {
    color: #e76e0a
}

.result-item {
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.08)
}

.result-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6)
}

.result-value {
    font-size: 20px;
    font-weight: 700;
    color: #e76e0a
}

.result-value.big {
    font-size: 28px;
    color: #4ade80
}

.slider-wrapper {
    margin-bottom: 20px
}

.slider-wrapper label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: 10px
}

.slider-wrapper label span {
    font-size: 15px;
    font-weight: 700;
    color: #c0943f
}

input[type=range] {
    width: 100%;
    height: 5px;
    border-radius: 50px;
    accent-color: #c0943f
}

/* ── SOLUTIONS ── */
#solutions {
    padding: 40px 0;
    background: var(--gray-50)
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.solution-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: all .3s;
    cursor: pointer
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: transparent
}

.solution-img {
    height: 200px;
    position: relative;
    overflow: hidden
}

.solution-img-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform .4s
}

.solution-card:hover .solution-img-bg {
    transform: scale(1.05)
}

.solution-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.6), transparent)
}

.solution-body {
    padding: 24px
}

.solution-body h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px
}

.solution-body p {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 16px
}

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #c0943f;
    transition: gap .2s
}

.solution-card:hover .learn-more {
    gap: 10px
}

/* ── PROCESS ── */
#process {
    padding: 40px 0;
    background: #fff
}

.process-timeline {
    position: relative;
    margin-top: 60px
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #e76e0a, var(--orange));
    opacity: .3
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative
}

.process-step {
    text-align: center;
    position: relative
}

.step-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sun-light), var(--orange-light));
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px #e76e0a, var(--shadow-md);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #c0943f;
    position: relative;
    z-index: 2;
    transition: all .3s
}

.process-step:hover .step-circle {
    transform: scale(1.1);
    background: linear-gradient(135deg, #e76e0a, var(--orange));
    color: #fff
}

.step-num {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 22px;
    height: 22px;
    background: var(--navy);
    color: #fff;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center
}

.process-step h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px
}

.process-step p {
    font-size: 12px;
    color: var(--gray-600);
    line-height: 1.5
}

/* ── SUBSIDY ── */
#subsidy {
    padding: 40px 0;
    background: linear-gradient(135deg, var(--sun-pale), #fff0d4)
}

.subsidy-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center
}

.subsidy-content .section-tag {
    margin-bottom: 16px
}

.subsidy-content h2 {
    font-family: 'Aspekta', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.25;
    margin-bottom: 20px
}

.subsidy-content p {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: 28px
}

.subsidy-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px
}

.subsidy-amount {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    border: 1px solid rgba(245, 158, 11, 0.2);
    box-shadow: var(--shadow-sm)
}

.sub-kw {
    font-size: 13px;
    color: var(--gray-600);
    margin-bottom: 4px
}

.sub-price {
    font-size: 24px;
    font-weight: 800;
    color: #c0943f
}

.sub-label {
    font-size: 12px;
    color: var(--gray-400);
    margin-top: 4px
}

.subsidy-visual {
    position: relative
}

.subsidy-graphic {
    background: var(--navy);
    border-radius: var(--radius-xl);
    padding: 40px;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden
}

.subsidy-graphic::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.1)
}

.subsidy-big-num {
    font-family: 'Aspekta', sans-serif;
    font-size: 5rem;
    font-weight: 800;
    color: #e76e0a;
    line-height: 1
}

.subsidy-graphic p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    margin: 12px 0
}

.subsidy-breakdown {
    margin-top: 20px;
    space-y: 8px
}

.sub-bar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px
}

.sub-bar-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    width: 100px;
    text-align: right;
    flex-shrink: 0
}

.sub-bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    overflow: hidden
}

.sub-bar-fill {
    height: 100%;
    border-radius: 50px;
    background: linear-gradient(90deg, #e76e0a, var(--orange))
}

.sub-bar-val {
    font-size: 13px;
    font-weight: 600;
    color: #e76e0a;
    width: 50px;
    flex-shrink: 0
}

/* ── PROJECTS ── */
#projects {
    padding: 40px 0;
    background: var(--gray-50)
}

.filter-tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap
}

.filter-tab {
    padding: 8px 22px;
    border-radius: 50px;
    border: 1.5px solid var(--gray-200);
    background: #fff;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-600);
    cursor: pointer;
    transition: all .25s
}

.filter-tab.active,
.filter-tab:hover {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy)
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.project-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    aspect-ratio: 4/3
}

.project-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform .4s
}

.project-card:hover .project-img {
    transform: scale(1.08)
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.85), transparent);
    opacity: 0;
    transition: opacity .3s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px
}

.project-card:hover .project-overlay {
    opacity: 1
}

.project-tag {
    background: #e76e0a;
    color: var(--navy);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    align-self: flex-start;
    margin-bottom: 8px
}

.project-title {
    color: #fff;
    font-size: 16px;
    font-weight: 700
}

.project-meta {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    margin-top: 4px
}

/* ── TESTIMONIALS ── */
#testimonials {
    padding: 40px 0;
    background: var(--navy)
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px
}

.testimonials-header .section-tag {
    background: rgba(245, 158, 11, 0.15);
    color: #e76e0a
}

.testimonials-header .section-title {
    color: #fff
}

.testimonials-header .section-subtitle {
    color: rgba(255, 255, 255, 0.6)
}

.testimonials-slider {
    overflow: hidden;
    position: relative
}

.testimonials-track {
    display: flex;
    gap: 24px;
    transition: transform .5s cubic-bezier(.4, 0, .2, 1)
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 36px;
    min-width: 360px;
    flex-shrink: 0;
    transition: all .3s
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px)
}

.stars {
    color: #e76e0a;
    font-size: 16px;
    margin-bottom: 16px
}

.testimonial-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0
}

.author-name {
    font-size: 14px;
    font-weight: 700;
    color: #fff
}

.author-meta {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 2px
}

.savings-badge {
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.2);
    color: #4ade80;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
    margin-top: 8px;
    display: inline-block
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 36px
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: all .3s
}

.slider-dot.active {
    background: #e76e0a;
    width: 28px;
    border-radius: 50px
}

/* ── CERTIFICATIONS ── */
#certs {
    padding: 80px 0;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200)
}

.certs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px
}

.cert-item {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: all .3s
}

.cert-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--sun-light)
}

.cert-icon {
    font-size: 36px;
    margin-bottom: 12px
}

.cert-item h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px
}

.cert-item p {
    font-size: 12px;
    color: var(--gray-400)
}

/* ── FAQ ── */
#faq {
    padding: 40px 0;
    background: #fff
}

.faq-wrapper {
    max-width: 760px;
    margin: 0 auto;
    margin-top: 60px
}

.faq-item {
    border-bottom: 1px solid var(--gray-200);
    overflow: hidden
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    font-family: 'Aspekta', sans-serif;
    text-align: left;
    gap: 16px;
    transition: color .2s
}

.faq-question:hover {
    color: #c0943f
}

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    transition: all .3s;
    color: var(--gray-600)
}

.faq-item.open .faq-icon {
    background: var(--sun-light);
    color: #c0943f;
    transform: rotate(45deg)
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .3s
}

.faq-answer-inner {
    padding: 0 0 20px;
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.75
}

.faq-item.open .faq-answer {
    max-height: 300px
}

/* ── CTA FINAL ── */
#final-cta {
    padding: 40px 0;
    background: linear-gradient(135deg, var(--navy) 0%, #1e1060 50%, var(--navy-mid) 100%);
    position: relative;
    overflow: hidden;
    text-align: center
}

.final-cta-bg {
    position: absolute;
    inset: 0;
    opacity: .06;
    background-image: repeating-linear-gradient(45deg, rgba(245, 158, 11, 0.5) 0, rgba(245, 158, 11, 0.5) 1px, transparent 0, transparent 50%);
    background-size: 20px 20px
}

.final-cta-glow {
    position: absolute;
    width: 800px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(245, 158, 11, 0.12) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none
}

.final-cta-content {
    position: relative;
    z-index: 2
}

.final-cta-content h2 {
    font-family: 'Aspekta', sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px
}

.final-cta-content h2 span {
    color: #e76e0a
}

.final-cta-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap
}

/* ── FOOTER ── */
#footer {
    background: var(--navy);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.06)
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 60px
}

.footer-brand .logo {
    margin-bottom: 16px;
    color: #fff
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-bottom: 20px
}

.social-links {
    display: flex;
    gap: 10px
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 15px;
    transition: all .2s
}

.social-link:hover {
    background: rgba(245, 158, 11, 0.15);
    border-color: #e76e0a;
    color: #e76e0a
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px
}

.footer-col ul {
    list-style: none
}

.footer-col ul li {
    margin-bottom: 10px
}

.footer-col ul li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    transition: color .2s
}

.footer-col ul li a:hover {
    color: #e76e0a
}

.footer-contact p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 8px
}

.footer-contact p i {
    color: #e76e0a;
    flex-shrink: 0;
    margin-top: 2px
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: gap
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3)
}

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .hero-content {
        max-width: 100%
    }

    .hero-content h1 {
        font-size: 2.4rem
    }

    .benefits-grid,
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .process-steps {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 40px
    }

    .calc-wrapper,
    .subsidy-inner {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        row-gap: 40px
    }
}

@media(max-width:768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .benefits-grid,
    .solutions-grid,
    .projects-grid,
    .certs-grid {
        grid-template-columns: 1fr 1fr
    }

    .process-steps {
        grid-template-columns: 1fr 1fr
    }

    .subsidy-cards {
        grid-template-columns: 1fr 1fr
    }

    nav {
        display: none
    }

    .phone-link {
        display: none
    }

    .hero-inner {
        padding: 40px 0
    }

    .section-title {
        font-size: 1.8rem
    }

    .testimonial-card {
        min-width: 300px
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .footer-brand {
        grid-column: 1
    }
}

@media(max-width:480px) {

    .benefits-grid,
    .solutions-grid,
    .projects-grid,
    .certs-grid,
    .stats-grid {
        grid-template-columns: 1fr
    }

    .form-row {
        grid-template-columns: 1fr
    }

    .hero-badges {
        flex-direction: column
    }

    .process-steps {
        grid-template-columns: 1fr
    }

    .subsidy-cards {
        grid-template-columns: 1fr
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center
    }

    .hero-content h1 {
        font-size: 2rem
    }
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0)
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity .7s ease, transform .7s ease
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0)
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity .7s ease, transform .7s ease
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0)
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.process-box {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: #fff;
    border-left: 4px solid #cba352;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    transition: .3s;
}

.process-box:hover {
    transform: translateY(-5px);
}

.process-number {
    font-size: 40px;
    font-weight: 800;
    color: #cba352;
    min-width: 70px;
}

.process-content h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #111;
}

.process-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.stat-box {
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    text-align: left;
    transition: .3s;
}

.stat-box:hover {
    transform: translateY(-5px);
}

.stat-box i {
    font-size: 26px;
    color: #cba352;
    margin-bottom: 20px;
}

.stat-box h3 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #111;
}

.stat-box p {
    font-size: 15px;
    color: #666;
}

.subsidy-cta {
    margin-top: 40px;
    padding: 25px 30px;
    background: #f8f9fb;
    border: 1px solid #eee;
    border-radius: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cta-left i {
    font-size: 24px;
    color: #cba352;
}

.cta-left p {
    margin: 0;
    font-size: 16px;
    color: #333;
}

#cta {
    padding: 70px 0;
    background: #f8f8f8;
}

.cta-wrapper {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 45px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.cta-left {
    max-width: 650px;
}

.cta-left h2 {
    font-size: 34px;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
}

.cta-left p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

.cta-right {
    display: flex;
    gap: 15px;
}

.cta-btn {
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    transition: .3s;
}

.primary-btn {
    background: #c0943f;
    color: #fff;
}

.primary-btn:hover {
    background: #b87900;
}

.secondary-btn {
    border: 1px solid #c0943f;
    color: #c0943f;
    background: transparent;
}

.secondary-btn:hover {
    background: #c0943f;
    color: #fff;
}

@media(max-width:768px) {
    .cta-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 35px 25px;
    }

    .cta-right {
        flex-direction: column;
        width: 100%;
    }

    .cta-btn {
        width: 100%;
    }

    .cta-left h2 {
        font-size: 28px;
    }
}



.lux-hero {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.luxSlider,
.lux-slide {
    width: 100%;
    height: 100%;
}

.lux-slide {
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.lux-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.85) 20%,
            rgba(0, 0, 0, 0.45) 60%,
            rgba(0, 0, 0, 0.15) 100%);
}

.lux-content-box {
    position: relative;
    z-index: 5;
    max-width: 650px;
    margin-bottom: 50px;
    margin-right: 150px;
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.lux-badge {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(212, 168, 79, 0.15);
    color: #d4a84f;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.lux-content-box h1 {
    font-size: 48px;
    line-height: 1.1;
    color: white;
    font-weight: 800;
    margin-bottom: 20px;
}

.lux-content-box h1 span {
    color: #d4a84f;
    display: block;
}

.lux-content-box p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.lux-buttons {
    display: flex;
    gap: 15px;
}

.btn-gold,
.btn-light {
    padding: 15px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.4s;
}

.btn-gold {
    background: #d4a84f;
    color: white;
}

.btn-light {
    border: 1px solid white;
    color: white;
}

.btn-gold:hover,
.btn-light:hover {
    transform: translateY(-4px);
}

.lux-next,
.lux-prev {
    position: absolute;
    top: 50%;
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    z-index: 10;
    cursor: pointer;
}

.lux-next {
    right: 30px;
}

.lux-prev {
    left: 30px;
}

.lux-next::after,
.lux-prev::after {
    font-size: 20px;
    color: white;
}

.lux-pagination {
    position: absolute;
    bottom: 40px !important;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: white;
}

.swiper-pagination-bullet-active {
    background: #d4a84f;
}

/* Tablet */
@media(max-width:991px) {
    .lux-content-box h1 {
        font-size: 48px;
    }

    .lux-content-box {
        max-width: 550px;
    }
}

/* Mobile */
@media(max-width:767px) {
    .lux-hero {
        height: 85vh;
    }

    .lux-content-box {
        padding: 25px;
        text-align: center;
        max-width: 100%;
    }

    .lux-content-box h1 {
        font-size: 32px;
    }

    .lux-content-box p {
        font-size: 14px;
    }

    .lux-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .lux-next,
    .lux-prev {
        display: none;
    }
}

/*==========================================
        SOLAR SYSTEM SECTION
==========================================*/

.solar-system-section {
    padding: 90px 0;
    background: #f7f8fc;
}

.solar-system-wrapper {
    display: grid;
    grid-template-columns: 46% 54%;
    gap: 45px;
    align-items: flex-start;
}

/*==========================================
            LEFT GALLERY
==========================================*/

.solar-gallery {
    position: sticky;
    top: 110px;
}

.main-image {
    width: 100%;
    height: 520px;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e8e8e8;
    box-shadow: 0 15px 45px rgba(0, 0, 0, .08);
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.main-image:hover img {
    transform: scale(1.05);
}

.thumbnail-gallery {
    display: flex;
    gap: 15px;
    margin-top: 18px;
}

.thumb {
    width: 88px;
    height: 88px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: #fff;
    border: 2px solid transparent;
    transition: .35s;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .06);
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb.active,
.thumb:hover {
    border-color: #001a4a;
    transform: translateY(-4px);
}

/*==========================================
            RIGHT CONTENT
==========================================*/

.solar-details {
    background: #fff;
    padding: 40px;
    border-radius: 22px;
    border: 1px solid #ececec;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .06);
}

.solar-details h2 {
    font-size: 38px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
    line-height: 1.2;
}

.solar-details p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 35px;
}

/*==========================================
            SECTION TITLE
==========================================*/

.system-size h5,
.system-overview h5,
.pricing-box h5,
.emi-box h5 {
    font-size: 14px;
    font-weight: 700;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

/*==========================================
            SYSTEM BUTTONS
==========================================*/

.size-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 35px;
}

.size-btn {
    height: 68px;
    border: 1px solid #d9d9d9;
    background: #fff;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: .35s;
}

.size-btn:hover {
    border-color: #001a4a;
    color: #001a4a;
}

.size-btn.active {
    background: #eef4ff;
    border: 2px solid #001a4a;
    color: #001a4a;
}

/*==========================================
            SPACING
==========================================*/

.system-overview {
    margin-top: 20px;
}

.pricing-box {
    margin-top: 30px;
}

.emi-box {
    margin-top: 30px;
}

.benefit-banner {
    margin-top: 30px;
}

.solar-buttons {
    margin-top: 35px;
}

/*==========================================
            TABLET
==========================================*/

@media(max-width:991px) {

    .solar-system-wrapper {
        grid-template-columns: 1fr;
    }

    .solar-gallery {
        position: relative;
        top: 0;
    }

    .main-image {
        height: 460px;
    }

    .solar-details {
        padding: 35px;
    }

    .solar-details h2 {
        font-size: 32px;
    }

}

/*==========================================
            MOBILE
==========================================*/

@media(max-width:767px) {

    .solar-system-section {
        padding: 60px 0;
    }

    .main-image {
        height: 300px;
    }

    .thumbnail-gallery {
        gap: 10px;
    }

    .thumb {
        width: 65px;
        height: 65px;
    }

    .solar-details {
        padding: 22px;
    }

    .solar-details h2 {
        font-size: 28px;
    }

    .solar-details p {
        font-size: 15px;
    }

    .size-buttons {
        grid-template-columns: repeat(2, 1fr);
    }

    .size-btn {
        height: 55px;
        font-size: 16px;
    }

}

/*==========================================
        SYSTEM AT A GLANCE
==========================================*/

.overview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.overview-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 14px;
    padding: 18px;
    transition: .35s;
}

.overview-card:hover {
    transform: translateY(-5px);
    border-color: #001a4a;
    box-shadow: 0 12px 30px rgba(13, 110, 253, .12);
}

.overview-card i {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    background: #001a4a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.overview-card small {
    display: block;
    font-size: 13px;
    color: #777;
    margin-bottom: 6px;
}

.overview-card h6 {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

/*==========================================
            PRICING BOX
==========================================*/

.pricing-box {
    background: #fafafa;
    border: 1px solid #e6e6e6;
    border-radius: 18px;
    padding: 30px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid #ececec;
}

.price-row:last-child {
    border-bottom: none;
}

.price-row span {
    color: #444;
    font-size: 16px;
    font-weight: 500;
}

.price-row strong {
    font-size: 30px;
    font-weight: 700;
    color: #111827;
}

.price-row.subsidy strong {
    color: #16a34a;
}

.price-row.subsidy span {
    color: #001a4a;
    font-weight: 600;
}

/*==========================================
            SUBSIDY BOX
==========================================*/

.subsidy-box {
    margin-top: 22px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 18px 20px;
    background: #c7ff59;
    border-radius: 12px;
}

.subsidy-box i {
    font-size: 26px;
    color: #111;
    margin-top: 2px;
}

.subsidy-box p {
    margin: 0;
    color: #111;
    line-height: 1.7;
    font-size: 15px;
}

.subsidy-box strong {
    font-weight: 700;
}

/*==========================================
                EMI BOX
==========================================*/

.emi-box {
    background: linear-gradient(135deg, #012667, #f87214);
    border-radius: 18px;
    padding: 28px;
    color: #fff;
    overflow: hidden;
    position: relative;
}

.emi-box::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, .08);
    border-radius: 50%;
    right: -70px;
    top: -70px;
}

.emi-box h5 {
    color: #fff;
    margin-bottom: 12px;
}

.emi-box h3 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 10px;
}

.emi-box small {
    font-size: 14px;
    opacity: .9;
}

/*==========================================
            RESPONSIVE
==========================================*/

@media(max-width:991px) {

    .overview-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .price-row strong {
        font-size: 26px;
    }

    .emi-box h3 {
        font-size: 28px;
    }

}

@media(max-width:767px) {

    .overview-grid {
        grid-template-columns: 1fr;
    }

    .overview-card {
        padding: 15px;
    }

    .overview-card i {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

    .overview-card h6 {
        font-size: 17px;
    }

    .pricing-box {
        padding: 20px;
    }

    .price-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .price-row strong {
        font-size: 24px;
    }

    .subsidy-box {
        padding: 15px;
    }

    .subsidy-box i {
        font-size: 22px;
    }

    .emi-box {
        padding: 22px;
    }

    .emi-box h3 {
        font-size: 24px;
    }

}

/*==========================================
        BENEFITS BANNER
==========================================*/

.benefit-banner {
    margin-top: 35px;
    background: linear-gradient(135deg, #001a4a, #2563eb);
    border-radius: 18px;
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    overflow: hidden;
    position: relative;
}

.benefit-banner::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    background: rgba(255, 255, 255, .08);
    border-radius: 50%;
    top: -120px;
    right: -90px;
}

.benefit-item {
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 2;
}

.benefit-item:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, .15);
}

.benefit-item h4 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 8px;
}

.benefit-item span {
    font-size: 15px;
    opacity: .95;
}


/*==========================================
            BUTTONS
==========================================*/

.solar-buttons {
    display: flex;
    gap: 18px;
    margin-top: 40px;
}

.btn-calculate,
.btn-quote {
    flex: 1;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: .35s;
}

.btn-calculate {
    background: #001a4a;
    color: #fff;
    border: 2px solid #001a4a;
}

.btn-calculate:hover {
    background: #084fc7;
    border-color: #084fc7;
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(13, 110, 253, .25);
}

.btn-quote {
    background: #fff;
    color: #111827;
    border: 2px solid #dcdcdc;
}

.btn-quote:hover {
    border-color: #001a4a;
    color: #001a4a;
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, .08);
}


/*==========================================
        HOVER EFFECTS
==========================================*/

.pricing-box,
.emi-box,
.benefit-banner,
.solar-details {
    transition: .35s;
}

.pricing-box:hover,
.emi-box:hover,
.benefit-banner:hover {
    transform: translateY(-4px);
}

.thumb {
    position: relative;
}

.thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: rgba(13, 110, 253, .12);
    opacity: 0;
    transition: .3s;
}

.thumb:hover::after,
.thumb.active::after {
    opacity: 1;
}

.main-image {
    cursor: zoom-in;
}

.size-btn {
    position: relative;
    overflow: hidden;
}

.size-btn::before {
    content: "";
    position: absolute;
    width: 0;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(13, 110, 253, .08);
    transition: .35s;
}

.size-btn:hover::before {
    width: 100%;
}


/*==========================================
            FADE ANIMATION
==========================================*/

.solar-gallery,
.solar-details {
    animation: fadeUp .8s ease;
}

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/*==========================================
        RESPONSIVE TABLET
==========================================*/

@media(max-width:991px) {

    .benefit-banner {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefit-item:nth-child(2) {
        border-right: none;
    }

    .solar-buttons {
        flex-direction: column;
    }

    .btn-calculate,
    .btn-quote {
        width: 100%;
    }

}


/*==========================================
        RESPONSIVE MOBILE
==========================================*/

@media(max-width:767px) {

    .benefit-banner {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 18px;
    }

    .benefit-item {
        border: none !important;
        padding-bottom: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, .15) !important;
    }

    .benefit-item:last-child {
        border: none !important;
        padding-bottom: 0;
    }

    .benefit-item h4 {
        font-size: 28px;
    }

    .benefit-item span {
        font-size: 14px;
    }

    .solar-buttons {
        gap: 12px;
    }

    .btn-calculate,
    .btn-quote {
        height: 55px;
        font-size: 16px;
    }

}