/* Hinduja Power Solutions - Generator Dealer Theme (Bihar & Patna) */

:root {
    /* 3-Color Strict Theme Palette */
    --hps-bg-main: #F8FAFC;
    --hps-bg-surface: #FFFFFF;
    --hps-border-color: #E2E8F0;
    --hps-text-main: #0F172A;
    --hps-text-secondary: #475569;
    --hps-text-muted: #64748B;
    
    /* 1. Emerald Green (Primary) */
    --hps-primary: #059669;
    --hps-primary-hover: #047857;
    
    /* 2. Burnt Orange (Accent - Replaces Yellow/Gold) */
    --hps-gold: #ea580c;
    --hps-gold-light: #f97316;
    --hps-gold-bg: rgba(234, 88, 12, 0.1);

    /* 3. Deep Slate (Secondary / Dark) */
    --hps-dark: #1e293b;

    /* Override Bootstrap Default Colors to strictly match the 3-color palette */
    --bs-primary: #059669;
    --bs-primary-rgb: 5, 150, 105;
    
    --bs-secondary: #1e293b;
    --bs-secondary-rgb: 30, 41, 59;
    
    --bs-warning: #ea580c;
    --bs-warning-rgb: 234, 88, 12;
    
    --bs-danger: #ea580c;
    --bs-danger-rgb: 234, 88, 12;
    
    --bs-success: #059669;
    --bs-success-rgb: 5, 150, 105;
    
    --bs-info: #334155;
    --bs-info-rgb: 51, 65, 85;
    
    --bs-dark: #1e293b;
    --bs-dark-rgb: 30, 41, 59;
    
    --hps-font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --hps-shadow-sm: 0 2px 8px rgba(17, 24, 39, 0.04);
    --hps-shadow-md: 0 10px 25px -5px rgba(17, 24, 39, 0.08), 0 8px 10px -6px rgba(17, 24, 39, 0.04);
    --hps-shadow-lg: 0 20px 40px -10px rgba(17, 24, 39, 0.12);
    --hps-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--hps-bg-main);
    color: var(--hps-text-main);
    line-height: 1.6;
    overflow-x: clip;
}

/* Top Notification Header Bar */
.top-header-bar {
    background-color: #0F172A;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    padding: 0.45rem 0;
    color: #94A3B8;
}
.top-header-bar a {
    color: #CBD5E1;
    text-decoration: none;
    transition: var(--hps-transition);
}
.top-header-bar a:hover {
    color: #ea580c;
}

/* Main Navigation Bar */
.navbar-custom {
    background: #FFFFFF;
    border-bottom: 1px solid var(--hps-border-color);
    padding: 0.9rem 0;
    box-shadow: var(--hps-shadow-sm);
    transition: var(--hps-transition);
}
.navbar-custom.scrolled {
    box-shadow: var(--hps-shadow-md);
    padding: 0.7rem 0;
}

.brand-logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}
.brand-logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #059669, #047857);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.25);
    color: #ea580c;
    font-size: 1.3rem;
}
.brand-title {
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--hps-primary);
    letter-spacing: -0.02em;
    margin: 0;
    line-height: 1.1;
}
.brand-subtitle {
    font-size: 0.7rem;
    color: var(--hps-gold);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    display: block;
}

.nav-link-custom {
    color: var(--hps-text-main) !important;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.5rem 0.85rem !important;
    border-radius: 6px;
    transition: var(--hps-transition);
}
.nav-link-custom:hover, .nav-link-custom.active {
    color: var(--hps-primary) !important;
    background: #F1F5F9;
}

.btn-header-quote {
    background: linear-gradient(135deg, var(--hps-gold), #B45309);
    color: #FFFFFF;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.6rem 1.4rem;
    border-radius: 8px;
    border: none;
    box-shadow: 0 4px 14px rgba(234, 88, 12, 0.25);
    transition: var(--hps-transition);
}
.btn-header-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 88, 12, 0.35);
    color: #FFFFFF;
}

/* Full Width Hero Slider */
.hero-slider-fullwidth {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #0F172A;
}

