:root {
    --solar-primary: #f59e0b;
    --solar-secondary: #0ea5e9;
    --solar-dark: #1e293b;
    --solar-light: #f8fafc;
    --solar-success: #10b981;
    --solar-danger: #ef4444;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--solar-light);
    color: var(--solar-dark);
    padding-top: 108px;
}

body.user-logged-in {
    padding-top: 70px;
}

/* ===== PREMIUM TOP BAR ===== */
.top-bar {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 8px 0;
    margin: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1031;
    border-bottom: 1px solid rgba(245, 158, 11, 0.15);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-item {
    color: #94a3b8;
    font-size: 0.82rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
    font-weight: 500;
}

.top-bar-item:hover {
    color: var(--solar-primary);
}

.top-bar-item i {
    font-size: 0.75rem;
    color: var(--solar-primary);
}

.top-bar-right {
    display: flex;
    align-items: center;
}

.top-bar-social {
    display: flex;
    gap: 5px;
}

.top-bar-social a {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    border-radius: 6px;
    font-size: 0.78rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

.top-bar-social a:hover {
    background: var(--solar-primary);
    color: white;
    transform: translateY(-2px);
}

/* Logged-in body adjustments (no top bar) */
.user-logged-in .navbar-premium {
    top: 0;
}

/* ===== PREMIUM NAVBAR ===== */
.navbar-premium {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    padding: 10px 0;
    margin: 0;
    position: fixed;
    top: 38px;
    left: 0;
    right: 0;
    z-index: 1030;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

/* Brand Styling */
.navbar-brand-premium {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
}

.brand-logo-wrap {
    position: relative;
}

.logo-img {
    height: 48px;
    width: auto;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar-brand-premium:hover .logo-img {
    transform: scale(1.05);
    box-shadow: 0 5px 18px rgba(245, 158, 11, 0.25);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.35rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--solar-primary), #e67e22, var(--solar-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    letter-spacing: -0.3px;
}

.brand-tagline {
    font-size: 0.7rem;
    color: #64748b;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Premium Nav Links */
.nav-link-premium {
    color: #334155 !important;
    font-weight: 600;
    padding: 8px 15px !important;
    margin: 0 2px;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.92rem;
    letter-spacing: 0.1px;
}

.nav-link-premium i {
    font-size: 0.85rem;
    color: var(--solar-primary);
    transition: all 0.3s ease;
}

.nav-link-premium::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2.5px;
    background: linear-gradient(90deg, var(--solar-primary), var(--solar-secondary));
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.nav-link-premium:hover {
    color: var(--solar-primary) !important;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.06), rgba(14, 165, 233, 0.06));
}

.nav-link-premium:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-link-premium.active {
    color: var(--solar-primary) !important;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(14, 165, 233, 0.08));
}

.nav-link-premium.active::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-link-premium.active i {
    color: var(--solar-secondary);
}

/* User Avatar in Nav */
.nav-user-avatar {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--solar-primary), var(--solar-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
}

/* Logged-in User Nav Button */
.nav-link-user-btn {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.06), rgba(15, 23, 42, 0.08)) !important;
    border: 1.5px solid rgba(245, 158, 11, 0.2) !important;
    border-radius: 50px !important;
    padding: 6px 14px 6px 6px !important;
    gap: 8px !important;
}

.nav-link-user-btn:hover {
    border-color: var(--solar-primary) !important;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(14, 165, 233, 0.06)) !important;
}

.nav-link-user-btn::after {
    display: none !important;
}

/* Premium Register Button */
.btn-register-premium {
    background: linear-gradient(135deg, var(--solar-primary), var(--solar-secondary));
    color: white !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: 10px;
    box-shadow: 0 4px 18px rgba(245, 158, 11, 0.3);
    transition: all 0.3s ease;
    letter-spacing: 0.2px;
    white-space: nowrap;
}

.btn-register-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(245, 158, 11, 0.45);
    color: white !important;
    filter: brightness(1.05);
}

/* Premium Toggler */
.navbar-toggler-premium {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border: 2px solid rgba(245, 158, 11, 0.3);
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.navbar-toggler-premium:hover {
    border-color: var(--solar-primary);
}

.toggler-bar {
    width: 22px;
    height: 2.5px;
    background: linear-gradient(90deg, var(--solar-primary), var(--solar-secondary));
    border-radius: 2px;
    transition: all 0.3s ease;
}

.navbar-toggler-premium[aria-expanded="true"] .toggler-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler-premium[aria-expanded="true"] .toggler-bar:nth-child(2) {
    opacity: 0;
}

.navbar-toggler-premium[aria-expanded="true"] .toggler-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Premium Dropdown */
.dropdown-menu-premium {
    border: none;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border-radius: 14px;
    padding: 8px;
    margin-top: 12px;
    min-width: 240px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.dropdown-header-premium {
    padding: 12px 14px;
}

.dropdown-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dropdown-user-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--solar-primary), var(--solar-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.dropdown-user-info strong {
    display: block;
    font-size: 0.92rem;
    color: #1e293b;
}

.dropdown-user-info small {
    color: #64748b;
    font-size: 0.78rem;
}

.dropdown-menu-premium .dropdown-item {
    border-radius: 8px;
    padding: 10px 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 0.9rem;
}

.dropdown-menu-premium .dropdown-item i {
    width: 18px;
    color: var(--solar-primary);
    font-size: 0.85rem;
}

.dropdown-menu-premium .dropdown-item:hover {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(14, 165, 233, 0.08));
    transform: translateX(4px);
}

.dropdown-menu-premium .dropdown-item.active {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.12), rgba(14, 165, 233, 0.1));
    color: var(--solar-primary);
    font-weight: 600;
}

.dropdown-menu-premium .dropdown-item.active i {
    color: var(--solar-primary);
}

.dropdown-item-danger {
    color: var(--solar-danger) !important;
}

.dropdown-item-danger i {
    color: var(--solar-danger) !important;
}

.dropdown-item-danger:hover {
    background: rgba(239, 68, 68, 0.08) !important;
}

