/* TOP BAR */
.top-bar{
    background:#0f172a;
}

/* NAVBAR */
.custom-navbar{
    background:rgba(255,255,255,0.88);
    backdrop-filter:blur(15px);
    -webkit-backdrop-filter:blur(15px);
    box-shadow:0 5px 30px rgba(0,0,0,.08);
    transition:.3s ease;
    padding:15px 0;
}

/* LOGO */
.logo-icon{
    width:45px;
    height:45px;
    border-radius:50%;
    background:linear-gradient(135deg,#16a34a,#22c55e);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
}

.brand-title{
    color:#0f172a;
    font-size:20px;
    font-weight:700;
}

/* MENU */
.navbar-nav .nav-link{
    color:#0f172a;
    font-weight:600;
    margin:0 8px;
    position:relative;
}

.navbar-nav .nav-link:hover{
    color:#16a34a;
}

.navbar-nav .nav-link.active{
    color:#16a34a;
}

.navbar-nav .nav-link.active::after{
    content:'';
    width:100%;
    height:3px;
    background:#16a34a;
    position:absolute;
    left:0;
    bottom:-5px;
}

/* CTA */
.btn-success{
    background:#16a34a;
    border:none;
}

.btn-success:hover{
    background:#15803d;
}

/* MOBILE */
@media(max-width:991px){

    .custom-navbar{
        background:#fff;
    }

    .navbar-nav{
        padding-top:20px;
    }

    .navbar-nav .nav-link{
        padding:12px 0;
    }

}
.hero-section{
    background:linear-gradient(
    135deg,
    #0f172a,
    #1e293b
    );
    color:#fff;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:url('../images/hero/pattern.png');
    opacity:.05;
}

.hero-title{
    font-size:60px;
    font-weight:800;
}

.hero-text{
    font-size:18px;
    opacity:.9;
}

.hero-badge{
    padding:10px 20px;
    border-radius:30px;
    background:rgba(255,255,255,.1);
    backdrop-filter:blur(10px);
}

.hero-img{
    animation:float 4s ease-in-out infinite;
}

@keyframes float{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-15px);
    }

    100%{
        transform:translateY(0);
    }

}

.counter-box{
    text-align:center;
}

.counter-box h3{
    color:#22c55e;
    font-weight:700;
}

.trust-card{
    background:#fff;
    padding:25px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.trust-card i{
    color:#16a34a;
    font-size:35px;
    margin-bottom:15px;
}

.scheme-card{
    background:#fff;
    padding:35px;
    border-radius:25px;
    text-align:center;
    transition:.3s;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.scheme-card:hover{
    transform:translateY(-10px);
}

.scheme-card i{
    font-size:45px;
    color:#16a34a;
    margin-bottom:15px;
}
.service-card,
.choose-card,
.benefit-card,
.process-card{
    background:#fff;
    padding:35px;
    border-radius:24px;
    text-align:center;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
}

.service-card:hover,
.choose-card:hover,
.benefit-card:hover,
.process-card:hover{
    transform:translateY(-10px);
}

.service-card i{
    font-size:50px;
    color:#16a34a;
    margin-bottom:20px;
}

.choose-icon{
    width:80px;
    height:80px;
    margin:auto;
    margin-bottom:20px;
    border-radius:50%;
    background:#16a34a;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
}

.benefit-card h3{
    color:#16a34a;
    font-size:45px;
    font-weight:700;
}

.process-card span{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#16a34a;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    margin-bottom:20px;
    font-size:22px;
    font-weight:700;
}

.page-banner{
    background:linear-gradient(
    135deg,
    #0f172a,
    #1e293b
    );
    color:#fff;
    padding:140px 0 100px;
}

.banner-badge{
    background:rgba(255,255,255,.1);
    padding:10px 20px;
    border-radius:30px;
}

.stat-card{
    text-align:center;
    padding:20px;
    border-radius:20px;
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.stat-card h3{
    color:#16a34a;
    font-weight:700;
}

.glass-card{
    background:rgba(255,255,255,.8);
    backdrop-filter:blur(12px);
    padding:40px;
    border-radius:25px;
    text-align:center;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}

.glass-card i{
    font-size:50px;
    color:#16a34a;
    margin-bottom:20px;
}

.feature-box{
    text-align:center;
    padding:35px;
    border-radius:25px;
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.feature-box i{
    font-size:45px;
    color:#16a34a;
    margin-bottom:15px;
}

.company-info-card{
    background:#fff;
    padding:40px;
    border-radius:25px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}

.cta-section{
    background:linear-gradient(
    135deg,
    #16a34a,
    #22c55e
    );
    color:#fff;
    padding:80px 0;
}
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader {
    width: 50px;
    height: 50px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Premium Form Styles */
.form-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.1), rgba(22, 163, 74, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(22, 163, 74, 0); }
    100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); }
}

/* Form Floating Labels */
.form-floating {
    position: relative;
}

.form-floating > .form-control,
.form-floating > .form-select {
    height: 58px;
    padding: 1rem 0.75rem;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    background: white;
}

.form-floating > .form-control:focus,
.form-floating > .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
}