.hero-full-item {
    height: 620px;
    position: relative;
}

.hero-full-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-overlay-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(17, 24, 39, 0.78) 0%, rgba(17, 24, 39, 0.35) 45%, rgba(17, 24, 39, 0.08) 100%);
    z-index: 1;
}

.hero-caption-custom {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 2;
    text-align: left;
    padding-bottom: 0;
}

.hero-pill-badge-light {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(17, 24, 39, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(16, 185, 129, 0.4);
    color: #10B981;
    padding: 0.4rem 1.1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-title-light {
    font-size: clamp(2rem, 4vw, 3.1rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    margin-bottom: 0.85rem;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}
.hero-title-light span {
    color: #ea580c;
}

.hero-description-light {
    font-size: 1.05rem;
    color: #E2E8F0;
    max-width: 540px;
    margin-bottom: 1.5rem;
    line-height: 1.55;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
}

.carousel-indicators-fullwidth {
    bottom: 22px;
    z-index: 3;
    gap: 8px;
}
.carousel-indicators-fullwidth [data-bs-target] {
    width: 38px;
    height: 6px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    transition: var(--hps-transition);
}
.carousel-indicators-fullwidth .active {
    background-color: #ea580c;
    width: 55px;
}

.carousel-nav-fullwidth {
    width: 48px;
    height: 48px;
    background: rgba(17, 24, 39, 0.5);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    top: 50%;
    transform: translateY(-50%);
    transition: var(--hps-transition);
}
.carousel-nav-fullwidth:hover {
    background: #ea580c;
    color: #0F172A;
    border-color: #ea580c;
}

/* Brands Strip */
.brands-strip {
    background: #FFFFFF;
    border-bottom: 1px solid var(--hps-border-color);
    padding: 1.5rem 0;
}
.brand-badge-item {
    background: #F8FAFC;
    border: 1px solid var(--hps-border-color);
    border-radius: 12px;
    padding: 0.85rem 1.25rem;
    text-align: center;
    font-weight: 700;
    color: var(--hps-primary);
    transition: var(--hps-transition);
}
.brand-badge-item:hover {
    border-color: var(--hps-gold);
    box-shadow: var(--hps-shadow-sm);
    transform: translateY(-2px);
}

/* Post-Banner 3-Image Collage Showcase Section (#hero-about-showcase) */
.hero-collage-container {
    position: relative;
    padding-bottom: 30px;
    padding-right: 30px;
}

.collage-img-large {
    width: 85%;
    border-radius: 20px;
    box-shadow: var(--hps-shadow-lg);
    border: 4px solid #FFFFFF;
    display: block;
}

.collage-img-secondary {
    width: 58%;
    position: absolute;
    bottom: 0;
    right: 0;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(17, 24, 39, 0.25);
    border: 4px solid #FFFFFF;
    z-index: 2;
}

.collage-img-small-badge {
    width: 105px;
    height: 105px;
    position: absolute;
    top: -15px;
    right: 12%;
    border-radius: 50%;
    box-shadow: 0 12px 30px rgba(34, 197, 94, 0.35);
    border: 4px solid #FFFFFF;
    z-index: 3;
    animation: floatBadge 3s ease-in-out infinite alternate;
}

@keyframes floatBadge {
    0% { transform: translateY(0); }
    100% { transform: translateY(-8px); }
}

/* Staggered Dual-Image Layout for About Section (#about) */
.staggered-image-wrapper {
    position: relative;
    padding: 2rem 1rem;
}

.staggered-img-top {
    width: 78%;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(17, 24, 39, 0.12);
    border: 5px solid #FFFFFF;
    display: block;
    margin-left: 0;
    transition: var(--hps-transition);
}

.staggered-img-bottom {
    width: 72%;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(17, 24, 39, 0.2);
    border: 5px solid #FFFFFF;
    margin-top: -3.5rem;
    margin-left: 28%;
    display: block;
    position: relative;
    z-index: 2;
    transition: var(--hps-transition);
}

.staggered-img-top:hover, .staggered-img-bottom:hover {
    transform: scale(1.02);
    box-shadow: var(--hps-shadow-lg);
}

.trust-experience-floating-tag {
    position: absolute;
    top: 50%;
    left: 15%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #0F172A, #059669);
    color: #FFFFFF;
    padding: 1.25rem 1.75rem;
    border-radius: 16px;
    border: 2px solid #ea580c;
    box-shadow: 0 15px 35px rgba(17, 24, 39, 0.35);
    z-index: 3;
    text-align: center;
}

/* ENHANCED SERVICE DETAILS PAGE STYLING (service_detail.html) */
.service-detail-hero-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 3px solid #ea580c;
    box-shadow: 0 20px 50px rgba(17, 24, 39, 0.18);
}

.service-detail-hero-frame img {
    transition: transform 0.5s ease;
}
.service-detail-hero-frame:hover img {
    transform: scale(1.03);
}

.floating-detail-badge-top {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(17, 24, 39, 0.9);
    backdrop-filter: blur(10px);
    color: #ea580c;
    border: 1px solid rgba(16, 185, 129, 0.4);
    padding: 0.45rem 1.1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    z-index: 5;
}

.floating-detail-badge-bottom {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(34, 197, 94, 0.95);
    color: #FFFFFF;
    padding: 0.45rem 1.1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    z-index: 5;
}

/* TABBED SPECIFICATIONS DASHBOARD FOR LEFT-SIDE CONTENT */
.detail-tabbed-specs-wrapper {
    background: #FFFFFF;
    border: 1px solid var(--hps-border-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--hps-shadow-md);
}

.nav-pills-detail-specs {
    background: #0F172A;
    padding: 0.6rem;
    gap: 0.5rem;
}
.nav-pills-detail-specs .nav-link {
    color: #94A3B8;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.6rem 1.25rem;
    border-radius: 10px;
    transition: var(--hps-transition);
}
.nav-pills-detail-specs .nav-link:hover {
    color: #FFFFFF;
}
.nav-pills-detail-specs .nav-link.active {
    background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
    color: #0F172A;
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.3);
}

.detail-tab-pane-box {
    padding: 2.25rem 2rem;
    background: #FFFFFF;
}

.spec-table-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}
.spec-item-card {
    background: #F8FAFC;
    border: 1px solid var(--hps-border-color);
    border-radius: 12px;
    padding: 1rem 1.25rem;
}

