/* ============================================================
   ABOUT.CSS - Pratap Enterprises About Page
   Fully Responsive | Modern Design | Professional Layout
   Fixed: Button Hover Text Visible, Responsive Testimonials, Hover Details
   ============================================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #1e6df2;
    --primary-dark: #0d47a1;
    --accent-orange: #ff9800;
    --accent-yellow: #ffc107;
    --accent-green: #2ecc71;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --white: #ffffff;
    --bg-light: #f8fafc;
    --shadow-sm: 0 5px 20px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 16px;
}

body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 80px 0;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    background: rgba(30, 109, 242, 0.1);
    color: var(--primary-blue);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header h2 span {
    color: var(--primary-blue);
    position: relative;
}

.section-header h2 span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange));
    border-radius: 3px;
}

.section-header p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Buttons */
.btn-primary, .btn-whatsapp, .btn-secondary, .btn-outline-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
    color: var(--white);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
    color: var(--white);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 10px 20px;
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-blue);
}

.full-width {
    width: 100%;
    margin-top: 15px;
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* ============================================================
   HEADER STYLES
   ============================================================ */
.header-top-bar {
    background: #0a0a1a;
    color: var(--white);
    padding: 9px 0;
    font-size: 0.8rem;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.top-bar-left {
    display: flex;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
}

.top-bar-left span i {
    margin-right: 5px;
    color: var(--accent-orange);
}

.top-bar-right {
    display: flex;
    gap: 20px;
}

.top-bar-right a {
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.top-bar-right a:hover {
    color: var(--accent-orange);
}

.header-main {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 500;
    transition: box-shadow 0.3s ease, padding 0.3s ease;
}

.header-main.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon-wrap {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.logo-icon-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-glow {
    position: absolute;
    inset: -4px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-orange));
    opacity: 0;
    z-index: -1;
    filter: blur(8px);
    transition: opacity 0.3s ease;
}

.logo:hover .logo-glow {
    opacity: 0.5;
}

.logo-text h1 {
    font-size: 1.35rem;
    margin-bottom: 0;
    line-height: 1;
}

.logo-text p {
    font-size: 0.68rem;
    color: var(--text-light);
    margin-top: 2px;
}

.nav-links {
    display: flex;
    gap: 24px;
    align-items: center;
    list-style: none;
}

.nav-item {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 0;
    position: relative;
    transition: var(--transition);
    text-decoration: none;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange));
    transition: width 0.3s ease;
}

.nav-item:hover::after,
.nav-item.active::after {
    width: 100%;
}

.nav-item:hover,
.nav-item.active {
    color: var(--primary-blue);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    min-width: 200px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.25s ease;
    border: 1px solid rgba(0, 0, 0, 0.06);
    list-style: none;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    text-decoration: none;
}

.dropdown-menu li a:hover {
    background: var(--bg-light);
    color: var(--primary-blue);
    padding-left: 26px;
}

.dropdown-menu li a i {
    color: var(--accent-orange);
    width: 16px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-call {
    background: linear-gradient(135deg, #00c853, #009624);
    color: var(--white);
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 200, 83, 0.3);
    text-decoration: none;
}

.btn-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 200, 83, 0.4);
    color: var(--white);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--text-dark);
    border-radius: 3px;
    margin: 5px 0;
    transition: var(--transition);
    transform-origin: left;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(2px, -2px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(2px, 2px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 350px;
    height: 100%;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: var(--transition);
    padding: 30px 25px;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.mobile-logo i {
    font-size: 2rem;
    color: var(--primary-blue);
}

.mobile-logo span {
    font-size: 1.3rem;
    font-weight: 700;
}

.mobile-menu ul {
    list-style: none;
    margin-bottom: 30px;
}

.mobile-menu ul li {
    margin-bottom: 15px;
}

.mobile-menu ul li a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
    display: block;
    padding: 10px 0;
}

.mobile-menu ul li a:hover {
    color: var(--primary-blue);
    padding-left: 8px;
}

.mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ============================================================
   PAGE BANNER
   ============================================================ */
.page-banner {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
    padding: 60px 0;
    text-align: center;
    color: var(--white);
}

.banner-content h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 15px;
}

.banner-content h1 span {
    color: var(--accent-orange);
}

.banner-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 15px;
}

.banner-breadcrumb a {
    color: var(--white);
    text-decoration: none;
}

.banner-breadcrumb span {
    color: var(--accent-yellow);
}

/* ============================================================
   COMPANY OVERVIEW
   ============================================================ */