.form-floating > label {
    padding: 1rem 0.75rem;
    color: #64748b;
    transition: all 0.3s ease;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
    color: var(--primary);
    background: white;
    padding: 0 0.5rem;
    height: auto;
}

.form-floating.focused > label {
    color: var(--primary) !important;
}

/* WhatsApp Submit Button */
.whatsapp-submit-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border: none;
    padding: 14px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.whatsapp-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.btn-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff5722;
    color: white;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 20px;
    font-weight: normal;
}

/* Terms Wrapper */
.terms-wrapper {
    background: #f8fafc;
    padding: 12px 15px;
    border-radius: 12px;
    border-left: 3px solid var(--primary);
}

.terms-wrapper .form-check-input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
}

.terms-wrapper .form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

/* Security Badges */
.security-badges {
    padding: 10px;
    background: #f8fafc;
    border-radius: 12px;
}

.security-badges i {
    font-size: 18px;
    margin-bottom: 5px;
}

/* Premium Notification */
.premium-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 9999;
    transform: translateX(400px);
    transition: transform 0.3s ease;
}

.premium-notification.show {
    transform: translateX(0);
}

.notification-content {
    background: white;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border-left: 4px solid;
    display: flex;
    align-items: center;
    gap: 12px;
}

.premium-notification.success .notification-content {
    border-left-color: #25D366;
}

.premium-notification.error .notification-content {
    border-left-color: #dc3545;
}

.notification-content i {
    font-size: 24px;
}

.premium-notification.success .notification-content i {
    color: #25D366;
}

.premium-notification.error .notification-content i {
    color: #dc3545;
}

/* Thank You Modal */
.thankyou-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.thankyou-modal.show {
    opacity: 1;
    visibility: visible;
}

.thankyou-content {
    background: white;
    padding: 40px;
    border-radius: 30px;
    text-align: center;
    max-width: 400px;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.thankyou-modal.show .thankyou-content {
    transform: scale(1);
}

.thankyou-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
}

.thankyou-content h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .form-floating > .form-control,
    .form-floating > .form-select {
        height: 52px;
    }
    
    .whatsapp-submit-btn {
        font-size: 1rem;
        padding: 12px 20px;
    }
    
    .security-badges small {
        font-size: 10px;
    }
    
    .premium-notification {
        left: 20px;
        right: 20px;
        transform: translateY(-100px);
    }
    
    .premium-notification.show {
        transform: translateY(0);
    }
    
    .thankyou-content {
        margin: 20px;
        padding: 30px;
    }
}

/* Premium Alert Styles */
.premium-alert {
    border-radius: 12px;
    border-left: 4px solid;
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* =========================================== */
/* PREMIUM SUBSIDY SECTION - COMPLETE STYLES */
/* =========================================== */

.premium-subsidy-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #0f0f0f 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Section Header */
.subsidy-header {
    text-align: center;
    margin-bottom: 50px;
}

.subsidy-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 24px;
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    margin-bottom: 20px;
}

.subsidy-header-badge i {
    color: #D4AF37;
    font-size: 14px;
}

.subsidy-header-badge span {
    color: #D4AF37;
    font-weight: 500;
    font-size: 14px;
}

.subsidy-title {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.subsidy-golden-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #D4AF37, transparent);
    margin: 0 auto 20px;
}