.detail-feature-box {
    background: #FFFFFF;
    border: 1px solid var(--hps-border-color);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    box-shadow: var(--hps-shadow-sm);
    transition: var(--hps-transition);
}
.detail-feature-box:hover {
    border-color: #ea580c;
    box-shadow: var(--hps-shadow-md);
    transform: translateY(-2px);
    background: linear-gradient(135deg, #FFFFFF 0%, #FFFBEB 100%);
}

.deliverable-step-card {
    background: #FFFFFF;
    border: 1px solid var(--hps-border-color);
    border-left: 6px solid #059669;
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    box-shadow: var(--hps-shadow-sm);
    transition: var(--hps-transition);
}
.deliverable-step-card:hover {
    border-left-color: #ea580c;
    box-shadow: var(--hps-shadow-md);
    transform: translateY(-2px);
}

.glass-detail-quote-card {
    background: linear-gradient(135deg, #0F172A 0%, #059669 100%);
    border: 2px solid rgba(249, 115, 22, 0.35);
    border-radius: 24px;
    padding: 2.5rem 2.25rem;
    color: #FFFFFF;
    box-shadow: 0 25px 50px rgba(17, 24, 39, 0.35);
}

/* EXACT HOME & ABOUT PAGE BRAND BLUE BUTTON (#059669) FOR SERVICE CARDS (.btn-service-card-detail) */
.btn-service-card-detail {
    background: #059669;
    color: #FFFFFF !important;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.65rem 0.85rem 0.65rem 1.25rem;
    border-radius: 12px;
    border: 1px solid #059669;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    box-shadow: 0 4px 14px rgba(5, 150, 105, 0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-service-card-detail .btn-arrow-gold-circle {
    width: 34px;
    height: 34px;
    background: #ea580c;
    color: #0F172A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 8px rgba(249, 115, 22, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-service-card-detail:hover {
    background: #047857;
    color: #FFFFFF !important;
    border-color: #047857;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(5, 150, 105, 0.35);
}

.btn-service-card-detail:hover .btn-arrow-gold-circle {
    background: #FFFFFF;
    color: #059669;
    transform: translateX(4px);
}

/* HIGH VISIBILITY PARALLAX FULL WIDTH BANNER SECTION WITH USER UPLOADED INDUSTRIAL GENERATOR ENGINE PHOTO (#turnkey-banner) */
.fullwidth-banner-section {
    width: 100%;
    min-height: 560px;
    background-image: url('../images/banner/turnkey_industrial_engine.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    padding: 5rem 0;
}

.fullwidth-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(17, 24, 39, 0.94) 0%, rgba(17, 24, 39, 0.82) 50%, rgba(17, 24, 39, 0.4) 100%);
    z-index: 1;
}

.half-content-card {
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.98) 0%, rgba(5, 150, 105, 0.95) 100%);
    backdrop-filter: blur(24px);
    border: 2px solid rgba(234, 88, 12, 0.5);
    border-left: 8px solid #ea580c;
    border-radius: 20px;
    padding: 3.5rem 3rem;
    color: #FFFFFF;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
    transition: var(--hps-transition);
}

