/* Homepage enhancements */

body.home-page {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.home-page main {
    padding-top: 72px;
}

/* Section tag */
.section-tag {
    display: inline-block;
    background: rgba(232, 148, 26, 0.12);
    color: var(--primary-dark);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
}

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

.text-green {
    color: var(--secondary-light);
}

/* Hero */
.home-hero {
    padding: 4.5rem 0 5rem;
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
    border-radius: 10px !important;
}

.hero-img-main {
    width: 100%;
    max-height: 480px;
    min-height: 240px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.25));
    animation: float 6s ease-in-out infinite;
    border-radius: 16px;
}

@keyframes float {

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

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

.hero-float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    color: var(--dark);
    border-radius: 12px;
    padding: 0.85rem 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    font-size: 0.85rem;
    animation: float 5s ease-in-out infinite;
}

.hero-float-card i {
    font-size: 1.5rem;
    color: var(--primary);
}

.hero-float-card strong {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    line-height: 1.2;
}

.hero-float-card span {
    color: var(--text-muted);
    font-size: 0.75rem;
}

.hero-float-card-1 {
    top: 10%;
    left: -5%;
    animation-delay: 0.5s;
}

.hero-float-card-2 {
    bottom: 15%;
    right: -3%;
    animation-delay: 1s;
}

/* Quick enquiry strip */
.home-enquiry-strip {
    margin-top: -2.5rem;
    position: relative;
    z-index: 5;
    padding-bottom: 1rem;
}

.home-enquiry-strip .quick-enquiry-card {
    border-top: 4px solid var(--primary);
}

/* Service cards */
.home-service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-service-card:hover {
    border-color: rgba(232, 148, 26, 0.2);
}

.home-service-card .card-link i {
    transition: transform 0.2s ease;
}

.home-service-card:hover .card-link i {
    transform: translateX(4px);
}

/* About images */
.about-images {
    position: relative;
    min-height: 480px;
}

.about-img-primary {
    width: 74%;
    height: 460px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    object-position: center 18%;
}

.about-img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 52%;
    height: 230px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
    object-fit: cover;
    object-position: center;
}

.home-why-image {
    width: 100%;
    height: 360px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.about-experience-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    width: 110px;
    height: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 8px 25px rgba(232, 148, 26, 0.4);
    line-height: 1.2;
}

.about-experience-badge strong {
    font-size: 1.6rem;
    font-weight: 800;
}

.about-experience-badge span {
    font-size: 0.65rem;
    font-weight: 600;
    opacity: 0.95;
}

/* Process steps */
.home-process-step {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem 1.25rem;
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--transition);
}

.home-process-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.home-process-step h6 {
    min-height: 2.6em;
}

@media (min-width: 1200px) {
    .home-process-row > [class*="col-"] {
        flex: 1 1 0;
        max-width: 20%;
    }
}

/* Scroll to top */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--primary-dark);
    color: var(--white);
}

/* WhatsApp floating button */
.whatsapp-float {
    position: fixed;
    bottom: 5.75rem;
    right: 2rem;
    width: 52px;
    height: 52px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
    z-index: 999;
    transition: var(--transition);
    font-size: 1.55rem;
}

.whatsapp-float:hover {
    background: #1ebe57;
    color: var(--white);
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}

@media (max-width: 575.98px) {
    .whatsapp-float {
        bottom: 5.25rem;
        right: 1.25rem;
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
    }

    .scroll-top {
        bottom: 1.25rem;
        right: 1.25rem;
    }
}

/* Solar calculator on home - use bootstrap icons */
.solar-calculator-section .calc-tab-btn i,
.solar-calculator-section .toggle-label i,
.solar-calculator-section .stat-visual-icon i,
.solar-calculator-section .cost-icon-wrap i {
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 991.98px) {
    .home-hero {
        min-height: auto;
        padding: 3rem 0;
    }

    .hero-float-card {
        display: none;
    }

    .about-images {
        min-height: 320px;
        margin-bottom: 1rem;
        overflow: hidden;
    }

    .home-enquiry-strip {
        margin-top: 0;
        padding-top: 2rem;
    }

    .hero-img-main,
    .hero-float-card {
        animation: none;
    }

    .hero-image-wrap {
        overflow: hidden;
    }
}