.subsidy-subtitle {
    font-size: clamp(14px, 3vw, 18px);
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

/* Subsidy Highlights */
.subsidy-highlights {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.highlight-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 15px 25px;
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
    border-color: #D4AF37;
    background: rgba(212, 175, 55, 0.05);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-icon i {
    font-size: 24px;
    color: #D4AF37;
}

.highlight-content {
    display: flex;
    flex-direction: column;
}

.highlight-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.highlight-value {
    font-size: 20px;
    font-weight: 700;
    color: #D4AF37;
}

/* Premium Table Styles */
.subsidy-table-wrapper {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 24px;
    padding: 20px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    overflow-x: auto;
}

.premium-subsidy-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.premium-subsidy-table thead th {
    padding: 18px 15px;
    text-align: center;
    font-weight: 600;
    color: #D4AF37;
    background: rgba(212, 175, 55, 0.05);
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    font-size: 14px;
}

.premium-subsidy-table thead th i {
    margin-right: 8px;
    font-size: 14px;
}

.premium-subsidy-table tbody tr {
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.premium-subsidy-table tbody tr:hover {
    background: rgba(212, 175, 55, 0.05);
}

.premium-subsidy-table tbody td {
    padding: 15px;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.highlight-row {
    background: rgba(212, 175, 55, 0.08);
    border-left: 3px solid #D4AF37;
    border-right: 3px solid #D4AF37;
}

.capacity-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.05);
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 13px;
}

.capacity-badge.popular {
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    color: #0a0a0a;
    font-weight: 700;
}

.subsidy-cell {
    color: #D4AF37 !important;
    font-weight: 700;
}

/* Mobile Cards View */
.mobile-subsidy-cards {
    display: none;
    gap: 20px;
    flex-direction: column;
}

.subsidy-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.subsidy-card:hover {
    transform: translateY(-3px);
    border-color: #D4AF37;
}

.popular-card {
    border: 2px solid #D4AF37;
    position: relative;
}

.popular-tag {
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    color: #0a0a0a;
    padding: 8px;
    text-align: center;
    font-weight: 600;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.popular-tag i {
    font-size: 12px;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(212, 175, 55, 0.05);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.card-header .capacity {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

.savings-badge {
    background: rgba(212, 175, 55, 0.15);
    color: #D4AF37;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.card-body {
    padding: 15px 20px;
}

.card-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.card-row:last-child {
    border-bottom: none;
}

.card-row .label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.card-row .label i {
    margin-right: 8px;
    font-size: 12px;
}

.card-row .value {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.card-row.highlight .value {
    color: #D4AF37;
    font-size: 16px;
}

/* Subsidy Note */
.subsidy-note {
    display: flex;
    gap: 15px;
    background: rgba(212, 175, 55, 0.05);
    border-left: 3px solid #D4AF37;
    padding: 20px;
    border-radius: 16px;
    margin-top: 30px;
}

.note-icon i {
    font-size: 24px;
    color: #D4AF37;
}

.note-content h6 {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 8px;
}

.note-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

/* Subsidy CTA */
.subsidy-cta {
    text-align: center;
    margin-top: 40px;
}

.btn-subsidy-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    color: #0a0a0a;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-subsidy-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    color: #0a0a0a;
}

.cta-note {
    margin-top: 12px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

/* =========================================== */
/* RESPONSIVE BREAKPOINTS */
/* =========================================== */

/* Hide mobile cards on desktop, show table */
@media (min-width: 992px) {
    .mobile-subsidy-cards {
        display: none;
    }
    .desktop-table {
        display: block;
    }
}

/* Hide table on mobile, show cards */
@media (max-width: 991px) {
    .desktop-table {
        display: none;
    }
    .mobile-subsidy-cards {
        display: flex;
    }
    
    .subsidy-highlights {
        gap: 15px;
    }
    
    .highlight-card {
        padding: 10px 18px;
    }
    
    .highlight-icon {
        width: 40px;
        height: 40px;
    }
    
    .highlight-icon i {
        font-size: 18px;
    }
    
    .highlight-value {
        font-size: 16px;
    }
    
    .highlight-label {
        font-size: 10px;
    }
}

@media (max-width: 768px) {
    .premium-subsidy-section {
        padding: 60px 0;
    }
    
    .subsidy-highlights {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .highlight-card {
        min-width: 160px;
        justify-content: center;
    }
    
    .subsidy-note {
        flex-direction: column;
        text-align: center;
    }
    
    .note-icon {
        margin: 0 auto;
    }
    
    .btn-subsidy-cta {
        padding: 12px 25px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .highlight-card {
        min-width: 140px;
        padding: 8px 15px;
    }
    
    .highlight-value {
        font-size: 14px;
    }
    
    .card-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .btn-subsidy-cta {
        width: 100%;
        justify-content: center;
    }
}
.result-card{

    background:rgba(255,255,255,.45);

    backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,.3);

    border-radius:25px;

    padding:25px;

    text-align:center;

    height:100%;
}

.result-card h6{

    color:#64748b;

    margin-bottom:15px;
}

.result-card h3{

    color:#15803d;

    font-weight:700;
}

.net-saving{

    background:
    linear-gradient(
    135deg,
    rgba(21,128,61,.1),
    rgba(249,115,22,.1)
    );
}

.net-saving h2{

    color:#f97316;

    font-weight:800;
}