/* Tablet Responsive (768px - 991px) */
@media (max-width: 991px) {
    .top-bar {
        padding: 6px 0;
    }

    .top-bar-inner {
        flex-wrap: wrap;
        justify-content: center;
        gap: 4px 16px;
    }

    .top-bar-left {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .top-bar-item {
        font-size: 0.72rem;
        gap: 4px;
    }

    .top-bar-location {
        display: none;
    }

    .top-bar-right {
        display: none;
    }
    
    .navbar-premium {
        padding: 8px 0;
    }
    
    .navbar-toggler-premium {
        display: flex;
    }
    
    .brand-name {
        font-size: 1.15rem;
    }
    
    .brand-tagline {
        font-size: 0.62rem;
        letter-spacing: 1px;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .navbar-collapse {
        margin-top: 15px;
        padding-top: 15px;
        border-top: 2px solid rgba(245, 158, 11, 0.1);
        max-height: 70vh;
        overflow-y: auto;
    }
    
    .nav-link-premium {
        margin: 3px 0;
        padding: 12px 16px !important;
        border-radius: 10px;
    }
    
    .nav-link-premium::after {
        display: none;
    }
    
    .nav-link-premium.active {
        background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(14, 165, 233, 0.1));
        border-left: 3px solid var(--solar-primary);
        border-radius: 0 10px 10px 0;
    }
    
    .btn-register-premium {
        margin: 10px 0;
        width: 100%;
        justify-content: center;
    }
    
    .nav-link-user-btn {
        border-radius: 10px !important;
        padding: 12px 16px !important;
        margin-top: 8px !important;
        border-top: 1px solid rgba(245, 158, 11, 0.15) !important;
    }
    
    .dropdown-menu-premium {
        box-shadow: none;
        border: 1px solid rgba(0, 0, 0, 0.06);
        margin-top: 5px;
    }
    
    .hero-section {
        padding: 80px 0;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section p {
        font-size: 1.1rem;
    }
    
    .feature-card {
        margin-bottom: 20px;
    }
    
    .stat-card h3 {
        font-size: 2rem;
    }
    
    .dashboard-card {
        margin-bottom: 15px;
    }
    
    .table-responsive {
        font-size: 0.9rem;
    }
    
    .sidebar {
        margin-bottom: 20px;
    }
}

/* Mobile Responsive (576px - 767px) */
@media (max-width: 767px) {
    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .row {
        margin-left: -10px;
        margin-right: -10px;
    }
    
    .row > * {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    h4 {
        font-size: 1.25rem;
    }
    
    .btn-solar,
    .btn-lg {
        padding: 10px 20px;
        font-size: 1rem;
    }
    
    .feature-card i {
        font-size: 2.5rem;
    }
    
    .product-card img {
        height: 180px;
    }
    
    .price-tag {
        font-size: 1.3rem;
    }
    
    .profile-img {
        width: 120px;
        height: 120px;
    }
    
    .contact-info {
        margin-bottom: 20px;
    }
    
    .form-control,
    .form-select {
        font-size: 1rem;
    }
}

/* Small Mobile (< 576px) */
@media (max-width: 576px) {
    body {
        padding-top: 95px;
    }
    
    .brand-name {
        font-size: 0.95rem;
    }
    
    .brand-tagline {
        font-size: 0.55rem;
        letter-spacing: 0.8px;
    }
    
    .logo-img {
        height: 34px;
        border-radius: 8px;
    }
    
    .navbar-premium {
        padding: 6px 0;
    }
    
    .nav-link-premium {
        padding: 10px 14px !important;
        font-size: 0.88rem;
    }
    
    .btn-register-premium {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
    
    .btn-solar {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .feature-card {
        padding: 20px;
        margin-bottom: 15px;
    }
    
    .feature-card i {
        font-size: 2rem;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
    }
    
    .stat-card {
        padding: 20px;
        margin-bottom: 15px;
    }
    
    .stat-card h3 {
        font-size: 1.8rem;
    }
    
    .stat-card p {
        font-size: 0.9rem;
    }
    
    .dashboard-card {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .table-responsive {
        font-size: 0.85rem;
    }
    
    .table-responsive table {
        min-width: 100%;
    }
    
    .table th,
    .table td {
        padding: 8px 5px;
        font-size: 0.85rem;
    }
    
    .profile-img {
        width: 100px;
        height: 100px;
    }
    
    .sidebar .nav-link {
        padding: 10px 12px;
        font-size: 0.95rem;
    }
    
    .product-card img {
        height: 150px;
    }
    
    .price-tag {
        font-size: 1.2rem;
    }
    
    .contact-info {
        padding: 20px;
        margin-bottom: 15px;
    }
    
    .contact-info i {
        font-size: 1.5rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    h4 {
        font-size: 1.1rem;
    }
    
    h5 {
        font-size: 1rem;
    }
    
    .section-title {
        margin-bottom: 30px;
    }
    
    .section-title::after {
        width: 60px;
    }
    
    .form-label {
        font-size: 0.9rem;
    }
    
    .form-control,
    .form-select,
    textarea {
        font-size: 0.95rem;
        padding: 10px;
    }
    
    .alert {
        font-size: 0.9rem;
        padding: 10px;
    }
    
    .badge {
        font-size: 0.75rem;
        padding: 4px 8px;
    }
    
    .dropdown-menu {
        font-size: 0.9rem;
    }
    
    
    footer {
        font-size: 0.9rem;
    }
    
    footer h5 {
        font-size: 1.1rem;
    }
}

/* Extra Small Mobile (< 400px) */
@media (max-width: 400px) {
    body {
        padding-top: 90px;
    }
    
    .hero-section h1 {
        font-size: 1.75rem;
    }
    
    .hero-section p {
        font-size: 0.95rem;
    }
    
    .brand-name {
        font-size: 0.85rem;
    }
    
    .brand-tagline {
        display: none;
    }
    
    .logo-img {
        height: 28px;
        border-radius: 6px;
    }
    
    .navbar-premium {
        padding: 5px 0;
    }
    
    .navbar-toggler-premium {
        padding: 6px;
        gap: 4px;
    }
    
    .toggler-bar {
        width: 18px;
        height: 2px;
    }
    
    .nav-link-premium {
        padding: 9px 12px !important;
        font-size: 0.85rem;
    }
    
    .stat-card h3 {
        font-size: 1.5rem;
    }
    
    .table th,
    .table td {
        padding: 6px 3px;
        font-size: 0.8rem;
    }
    
    .btn {
        font-size: 0.9rem;
        padding: 8px 15px;
    }
    
    .profile-img {
        width: 80px;
        height: 80px;
    }
}

/* Modern Footer Styles */
.footer-modern {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: #e2e8f0;
    margin-top: 60px;
}

.footer-top {
    padding: 60px 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-widget {
    margin-bottom: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-img {
    height: 45px;
    width: auto;
    border-radius: 8px;
}

.footer-brand {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(135deg, var(--solar-primary), var(--solar-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-desc {
    color: #cbd5e1;
    line-height: 1.8;
    margin-top: 15px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

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

.social-btn:hover {
    background: linear-gradient(135deg, var(--solar-primary), var(--solar-secondary));
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.4);
}

.footer-title {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--solar-primary), var(--solar-secondary));
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.footer-links a i {
    font-size: 0.7rem;
    color: var(--solar-primary);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--solar-primary);
    padding-left: 5px;
}

.footer-links a:hover i {
    transform: translateX(3px);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 18px;
    color: #cbd5e1;
}

.footer-contact i {
    color: var(--solar-primary);
    font-size: 1.1rem;
    width: 20px;
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact span {
    line-height: 1.6;
}

.footer-bottom {
    padding: 25px 0;
    background: rgba(0, 0, 0, 0.2);
}

.footer-bottom p {
    color: #cbd5e1;
    margin: 8px 0;
}

.footer-bottom strong {
    color: white;
}

.developer-credit {
    color: #94a3b8;
    font-size: 0.95rem;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.developer-credit i {
    color: var(--solar-primary);
    margin: 0 5px;
}

.viper-brand {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Footer Responsive */
@media (max-width: 1199px) {
    .footer-desc {
        font-size: 0.95rem;
    }
    
    .footer-links a,
    .footer-contact li {
        font-size: 0.93rem;
    }
}

@media (max-width: 991px) {
    .footer-top {
        padding: 50px 0 30px;
    }
    
    .footer-widget {
        margin-bottom: 30px;
    }
    
    .footer-title {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .footer-logo {
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }
    
    .footer-desc {
        text-align: center;
        max-width: 400px;
        margin: 15px auto 0;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-title {
        text-align: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-links a {
        justify-content: center;
    }
    
    .footer-contact {
        text-align: center;
    }
    
    .footer-contact li {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .footer-modern {
        margin-top: 40px;
    }
    
    .footer-top {
        padding: 40px 0 20px;
    }
    
    .footer-logo-img {
        height: 40px;
    }
    
    .footer-brand {
        font-size: 1.2rem;
    }
    
    .footer-desc {
        font-size: 0.9rem;
        max-width: 350px;
    }
    
    .footer-links li {
        margin-bottom: 10px;
    }
    
    .footer-links a {
        font-size: 0.92rem;
    }
    
    .footer-contact li {
        font-size: 0.92rem;
        margin-bottom: 14px;
    }
    
    .footer-bottom {
        padding: 20px 0;
    }
    
    .footer-bottom p {
        font-size: 0.88rem;
    }
    
    .developer-credit {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .footer-modern {
        margin-top: 30px;
    }
    
    .footer-top {
        padding: 30px 0 15px;
    }
    
    .footer-logo-img {
        height: 35px;
    }
    
    .footer-brand {
        font-size: 1.05rem;
    }
    
    .footer-desc {
        font-size: 0.85rem;
        max-width: 300px;
        line-height: 1.7;
    }
    
    .social-btn {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }
    
    .footer-social {
        gap: 8px;
    }
    
    .footer-title {
        font-size: 1rem;
        margin-bottom: 18px;
        padding-bottom: 10px;
    }
    
    .footer-links a {
        font-size: 0.85rem;
        gap: 6px;
    }
    
    .footer-links li {
        margin-bottom: 8px;
    }
    
    .footer-contact li {
        font-size: 0.85rem;
        gap: 10px;
        margin-bottom: 12px;
    }
    
    .footer-contact i {
        font-size: 0.95rem;
    }
    
    .footer-bottom {
        padding: 15px 0;
    }
    
    .footer-bottom p {
        font-size: 0.82rem;
        line-height: 1.5;
    }
    
    .developer-credit {
        font-size: 0.8rem;
        padding-top: 12px;
    }
}

@media (max-width: 400px) {
    .footer-top {
        padding: 25px 0 10px;
    }
    
    .footer-logo-img {
        height: 30px;
    }
    
    .footer-brand {
        font-size: 0.95rem;
    }
    
    .footer-desc {
        font-size: 0.8rem;
        max-width: 260px;
    }
    
    .social-btn {
        width: 32px;
        height: 32px;
        font-size: 0.78rem;
    }
    
    .footer-title {
        font-size: 0.92rem;
        margin-bottom: 15px;
    }
    
    .footer-links a {
        font-size: 0.8rem;
    }
    
    .footer-contact li {
        font-size: 0.8rem;
    }
    
    .footer-bottom p {
        font-size: 0.78rem;
    }
    
    .developer-credit {
        font-size: 0.75rem;
    }
}

.bg-solar {
    background: linear-gradient(135deg, var(--solar-primary) 0%, var(--solar-secondary) 100%);
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: #fff;
    transform: translateY(-2px);
}

/* Hero Static Section */
.hero-static-section {
    position: relative;
    overflow: hidden;
    min-height: 550px;
    display: flex;
    align-items: center;
    padding: 80px 0 60px;
}

.hero-bg-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
}

.hero-decor {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.hero-decor-1 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, transparent 70%);
    top: -80px; right: -60px;
}

.hero-decor-2 {
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
    bottom: -50px; left: -40px;
}

.hero-decor-3 {
    width: 150px; height: 150px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
    top: 40%; left: 45%;
}

.hero-content {
    color: #1e293b;
    animation: slideInRight 0.8s ease-out;
    padding-left: 20px;
    text-align: left;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--solar-primary), var(--solar-secondary));
    backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 22px;
    border: none;
    color: white;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.35);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-badge i {
    color: white;
    font-size: 0.85rem;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 22px;
    color: #0f172a;
    letter-spacing: -0.5px;
    text-shadow: 3px 3px 12px rgba(255, 255, 255, 1),
                 -1px -1px 8px rgba(255, 255, 255, 0.9),
                 0 0 20px rgba(255, 255, 255, 0.8);
}

.hero-title span {
    background: linear-gradient(135deg, var(--solar-primary), #e67e22, var(--solar-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    position: relative;
}

.hero-subtitle {
    font-size: 1.12rem;
    line-height: 1.8;
    margin-bottom: 22px;
    color: #334155;
    font-weight: 500;
    letter-spacing: 0.2px;
    text-shadow: 2px 2px 8px rgba(255, 255, 255, 1),
                 -1px -1px 4px rgba(255, 255, 255, 0.8);
}

.hero-tagline {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.95), rgba(14, 165, 233, 0.95));
    backdrop-filter: blur(10px);
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 28px;
    border-left: 4px solid #10b981;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: white;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    letter-spacing: 0.3px;
}

.hero-tagline i {
    color: white;
    font-size: 1.1rem;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--solar-primary), var(--solar-secondary));
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
    transition: all 0.3s ease;
    border: none;
}

.btn-hero-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.6);
    color: white;
    filter: brightness(1.1);
}

.btn-hero-secondary {
    background: #1e293b;
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 3px solid #1e293b;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: transparent;
    color: #1e293b;
    border-color: #1e293b;
    transform: translateY(-5px);
}

/* Hero Stats Row */
.hero-stats-row {
    display: inline-flex;
    align-items: center;
    gap: 25px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    padding: 18px 28px;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.15);
}

.hero-stat-item {
    text-align: center;
}

.hero-stat-item strong {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--solar-primary), var(--solar-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat-item span {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 600;
}

.hero-stat-divider {
    width: 1px;
    height: 35px;
    background: #e2e8f0;
}

/* Hero Image */
.hero-image-wrapper {
    position: relative;
    animation: slideInLeft 0.8s ease-out;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 10px;
}

.hero-img-glow {
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, rgba(14, 165, 233, 0.08) 50%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-image {
    width: 100%;
    max-width: 780px;
    height: auto;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.1));
}

.hero-image.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Hero Responsive */
@media (max-width: 1199px) {
    .hero-image {
        max-width: 600px;
    }
    
    .hero-img-glow {
        width: 480px; height: 480px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 991px) {
    .hero-static-section {
        min-height: auto;
        padding: 60px 0 50px;
    }
    
    .hero-title {
        font-size: 2.4rem;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
    }
    
    .hero-tagline {
        font-size: 0.92rem;
        padding: 12px 20px;
    }
    
    .hero-image-wrapper {
        margin-top: 30px;
        justify-content: center;
    }
    
    .hero-image {
        max-width: 420px;
    }
    
    .hero-img-glow {
        width: 350px; height: 350px;
    }
    
    .hero-content {
        padding-left: 0;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats-row {
        gap: 18px;
        padding: 15px 22px;
        margin: 0 auto;
    }
    
    .hero-stat-item strong {
        font-size: 1.2rem;
    }
}

@media (max-width: 767px) {
    .hero-static-section {
        padding: 45px 0 35px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-badge {
        font-size: 0.82rem;
        padding: 8px 16px;
    }
    
    .hero-tagline {
        font-size: 0.88rem;
        padding: 10px 15px;
        display: block;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 12px 25px;
        font-size: 0.98rem;
    }
    
    .hero-image-wrapper {
        margin-top: 25px;
        justify-content: center;
    }
    
    .hero-image {
        max-width: 320px;
    }
    
    .hero-img-glow {
        width: 280px; height: 280px;
    }
    
    .hero-stats-row {
        justify-content: center;
        gap: 15px;
        padding: 14px 18px;
    }
    
    .hero-stat-item strong {
        font-size: 1.1rem;
    }
    
    .hero-stat-item span {
        font-size: 0.72rem;
    }
    
    .hero-decor-1 {
        width: 200px; height: 200px;
    }
    
    .hero-decor-2 {
        width: 150px; height: 150px;
    }
    
    .hero-decor-3 {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-static-section {
        padding: 35px 0 25px;
    }
    
    .hero-title {
        font-size: 1.65rem;
    }
    
    .hero-subtitle {
        font-size: 0.92rem;
        line-height: 1.6;
    }
    
    .hero-badge {
        font-size: 0.78rem;
        padding: 6px 14px;
    }
    
    .hero-tagline {
        font-size: 0.82rem;
        padding: 10px 14px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.92rem;
    }
    
    .hero-image {
        max-width: 260px;
    }
    
    .hero-img-glow {
        width: 220px; height: 220px;
    }
    
    .hero-stats-row {
        gap: 12px;
        padding: 12px 14px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-stat-item strong {
        font-size: 1rem;
    }
    
    .hero-stat-divider {
        height: 25px;
    }
}

@media (max-width: 400px) {
    .hero-title {
        font-size: 1.4rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
    }
    
    .hero-image {
        max-width: 210px;
    }
    
    .hero-tagline {
        font-size: 0.78rem;
        padding: 8px 12px;
    }
    
    .hero-stats-row {
        gap: 8px;
        padding: 10px 10px;
    }
    
    .hero-stat-item strong {
        font-size: 0.9rem;
    }
    
    .hero-stat-item span {
        font-size: 0.65rem;
    }
}

.hero-section {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.9) 0%, rgba(14, 165, 233, 0.9) 100%),
                url('../images/solar-bg.jpg') center/cover;
    color: white;
    padding: 120px 0;
    text-align: center;
}

/* Why Choose New Era Solar Section */
.why-choose-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.why-choose-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Section Header */
.wc-header {
    margin-bottom: 50px;
}

.wc-subtitle-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(14, 165, 233, 0.1));
    color: var(--solar-primary);
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.wc-subtitle-badge i {
    margin-right: 6px;
    color: #fbbf24;
}

.wc-main-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 15px;
}

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

.wc-title-line {
    display: flex;
    justify-content: center;
}

.wc-title-line span {
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--solar-primary), var(--solar-secondary));
    border-radius: 2px;
    position: relative;
}

.wc-title-line span::before {
    content: '';
    position: absolute;
    right: -15px;
    top: 0;
    width: 8px;
    height: 4px;
    background: var(--solar-primary);
    border-radius: 2px;
}

/* Content Box */
.wc-content-box {
    position: relative;
    z-index: 1;
}

.wc-desc {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #475569;
    margin-bottom: 18px;
    text-align: justify;
}

.wc-desc strong {
    color: var(--solar-primary);
    font-weight: 700;
}

/* Feature Items */
.wc-features {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.wc-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px 20px;
    background: white;
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    border-left: 4px solid var(--solar-primary);
    transition: all 0.3s ease;
}

.wc-feature-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.15);
    border-left-color: var(--solar-secondary);
}

.wc-feature-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: linear-gradient(135deg, var(--solar-primary), var(--solar-secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.wc-feature-item h6 {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 3px;
}

.wc-feature-item p {
    font-size: 0.88rem;
    color: #64748b;
    margin: 0;
}

/* Right Side - Stats */
.wc-right-side {
    position: relative;
    z-index: 1;
}

.wc-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.wc-stat-card {
    background: white;
    padding: 30px 20px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.wc-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--solar-primary), var(--solar-secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.wc-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.2);
}

.wc-stat-card:hover::before {
    opacity: 1;
}

.wc-stat-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(14, 165, 233, 0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.4rem;
    color: var(--solar-primary);
    transition: all 0.3s ease;
}

.wc-stat-card:hover .wc-stat-icon {
    background: linear-gradient(135deg, var(--solar-primary), var(--solar-secondary));
    color: white;
    transform: scale(1.1);
}

.wc-stat-num {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--solar-primary), var(--solar-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.wc-stat-text {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Brand Partners */
.wc-brands {
    margin-top: 25px;
    background: linear-gradient(135deg, #1e293b, #334155);
    border-radius: 18px;
    padding: 25px;
    text-align: center;
}

.wc-brands-title {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.wc-brand-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.wc-brand-item {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid rgba(245, 158, 11, 0.3);
    transition: all 0.3s ease;
}

.wc-brand-item i {
    color: var(--solar-primary);
    margin-right: 8px;
}

.wc-brand-item:hover {
    background: var(--solar-primary);
    border-color: var(--solar-primary);
    transform: translateY(-3px);
}

/* Why Choose Responsive */
@media (max-width: 991px) {
    .why-choose-section {
        padding: 60px 0;
    }
    
    .wc-main-title {
        font-size: 2.2rem;
    }
    
    .wc-desc {
        font-size: 1rem;
    }
    
    .wc-stat-card {
        padding: 25px 15px;
    }
    
    .wc-stat-num {
        font-size: 1.8rem;
    }
}

@media (max-width: 767px) {
    .why-choose-section {
        padding: 50px 0;
    }
    
    .wc-header {
        margin-bottom: 35px;
    }
    
    .wc-main-title {
        font-size: 1.8rem;
    }
    
    .wc-desc {
        font-size: 0.95rem;
        text-align: left;
    }
    
    .wc-feature-item {
        padding: 15px;
    }
    
    .wc-feature-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1rem;
    }
    
    .wc-stats-grid {
        gap: 15px;
    }
    
    .wc-stat-card {
        padding: 20px 12px;
    }
    
    .wc-stat-num {
        font-size: 1.5rem;
    }
    
    .wc-stat-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .wc-brands {
        padding: 20px;
    }
    
    .wc-brand-item {
        padding: 8px 18px;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .wc-main-title {
        font-size: 1.5rem;
    }
    
    .wc-subtitle-badge {
        font-size: 0.8rem;
        padding: 6px 16px;
    }
    
    .wc-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .wc-stat-card {
        padding: 18px 10px;
    }
    
    .wc-stat-num {
        font-size: 1.3rem;
    }
    
    .wc-stat-text {
        font-size: 0.75rem;
    }
    
    .wc-brand-list {
        gap: 10px;
    }
}

/* NSP Features Section */
.nsp-features-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.nsp-features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(14, 165, 233, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.nsp-header {
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.nsp-badge {
    display: inline-block;
    background: rgba(245, 158, 11, 0.15);
    color: var(--solar-primary);
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.nsp-badge i {
    margin-right: 6px;
}

.nsp-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
}

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

.nsp-title-line {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.nsp-title-line span {
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--solar-primary), var(--solar-secondary));
    border-radius: 2px;
    position: relative;
}

.nsp-title-line span::before {
    content: '';
    position: absolute;
    right: -15px;
    top: 0;
    width: 8px;
    height: 4px;
    background: var(--solar-primary);
    border-radius: 2px;
}

.nsp-subtitle-text {
    color: #94a3b8;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* NSP Cards */
.nsp-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 25px 30px;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
}

.nsp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(245, 158, 11, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 20px;
}

.nsp-card:hover {
    transform: translateY(-10px);
    border-color: rgba(245, 158, 11, 0.4);
    box-shadow: 0 20px 50px rgba(245, 158, 11, 0.15);
}

.nsp-card:hover::before {
    opacity: 1;
}

.nsp-card-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, var(--solar-primary), var(--solar-secondary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: white;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.nsp-card:hover .nsp-card-icon {
    transform: rotateY(180deg) scale(1.1);
    border-radius: 50%;
}

.nsp-card-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
    z-index: 0;
    transition: all 0.3s ease;
}

.nsp-card:hover .nsp-card-number {
    color: rgba(245, 158, 11, 0.15);
}

.nsp-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.nsp-card-text {
    font-size: 0.92rem;
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.nsp-card-arrow {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: var(--solar-primary);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.nsp-card:hover .nsp-card-arrow {
    background: linear-gradient(135deg, var(--solar-primary), var(--solar-secondary));
    color: white;
    border-color: transparent;
    transform: translateX(5px);
}

/* NSP Features Responsive */
@media (max-width: 991px) {
    .nsp-features-section {
        padding: 60px 0;
    }
    
    .nsp-title {
        font-size: 2.2rem;
    }
    
    .nsp-card {
        padding: 35px 20px 25px;
    }
    
    .nsp-card-icon {
        width: 65px;
        height: 65px;
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .nsp-features-section {
        padding: 50px 0;
    }
    
    .nsp-header {
        margin-bottom: 35px;
    }
    
    .nsp-title {
        font-size: 1.8rem;
    }
    
    .nsp-subtitle-text {
        font-size: 0.95rem;
    }
    
    .nsp-card {
        padding: 30px 18px 22px;
    }
    
    .nsp-card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }
    
    .nsp-card-title {
        font-size: 1.1rem;
    }
    
    .nsp-card-text {
        font-size: 0.88rem;
    }
}

@media (max-width: 576px) {
    .nsp-title {
        font-size: 1.5rem;
    }
    
    .nsp-badge {
        font-size: 0.8rem;
        padding: 6px 16px;
    }
    
    .nsp-subtitle-text {
        font-size: 0.88rem;
    }
    
    .nsp-card-number {
        font-size: 2.5rem;
    }
}

/* ========== OUR SERVICES SECTION ========== */
.services-section {
    padding: 80px 0;
    background: #f8fafc;
}

.srv-header {
    margin-bottom: 50px;
}

.srv-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(14, 165, 233, 0.1));
    color: var(--solar-primary);
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.srv-badge i { margin-right: 6px; }

.srv-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 15px;
}

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

.srv-title-line { display: flex; justify-content: center; margin-bottom: 15px; }
.srv-title-line span {
    display: block; width: 80px; height: 4px;
    background: linear-gradient(90deg, var(--solar-primary), var(--solar-secondary));
    border-radius: 2px; position: relative;
}
.srv-title-line span::before {
    content: ''; position: absolute; right: -15px; top: 0;
    width: 8px; height: 4px; background: var(--solar-primary); border-radius: 2px;
}

.srv-subtitle {
    color: #64748b;
    font-size: 1.1rem;
    max-width: 550px;
    margin: 0 auto;
}

.srv-card {
    background: white;
    border-radius: 18px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #f1f5f9;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
}

.srv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(245, 158, 11, 0.2);
}

.srv-card-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.4s ease;
}

.srv-card:hover .srv-card-icon {
    border-radius: 50%;
    transform: rotate(10deg) scale(1.1);
}

.srv-card-content { flex: 1; }

.srv-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.srv-card-text {
    font-size: 0.92rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 12px;
}

.srv-card-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--solar-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.srv-card-link:hover {
    color: var(--solar-secondary);
    gap: 10px;
}

.srv-card-num {
    position: absolute;
    bottom: 10px;
    right: 15px;
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    line-height: 1;
}

.srv-card:hover .srv-card-num {
    color: rgba(245, 158, 11, 0.08);
}

.srv-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--solar-primary), var(--solar-secondary));
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.srv-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.5);
    color: white;
}

/* ========== FEATURED PRODUCTS SECTION ========== */
.products-section {
    padding: 80px 0;
    background: white;
}

.prd-header { margin-bottom: 50px; }

.prd-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(16, 185, 129, 0.1));
    color: var(--solar-secondary);
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    border: 1px solid rgba(14, 165, 233, 0.2);
}

.prd-badge i { margin-right: 6px; }

.prd-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 15px;
}

.prd-highlight {
    background: linear-gradient(135deg, var(--solar-secondary), #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.prd-title-line { display: flex; justify-content: center; margin-bottom: 15px; }
.prd-title-line span {
    display: block; width: 80px; height: 4px;
    background: linear-gradient(90deg, var(--solar-secondary), #10b981);
    border-radius: 2px; position: relative;
}
.prd-title-line span::before {
    content: ''; position: absolute; right: -15px; top: 0;
    width: 8px; height: 4px; background: var(--solar-secondary); border-radius: 2px;
}

.prd-subtitle {
    color: #64748b;
    font-size: 1.1rem;
    max-width: 550px;
    margin: 0 auto;
}

.prd-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #f1f5f9;
    transition: all 0.4s ease;
    height: 100%;
}

.prd-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(14, 165, 233, 0.15);
    border-color: rgba(14, 165, 233, 0.2);
}

.prd-card-img {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.prd-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.prd-card:hover .prd-card-img img {
    transform: scale(1.1);
}

.prd-card-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
}

.prd-category {
    background: linear-gradient(135deg, var(--solar-primary), var(--solar-secondary));
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.prd-card-body {
    padding: 22px;
}

.prd-card-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.prd-card-desc {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 15px;
}

.prd-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid #f1f5f9;
}

.prd-price {
    font-size: 1.3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--solar-primary), var(--solar-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.prd-detail-btn {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--solar-primary), var(--solar-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.prd-detail-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.4);
    color: white;
}

.prd-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--solar-secondary), #10b981);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.3);
}

.prd-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(14, 165, 233, 0.5);
    color: white;
}