.turnkey-badge-gold {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #0F172A;
    color: #ea580c;
    border: 2px solid #ea580c;
    padding: 0.45rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 800;
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.25);
}

.turnkey-title-bright {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: #FFFFFF;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    line-height: 1.25;
}

.turnkey-desc-bright {
    color: #F8FAFC !important;
    font-size: 1.08rem;
    line-height: 1.6;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

/* Premium Services Section Layout (#services) */
.service-card-premium {
    background: #FFFFFF;
    border: 1px solid var(--hps-border-color);
    border-radius: 20px;
    padding: 2.25rem 1.75rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--hps-transition);
    position: relative;
    box-shadow: var(--hps-shadow-sm);
    overflow: hidden;
}

.service-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #059669, #ea580c);
    opacity: 0;
    transition: var(--hps-transition);
}

.service-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: var(--hps-shadow-lg);
    border-color: #CBD5E1;
}

.service-card-premium:hover::before {
    opacity: 1;
}

.service-icon-wrapper {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: #ea580c;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 8px 20px rgba(5, 150, 105, 0.2);
}

.service-tag {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--hps-gold);
    margin-bottom: 0.4rem;
    display: block;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--hps-text-main);
    margin-bottom: 0.75rem;
}

.service-desc {
    font-size: 0.925rem;
    color: var(--hps-text-secondary);
    line-height: 1.55;
    margin-bottom: 1.25rem;
}

.service-points {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}
.service-points li {
    font-size: 0.85rem;
    color: var(--hps-text-main);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.service-points i {
    color: #16A34A;
}

.btn-service-action {
    background: #F8FAFC;
    border: 1px solid var(--hps-border-color);
    color: var(--hps-primary);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.65rem 1.1rem;
    border-radius: 10px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    transition: var(--hps-transition);
}
.btn-service-action:hover {
    background: var(--hps-primary);
    color: #FFFFFF;
    border-color: var(--hps-primary);
}

/* Generator Specification Table Design */
.specs-table-container {
    background: #FFFFFF;
    border: 1px solid var(--hps-border-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--hps-shadow-md);
}
.specs-table {
    width: 100%;
    margin-bottom: 0;
    vertical-align: middle;
}
.specs-table thead {
    background: #0F172A;
    color: #FFFFFF;
}
.specs-table th {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 1.1rem 1.25rem;
    border: none;
}
.specs-table td {
    padding: 1.1rem 1.25rem;
    border-bottom: 1px solid var(--hps-border-color);
    font-size: 0.95rem;
}
.specs-table tbody tr:hover {
    background-color: #F8FAFC;
}

/* Step Process Timeline Component */
.process-step-item {
    position: relative;
    padding: 1.5rem;
    text-align: center;
}
.process-step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--hps-primary), #047857);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0 auto 1.25rem auto;
    box-shadow: 0 8px 20px rgba(5, 150, 105, 0.25);
    position: relative;
    z-index: 2;
}
.process-step-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--hps-text-main);
    margin-bottom: 0.5rem;
}
.process-step-desc {
    font-size: 0.9rem;
    color: var(--hps-text-secondary);
}