.company-overview {
    background: var(--bg-light);
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.overview-content .section-tag {
    margin-bottom: 15px;
}

.overview-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.overview-content h2 span {
    color: var(--primary-blue);
}

.overview-content .lead {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.stats-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-big {
    text-align: center;
    background: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.stat-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    font-family: 'Rajdhani', sans-serif;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 8px;
}

.overview-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.office-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.overview-image:hover .office-img {
    transform: scale(1.03);
}

.image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 8px 18px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 0.85rem;
}

/* ============================================================
   PROVIDES SECTION
   ============================================================ */
.provides-section {
    background: var(--bg-light);
}

.provides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.provide-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.provide-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.provide-card i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.provide-card h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.provide-card p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.provide-tag {
    display: inline-block;
    background: rgba(30, 109, 242, 0.1);
    color: var(--primary-blue);
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
}

/* Hover Details for Service Cards */
.provide-card .hover-details {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    border-radius: var(--border-radius);
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 5;
    color: white;
    text-align: center;
}

.provide-card:hover .hover-details {
    opacity: 1;
}

.provide-card .hover-details ul {
    text-align: left;
    margin-top: 15px;
    list-style: none;
}

.provide-card .hover-details ul li {
    margin-bottom: 10px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.provide-card .hover-details i {
    font-size: 1.8rem;
    color: var(--accent-orange);
    margin-bottom: 10px;
}

/* ============================================================
   SUBSIDY TABLE
   ============================================================ */
.subsidy-table-section {
    background: var(--white);
}

.subsidy-note {
    background: #e8f4fd;
    padding: 15px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.subsidy-note i {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.table-wrapper {
    overflow-x: auto;
}

.subsidy-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.subsidy-table th,
.subsidy-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

.subsidy-table th {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
    color: var(--white);
    font-weight: 700;
}

.subsidy-table tr:hover {
    background: var(--bg-light);
}

.subsidy-cta {
    text-align: center;
    margin-top: 40px;
}

.subsidy-cta p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.subsidy-cta .btn-primary,
.subsidy-cta .btn-whatsapp {
    margin: 0 10px;
}

/* ============================================================
   FINANCE SECTION
   ============================================================ */
.finance-section {
    background: linear-gradient(135deg, #0f2027, #203a43);
    color: var(--white);
}

.finance-section .section-tag {
    background: rgba(255, 255, 255, 0.2);
    color: var(--accent-yellow);
}

.finance-section h2 {
    color: var(--white);
}

.finance-section h2 span {
    color: var(--accent-orange);
}

.finance-section p {
    color: rgba(255, 255, 255, 0.9);
}

.finance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.finance-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 30px 0;
}

.finance-feature {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.finance-feature i {
    font-size: 1.8rem;
    color: var(--accent-orange);
}

.finance-feature h4 {
    color: var(--white);
    margin-bottom: 5px;
}

.finance-partners h4 {
    color: var(--white);
    margin-bottom: 15px;
}

.partner-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.partner-logos span {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
}

.finance-cta-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-card-inner {
    text-align: center;
}

.cta-card-inner i {
    font-size: 3rem;
    color: var(--accent-orange);
    margin-bottom: 15px;
}

.cta-card-inner h3 {
    color: var(--white);
    margin-bottom: 10px;
}

.emi-calc-simple {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0;
}

.emi-input,
.emi-select {
    padding: 12px 15px;
    border-radius: 12px;
    border: none;
    font-family: inherit;
    font-size: 1rem;
}

.emi-result {
    margin-top: 15px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */
.installation-gallery {
    background: var(--bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay span {
    color: var(--white);
    font-weight: 700;
}

.gallery-cta {
    text-align: center;
    margin-top: 40px;
}

/* ============================================================
   WHY US SECTION
   ============================================================ */
.whyus-section {
    background: var(--white);
}

.whyus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.why-item {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid #e2e8f0;
}

.why-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.why-num {
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--primary-blue);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.why-icon {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

/* ============================================================
   PARTNERS SECTION
   ============================================================ */
.partners-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.partner-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 25px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 2px solid #f1f5f9;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.partner-card img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(0);
    transition: var(--transition);
}

.partner-card:hover img {
    transform: scale(1.05);
}

.partner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(13, 71, 161, 0.9));
    padding: 15px 10px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.partner-card:hover .partner-overlay {
    transform: translateY(0);
}

.partner-overlay span {
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 0.5px;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(30, 109, 242, 0.05), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.partner-card:hover::before {
    opacity: 1;
}

/* ============================================================
   CONTACT CTA
   ============================================================ */
.contact-cta {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    text-align: center;
    color: var(--white);
}

.cta-wrapper h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-wrapper p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: #0a0a1a;
    color: #a0a0b0;
}

.footer-top {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 35px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo i {
    font-size: 2rem;
    color: var(--accent-orange);
}

.footer-logo h3 {
    color: var(--white);
    margin-bottom: 0;
}

.footer-logo p {
    font-size: 0.8rem;
}

.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
    text-decoration: none;
}

.footer-socials a:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
    color: var(--white);
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #a0a0b0;
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary-blue);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-contact li i {
    margin-top: 3px;
    color: var(--accent-orange);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom a {
    color: var(--accent-orange);
    text-decoration: none;
}

/* ============================================================
   SCROLL TOP
   ============================================================ */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--primary-blue);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--accent-orange);
    transform: translateY(-3px);
    color: var(--white);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
    section {
        padding: 60px 0;
    }
    .section-header h2 {
        font-size: 2rem;
    }
    .nav-links {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .nav-actions .btn-call {
        display: none;
    }
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .finance-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .stats-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        width: 95%;
    }
    .top-bar-left,
    .top-bar-right {
        justify-content: center;
        width: 100%;
    }
    .top-bar-inner {
        flex-direction: column;
    }
    .banner-content h1 {
        font-size: 2rem;
    }
    .provides-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .whyus-grid {
        grid-template-columns: 1fr;
    }
    .subsidy-table th,
    .subsidy-table td {
        padding: 10px;
        font-size: 0.85rem;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    .partner-card {
        min-height: 100px;
        padding: 15px;
    }
    .partner-card img {
        max-height: 50px;
    }
}

@media (max-width: 576px) {
    .stats-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .stat-num {
        font-size: 1.8rem;
    }
    .btn-primary,
    .btn-whatsapp {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    .subsidy-cta .btn-primary,
    .subsidy-cta .btn-whatsapp {
        margin: 5px;
    }
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .partner-card {
        min-height: 80px;
        padding: 12px;
    }
    .partner-card img {
        max-height: 40px;
    }
}

/* ============================================================
   LIGHTBOX STYLES
   ============================================================ */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 12px;
}

.lightbox-caption {
    text-align: center;
    color: white;
    margin-top: 15px;
    font-size: 1rem;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
}

.lightbox-close:hover {
    background: var(--primary-blue);
    transform: rotate(90deg);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}