/* ========== CTA SOLAR JOURNEY SECTION ========== */
.cta-section {
    padding: 80px 0;
    background: #f8fafc;
}

.cta-box {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 25px;
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
}

.cta-bg-shapes {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
}

.cta-circle {
    position: absolute;
    border-radius: 50%;
}

.cta-circle-1 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
    top: -100px; right: -50px;
}

.cta-circle-2 {
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, transparent 70%);
    bottom: -80px; left: -30px;
}

.cta-circle-3 {
    width: 150px; height: 150px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}

.cta-badge {
    display: inline-block;
    background: rgba(245, 158, 11, 0.15);
    color: var(--solar-primary);
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    border: 1px solid rgba(245, 158, 11, 0.3);
    position: relative;
    z-index: 1;
}

.cta-badge i { margin-right: 6px; }

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.cta-title span {
    background: linear-gradient(135deg, var(--solar-primary), var(--solar-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-text {
    font-size: 1.1rem;
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--solar-primary), var(--solar-secondary));
    color: white;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.cta-btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.5);
    color: white;
}

.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: transparent;
    color: white;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.cta-btn-secondary:hover {
    background: white;
    color: #1e293b;
    border-color: white;
    transform: translateY(-5px);
}

/* ========== RESPONSIVE - Services, Products, CTA ========== */
@media (max-width: 991px) {
    .services-section, .products-section, .cta-section {
        padding: 60px 0;
    }
    
    .srv-title, .prd-title {
        font-size: 2.2rem;
    }
    
    .srv-card {
        padding: 25px;
    }
    
    .cta-box {
        padding: 45px 35px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .services-section, .products-section, .cta-section {
        padding: 50px 0;
    }
    
    .srv-header, .prd-header {
        margin-bottom: 35px;
    }
    
    .srv-title, .prd-title {
        font-size: 1.8rem;
    }
    
    .srv-subtitle, .prd-subtitle {
        font-size: 0.95rem;
    }
    
    .srv-card {
        padding: 20px;
    }
    
    .srv-card-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 1.3rem;
    }
    
    .srv-card-title {
        font-size: 1.1rem;
    }
    
    .prd-card-img {
        height: 170px;
    }
    
    .cta-box {
        padding: 35px 25px;
        text-align: center;
    }
    
    .cta-title {
        font-size: 1.6rem;
    }
    
    .cta-text {
        font-size: 0.95rem;
    }
    
    .cta-buttons {
        margin-top: 25px;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .srv-title, .prd-title {
        font-size: 1.5rem;
    }
    
    .srv-badge, .prd-badge {
        font-size: 0.8rem;
        padding: 6px 16px;
    }
    
    .srv-card {
        flex-direction: column;
        text-align: center;
    }
    
    .srv-card-link {
        justify-content: center;
    }
    
    .prd-card-img {
        height: 150px;
    }
    
    .prd-card-body {
        padding: 18px;
    }
    
    .prd-price {
        font-size: 1.1rem;
    }
    
    .cta-box {
        padding: 30px 20px;
        border-radius: 18px;
    }
    
    .cta-title {
        font-size: 1.4rem;
    }
    
    .cta-btn-primary, .cta-btn-secondary {
        padding: 14px 25px;
        font-size: 0.95rem;
        width: 100%;
    }
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-section p {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.btn-solar {
    background-color: var(--solar-primary);
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-solar:hover {
    background-color: #d97706;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.feature-card i {
    font-size: 3rem;
    color: var(--solar-primary);
    margin-bottom: 20px;
}

.feature-card h3 {
    color: var(--solar-dark);
    margin-bottom: 15px;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card .card-body {
    padding: 20px;
}

.price-tag {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--solar-primary);
}

.dashboard-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    margin-bottom: 20px;
    border: 1px solid rgba(0,0,0,0.04);
}

.stat-card {
    background: linear-gradient(135deg, var(--solar-primary) 0%, var(--solar-secondary) 100%);
    color: white;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
}

.stat-card h3 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 1rem;
    opacity: 0.9;
}

.table-responsive {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.badge-pending {
    background-color: var(--solar-primary);
}

.badge-paid {
    background-color: var(--solar-success);
}

.badge-rejected {
    background-color: var(--solar-danger);
}

.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--solar-primary);
}

/* ========== PREMIUM USER SIDEBAR ========== */
.user-sidebar {
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
    position: sticky;
    top: 90px;
}

.usb-user-header {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    padding: 28px 20px;
    text-align: center;
    position: relative;
}

.usb-user-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--solar-primary), var(--solar-secondary));
}