/* Split Feature Dashboard */
.split-feature-box {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    border-radius: 20px;
    padding: 2.5rem;
    color: #FFFFFF;
    box-shadow: var(--hps-shadow-lg);
}
.feature-metric-bar {
    margin-bottom: 1.25rem;
}
.feature-metric-header {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
}
.feature-progress-track {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}
.feature-progress-fill {
    height: 100%;
    border-radius: 10px;
    background: linear-gradient(90deg, #ea580c, #38BDF8);
}

/* Instant Price Quote Hero Glassmorphism Container (#quick-quote) */
.quote-section-wrapper {
    background: linear-gradient(135deg, #0B0F19 0%, #059669 60%, #0F172A 100%);
    border-radius: 24px;
    padding: 4rem 3rem;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 60px -15px rgba(17, 24, 39, 0.4);
    border: 1px solid rgba(249, 115, 22, 0.25);
}

.quote-section-wrapper::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
}

.glass-quote-form-card {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem 2.25rem;
    border-top: 5px solid #ea580c;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
    color: #0F172A;
}

.live-desk-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(34, 197, 94, 0.12);
    color: #16A34A;
    border: 1px solid rgba(34, 197, 94, 0.3);
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

.btn-pulse-submit {
    background: linear-gradient(135deg, #ea580c, #f97316);
    color: #FFFFFF;
    font-weight: 800;
    font-size: 1rem;
    border: none;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.35);
    transition: var(--hps-transition);
}
.btn-pulse-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(249, 115, 22, 0.5);
    color: #FFFFFF;
}

/* City Location Pills */
.city-pill {
    background: #FFFFFF;
    border: 1px solid var(--hps-border-color);
    color: var(--hps-text-main);
    padding: 0.55rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: var(--hps-shadow-sm);
    transition: var(--hps-transition);
}
.city-pill:hover {
    background: #FEF2F2;
    border-color: var(--hps-primary);
    color: var(--hps-primary);
    transform: translateY(-2px);
}

/* Testimonial Card */
.testimonial-card {
    background: #FFFFFF;
    border: 1px solid var(--hps-border-color);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--hps-shadow-sm);
    height: 100%;
    transition: var(--hps-transition);
}
.testimonial-card:hover {
    box-shadow: var(--hps-shadow-md);
    transform: translateY(-3px);
}

/* FAQ Accordion Custom Styling */
.accordion-custom .accordion-item {
    border: 1px solid var(--hps-border-color);
    border-radius: 12px !important;
    margin-bottom: 1rem;
    overflow: hidden;
}
.accordion-custom .accordion-button {
    font-weight: 700;
    color: var(--hps-text-main);
    background-color: #FFFFFF;
    padding: 1.15rem 1.35rem;
}
.accordion-custom .accordion-button:not(.collapsed) {
    color: var(--hps-primary);
    background-color: #FEF2F2;
    box-shadow: none;
}

/* Stats Showcase Bar */
.stats-bar-fullwidth {
    background: #FFFFFF;
    border: 1px solid var(--hps-border-color);
    border-radius: 16px;
    padding: 2rem;
    margin-top: -3.5rem;
    position: relative;
    z-index: 10;
    box-shadow: var(--hps-shadow-lg);
}
.stat-item {
    text-align: center;
    padding: 0.5rem;
}
.stat-number {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--hps-primary);
    line-height: 1;
    margin-bottom: 0.25rem;
}
.stat-label {
    font-size: 0.875rem;
    color: var(--hps-text-secondary);
    font-weight: 600;
}