/* Home contact section */
.home-contact-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #eef2f6 100%);
    padding: 5rem 0;
}

.home-contact-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(26, 35, 50, 0.12);
    background: var(--white);
}

.home-contact-aside {
    background: linear-gradient(145deg, #1a2332 0%, #243b30 45%, #1b5e20 100%);
    position: relative;
    overflow: hidden;
}

.home-contact-aside::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -30%;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(232, 148, 26, 0.18) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.home-contact-aside::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -20%;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.home-contact-aside-inner {
    position: relative;
    z-index: 1;
    padding: 2.5rem 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.home-contact-tag {
    background: rgba(232, 148, 26, 0.2) !important;
    color: var(--primary) !important;
    border: 1px solid rgba(232, 148, 26, 0.35);
}

.home-contact-title {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 0.75rem;
}

.home-contact-title span {
    color: var(--primary);
}

.home-contact-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 1.75rem;
}

.home-contact-tiles {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
}

.home-contact-tile {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

a.home-contact-tile:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(232, 148, 26, 0.4);
    transform: translateX(4px);
    color: inherit;
}

.home-contact-tile-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(232, 148, 26, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
}

.home-contact-tile .tile-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 0.15rem;
}

.home-contact-tile strong {
    display: block;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.4;
    word-break: break-word;
}

.home-contact-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-top: 0.5rem;
}

.home-contact-social {
    margin-top: auto;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.home-contact-social-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.home-social .site-social-link {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
}

.home-social .site-social-link:hover,
.home-social .site-social-whatsapp:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.home-social .site-social-whatsapp:hover {
    background: #25d366;
    border-color: #25d366;
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 0.35rem 0.75rem;
}

.trust-pill i {
    color: var(--primary);
    font-size: 0.85rem;
}

.home-contact-form-wrap {
    background: var(--white);
    display: flex;
    align-items: stretch;
}

.home-contact-form-card {
    width: 100%;
    padding: 2.5rem 2.25rem !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    margin: 0;
}

.home-contact-form-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 2px solid rgba(232, 148, 26, 0.15);
}

.form-header-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: linear-gradient(135deg, rgba(232, 148, 26, 0.15), rgba(232, 148, 26, 0.05));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.35rem;
}

.home-contact-form-header h4 {
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.2rem;
}

.home-contact-form-card .btn-primary {
    padding: 0.75rem 2rem;
    font-size: 1rem;
}

@media (max-width: 991.98px) {
    .home-contact-aside-inner {
        padding: 2rem 1.5rem;
    }

    .home-contact-form-card {
        padding: 2rem 1.5rem !important;
    }

    .home-contact-title {
        font-size: 1.55rem;
    }
}

@media (max-width: 767.98px) {
    .home-contact-section {
        padding: 3rem 0;
    }

    .home-contact-wrapper {
        border-radius: 16px;
    }

    .home-contact-trust {
        margin-top: 0;
    }

    .about-experience-badge {
        width: 90px;
        height: 90px;
    }

    .about-experience-badge strong {
        font-size: 1.3rem;
    }
}

/* Government Schemes — split halves */
.home-schemes-section {
    background: var(--light-bg);
    padding: 4.5rem 0;
}