.usb-avatar-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 12px;
}

.usb-avatar {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(245, 158, 11, 0.5);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.usb-status-dot {
    position: absolute;
    bottom: 3px;
    right: 3px;
    width: 14px;
    height: 14px;
    background: #10b981;
    border-radius: 50%;
    border: 3px solid #1e293b;
}

.usb-user-name {
    color: white;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 5px;
}

.usb-user-id {
    color: #94a3b8;
    font-size: 0.78rem;
    letter-spacing: 0.5px;
}

.usb-nav {
    padding: 12px 10px;
}

.usb-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    margin-bottom: 3px;
    border-radius: 12px;
    color: #475569;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.usb-nav-link:hover {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(14, 165, 233, 0.05));
    color: #1e293b;
    transform: translateX(4px);
}

.usb-nav-link.active {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.12), rgba(14, 165, 233, 0.08));
    color: #f59e0b;
    font-weight: 600;
}

.usb-nav-link.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 3px;
    background: linear-gradient(180deg, var(--solar-primary), var(--solar-secondary));
    border-radius: 0 3px 3px 0;
}

.usb-nav-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    background: #f1f5f9;
    color: #64748b;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.usb-nav-link:hover .usb-nav-icon {
    background: linear-gradient(135deg, var(--solar-primary), var(--solar-secondary));
    color: white;
}

.usb-nav-link.active .usb-nav-icon {
    background: linear-gradient(135deg, var(--solar-primary), var(--solar-secondary));
    color: white;
    box-shadow: 0 3px 10px rgba(245, 158, 11, 0.3);
}

.usb-logout-wrap {
    padding: 10px 10px 14px;
    border-top: 1px solid #f1f5f9;
}

.usb-logout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: 12px;
    background: rgba(239, 68, 68, 0.06);
    color: #ef4444;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.usb-logout-btn:hover {
    background: #ef4444;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

/* ========== PREMIUM USER DASHBOARD ========== */
.ud-wrapper {
    padding: 25px 0 60px;
    background: #f8fafc;
    min-height: 80vh;
}

.ud-welcome-banner {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border-radius: 20px;
    padding: 30px 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.ud-welcome-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.1), transparent 70%);
    border-radius: 50%;
}

.ud-welcome-content {
    position: relative;
    z-index: 1;
}

