/* ===========================================
   SOLAR PAGE - PROFESSIONAL & PREMIUM UI
   Hero Animations + New Process Cards + Premium Why Section + Landing Page Footer
   =========================================== */

/* === CSS VARIABLES === */
:root {
    --orange-primary: #FF8C00;
    --orange-light: #FFA500;
    --orange-dark: #FF6F00;
    --green-primary: #2E7D32;
    --green-light: #4CAF50;
    --green-dark: #1B5E20;
    --text-dark: #1a1a1a;
    --text-gray: #666;
    --bg-light: #FFF8F0;
    --white: #ffffff;

    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
}

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
}

/* Hindi Text Styling */
h1,
h2 {
    font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

html {
    scroll-behavior: smooth;
}

/* === ANIMATIONS === */

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* === NAVIGATION === */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--green-dark);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.03);
}

.logo img {
    height: 45px;
}

.text-accent {
    color: var(--orange-primary);
}

/* Desktop Menu */
.nav-menu.desktop-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange-primary);
    transition: width 0.3s ease;
}

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

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--orange-primary);
}

.btn-nav {
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
    color: white !important;
    padding: 10px 25px;
    border-radius: 50px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.btn-nav::after {
    display: none;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 140, 0, 0.3);
}

/* Mobile Toggle Button */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: var(--orange-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
    transition: right 0.4s ease;
    overflow-y: auto;
}

.mobile-menu-overlay.active {
    right: 0;
}

.mobile-menu {
    list-style: none;
    padding: 100px 30px 30px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 20px 10px;
    display: block;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 3px;
    background: var(--orange-primary);
    transition: width 0.3s ease;
}

.mobile-menu a:hover::before,
.mobile-menu a.active::before {
    width: 40px;
}

.mobile-menu a:hover,
.mobile-menu a.active {
    color: var(--orange-primary);
    padding-left: 50px;
}

.btn-mobile-call {
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
    margin-top: 20px;
    border-radius: 50px;
    text-align: center;
    padding: 18px 20px !important;
}

.btn-mobile-call:hover {
    padding-left: 20px !important;
}

.btn-mobile-call::before {
    display: none;
}

/* === HERO SECTION WITH ANIMATIONS === */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #FFF3E0 0%, #FFFAF0 100%);
    position: relative;
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 140, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(46, 125, 50, 0.08) 0%, transparent 50%);
}

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

.hero-text {
    animation: fadeInLeft 0.8s ease;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 25px;
    box-shadow: var(--shadow);
    animation: scaleIn 0.6s ease 0.2s backwards;
}

.hero h1 {
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-dark);
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.highlight {
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero h2 {
    font-size: 1.9rem;
    color: var(--green-dark);
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

.hero-desc {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.8s backwards;
}

.hero-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 1s backwards;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--green-dark);
    font-weight: 600;
    font-size: 1.05rem;
}

.benefit i {
    color: var(--green-primary);
    font-size: 1.3rem;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 1.2s backwards;
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 140, 0, 0.3);
}

.btn-secondary {
    background: white;
    color: var(--green-dark);
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    box-shadow: var(--shadow);
    border: 2px solid var(--green-light);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--green-primary);
    color: white;
    transform: translate Y(-3px);
}

/* Hero Visual with Animation */
.hero-visual {
    animation: fadeInRight 0.8s ease 0.4s backwards;
}