.schemes-split-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.scheme-half {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.scheme-half-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.scheme-half-surya {
    background: linear-gradient(180deg, #fff8ee 0%, #ffffff 42%);
    border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.scheme-half-kusum {
    background: linear-gradient(180deg, #eef6ef 0%, #ffffff 42%);
}

.scheme-pm-photo-wrap {
    position: relative;
    overflow: hidden;
    height: 220px;
    flex-shrink: 0;
}

.scheme-pm-photo {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.scheme-pm-photo-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(26, 35, 50, 0.85);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.4rem 0.85rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.scheme-pm-photo-badge i {
    color: var(--primary);
}

.scheme-pm-photo-placeholder {
    background: linear-gradient(135deg, #1a2332 0%, #3d2e16 45%, #c97d0f 100%);
    min-height: 220px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scheme-kusum-banner {
    background: linear-gradient(135deg, #1a2332 0%, #1b5e20 55%, #2e7d32 100%);
}

.scheme-pm-placeholder-inner {
    text-align: center;
    color: var(--white);
    padding: 1.25rem 1.5rem;
}

.scheme-govt-emblem {
    width: 72px;
    height: 90px;
    object-fit: contain;
    background: #fff;
    border-radius: 16px;
    display: block;
    margin: 0 auto 0.65rem;
    padding: 5px;
}

.scheme-pm-placeholder-inner span {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.75;
    margin-bottom: 0.35rem;
}

.scheme-pm-placeholder-inner strong {
    font-size: 1.25rem;
    font-weight: 800;
}

.scheme-half-content {
    padding: 2.25rem 2rem 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.scheme-half-content h3 {
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.85rem;
}

.scheme-half-surya .scheme-card-badge {
    background: rgba(232, 148, 26, 0.12);
    color: var(--primary-dark);
}

.scheme-half-kusum .scheme-card-badge {
    background: rgba(27, 94, 32, 0.1);
    color: var(--secondary);
}

.scheme-lead {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.scheme-half-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 1rem;
}

.btn-outline-scheme {
    border: 2px solid var(--primary);
    color: var(--primary-dark);
    font-weight: 600;
    border-radius: 8px;
    padding: 0.55rem 1.25rem;
    background: transparent;
    text-decoration: none;
    transition: var(--transition);
}

.btn-outline-scheme:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-outline-scheme-light {
    border: 2px solid var(--secondary);
    color: var(--secondary);
    font-weight: 600;
    border-radius: 8px;
    padding: 0.55rem 1.25rem;
    background: transparent;
    text-decoration: none;
    transition: var(--transition);
}

.btn-outline-scheme-light:hover {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}

.scheme-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2.25rem 2rem;
    height: 100%;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.scheme-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.scheme-card-residential::before {
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
}

.scheme-card-agriculture::before {
    background: linear-gradient(90deg, var(--secondary), var(--secondary-light));
}

.scheme-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.scheme-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 700;
    width: 140px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
}

.scheme-card-residential .scheme-card-badge {
    background: rgba(232, 148, 26, 0.12);
    color: var(--primary-dark);
}

.scheme-card-agriculture .scheme-card-badge {
    background: rgba(27, 94, 32, 0.1);
    color: var(--secondary);
}

.scheme-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
}

.scheme-card>p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.scheme-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
}

.scheme-card-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.92rem;
    color: var(--text);
    margin-bottom: 0.6rem;
}

.scheme-card-features li i {
    color: var(--secondary-light);
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.scheme-section-disclaimer {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* PM Welcome Video Modal */
.pm-welcome-modal {
    position: fixed;
    inset: 0;
    z-index: 10050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    overflow-x: hidden;
    overflow-y: auto;
    box-sizing: border-box;
}

.pm-welcome-modal.is-open {
    opacity: 1;
    visibility: visible;
}

body.pm-welcome-open {
    overflow: hidden;
}

.pm-welcome-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 14, 22, 0.88);
    backdrop-filter: blur(4px);
}

.pm-welcome-dialog {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: min(820px, 100%);
    max-height: calc(100dvh - 1.5rem);
    overflow-x: hidden;
    overflow-y: auto;
    box-sizing: border-box;
    background: linear-gradient(145deg, #1a2332 0%, #243b30 50%, #1b5e20 100%);
    border-radius: 16px;
    padding: 2rem 2rem 1.75rem;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
    transform: translateY(20px) scale(0.97);
    transition: transform 0.35s ease;
    -webkit-overflow-scrolling: touch;
    min-width: 0;
}

.pm-welcome-modal.is-open .pm-welcome-dialog {
    transform: translateY(0) scale(1);
}

.pm-welcome-close {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
    z-index: 2;
}

.pm-welcome-close:hover {
    background: rgba(255, 255, 255, 0.22);
}

.pm-welcome-header {
    text-align: center;
    margin-bottom: 1.25rem;
    padding-right: 2rem;
}

.pm-welcome-header .section-tag {
    background: rgba(232, 148, 26, 0.2);
    color: var(--primary);
    border: 1px solid rgba(232, 148, 26, 0.35);
}

.pm-welcome-header h3 {
    color: var(--white);
    font-size: 1.35rem;
    font-weight: 800;
    margin: 0.5rem 0;
    overflow-wrap: anywhere;
}

.pm-welcome-header p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    margin: 0;
}

.pm-welcome-video {
    position: relative;
    width: min(100%, calc(min(52dvh, 420px) * 16 / 9));
    max-width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    max-height: min(52dvh, 420px);
    margin-inline: auto;
    padding-bottom: 0;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.pm-welcome-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    border: 0;
}

.pm-welcome-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1.25rem;
}

/* Warranty Section */
.home-warranty-section {
    padding: 3.5rem 0;
    background: var(--white);
}

.home-warranty-banner {
    background: linear-gradient(135deg, #1a2332 0%, #2d4a3e 55%, #1b5e20 100%);
    border-radius: 20px;
    padding: 2.5rem 2.25rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.home-warranty-banner::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(232, 148, 26, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.home-warranty-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.65;
}

.warranty-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    padding: 1.75rem 1.25rem;
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

.warranty-card:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(232, 148, 26, 0.45);
    transform: translateY(-4px);
}

.warranty-card-icon {
    font-size: 1.75rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
    display: block;
}

.warranty-card-value {
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.warranty-card-value strong {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}

.warranty-card-value span {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.warranty-card-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

/* Video Section */
.home-video-section {
    background: var(--white);
}

.home-video-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--dark);
}

.home-video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Testimonials */
.home-testimonials-section {
    background: var(--light-bg);
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem 1.75rem;
    height: 100%;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
}

.testimonial-placeholder {
    opacity: 0.75;
    border-style: dashed;
    border-color: rgba(0, 0, 0, 0.12);
}

.testimonial-quote-icon {
    font-size: 2rem;
    color: rgba(232, 148, 26, 0.35);
    line-height: 1;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.testimonial-avatar-placeholder {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(232, 148, 26, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.25rem;
}

.testimonial-name {
    display: block;
    font-size: 0.95rem;
    color: var(--dark);
}

.testimonial-role {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.testimonials-note {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* Empanelment / Trust (shown when enabled) */
.home-empanelment-section {
    background: var(--white);
}

.empanelment-card {
    background: var(--light-bg);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.empanelment-card:hover {
    border-color: rgba(232, 148, 26, 0.3);
    box-shadow: var(--shadow);
}

.empanelment-card>i {
    font-size: 2.25rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: block;
}

.empanelment-card h6 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.empanelment-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .schemes-split-row {
        grid-template-columns: 1fr;
    }

    .scheme-half-surya {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }
}

@media (max-width: 767.98px) {
    .scheme-half-content {
        padding: 1.75rem 1.25rem 2rem;
    }

    .scheme-half-content h3 {
        font-size: 1.35rem;
    }

    .scheme-pm-photo,
    .scheme-pm-photo-wrap,
    .scheme-pm-photo-placeholder {
        height: 190px;
        min-height: 190px;
        max-height: 190px;
    }

    .scheme-govt-emblem {
        width: 56px;
        height: 56px;
        margin-bottom: 0.4rem;
    }

    .scheme-half-surya {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .home-warranty-banner {
        padding: 2rem 1.5rem;
    }

    .warranty-card-value strong {
        font-size: 2rem;
    }

    .pm-welcome-modal {
        align-items: flex-start;
        padding: 0.5rem;
    }

    .pm-welcome-dialog {
        padding: 1.35rem 1.1rem 1.15rem;
        max-height: calc(100dvh - 1rem);
        border-radius: 14px;
    }

    .pm-welcome-header {
        padding-right: 1.75rem;
        margin-bottom: 1rem;
    }

    .pm-welcome-header h3 {
        font-size: 1.1rem;
    }

    .pm-welcome-video {
        width: min(100%, calc(38dvh * 16 / 9));
        max-height: 38dvh;
    }

    .pm-welcome-actions {
        gap: 0.5rem;
    }

    .pm-welcome-actions .btn {
        flex: 1 1 auto;
        min-width: 0;
    }

    .home-video-section .section-title {
        font-size: 1.6rem;
    }
}

@media (max-height: 640px) {
    .pm-welcome-modal {
        align-items: flex-start;
    }

    .pm-welcome-video {
        width: min(100%, calc(32dvh * 16 / 9));
        max-height: 32dvh;
    }
}