.ud-welcome-badge {
    display: inline-block;
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.ud-welcome-content h2 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.ud-welcome-content h2 span {
    background: linear-gradient(135deg, var(--solar-primary), var(--solar-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ud-welcome-content p {
    color: #94a3b8;
    font-size: 0.88rem;
    margin: 0;
}

.ud-welcome-icon {
    font-size: 3.5rem;
    color: rgba(245, 158, 11, 0.15);
    position: relative;
    z-index: 1;
}

/* Dashboard Stat Cards */
.ud-stat-card {
    background: white;
    border-radius: 16px;
    padding: 22px 18px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ud-stat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
}

.ud-stat-1::after { background: linear-gradient(90deg, #f59e0b, #f97316); }
.ud-stat-2::after { background: linear-gradient(90deg, #0ea5e9, #06b6d4); }
.ud-stat-3::after { background: linear-gradient(90deg, #10b981, #34d399); }
.ud-stat-4::after { background: linear-gradient(90deg, #8b5cf6, #a78bfa); }

.ud-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.ud-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.ud-stat-1 .ud-stat-icon { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }
.ud-stat-2 .ud-stat-icon { background: rgba(14, 165, 233, 0.1); color: #0ea5e9; }
.ud-stat-3 .ud-stat-icon { background: rgba(16, 185, 129, 0.1); color: #10b981; }
.ud-stat-4 .ud-stat-icon { background: rgba(139, 92, 246, 0.1); color: #8b5cf6; }

.ud-stat-info h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 2px;
}

.ud-stat-info p {
    font-size: 0.78rem;
    color: #94a3b8;
    margin: 0;
    font-weight: 500;
}

/* Dashboard Cards */
.ud-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
    margin-bottom: 20px;
}

.ud-card-header {
    padding: 18px 24px;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ud-card-header h5 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ud-card-header h5 i {
    color: var(--solar-primary);
}

.ud-card-badge {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.ud-card-link {
    color: var(--solar-primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.ud-card-link:hover {
    color: var(--solar-secondary);
    gap: 8px;
}

.ud-card-body {
    padding: 24px;
}

/* Dark Card Theme (matches Welcome Banner) */
.ud-card-dark {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.ud-card-dark .ud-card-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ud-card-dark .ud-card-header h5 {
    color: #f1f5f9;
}

.ud-card-dark .ud-card-header h5 i {
    color: #f59e0b;
}

.ud-card-dark .ud-card-body h5 {
    color: #f1f5f9 !important;
}

.ud-card-dark .ud-pinfo-item {
    color: #cbd5e1;
    border-bottom-color: rgba(255, 255, 255, 0.06);
}

.ud-card-dark .ud-pinfo-item i {
    color: #f59e0b;
}

.ud-card-dark .ud-profile-avatar {
    border-color: rgba(255, 255, 255, 0.15);
}

.ud-card-dark .ud-kyc-badge {
    border-color: #1e293b;
}

.ud-card-dark .ud-user-id-tag {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(14, 165, 233, 0.15));
    color: #f59e0b;
}

/* Profile Section in Dashboard */
.ud-profile-avatar-wrap {
    position: relative;
    display: inline-block;
}

.ud-profile-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #f1f5f9;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.ud-kyc-badge {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: white;
    border: 3px solid white;
}

.kyc-approved { background: #10b981; }
.kyc-rejected { background: #ef4444; }
.kyc-pending { background: #f59e0b; }

.ud-user-id-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(14, 165, 233, 0.08));
    color: var(--solar-primary);
    padding: 3px 14px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    margin-top: 5px;
}

.ud-profile-info-list {
    margin-top: 20px;
    text-align: left;
}

.ud-pinfo-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px solid #f8fafc;
    font-size: 0.85rem;
    color: #475569;
}

.ud-pinfo-item:last-child {
    border-bottom: none;
}

.ud-pinfo-item i {
    color: var(--solar-primary);
    width: 18px;
    text-align: center;
    font-size: 0.8rem;
}

.ud-btn-edit-profile {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 18px;
    padding: 10px 28px;
    background: linear-gradient(135deg, var(--solar-primary), var(--solar-secondary));
    color: white !important;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(245, 158, 11, 0.25);
}

.ud-btn-edit-profile:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
    color: white !important;
}

/* Team List */
.ud-team-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ud-team-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.ud-team-item:hover {
    background: #f1f5f9;
    transform: translateX(3px);
}

.ud-team-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--solar-primary), var(--solar-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.ud-team-info {
    flex: 1;
}

.ud-team-info strong {
    display: block;
    font-size: 0.88rem;
    color: #1e293b;
}

.ud-team-info small {
    color: #94a3b8;
    font-size: 0.75rem;
}

.ud-team-date {
    font-size: 0.75rem;
    color: #94a3b8;
    white-space: nowrap;
}

.ud-btn-view-all {
    display: block;
    text-align: center;
    margin-top: 15px;
    padding: 10px;
    background: #f8fafc;
    border-radius: 10px;
    color: var(--solar-primary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.ud-btn-view-all:hover {
    background: rgba(245, 158, 11, 0.08);
    color: var(--solar-primary);
}

/* Empty State */
.ud-empty-state {
    text-align: center;
    padding: 30px 20px;
}

.ud-empty-state > i {
    font-size: 2.5rem;
    color: #cbd5e1;
    margin-bottom: 12px;
}

.ud-empty-state h6 {
    font-weight: 700;
    color: #475569;
    margin-bottom: 5px;
}

.ud-empty-state p {
    color: #94a3b8;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.ud-referral-box {
    display: inline-flex;
    flex-direction: column;
    gap: 3px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(14, 165, 233, 0.05));
    padding: 12px 25px;
    border-radius: 12px;
    border: 1px dashed rgba(245, 158, 11, 0.3);
}

.ud-referral-box span {
    font-size: 0.72rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ud-referral-box strong {
    font-size: 1.1rem;
    color: var(--solar-primary);
    letter-spacing: 1px;
}

/* Old sidebar kept for admin */
.sidebar {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.sidebar .nav-link {
    color: var(--solar-dark);
    padding: 12px 15px;
    margin-bottom: 5px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.sidebar .nav-link:hover,
.sidebar .nav-link.active {
    background-color: var(--solar-primary);
    color: white;
}

.sidebar .nav-link i {
    margin-right: 10px;
    width: 20px;
}

/* User Sidebar & Dashboard Responsive */
@media (max-width: 991px) {
    .user-sidebar {
        position: static;
        margin-bottom: 25px;
    }
    
    .usb-user-header {
        padding: 20px 15px;
    }
    
    .usb-avatar {
        width: 60px;
        height: 60px;
    }
    
    .usb-nav {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
        padding: 10px;
    }
    
    .usb-nav-link {
        flex: 1 1 calc(50% - 5px);
        padding: 10px 12px;
        font-size: 0.85rem;
        gap: 8px;
    }
    
    .usb-nav-link.active::before {
        display: none;
    }
    
    .usb-nav-icon {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    
    .usb-logout-wrap {
        padding: 8px 10px 12px;
    }
    
    .ud-wrapper {
        padding: 20px 0 40px;
    }
    
    .ud-welcome-banner {
        padding: 22px 25px;
        border-radius: 16px;
    }
    
    .ud-welcome-content h2 {
        font-size: 1.3rem;
    }
    
    .ud-welcome-icon {
        font-size: 2.5rem;
    }
    
    .ud-stat-card {
        padding: 18px 14px;
    }
    
    .ud-stat-icon {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }
    
    .ud-stat-info h3 {
        font-size: 1rem;
    }
    
    .ud-card-body {
        padding: 18px;
    }
    
    .ud-profile-avatar {
        width: 85px;
        height: 85px;
    }
}

@media (max-width: 767px) {
    .usb-nav-link {
        flex: 1 1 calc(50% - 5px);
        padding: 9px 10px;
        font-size: 0.82rem;
    }
    
    .usb-nav-icon {
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
        border-radius: 8px;
    }
    
    .ud-welcome-banner {
        padding: 20px;
        border-radius: 14px;
    }
    
    .ud-welcome-content h2 {
        font-size: 1.15rem;
    }
    
    .ud-welcome-content p {
        font-size: 0.82rem;
    }
    
    .ud-welcome-icon {
        display: none;
    }
    
    .ud-stat-card {
        padding: 15px 12px;
        gap: 10px;
    }
    
    .ud-stat-icon {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
        border-radius: 10px;
    }
    
    .ud-stat-info h3 {
        font-size: 0.9rem;
    }
    
    .ud-stat-info p {
        font-size: 0.7rem;
    }
    
    .ud-card {
        border-radius: 14px;
    }
    
    .ud-card-header {
        padding: 14px 18px;
    }
    
    .ud-card-header h5 {
        font-size: 0.95rem;
    }
    
    .ud-card-body {
        padding: 16px;
    }
    
    .ud-profile-avatar {
        width: 75px;
        height: 75px;
    }
    
    .ud-pinfo-item {
        font-size: 0.8rem;
    }
    
    .ud-team-item {
        padding: 10px 12px;
    }
    
    .ud-team-avatar {
        width: 35px;
        height: 35px;
        font-size: 0.75rem;
    }
    
    .ud-team-info strong {
        font-size: 0.82rem;
    }
    
    .ud-team-date {
        font-size: 0.7rem;
    }
}

@media (max-width: 576px) {
    .usb-user-header {
        padding: 18px 12px;
    }
    
    .usb-avatar {
        width: 55px;
        height: 55px;
    }
    
    .usb-user-name {
        font-size: 0.95rem;
    }
    
    .usb-nav-link {
        flex: 1 1 100%;
        padding: 10px 14px;
    }
    
    .ud-wrapper {
        padding: 15px 0 30px;
    }
    
    .ud-welcome-banner {
        padding: 18px 16px;
        margin-bottom: 15px;
    }
    
    .ud-welcome-content h2 {
        font-size: 1.05rem;
    }
    
    .ud-stat-card {
        padding: 14px 10px;
        gap: 8px;
        border-radius: 12px;
    }
    
    .ud-stat-icon {
        width: 34px;
        height: 34px;
        font-size: 0.85rem;
        border-radius: 8px;
    }
    
    .ud-stat-info h3 {
        font-size: 0.82rem;
    }
    
    .ud-stat-info p {
        font-size: 0.65rem;
    }
    
    .ud-card-body {
        padding: 14px;
    }
    
    .ud-profile-avatar {
        width: 65px;
        height: 65px;
        border-width: 3px;
    }
    
    .ud-kyc-badge {
        width: 22px;
        height: 22px;
        font-size: 0.6rem;
    }
    
    .ud-btn-edit-profile {
        padding: 8px 22px;
        font-size: 0.8rem;
    }
    
    .ud-empty-state > i {
        font-size: 2rem;
    }
    
    .ud-empty-state h6 {
        font-size: 0.9rem;
    }
    
    .ud-empty-state p {
        font-size: 0.8rem;
    }
    
    .ud-referral-box {
        padding: 10px 20px;
    }
    
    .ud-referral-box strong {
        font-size: 0.95rem;
    }
}

.form-control:focus,
.form-select:focus {
    border-color: var(--solar-primary);
    box-shadow: 0 0 0 0.2rem rgba(245, 158, 11, 0.25);
}

.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 40px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--solar-primary), var(--solar-secondary));
}

.contact-info {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-info i {
    color: var(--solar-primary);
    font-size: 2rem;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section p {
        font-size: 1.1rem;
    }
    
    .profile-img {
        width: 100px;
        height: 100px;
    }
}

/* ========== PAGE BANNER (Shared) ========== */
.page-banner {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 70px 0 60px;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.page-banner::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -60px;
    width: 250px; height: 250px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.page-banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-banner-badge {
    display: inline-block;
    background: rgba(245, 158, 11, 0.15);
    color: var(--solar-primary);
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.page-banner-badge i { margin-right: 6px; }

.page-banner h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
}

.page-banner h1 span {
    background: linear-gradient(135deg, var(--solar-primary), var(--solar-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-banner p {
    color: #94a3b8;
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

.page-banner-line {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.page-banner-line span {
    display: block;
    width: 60px; height: 4px;
    background: linear-gradient(90deg, var(--solar-primary), var(--solar-secondary));
    border-radius: 2px;
}

@media (max-width: 767px) {
    .page-banner { padding: 50px 0 40px; }
    .page-banner h1 { font-size: 2rem; }
    .page-banner p { font-size: 1rem; }
}

@media (max-width: 576px) {
    .page-banner h1 { font-size: 1.6rem; }
    .page-banner-badge { font-size: 0.8rem; padding: 6px 16px; }
}

/* ========== ABOUT PAGE ========== */
.about-mission {
    padding: 80px 0;
    background: white;
}

.about-mission-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 20px;
}

.about-mission-content h2 span {
    background: linear-gradient(135deg, var(--solar-primary), var(--solar-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-mission-content p {
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 15px;
}

.about-mission-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    position: relative;
}

.about-mission-img img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.about-mission-img:hover img {
    transform: scale(1.05);
}

.about-why-card {
    background: white;
    border-radius: 18px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #f1f5f9;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.about-why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--solar-primary), var(--solar-secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.15);
}

.about-why-card:hover::before { opacity: 1; }

.about-why-icon {
    width: 70px; height: 70px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(14, 165, 233, 0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--solar-primary);
    transition: all 0.3s ease;
}

.about-why-card:hover .about-why-icon {
    background: linear-gradient(135deg, var(--solar-primary), var(--solar-secondary));
    color: white;
    transform: scale(1.1);
}

.about-why-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.about-why-card p {
    font-size: 0.92rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* Why Choose New Era Solar Section */
.why-nesp-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
}

.why-nesp-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1e293b;
    margin-top: 15px;
}

.why-nesp-title span {
    background: linear-gradient(135deg, var(--solar-primary), var(--solar-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-nesp-card {
    background: white;
    border-radius: 18px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.why-nesp-intro {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px 35px;
    border-left: 5px solid var(--solar-primary);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.03), rgba(14, 165, 233, 0.03));
}

.why-nesp-intro-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    background: linear-gradient(135deg, var(--solar-primary), var(--solar-secondary));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
}

.why-nesp-intro p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.85;
    color: #334155;
}

.why-nesp-intro p strong {
    color: #0f172a;
}

.why-nesp-highlight-card {
    background: white;
    border-radius: 18px;
    padding: 35px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(245, 158, 11, 0.08);
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-nesp-highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--solar-primary), var(--solar-secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.why-nesp-highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.why-nesp-highlight-card:hover::before {
    opacity: 1;
}

.why-nesp-highlight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(14, 165, 233, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--solar-primary);
    transition: all 0.3s ease;
}

.why-nesp-highlight-card:hover .why-nesp-highlight-icon {
    background: linear-gradient(135deg, var(--solar-primary), var(--solar-secondary));
    color: white;
}

.why-nesp-highlight-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.why-nesp-highlight-card p {
    font-size: 0.98rem;
    line-height: 1.8;
    color: #475569;
    margin: 0;
}

.why-nesp-highlight-card p strong {
    color: #0f172a;
}

.why-nesp-commitment {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border-radius: 18px;
    padding: 35px 40px;
    display: flex;
    align-items: flex-start;
    gap: 22px;
    color: white;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.2);
}

.why-nesp-commitment-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, var(--solar-primary), var(--solar-secondary));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.why-nesp-commitment h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.why-nesp-commitment p {
    font-size: 0.98rem;
    line-height: 1.8;
    color: #cbd5e1;
    margin: 0;
}

.why-nesp-commitment p strong {
    color: var(--solar-primary);
}

/* Why NESP Responsive */
@media (max-width: 991px) {
    .why-nesp-section {
        padding: 60px 0;
    }
    
    .why-nesp-title {
        font-size: 1.9rem;
    }
    
    .why-nesp-intro {
        padding: 25px 28px;
    }
    
    .why-nesp-highlight-card {
        padding: 28px;
    }
    
    .why-nesp-commitment {
        padding: 28px 30px;
    }
}

@media (max-width: 767px) {
    .why-nesp-section {
        padding: 50px 0;
    }
    
    .why-nesp-title {
        font-size: 1.7rem;
    }
    
    .why-nesp-intro {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 25px 22px;
    }
    
    .why-nesp-intro p {
        font-size: 0.95rem;
    }
    
    .why-nesp-highlight-card {
        padding: 25px;
    }
    
    .why-nesp-highlight-card h4 {
        font-size: 1.15rem;
    }
    
    .why-nesp-highlight-card p {
        font-size: 0.92rem;
    }
    
    .why-nesp-commitment {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 25px 22px;
    }
    
    .why-nesp-commitment h4 {
        font-size: 1.15rem;
    }
    
    .why-nesp-commitment p {
        font-size: 0.92rem;
    }
}

@media (max-width: 576px) {
    .why-nesp-section {
        padding: 40px 0;
    }
    
    .why-nesp-title {
        font-size: 1.45rem;
    }
    
    .why-nesp-intro-icon,
    .why-nesp-highlight-icon,
    .why-nesp-commitment-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 1.2rem;
        border-radius: 12px;
    }
    
    .why-nesp-intro {
        padding: 20px 18px;
    }
    
    .why-nesp-intro p {
        font-size: 0.88rem;
    }
    
    .why-nesp-highlight-card {
        padding: 22px 18px;
    }
    
    .why-nesp-highlight-card h4 {
        font-size: 1.05rem;
    }
    
    .why-nesp-highlight-card p {
        font-size: 0.85rem;
    }
    
    .why-nesp-commitment {
        padding: 22px 18px;
    }
    
    .why-nesp-commitment h4 {
        font-size: 1.05rem;
    }
    
    .why-nesp-commitment p {
        font-size: 0.85rem;
    }
}

.about-values-section {
    padding: 80px 0;
    background: white;
}

.about-value-card {
    background: white;
    border-radius: 18px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    border-left: 4px solid var(--solar-primary);
    transition: all 0.3s ease;
    height: 100%;
}

.about-value-card:hover {
    transform: translateX(8px);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.15);
}

.about-value-icon {
    width: 50px; height: 50px; min-width: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
}

.about-value-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.about-value-card p {
    font-size: 0.92rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* ========== NESP SERVICES INTRO SECTION ========== */
.nesp-services-intro {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.nesp-svc-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1e293b;
    margin-top: 15px;
}

.nesp-svc-title span {
    background: linear-gradient(135deg, var(--solar-primary), var(--solar-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nesp-svc-card {
    background: white;
    border-radius: 20px;
    padding: 32px 28px 22px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.nesp-svc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 20px 20px 0 0;
    transition: height 0.3s ease;
}

.nesp-svc-card-1::before { background: linear-gradient(90deg, #f59e0b, #f97316); }
.nesp-svc-card-2::before { background: linear-gradient(90deg, #0ea5e9, #06b6d4); }
.nesp-svc-card-3::before { background: linear-gradient(90deg, #10b981, #34d399); }
.nesp-svc-card-4::before { background: linear-gradient(90deg, #8b5cf6, #a78bfa); }

.nesp-svc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
}

.nesp-svc-card:hover::before {
    height: 5px;
}

.nesp-svc-card-icon {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.nesp-svc-card-1 .nesp-svc-card-icon {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.12), rgba(249, 115, 22, 0.08));
    color: #f59e0b;
}

.nesp-svc-card-2 .nesp-svc-card-icon {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.12), rgba(6, 182, 212, 0.08));
    color: #0ea5e9;
}

.nesp-svc-card-3 .nesp-svc-card-icon {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(52, 211, 153, 0.08));
    color: #10b981;
}

.nesp-svc-card-4 .nesp-svc-card-icon {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.12), rgba(167, 139, 250, 0.08));
    color: #8b5cf6;
}

.nesp-svc-card:hover .nesp-svc-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.nesp-svc-card-1:hover .nesp-svc-card-icon { background: linear-gradient(135deg, #f59e0b, #f97316); color: white; }
.nesp-svc-card-2:hover .nesp-svc-card-icon { background: linear-gradient(135deg, #0ea5e9, #06b6d4); color: white; }
.nesp-svc-card-3:hover .nesp-svc-card-icon { background: linear-gradient(135deg, #10b981, #34d399); color: white; }
.nesp-svc-card-4:hover .nesp-svc-card-icon { background: linear-gradient(135deg, #8b5cf6, #a78bfa); color: white; }

.nesp-svc-card-body {
    flex: 1;
}

.nesp-svc-card-body h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.nesp-svc-card-body p {
    font-size: 0.93rem;
    line-height: 1.8;
    color: #475569;
    margin: 0;
}

.nesp-svc-card-body p strong {
    color: #0f172a;
}

.nesp-svc-card-tag {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px dashed rgba(0, 0, 0, 0.08);
    font-size: 0.82rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 7px;
    letter-spacing: 0.3px;
}

.nesp-svc-card-1 .nesp-svc-card-tag { color: #f59e0b; }
.nesp-svc-card-2 .nesp-svc-card-tag { color: #0ea5e9; }
.nesp-svc-card-3 .nesp-svc-card-tag { color: #10b981; }
.nesp-svc-card-4 .nesp-svc-card-tag { color: #8b5cf6; }

/* CTA Banner */
.nesp-svc-cta {
    margin-top: 50px;
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border-radius: 20px;
    padding: 35px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.2);
}

.nesp-svc-cta-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nesp-svc-cta-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, var(--solar-primary), var(--solar-secondary));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.nesp-svc-cta-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
}

.nesp-svc-cta-content p {
    font-size: 0.92rem;
    color: #94a3b8;
    margin: 0;
    line-height: 1.6;
}

.nesp-svc-cta-btn {
    background: linear-gradient(135deg, var(--solar-primary), var(--solar-secondary));
    color: white !important;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    box-shadow: 0 5px 20px rgba(245, 158, 11, 0.3);
    transition: all 0.3s ease;
}

.nesp-svc-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.45);
    color: white !important;
    filter: brightness(1.05);
}

/* NESP Services Intro Responsive */
@media (max-width: 991px) {
    .nesp-services-intro {
        padding: 60px 0;
    }
    
    .nesp-svc-title {
        font-size: 1.9rem;
    }
    
    .nesp-svc-card {
        padding: 28px 24px 20px;
    }
    
    .nesp-svc-cta {
        flex-direction: column;
        text-align: center;
        padding: 30px 25px;
    }
    
    .nesp-svc-cta-content {
        flex-direction: column;
    }
    
    .nesp-svc-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .nesp-services-intro {
        padding: 50px 0;
    }
    
    .nesp-svc-title {
        font-size: 1.6rem;
    }
    
    .nesp-svc-card-icon {
        width: 55px;
        height: 55px;
        font-size: 1.35rem;
        border-radius: 14px;
    }
    
    .nesp-svc-card-body h4 {
        font-size: 1.1rem;
    }
    
    .nesp-svc-card-body p {
        font-size: 0.88rem;
    }
    
    .nesp-svc-card-tag {
        font-size: 0.78rem;
    }
    
    .nesp-svc-cta {
        margin-top: 35px;
        padding: 25px 20px;
    }
    
    .nesp-svc-cta-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 1.25rem;
    }
    
    .nesp-svc-cta-content h4 {
        font-size: 1.08rem;
    }
    
    .nesp-svc-cta-content p {
        font-size: 0.85rem;
    }
    
    .nesp-svc-cta-btn {
        padding: 12px 25px;
        font-size: 0.88rem;
    }
}

@media (max-width: 576px) {
    .nesp-services-intro {
        padding: 40px 0;
    }
    
    .nesp-svc-title {
        font-size: 1.4rem;
    }
    
    .nesp-svc-card {
        padding: 22px 18px 18px;
    }
    
    .nesp-svc-card-icon {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
        border-radius: 12px;
        margin-bottom: 15px;
    }
    
    .nesp-svc-card-body h4 {
        font-size: 1.02rem;
    }
    
    .nesp-svc-card-body p {
        font-size: 0.83rem;
        line-height: 1.7;
    }
    
    .nesp-svc-card-tag {
        font-size: 0.75rem;
        margin-top: 14px;
        padding-top: 12px;
    }
    
    .nesp-svc-cta {
        margin-top: 28px;
        border-radius: 14px;
    }
    
    .nesp-svc-cta-btn {
        padding: 11px 22px;
        font-size: 0.85rem;
    }
}

/* ========== SERVICES PAGE ========== */
.srvp-card {
    background: white;
    border-radius: 18px;
    padding: 35px 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #f1f5f9;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.srvp-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--solar-primary), var(--solar-secondary));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.srvp-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.srvp-card:hover::before { transform: scaleX(1); }

.srvp-icon {
    width: 65px; height: 65px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: white;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.srvp-card:hover .srvp-icon {
    border-radius: 50%;
    transform: rotate(10deg) scale(1.1);
}

.srvp-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.srvp-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 18px;
}

.srvp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--solar-primary);
    font-weight: 600;
    text-decoration: none;
    padding: 10px 22px;
    border-radius: 50px;
    border: 2px solid var(--solar-primary);
    font-size: 0.92rem;
    transition: all 0.3s ease;
}

.srvp-btn:hover {
    background: var(--solar-primary);
    color: white;
    transform: translateY(-3px);
}

.process-card {
    text-align: center;
    padding: 35px 20px;
    background: white;
    border-radius: 18px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.15);
}

.process-num {
    width: 55px; height: 55px;
    background: linear-gradient(135deg, var(--solar-primary), var(--solar-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    color: white;
    font-size: 1.4rem;
    font-weight: 800;
}

.process-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.process-card p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

/* ========== PRODUCTS PAGE ========== */
.prdp-category-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.prdp-category-title::before {
    content: '';
    width: 5px; height: 30px;
    background: linear-gradient(180deg, var(--solar-primary), var(--solar-secondary));
    border-radius: 3px;
}

.prdp-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #f1f5f9;
    transition: all 0.4s ease;
    height: 100%;
}

.prdp-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(14, 165, 233, 0.15);
}

.prdp-img {
    position: relative;
    overflow: hidden;
    height: 210px;
}

.prdp-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.prdp-card:hover .prdp-img img { transform: scale(1.1); }

.prdp-body {
    padding: 22px;
}

.prdp-body h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.prdp-body .desc {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 15px;
}

.prdp-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid #f1f5f9;
}

.prdp-price {
    font-size: 1.3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--solar-primary), var(--solar-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.prdp-inquire {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--solar-primary), var(--solar-secondary));
    color: white;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.prdp-inquire:hover {
    transform: scale(1.08);
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.4);
    color: white;
}

/* ========== CONTACT PAGE ========== */

/* Info Strip */
.cnt-strip-section {
    padding: 0;
    margin-top: -30px;
    position: relative;
    z-index: 2;
}

.cnt-strip {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border-radius: 20px;
    padding: 28px 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    flex-wrap: wrap;
    gap: 15px;
}

.cnt-strip-item {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 200px;
}

.cnt-strip-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(14, 165, 233, 0.15));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #f59e0b;
    flex-shrink: 0;
}

.cnt-strip-item h6 {
    color: #f1f5f9;
    font-size: 0.85rem;
    font-weight: 700;
    margin: 0 0 2px;
}

.cnt-strip-item p {
    color: #94a3b8;
    font-size: 0.8rem;
    margin: 0;
    line-height: 1.4;
}

.cnt-strip-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
}

/* Contact Section */
.contact-section {
    padding: 60px 0 80px;
    background: #f8fafc;
}

/* Form Box */
.cnt-form-box {
    background: white;
    border-radius: 22px;
    padding: 40px 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid #f1f5f9;
    height: 100%;
}

.cnt-form-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(14, 165, 233, 0.08));
    color: var(--solar-primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.cnt-form-box h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 6px;
}

.cnt-form-box .subtitle {
    color: #64748b;
    margin-bottom: 28px;
    font-size: 0.9rem;
}

.cnt-form-box .form-label {
    font-weight: 600;
    color: #334155;
    font-size: 0.88rem;
    margin-bottom: 6px;
}

.cnt-form-box .form-control {
    border-radius: 12px;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    font-size: 0.92rem;
    transition: all 0.3s ease;
}

.cnt-form-box .form-control:focus {
    border-color: var(--solar-primary);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.1);
}

.cnt-submit-btn {
    background: linear-gradient(135deg, var(--solar-primary), var(--solar-secondary));
    color: white;
    border: none;
    padding: 14px 35px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.cnt-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
    color: white;
}

/* Map Card */
.cnt-map-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid #f1f5f9;
    margin-bottom: 20px;
}

.cnt-map-header {
    padding: 16px 22px;
    border-bottom: 1px solid #f1f5f9;
}

.cnt-map-header h5 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cnt-map-header h5 i {
    color: #f59e0b;
}

.cnt-map-container {
    height: 280px;
    width: 100%;
}

.cnt-map-address {
    padding: 14px 22px;
    background: linear-gradient(135deg, #1e293b, #0f172a);
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cbd5e1;
    font-size: 0.82rem;
}

.cnt-map-address i {
    color: #f59e0b;
    font-size: 1rem;
}

/* Custom Map Marker */
.cnt-map-marker {
    background: none !important;
    border: none !important;
}

.cnt-marker-pin {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f59e0b, #e67e22);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
    border: 3px solid white;
}

.cnt-marker-pin i {
    transform: rotate(45deg);
    color: white;
    font-size: 0.9rem;
}

/* Contact Details Card */
.cnt-details-card {
    background: white;
    border-radius: 20px;
    padding: 28px 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid #f1f5f9;
}

.cnt-details-card > h5 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cnt-details-card > h5 i {
    color: #f59e0b;
}

.cnt-detail-item {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid #f8fafc;
}

.cnt-detail-item:last-of-type {
    border-bottom: none;
}

.cnt-detail-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(14, 165, 233, 0.08));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f59e0b;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.cnt-detail-item strong {
    display: block;
    font-size: 0.85rem;
    color: #1e293b;
    margin-bottom: 3px;
}

.cnt-detail-item p {
    margin: 0;
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.6;
}

.cnt-detail-item a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cnt-detail-item a:hover {
    color: var(--solar-primary);
}

/* Social Links */
.cnt-social-links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid #f1f5f9;
}

.cnt-social-btn {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(14, 165, 233, 0.06));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #475569;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cnt-social-btn:hover {
    background: linear-gradient(135deg, var(--solar-primary), var(--solar-secondary));
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
}

.cnt-social-whatsapp:hover {
    background: #25d366;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* ========== AUTH PAGES (Login/Register) ========== */
.auth-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    position: relative;
    overflow: hidden;
}

.auth-section::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.auth-section::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -100px;
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.auth-card {
    background: white;
    border-radius: 24px;
    padding: 45px 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    border: 1px solid #f1f5f9;
}

.auth-logo {
    text-align: center;
    margin-bottom: 10px;
}

.auth-logo i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--solar-primary), var(--solar-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.auth-card h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1e293b;
    text-align: center;
    margin-bottom: 5px;
}

.auth-card .auth-subtitle {
    text-align: center;
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.auth-card .form-label {
    font-weight: 600;
    color: #334155;
    font-size: 0.92rem;
    margin-bottom: 6px;
}

.auth-card .form-control {
    border-radius: 12px;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.auth-card .form-control:focus {
    border-color: var(--solar-primary);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.1);
}

.auth-card small {
    color: #94a3b8;
    font-size: 0.82rem;
}

.auth-submit-btn {
    background: linear-gradient(135deg, var(--solar-primary), var(--solar-secondary));
    color: white;
    border: none;
    padding: 14px 35px;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 700;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.auth-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
}

.auth-footer {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.auth-footer p {
    color: #64748b;
    font-size: 0.95rem;
    margin: 0;
}

.auth-footer a {
    color: var(--solar-primary);
    font-weight: 600;
    text-decoration: none;
}

.auth-footer a:hover {
    color: var(--solar-secondary);
    text-decoration: underline;
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
    color: #94a3b8;
    font-size: 0.85rem;
}

.auth-divider::before, .auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e2e8f0;
}

.input-icon-wrap {
    position: relative;
}

.input-icon-wrap .form-control {
    padding-left: 45px;
}

.input-icon-wrap i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 0.95rem;
}

@media (max-width: 767px) {
    .auth-card {
        padding: 30px 22px;
    }
    
    .auth-card h2 {
        font-size: 1.5rem;
    }
    
    .cnt-form-box {
        padding: 30px 22px;
    }
    
    .cnt-strip {
        padding: 22px 20px;
        border-radius: 16px;
        gap: 12px;
    }

    .cnt-strip-divider {
        display: none;
    }

    .cnt-strip-item {
        min-width: 45%;
    }

    .cnt-strip-icon {
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
        border-radius: 10px;
    }

    .cnt-strip-item h6 {
        font-size: 0.78rem;
    }

    .cnt-strip-item p {
        font-size: 0.72rem;
    }

    .cnt-map-container {
        height: 230px;
    }

    .cnt-details-card {
        padding: 22px 18px;
    }

    .about-mission {
        padding: 50px 0;
    }
    
    .about-values-section {
        padding: 50px 0;
    }
    
    .contact-section {
        padding: 40px 0 60px;
    }
}

@media (max-width: 576px) {
    .auth-card {
        padding: 25px 18px;
        border-radius: 18px;
    }
    
    .cnt-form-box {
        padding: 25px 18px;
        border-radius: 18px;
    }

    .cnt-strip {
        padding: 18px 16px;
        border-radius: 14px;
    }

    .cnt-strip-item {
        min-width: 100%;
    }

    .cnt-map-container {
        height: 200px;
    }

    .cnt-map-card {
        border-radius: 16px;
    }

    .cnt-details-card {
        border-radius: 16px;
        padding: 20px 16px;
    }

    .cnt-detail-icon {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
        border-radius: 10px;
    }

    .cnt-social-btn {
        width: 38px;
        height: 38px;
        border-radius: 10px;
    }
}

/* ===== SURVEY VERIFICATION SYSTEM ===== */

/* Survey Header */
.sv-header {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border-radius: 20px;
    padding: 30px 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
}

.sv-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.12), transparent 70%);
    border-radius: 50%;
}

.sv-header-content h2 {
    color: white;
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.sv-header-content h2 i {
    color: #f59e0b;
    margin-right: 8px;
}

.sv-header-content p {
    color: #94a3b8;
    margin: 0;
    font-size: 0.9rem;
}

.sv-btn-start {
    background: linear-gradient(135deg, #f59e0b, #0ea5e9);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 18px rgba(245, 158, 11, 0.3);
    position: relative;
    z-index: 1;
}

.sv-btn-start:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(245, 158, 11, 0.45);
    color: white;
}

/* Survey Cards */
.sv-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.sv-card-header {
    padding: 16px 22px;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fafbfc;
}

.sv-card-header h5 {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sv-card-header h5 i {
    color: #f59e0b;
}

.sv-card-body {
    padding: 20px 22px;
}

/* Camera Box */
.sv-camera-box {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    background: #0f172a;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sv-camera-box video,
.sv-camera-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sv-camera-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #64748b;
    gap: 10px;
    background: rgba(15, 23, 42, 0.8);
}

.sv-camera-overlay p {
    margin: 0;
    font-size: 0.85rem;
}

.sv-camera-actions {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    justify-content: center;
}

.sv-btn-capture {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    border: none;
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.sv-btn-capture:hover:not(:disabled) {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
    color: white;
}

.sv-btn-capture:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    color: white;
}

.sv-btn-retake {
    background: #475569;
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.sv-btn-retake:hover {
    background: #334155;
    color: white;
}

/* Status Dots */
.sv-status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #94a3b8;
    display: inline-block;
    transition: all 0.3s ease;
}

.sv-status-dot.sv-status-active {
    background: #10b981;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
    animation: sv-pulse 2s infinite;
}

.sv-status-dot.sv-status-error {
    background: #ef4444;
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.5);
}

@keyframes sv-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* GPS Info */
.sv-gps-info {
    min-height: 60px;
}

.sv-gps-loading {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #64748b;
    font-size: 0.9rem;
}

.sv-gps-data {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.sv-gps-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sv-gps-label {
    font-size: 0.72rem;
    color: #94a3b8;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.sv-gps-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1e293b;
}

.sv-gps-error {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ef4444;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Survey Input */
.sv-input {
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 10px 14px;
    transition: all 0.3s ease;
}

.sv-input:focus {
    border-color: #f59e0b;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

/* Timestamp Display */
.sv-timestamp {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.06), rgba(14, 165, 233, 0.06));
    border-radius: 10px;
    border: 1px dashed rgba(245, 158, 11, 0.3);
    margin-bottom: 20px;
}

.sv-timestamp i {
    color: #f59e0b;
    font-size: 1.2rem;
}

.sv-timestamp small {
    display: block;
    font-size: 0.72rem;
    color: #94a3b8;
    text-transform: uppercase;
    font-weight: 600;
}

.sv-timestamp strong {
    font-size: 0.88rem;
    color: #1e293b;
}

/* Form Actions */
.sv-form-actions {
    display: flex;
    gap: 12px;
}

.sv-btn-submit {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    flex: 1;
    justify-content: center;
}

.sv-btn-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35);
    color: white;
}

.sv-btn-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    color: white;
}

.sv-btn-cancel {
    background: #f1f5f9;
    color: #475569;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.sv-btn-cancel:hover {
    background: #e2e8f0;
    color: #1e293b;
}

/* Admin Survey Stats */
.sv-admin-stat {
    background: white;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    text-align: center;
    transition: all 0.3s ease;
}

.sv-admin-stat:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.sv-admin-stat-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e293b;
}

.sv-admin-stat-label {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Survey Detail Items (Modal) */
.sv-detail-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sv-detail-item small {
    font-size: 0.72rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.sv-detail-item strong {
    font-size: 0.92rem;
    color: #1e293b;
}

/* Survey Responsive */
@media (max-width: 991px) {
    .sv-header {
        flex-direction: column;
        text-align: center;
        gap: 18px;
        padding: 25px 20px;
    }

    .sv-gps-data {
        gap: 12px;
    }
}

@media (max-width: 767px) {
    .sv-header {
        padding: 20px 16px;
        border-radius: 14px;
    }

    .sv-header-content h2 {
        font-size: 1.2rem;
    }

    .sv-btn-start {
        padding: 10px 22px;
        font-size: 0.85rem;
    }

    .sv-card-header {
        padding: 12px 16px;
    }

    .sv-card-body {
        padding: 16px;
    }

    .sv-camera-box {
        aspect-ratio: 4/3;
    }

    .sv-form-actions {
        flex-direction: column;
    }

    .sv-btn-submit,
    .sv-btn-cancel {
        width: 100%;
        justify-content: center;
    }

    .sv-admin-stat {
        padding: 12px;
    }

    .sv-admin-stat-num {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .sv-header-content h2 {
        font-size: 1.05rem;
    }

    .sv-header-content p {
        font-size: 0.8rem;
    }

    .sv-gps-data {
        flex-direction: column;
        gap: 8px;
    }

    .sv-camera-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .sv-btn-capture,
    .sv-btn-retake {
        justify-content: center;
    }
}

/* ===== BOOK SERVICE PAGE ===== */
.bksv-section {
    padding: 60px 0 80px;
    background: #f8fafc;
}

.bksv-form-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.bksv-form-header {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    padding: 35px 40px;
    text-align: center;
    color: white;
}

.bksv-form-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--solar-primary), var(--solar-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.35);
}

.bksv-form-header h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.bksv-form-header p {
    color: #94a3b8;
    font-size: 0.95rem;
    margin: 0;
}

.bksv-form {
    padding: 35px 40px;
}

.bksv-field {
    margin-bottom: 0;
}

.bksv-field label {
    display: block;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
    font-size: 0.92rem;
}

.bksv-field label i {
    color: var(--solar-primary);
    margin-right: 5px;
    width: 16px;
}

.bksv-field .form-control,
.bksv-field .form-select {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.bksv-field .form-control:focus,
.bksv-field .form-select:focus {
    border-color: var(--solar-primary);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.1);
    background: white;
}

.bksv-field textarea.form-control {
    resize: vertical;
    min-height: 80px;
}

.bksv-submit-btn {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--solar-primary), var(--solar-secondary));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
    margin-top: 10px;
}

.bksv-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
}

.bksv-form-footer {
    padding: 20px 40px 25px;
    text-align: center;
    border-top: 1px solid #f1f5f9;
}

.bksv-form-footer p {
    color: #64748b;
    font-size: 0.88rem;
    margin: 0;
}

.bksv-form-footer i {
    color: #10b981;
    margin-right: 5px;
}

/* Book Service Responsive */
@media (max-width: 768px) {
    .bksv-form-header {
        padding: 25px 20px;
    }

    .bksv-form {
        padding: 25px 20px;
    }

    .bksv-form-footer {
        padding: 18px 20px;
    }

    .bksv-form-header h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .bksv-section {
        padding: 40px 0 60px;
    }

    .bksv-form-icon {
        width: 55px;
        height: 55px;
        font-size: 1.2rem;
    }

    .bksv-submit-btn {
        font-size: 0.95rem;
        padding: 13px 20px;
    }
}

/* ===== BOOK SERVICE SUCCESS BOX ===== */
.bksv-success-box {
    text-align: center;
    padding: 35px 30px;
    border-bottom: 1px solid #f1f5f9;
}

.bksv-success-icon {
    font-size: 3.5rem;
    color: #10b981;
    margin-bottom: 15px;
}

.bksv-success-box h4 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 8px;
}

.bksv-success-box > p {
    color: #64748b;
    margin-bottom: 5px;
}

.bksv-request-number {
    display: inline-block;
    background: linear-gradient(135deg, #1e293b, #334155);
    color: #f59e0b;
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: 2px;
    padding: 14px 35px;
    border-radius: 14px;
    margin: 15px 0;
    border: 2px dashed rgba(245, 158, 11, 0.4);
}

.bksv-success-note {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 18px;
}

.bksv-track-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--solar-primary), var(--solar-secondary));
    color: white !important;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 18px rgba(245, 158, 11, 0.3);
}

.bksv-track-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

/* ===== TRACK SERVICE RESULT ===== */
.trk-result-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.trk-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid #f1f5f9;
    flex-wrap: wrap;
    gap: 12px;
}

.trk-header h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 5px;
}

.trk-req-num {
    font-size: 0.85rem;
    font-weight: 700;
    color: #64748b;
    letter-spacing: 1px;
    background: #f1f5f9;
    padding: 4px 12px;
    border-radius: 6px;
}

.trk-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: white;
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.88rem;
}

/* Progress Steps */
.trk-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 30px 25px;
    gap: 0;
}

.trk-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 100px;
}

.trk-step-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #e2e8f0;
    border: 3px solid #cbd5e1;
    transition: all 0.3s ease;
}

.trk-step.active .trk-step-dot {
    background: #10b981;
    border-color: #10b981;
    box-shadow: 0 0 0 5px rgba(16, 185, 129, 0.2);
}

.trk-step span {
    font-size: 0.8rem;
    font-weight: 600;
    color: #94a3b8;
}

.trk-step.active span {
    color: #10b981;
}

.trk-step-line {
    flex: 1;
    height: 3px;
    background: #e2e8f0;
    margin: 0 -5px;
    margin-bottom: 28px;
    min-width: 40px;
}

.trk-step-line.active {
    background: #10b981;
}

/* Details */
.trk-details {
    padding: 5px 30px 25px;
}

.trk-detail-row {
    display: flex;
    padding: 12px 0;
    border-bottom: 1px solid #f8fafc;
    gap: 15px;
}

.trk-detail-row:last-child {
    border-bottom: none;
}

.trk-label {
    min-width: 140px;
    font-weight: 600;
    color: #64748b;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.trk-label i {
    color: var(--solar-primary);
    width: 18px;
    margin-right: 5px;
}

.trk-value {
    color: #1e293b;
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.6;
}

.trk-admin-note {
    background: #fef3c7;
    padding: 12px 15px !important;
    border-radius: 10px;
    margin-top: 8px;
    border-left: 3px solid #f59e0b;
}

/* Not Found */
.trk-not-found {
    text-align: center;
    padding: 45px 30px;
}

.trk-not-found i {
    font-size: 3rem;
    color: #f59e0b;
    margin-bottom: 15px;
}

.trk-not-found h4 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 8px;
}

.trk-not-found p {
    color: #64748b;
    margin-bottom: 20px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* Track Service Responsive */
@media (max-width: 768px) {
    .trk-header {
        padding: 20px;
    }

    .trk-progress {
        padding: 20px 15px;
    }

    .trk-step {
        min-width: 70px;
    }

    .trk-step span {
        font-size: 0.7rem;
    }

    .trk-details {
        padding: 5px 20px 20px;
    }

    .trk-detail-row {
        flex-direction: column;
        gap: 4px;
    }

    .trk-label {
        min-width: auto;
    }

    .bksv-request-number {
        font-size: 1.2rem;
        padding: 12px 25px;
    }
}

@media (max-width: 576px) {
    .trk-step-dot {
        width: 22px;
        height: 22px;
    }

    .trk-not-found {
        padding: 30px 20px;
    }

    .bksv-success-box {
        padding: 25px 20px;
    }

    .bksv-request-number {
        font-size: 1rem;
        padding: 10px 20px;
        letter-spacing: 1px;
    }
}

/* ===== OR DIVIDER ===== */
.trk-or-divider {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0;
}

.trk-or-divider::before,
.trk-or-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, #cbd5e1, transparent);
}

.trk-or-divider span {
    background: linear-gradient(135deg, var(--solar-primary), var(--solar-secondary));
    color: white;
    font-size: 0.8rem;
    font-weight: 800;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 12px rgba(245, 158, 11, 0.25);
    letter-spacing: 0.5px;
}

/* Multiple Results Info */
.trk-multi-info {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    color: #1e40af;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 0.92rem;
    font-weight: 500;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.trk-multi-info i {
    margin-right: 6px;
}

/* ===== SERVICE PAGE TRACK STRIP ===== */
.svc-track-strip {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    padding: 14px 0;
    border-bottom: 2px solid rgba(245, 158, 11, 0.2);
}

.svc-track-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}

.svc-track-text {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cbd5e1;
    font-size: 0.95rem;
    font-weight: 500;
}

.svc-track-text i {
    color: var(--solar-primary);
    font-size: 1.1rem;
}

.svc-track-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--solar-primary), var(--solar-secondary));
    color: white !important;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    white-space: nowrap;
}