.solar-panel-showcase {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.solar-panel-showcase img {
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
}

.floating-badge {
    position: absolute;
    background: white;
    padding: 18px 25px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: scaleIn 0.6s ease 1s backwards;
}

.floating-badge.top-left {
    top: -15px;
    left: -15px;
}

.floating-badge.bottom-right {
    bottom: -15px;
    right: -15px;
}

.badge-icon {
    font-size: 2.2rem;
}

.badge-text strong {
    display: block;
    font-size: 1.4rem;
    color: var(--orange-primary);
    font-weight: 800;
}

.badge-text span {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* === SUBSIDY CARDS === */
.subsidy-section {
    padding: 80px 0;
    background: white;
}

.section-title-center {
    text-align: center;
    margin-bottom: 60px;
}

.tag {
    display: inline-block;
    background: rgba(255, 140, 0, 0.1);
    color: var(--orange-primary);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-title-center h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-dark);
    font-family: 'Noto Sans Devanagari', sans-serif;
}

.text-gradient {
    background: linear-gradient(135deg, var(--orange-primary), var(--green-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subsidy-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.subsidy-card {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.subsidy-card:hover {
    transform: translateY(-8px);
    border-color: var(--orange-light);
    box-shadow: 0 15px 40px rgba(255, 140, 0, 0.15);
}

.subsidy-card.featured {
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
    color: white;
    border-color: var(--orange-primary);
    transform: scale(1.03);
}

.subsidy-card.featured:hover {
    transform: translateY(-8px) scale(1.03);
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green-primary);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.card-header {
    margin-bottom: 20px;
}

.capacity {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.best-for {
    font-size: 0.95rem;
    color: var(--text-gray);
}

.subsidy-card.featured .best-for {
    color: rgba(255, 255, 255, 0.9);
}

.subsidy-amount {
    font-size: 3rem;
    font-weight: 900;
    margin: 25px 0;
    color: var(--orange-primary);
}

.subsidy-card.featured .subsidy-amount {
    color: white;
}

.subsidy-amount span {
    font-size: 1rem;
    font-weight: 500;
}

.features {
    list-style: none;
    text-align: left;
    margin-top: 25px;
}

.features li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.subsidy-card.featured .features li {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.features i {
    color: var(--green-primary);
}

.subsidy-card.featured .features i {
    color: white;
}

/* === NEW PROCESS SECTION (HORIZONTAL CARDS WITH ARROWS) === */
.help-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.section-title-center p {
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-top: 10px;
}

.process-timeline {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 25px;
    align-items: center;
    margin: 60px 0;
}

.process-step {
    background: white;
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 140, 0, 0.15);
    border-color: var(--orange-light);
}

.process-arrow {
    font-size: 2rem;
    color: var(--orange-primary);
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 18px;
}

.step-icon {
    width: 75px;
    height: 75px;
    background: rgba(255, 140, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.9rem;
    color: var(--orange-primary);
}

.process-step h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.process-step p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 18px;
    font-family: 'Noto Sans Devanagari', sans-serif;
}

.step-time {
    display: inline-block;
    background: var(--green-primary);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* CTA Box */
.help-cta {
    margin-top: 50px;
}

.cta-box {
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    color: white;
    padding: 40px 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.cta-box h3 {
    font-size: 2rem;
    margin-bottom: 25px;
}

.support-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.support-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
}

.support-list i {
    color: var(--orange-light);
    font-size: 1.3rem;
}

/* === PREMIUM WHY SECTION WITH CHECKMARKS === */
.why-section {
    padding: 80px 0;
    background: white;
}

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

.why-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 45px;
    color: var(--text-dark);
    font-family: 'Noto Sans Devanagari', sans-serif;
}

.why-points {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.why-point {
    display: flex;
    gap: 20px;
    align-items: start;
}

.point-icon {
    width: 50px;
    height: 50px;
    background: var(--green-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 700;
    flex-shrink: 0;
}

.point-text h4 {
    font-size: 1.35rem;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 700;
}

.point-text p {
    color: var(--text-gray);
    line-height: 1.8;
    font-family: 'Noto Sans Devanagari', sans-serif;
}

.why-image {
    position: relative;
}

.why-image img {
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    width: 100%;
}

/* Stats Overlay */
.stats-overlay {
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 25px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    color: var(--orange-primary);
    font-weight: 900;
    margin-bottom: 5px;
}

.stat p {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.05rem;
}

/* === CONTACT FORM === */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFF3E0 0%, #FFFAF0 100%);
}

.contact-card {
    background: white;
    border-radius: 30px;
    padding: 50px;
    box-shadow: var(--shadow-lg);
    max-width: 800px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-family: 'Noto Sans Devanagari', sans-serif;
}

.offer-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.offer-tag {
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
}

.solar-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange-primary);
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.1);
}

.submit-btn {
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 140, 0, 0.3);
}

.form-note {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-note i {
    background: var(--green-primary);
    transform: scale(1.02);
}

/* === CTA SECTION (SOLAR THEME) === */
.cta-section.solar-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #FFF7ED 0%, #FFFBEB 100%);
}

.cta-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.cta-text {
    padding-right: 20px;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

.cta-badge i {
    font-size: 1.1rem;
}

.cta-text h2 {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-family: 'Noto Sans Devanagari', sans-serif;
}

.cta-text p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 30px;
    font-family: 'Noto Sans Devanagari', sans-serif;
}

.quick-contact {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.quick-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: white;
    border: 2px solid #FFE5CC;
    border-radius: 12px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.quick-link:hover {
    transform: translateY(-2px);
    border-color: var(--orange-primary);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.2);
    color: var(--orange-primary);
}

.quick-link i {
    font-size: 1.1rem;
}

.cta-action {
    display: flex;
    justify-content: center;
}

.cta-card {
    background: white;
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    width: 100%;
    max-width: 400px;
    transition: all 0.4s ease;
    border: 2px solid #FFE5CC;
}

.cta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(255, 140, 0, 0.25);
    border-color: var(--orange-light);
}

.cta-icon.orange {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: var(--shadow);
}

.cta-icon.orange i {
    font-size: 2rem;
    color: white;
}

.cta-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.cta-card>p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.btn-cta.orange {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 16px 30px;
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.btn-cta.orange:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 140, 0, 0.3);
}

.cta-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--orange-primary);
    margin: 0;
    font-weight: 600;
}

