/* ==========================================
   SOLAR PAGE - UNIQUE ORANGE & GREEN THEME
   Completely Different from Index
   ========================================== */

/* === 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.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
}

/* === RESET === */
* {
    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;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === NAVIGATION === */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--green-dark);
}

.logo img {
    height: 40px;
}

.text-accent {
    color: var(--orange-primary);
}

.nav-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;
}

.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);
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

/* === HERO === */
.hero {
    padding: 120px 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.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(46, 125, 50, 0.1) 0%, transparent 50%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.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.8rem;
    color: var(--green-dark);
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 35px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--green-dark);
    font-weight: 600;
}

.benefit i {
    color: var(--green-primary);
    font-size: 1.2rem;
}

.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
    color: white;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(255, 140, 0, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--green-dark);
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: var(--shadow);
    border: 2px solid var(--green-light);
}

.btn-secondary:hover {
    background: var(--green-primary);
    color: white;
}

/* === SOLAR SHOWCASE === */
.solar-panel-showcase {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.solar-panel-showcase img {
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
}

.floating-badge {
    position: absolute;
    background: white;
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: bounce 3s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.floating-badge.top-left {
    top: -10px;
    left: -10px;
}

.floating-badge.bottom-right {
    bottom: -10px;
    right: -10px;
}

.badge-icon {
    font-size: 2rem;
}

.badge-text strong {
    display: block;
    font-size: 1.3rem;
    color: var(--orange-primary);
}

.badge-text span {
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* === SUBSIDY SECTION === */
.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);
}

.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: 3px solid #f0f0f0;
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.subsidy-card:hover {
    transform: translateY(-10px);
    border-color: var(--orange-light);
    box-shadow: var(--shadow-lg);
}

.subsidy-card.featured {
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
    color: white;
    border-color: var(--orange-primary);
}

.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.9rem;
    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;
}

/* === HELP SECTION === */
.help-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 20px;
    align-items: center;
    margin: 60px 0;
}

.process-step {
    background: white;
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
    grid-column: span 1;
}

.process-step:nth-child(1) { grid-column: 1 / 2; }
.process-step:nth-child(3) { grid-column: 3 / 4; }
.process-step:nth-child(5) { grid-column: 5 / 6; }
.process-step:nth-child(7) { grid-column: 7 / 8; }

.process-arrow {
    text-align: center;
    color: var(--orange-primary);
    font-size: 1.5rem;
}

.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 20px;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 140, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.8rem;
    color: var(--orange-primary);
}

.process-step h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.process-step p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 15px;
}

.step-time {
    display: inline-block;
    background: var(--green-primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.help-cta {
    margin-top: 60px;
}

.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.1rem;
}

.support-list i {
    color: var(--orange-light);
    font-size: 1.3rem;
}

/* === WHY SECTION === */
.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: 40px;
    color: var(--text-dark);
}

.why-points {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.why-point {
    display: flex;
    gap: 20px;
    align-items: start;
}

.point-icon {
    width: 40px;
    height: 40px;
    background: var(--green-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.point-text h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.point-text p {
    color: var(--text-gray);
    line-height: 1.7;
}

.why-image {
    position: relative;
}

.why-image img {
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
}

.stats-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    display: flex;
    justify-content: space-around;
    box-shadow: var(--shadow);
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    color: var(--orange-primary);
    font-weight: 900;
}

.stat p {
    color: var(--text-gray);
    font-weight: 600;
}

/* === CONTACT SECTION === */
.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);
}

.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;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange-primary);
    box-shadow: 0 0 0 4px 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;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 140, 0, 0.4);
}

.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 {
    color: var(--green-primary);
}

/* === FOOTER === */
.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-logo {
    height: 50px;
    margin-bottom: 15px;
}

.footer-col p {
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links 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;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--orange-primary);
}

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--orange-primary);
}

.footer-col ul li i {
    margin-right: 10px;
    color: var(--orange-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* === WHATSAPP === */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    text-decoration: none;
    transition: all 0.3s;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
    .hero-grid,
    .why-grid,
    .footer-grid { grid-template-columns: 1fr; }
    
    .subsidy-cards { grid-template-columns: 1fr; }
    
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .process-step { grid-column: 1 / -1 !important; }
    .process-arrow { display: none; }
    
    .form-row { grid-template-columns: 1fr; }
    
    .support-list { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem !important; }
    h2 { font-size: 2rem !important; }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        background: white;
        flex-direction: column;
        justify-content: center;
        box-shadow: -5px 0 20px rgba(0,0,0,0.2);
        transition: right 0.3s;
        z-index: 999;
    }
    
    .nav-menu.active { right: 0; }
    
    .mobile-toggle { display: block; z-index: 1001; }
    
    .hero-cta { flex-direction: column; }
}

/* === ANIMATIONS & SMOOTH EFFECTS === */
html { scroll-behavior: smooth; }

/* Smooth transitions */
a, button, .btn, .card, img { transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }

/* Hover animations */
.btn-primary:hover, .btn-secondary:hover, .btn-nav:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(255,140,0,0.3); }
.subsidy-card:hover, .process-step:hover { transform: translateY(-10px); box-shadow: 0 15px 35px rgba(0,0,0,0.15); }
img:hover { transform: scale(1.02); }

/* Keyframe animations */
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }

/* Apply animations */
.section-title-center, .section-head { animation: fadeIn 0.8s ease-out; }
.subsidy-card, .process-step { animation: fadeIn 0.6s ease-out backwards; }
.floating-badge { animation: pulse 3s ease-in-out infinite; }
.solar-panel-showcase { animation: float 6s ease-in-out infinite; }