.svc-track-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

@media (max-width: 576px) {
    .svc-track-inner {
        flex-direction: column;
        text-align: center;
    }

    .svc-track-text {
        font-size: 0.85rem;
        justify-content: center;
    }

    .svc-track-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===== WALLET SECTION ===== */
.wlt-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.wlt-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.wlt-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    border-bottom: 1px solid #f1f5f9;
}

.wlt-card-header h5 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}

.wlt-card-header span {
    font-size: 0.78rem;
    color: #94a3b8;
    font-weight: 500;
}

.wlt-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.wlt-icon-direct {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: white;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.wlt-icon-indirect {
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    color: white;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.wlt-card-body {
    padding: 22px 24px 24px;
}

.wlt-balance-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 18px;
    gap: 15px;
}

.wlt-balance-main small {
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wlt-balance-main h2 {
    font-size: 2rem;
    font-weight: 900;
    color: #0f172a;
    margin: 4px 0 0;
    line-height: 1;
}

.wlt-direct .wlt-balance-main h2 {
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wlt-indirect .wlt-balance-main h2 {
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wlt-balance-side {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: right;
}

.wlt-mini-stat span {
    font-size: 0.7rem;
    color: #94a3b8;
    display: block;
}

.wlt-mini-stat strong {
    font-size: 0.88rem;
    color: #334155;
    font-weight: 700;
}

/* Progress Bar */
.wlt-progress-section {
    background: #f8fafc;
    border-radius: 14px;
    padding: 16px 18px;
    margin-bottom: 14px;
}

.wlt-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.wlt-progress-header span {
    font-size: 0.78rem;
    color: #64748b;
    font-weight: 600;
}

.wlt-progress-pct {
    font-size: 0.85rem !important;
    font-weight: 800 !important;
    color: #8b5cf6 !important;
}

.wlt-progress-bar-wrap {
    width: 100%;
    height: 14px;
    background: #e2e8f0;
    border-radius: 50px;
    overflow: hidden;
    position: relative;
}

.wlt-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #8b5cf6, #6366f1, #a78bfa);
    border-radius: 50px;
    position: relative;
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 2px;
}

.wlt-progress-glow {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 30px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4));
    border-radius: 50px;
    animation: wltGlow 2s ease-in-out infinite;
}

@keyframes wltGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.wlt-progress-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.wlt-progress-footer span {
    font-size: 0.72rem;
    color: #94a3b8;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

.wlt-progress-footer i {
    font-size: 0.65rem;
}

/* Cycle Info */
.wlt-cycle-info {
    margin-bottom: 14px;
}

.wlt-cycle-dates {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.wlt-cycle-dates span {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.wlt-cycle-dates i {
    color: #8b5cf6;
    font-size: 0.7rem;
}

.wlt-remaining-notice {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #92400e;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.wlt-remaining-notice i {
    font-size: 0.85rem;
}

/* Pending Notice */
.wlt-pending-notice {
    background: #eff6ff;
    color: #1d4ed8;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}

/* No Balance */
.wlt-no-balance {
    background: #f8fafc;
    color: #94a3b8;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 500;
    text-align: center;
}

/* Locked Message */
.wlt-locked-msg {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    color: #991b1b;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    text-align: center;
    justify-content: center;
}

/* Withdraw Form */
.wlt-withdraw-form {
    margin-top: 4px;
}

.wlt-withdraw-row {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.wlt-withdraw-row .input-group {
    flex: 1;
}

.wlt-withdraw-row .input-group-text {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-right: none;
    font-weight: 700;
    color: #64748b;
    border-radius: 12px 0 0 12px;
}

.wlt-withdraw-row .form-control {
    border: 2px solid #e2e8f0;
    border-left: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 14px;
    border-radius: 0 12px 12px 0;
}

.wlt-withdraw-row .form-control:focus {
    border-color: #cbd5e1;
    box-shadow: none;
}

.wlt-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border: none;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    color: white;
}

.wlt-btn-direct {
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.wlt-btn-direct:hover {
    box-shadow: 0 6px 18px rgba(245, 158, 11, 0.4);
    transform: translateY(-1px);
}

.wlt-btn-indirect {
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.wlt-btn-indirect:hover {
    box-shadow: 0 6px 18px rgba(139, 92, 246, 0.4);
    transform: translateY(-1px);
}

/* Wallet Responsive */
@media (max-width: 768px) {
    .wlt-balance-row {
        flex-direction: column;
        gap: 12px;
    }

    .wlt-balance-side {
        flex-direction: row;
        text-align: left;
        gap: 20px;
    }

    .wlt-balance-main h2 {
        font-size: 1.6rem;
    }

    .wlt-withdraw-row {
        flex-direction: column;
    }

    .wlt-btn {
        justify-content: center;
        padding: 12px 20px;
    }

    .wlt-cycle-dates {
        flex-direction: column;
        gap: 4px;
    }
}

@media (max-width: 576px) {
    .wlt-card-body {
        padding: 16px 18px 20px;
    }

    .wlt-card-header {
        padding: 16px 18px;
    }

    .wlt-balance-main h2 {
        font-size: 1.4rem;
    }
}