/* Cards & Section Styling */
.section-title-wrapper {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem auto;
}
.section-subtitle {
    color: var(--hps-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    display: block;
}
.section-main-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--hps-text-main);
}

/* Call To Action Banner */
.cta-banner {
    background: linear-gradient(135deg, #059669, #0F172A);
    border-radius: 20px;
    padding: 3.5rem 2.5rem;
    box-shadow: var(--hps-shadow-lg);
    color: #FFFFFF;
}

/* Floating Action Buttons */
.floating-actions-left {
    position: fixed;
    bottom: 25px;
    left: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}
.float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.35rem;
    box-shadow: 0 8px 20px rgba(17, 24, 39, 0.2);
    transition: var(--hps-transition);
    text-decoration: none;
}
.float-btn-phone {
    background: #047857;
}
.float-btn-phone:hover {
    background: #059669;
    transform: scale(1.1);
    color: #FFFFFF;
}
.float-btn-whatsapp {
    background: #25D366;
}
.float-btn-whatsapp:hover {
    background: #128C7E;
    transform: scale(1.1);
    color: #FFFFFF;
}

.back-to-top-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 48px;
    height: 48px;
    background: #FFFFFF;
    border: 1px solid var(--hps-border-color);
    color: var(--hps-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    box-shadow: var(--hps-shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--hps-transition);
    z-index: 999;
}
.back-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
}
.back-to-top-btn:hover {
    background: var(--hps-primary);
    color: #FFFFFF;
    transform: translateY(-3px);
}

/* Footer */
.footer-custom {
    background: #0F172A;
    border-top: 1px solid #1E293B;
    padding: 4rem 0 2rem 0;
    color: #94A3B8;
}
.footer-heading {
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 0.65rem;
}
.footer-links a {
    color: #CBD5E1;
    text-decoration: none;
    transition: var(--hps-transition);
    font-size: 0.9rem;
}
.footer-links a:hover {
    color: #ea580c;
    padding-left: 4px;
}
.footer-bottom {
    border-top: 1px solid #1E293B;
    padding-top: 1.5rem;
    margin-top: 3rem;
    font-size: 0.85rem;
    color: #64748B;
}

@media (max-width: 768px) {
    .hero-full-item {
        height: 480px;
    }
    .quote-section-wrapper {
        padding: 2.5rem 1.5rem;
    }
    .half-content-card {
        padding: 2rem 1.5rem;
    }
    .fullwidth-banner-section {
        background-attachment: scroll;
    }
    .hero-collage-container {
        padding-right: 0;
        padding-bottom: 0;
        margin-bottom: 2rem;
    }
    .collage-img-large {
        width: 100%;
    }
    .collage-img-secondary {
        display: none;
    }
    .staggered-image-wrapper {
        padding: 0;
        margin-bottom: 2rem;
    }
    .staggered-img-top, .staggered-img-bottom {
        width: 100%;
        margin-left: 0;
        margin-top: 1rem;
    }
    .trust-experience-floating-tag {
        display: none;
    }
    .glass-detail-quote-card {
        padding: 2rem 1.25rem;
    }
    .detail-tab-pane-box {
        padding: 1.5rem 1rem;
    }
}
@media (max-width: 768px) { .stat-number { font-size: 1.5rem !important; } .stat-label { font-size: 0.75rem !important; } .stat-item { padding: 0.25rem !important; } .stats-bar-fullwidth { padding: 1.5rem 1rem !important; } }
@media (max-width: 768px) { .navbar-custom.sticky-top { top: 0 !important; position: sticky !important; z-index: 1030 !important; } }
@media (max-width: 768px) { .navbar-custom { padding-top: 15px !important; padding-bottom: 15px !important; } .brand-logo-container img { height: 45px !important; } }
.header-logo-img { height: 60px; width: auto; } @media (max-width: 768px) { .header-logo-img { height: 45px !important; } }