.cta-note i {
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 968px) {
    .cta-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-text {
        padding-right: 0;
        text-align: center;
    }

    .cta-text h2 {
        font-size: 2.5rem;
    }

    .quick-contact {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .cta-section.solar-cta {
        padding: 60px 0;
    }

    .cta-text h2 {
        font-size: 2rem;
    }

    .cta-text p {
        font-size: 1rem;
    }

    .quick-contact {
        flex-direction: column;
    }

    .quick-link {
        justify-content: center;
        width: 100%;
    }

    .cta-card {
        padding: 30px 25px;
    }
}

/* === FOOTER - LANDING PAGE STYLE === */
.footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 60px 0 30px;
}

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

.footer-col:first-child {
    padding-right: 30px;
}

.footer-logo {
    width: 150px;
    margin-bottom: 15px;
}

.footer-brand h3,
.footer-links h4,
.footer-col h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-brand p,
.footer-col p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: #ccc;
}

/* Social Icons */
.socials,
.social-links,
.social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.socials a,
.social-links a,
.social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.socials a:hover,
.social-links a:hover,
.social a:hover {
    background: var(--orange-primary);
    transform: translateY(-3px);
}

.footer-links ul,
.footer-col ul {
    list-style: none;
}

.footer-links li,
.footer-col li,
.contact-info li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-col a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-links a:hover,
.footer-col a:hover {
    color: var(--orange-primary);
    transform: translateX(5px);
}

.contact-info li {
    display: flex;
    align-items: start;
    gap: 12px;
    color: #ccc;
}

.contact-info i {
    color: var(--orange-primary);
    margin-top: 3px;
    font-size: 1.1rem;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 25px;
    text-align: center;
    color: #999;
}

/* === WHATSAPP FLOAT BUTTON === */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 998;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

/* ==========================================
   MOBILE RESPONSIVE MEDIA QUERIES
   ========================================== */

@media (max-width: 992px) {
    .subsidy-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .subsidy-card:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .process-step {
        grid-column: span 1 !important;
    }

    .process-arrow {
        display: none;
    }

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

@media (max-width: 768px) {
    .nav-menu.desktop-menu {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero h2 {
        font-size: 1.6rem;
    }

    .solar-panel-showcase {
        order: -1;
    }

    .section-title-center h2 {
        font-size: 2.2rem;
    }

    .subsidy-cards {
        grid-template-columns: 1fr;
    }

    .subsidy-card:nth-child(3) {
        grid-column: 1;
        max-width: 100%;
    }

    .subsidy-card.featured {
        transform: scale(1);
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-image {
        order: -1;
    }

    .stats-overlay {
        padding: 20px;
        gap: 20px;
        bottom: 20px;
        left: 20px;
        right: 20px;
    }

    .stat h3 {
        font-size: 2rem;
    }

    .stat p {
        font-size: 0.95rem;
    }

    .contact-card {
        padding: 35px 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .support-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }

    .logo {
        font-size: 1.1rem;
    }

    .logo img {
        height: 38px;
    }

    .hero {
        padding: 100px 0 50px;
    }

    .hero h1 {
        font-size: 2.3rem;
    }

    .hero h2 {
        font-size: 1.3rem;
    }

    .hero-desc {
        font-size: 1.05rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 15px 30px;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }

    .floating-badge {
        position: static;
        margin: 15px 0;
    }

    .section-title-center h2 {
        font-size: 1.9rem;
    }

    .subsidy-amount {
        font-size: 2.5rem;
    }

    .why-content h2 {
        font-size: 2rem;
    }

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

    .submit-btn {
        width: 100%;
    }

    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .section-title-center h2 {
        font-size: 1.7rem;
    }

    .subsidy-amount {
        font-size: 2.2rem;
    }
}

@media (hover: none) and (pointer: coarse) {
    .mobile-toggle {
        min-width: 44px;
        min-height: 44px;
    }

    .mobile-menu a {
        min-height: 44px;
    }
}