/* --- GLOBAL BANNER UTILITIES --- */

/* The Luxury Stroke Effect */
.text-white-stroke {
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.8);
    color: transparent;
    font-weight: 600;
}

/* Common Viewport Heights */
.min-vh-50 { min-height: 50vh; }
.min-vh-60 { min-height: 60vh; }

/* Letter Spacing Utilities */
.ls-1 { letter-spacing: 1px; }
.ls-2 { letter-spacing: 2px; }
.ls-5 { letter-spacing: 5px; }

/* Consistent Z-Index for content over patterns */
.z-index-9 { z-index: 9; }


/* --- ABOUT PAGE SPECIFIC --- */
.about-badge {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* --- REVIEW PAGE SPECIFIC --- */
.review-seal-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    text-align: center;
    border: 4px solid rgba(255, 255, 255, 0.2);
    animation: floatSeal 6s ease-in-out infinite;
}

@keyframes floatSeal {
    0%, 100% { transform: translatey(0px); }
    50% { transform: translatey(-15px); }
}

/* --- BLOG PAGE SPECIFIC --- */
.blog-vertical-ribbon {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 0.9rem;
}
/* index banner */
/* --- INDEX PAGE SPECIFIC BANNER STYLES --- */

/* --- INDEX PAGE SPECIFIC BANNER STYLES --- */

/* 1. Hero Typography */
.hero-title {
    font-size: clamp(3.5rem, 9vw, 8rem);
    line-height: 0.85;
    font-weight: 900;
    letter-spacing: -2px;
}

.pre-title-creative {
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: 700;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 25px;
}

.hero-desc {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    border-left: 3px solid #e93e36; /* Brand Primary Red */
    padding-left: 25px;
    max-width: 600px;
}

/* 2. Custom Button Style - White to Primary with Perfect Centering */
.btn-custom-hero {
    height: 60px;
    min-width: 240px;
    padding: 0 35px;
    background: #ffffff;
    color: #000000;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Matching Outline Button */
.btn-outline-white.btn-lg {
    height: 60px;
    min-width: 240px;
    padding: 0 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    border-radius: 0;
    border-width: 2px;
}

.btn-custom-hero:hover {
    background: #e93e36;
    color: #ffffff !important;
    transform: translateY(-5px);
}

/* 3. Scroll Indicator */
.scroll-down-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    display: block;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: #fff;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: index-scroll-wheel 1.6s infinite;
}

@keyframes index-scroll-wheel {
    0% { top: 8px; opacity: 1; }
    100% { top: 22px; opacity: 0; }
}

/* Responsive Fixes */
@media (max-width: 991px) {
    .hero-title { font-size: 3.8rem; }
    .hero-desc { font-size: 1.1rem; border-left: none; padding-left: 0; }
}

/* service page css */
/* --- SERVICE PAGE FAMILY STYLES --- */

/* --- RESPONSIVE SERVICE BANNER --- */

/* --- CLEAN SERVICE BANNER (Mobile Optimized) --- */

/* Desktop Only Logic */
@media (min-width: 992px) {
    .service-banner-section {
        min-height: 600px;
        display: flex;
        align-items: stretch;
    }
    .service-image-block {
        height: 100%;
        background-size: cover;
        background-position: center;
        width: 100%;
    }
}

/* Mobile Styling Fixes */
@media (max-width: 991px) {
    .service-banner-section {
        text-align: center; /* Optional: Centers text on mobile for better balance */
    }
    
    .service-banner-section .display-3 {
        font-size: 2.5rem;
    }

    .service-banner-section .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
}

/* Standardized Padding */
.py-8 { padding-top: 6rem; padding-bottom: 6rem; }

/* --- UPDATED PREMIUM CARD CSS --- */

/* Base Icon Style */
.hvac-icon {
    width: 50px; 
    height: 50px; 
    object-fit: contain;
    transition: all 0.4s ease !important;
}

.hvac-service-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    background: #ffffff !important;
    position: relative;
    z-index: 1;
}

/* Hover State */
.hvac-service-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
    border-color: #e93e36 !important;
}

/* Clean Bottom Border Accent */
.hvac-service-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #e93e36;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.hvac-service-card:hover::after {
    transform: scaleX(1);
}

a.border-white:hover{
	background-color:#fff !important;
	color:#01a8b0 !important;
	transition:0.3s ease;
}