/* Fast Cooling System - Main Stylesheet */

:root {
    --primary: #0d6efd;
    --secondary: #6610f2;
    --gradient: linear-gradient(135deg, #0d6efd, #6610f2);
    --gradient-hover: linear-gradient(135deg, #0b5ed7, #5808e0);
    --dark: #1a1a2e;
    --gray: #6c757d;
    --light: #f8f9fa;
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.25);
    --shadow: 0 5px 25px rgba(0,0,0,0.1);
    --shadow-hover: 0 10px 40px rgba(0,0,0,0.15);
}

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

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    color: #333;
    background: #fff;
}

/* Top Bar */
.top-bar {
    background: var(--dark);
    color: #fff;
    padding: 8px 0;
    font-size: 13px;
}
.top-bar a { color: #fff; text-decoration: none; }
.top-bar a:hover { color: #0d6efd; }
.top-bar-info i { margin-right: 5px; color: #0d6efd; }
.top-bar-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px; height: 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: 0.3s;
    font-size: 16px;
}
.top-bar-social a:hover { background: #25D366; color: #fff; }

/* Navigation */
.navbar { padding: 12px 0; transition: 0.3s; }
.navbar-brand { display: flex; align-items: center; gap: 10px; }
.brand-text {
    font-size: 20px;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.nav-link {
    font-weight: 500;
    color: var(--dark) !important;
    padding: 8px 16px !important;
    transition: 0.3s;
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    width: 0; height: 2px;
    background: var(--gradient);
    transition: 0.3s;
    transform: translateX(-50%);
}
.nav-link:hover::after,
.nav-link.active::after { width: 60%; }
.nav-link:hover { color: var(--primary) !important; }
.nav-link.active { color: var(--primary) !important; }
.dropdown-menu {
    border: none;
    box-shadow: var(--shadow);
    border-radius: 12px;
    padding: 8px;
}
.dropdown-item {
    border-radius: 8px;
    padding: 8px 16px;
    font-weight: 500;
    transition: 0.3s;
}
.dropdown-item:hover {
    background: var(--gradient);
    color: #fff;
    transform: translateX(5px);
}

/* Hero Slider */
.hero-section {
    position: relative;
    overflow: hidden;
}
.hero-slide {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}
.hero-slide::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(26,26,46,0.85) 0%, rgba(13,110,253,0.7) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 700px;
}
.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}
.hero-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.9;
}
.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.2);
}
.hero-badge i { margin-right: 5px; color: #25D366; }

/* Emergency Banner */
.emergency-banner {
    background: var(--gradient);
    padding: 40px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.emergency-banner::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 400px; height: 400px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}
.emergency-banner h2 {
    font-size: 32px;
    font-weight: 700;
}
.emergency-banner p { font-size: 18px; opacity: 0.9; }
.emergency-banner .btn-light {
    padding: 12px 35px;
    font-weight: 600;
    border-radius: 50px;
}

/* Section Styles */
.section-padding { padding: 80px 0; }
.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}
.section-subtitle {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.section-header { text-align: center; margin-bottom: 50px; }
.section-header .section-title span { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* Glassmorphism Cards */
.glass-card {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: 0.4s;
    height: 100%;
}
.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}
.glass-card .card-icon {
    width: 70px; height: 70px;
    background: var(--gradient);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 30px;
    color: #fff;
    transition: 0.4s;
}
.glass-card:hover .card-icon { transform: scale(1.1) rotate(-5deg); }
.glass-card h4 { font-size: 20px; font-weight: 600; margin-bottom: 12px; }
.glass-card p { color: var(--gray); font-size: 15px; line-height: 1.7; }
.glass-card .card-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: 0.3s;
}
.glass-card .card-link:hover { gap: 10px; color: var(--secondary); }

/* Buttons */
.btn-primary {
    background: var(--gradient);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: 0.3s;
}
.btn-primary:hover {
    background: var(--gradient-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(13,110,253,0.4);
}
.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: 0.3s;
}
.btn-outline-primary:hover {
    background: var(--gradient);
    border-color: transparent;
    color: #fff;
    transform: translateY(-2px);
}
.btn-whatsapp {
    background: #25D366;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: 0.3s;
}
.btn-whatsapp:hover { background: #1da851; color: #fff; transform: translateY(-2px); }
.btn-whatsapp i, .btn-primary i { margin-right: 8px; }

/* About Section */
.about-image {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}
.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
}
.about-image::before {
    content: '';
    position: absolute;
    top: -10px; left: -10px;
    width: 100px; height: 100px;
    border-top: 4px solid var(--primary);
    border-left: 4px solid var(--primary);
    border-radius: 20px;
}
.about-image::after {
    content: '';
    position: absolute;
    bottom: -10px; right: -10px;
    width: 100px; height: 100px;
    border-bottom: 4px solid var(--secondary);
    border-right: 4px solid var(--secondary);
    border-radius: 20px;
}
.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(13,110,253,0.1);
    padding: 8px 20px;
    border-radius: 50px;
    color: var(--primary);
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 20px;
}

/* Stats */
.stats-section {
    background: var(--dark);
    padding: 60px 0;
    color: #fff;
}
.stat-item { text-align: center; }
.stat-number {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-label { font-size: 16px; opacity: 0.8; margin-top: 5px; }

/* Services Page */
.service-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #0d6efd 100%);
    padding: 80px 0 60px;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.service-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.03)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    pointer-events: none;
}
.service-hero::after {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 500px; height: 500px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
    pointer-events: none;
}
.service-hero h1 { font-size: 42px; font-weight: 800; line-height: 1.2; }
.service-hero p { font-size: 18px; opacity: 0.9; max-width: 600px; }
.service-hero .breadcrumb-custom { background: rgba(255,255,255,0.1); padding: 10px 20px; border-radius: 50px; display: inline-flex; }
.service-hero .breadcrumb-custom a, .service-hero .breadcrumb-custom .active { color: rgba(255,255,255,0.8); }
.service-hero .breadcrumb-custom .active { color: #fff; }
.service-hero img { border: 3px solid rgba(255,255,255,0.15); max-height: 300px; width: 100%; object-fit: cover; }

/* Service Detail */
.service-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin: 30px 0 15px;
}
.service-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 25px 0 12px;
}
.service-content p {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 15px;
}
.service-content ul, .service-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
}
.service-content li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 8px;
}
.service-content ul li::marker { color: var(--primary); }

/* FAQ */
.faq-section { background: var(--light); }
.accordion-item {
    border: none;
    margin-bottom: 12px;
    border-radius: 12px !important;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.accordion-button {
    font-weight: 600;
    font-size: 16px;
    padding: 20px 25px;
    color: var(--dark);
}
.accordion-button:not(.collapsed) {
    background: var(--gradient);
    color: #fff;
}
.accordion-button::after { transition: 0.3s; }
.accordion-button:not(.collapsed)::after { filter: brightness(0) invert(1); }
.accordion-body { padding: 20px 25px; font-size: 15px; line-height: 1.8; color: #555; }

/* Sidebar Form */
.sidebar-form {
    background: var(--gradient);
    padding: 35px;
    border-radius: 20px;
    color: #fff;
    position: sticky;
    top: 100px;
    box-shadow: 0 10px 40px rgba(13,110,253,0.3);
    border: 1px solid rgba(255,255,255,0.1);
}
.sidebar-form h4 { font-weight: 700; margin-bottom: 10px; font-size: 22px; }
.sidebar-form h4 i { margin-right: 8px; }
.sidebar-form p { font-size: 14px; opacity: 0.9; margin-bottom: 20px; }
.sidebar-form .form-control {
    border-radius: 12px;
    padding: 14px 16px;
    border: none;
    margin-bottom: 12px;
    font-size: 14px;
    background: rgba(255,255,255,0.95);
    transition: 0.3s;
}
.sidebar-form .form-control:focus {
    box-shadow: 0 0 0 4px rgba(255,255,255,0.3);
    background: #fff;
}
.sidebar-form select.form-control { appearance: auto; }
.sidebar-form textarea { min-height: 80px; resize: vertical; }
.sidebar-form .btn-light {
    width: 100%;
    padding: 14px;
    font-weight: 600;
    border-radius: 12px;
    font-size: 16px;
    transition: 0.3s;
}
.sidebar-form .btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}
.sidebar-form .btn-whatsapp {
    font-size: 15px;
    padding: 12px;
    border-radius: 12px;
}

/* Gallery */
.gallery-grid { position: relative; }
.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: 0.5s;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(13,110,253,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 40px; color: #fff; }

/* Blog */
.blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: 0.4s;
    height: 100%;
}
.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}
.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.blog-card-body { padding: 25px; }
.blog-card-body .blog-date {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 10px;
    display: block;
}
.blog-card-body h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}
.blog-card-body h5 a {
    color: var(--dark);
    text-decoration: none;
    transition: 0.3s;
}
.blog-card-body h5 a:hover { color: var(--primary); }
.blog-card-body p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 15px;
}
.blog-card-body .btn-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

/* Blog Detail */
.blog-detail-header {
    background: var(--dark);
    padding: 80px 0;
    color: #fff;
}
.blog-detail-content { padding: 60px 0; }
.blog-detail-content h2 { font-size: 28px; font-weight: 700; margin-top: 30px; }
.blog-detail-content h3 { font-size: 22px; font-weight: 600; margin-top: 25px; }
.blog-detail-content p { font-size: 16px; line-height: 1.9; margin-bottom: 15px; color: #555; }
.blog-detail-content img { max-width: 100%; border-radius: 15px; margin: 20px 0; }

/* Contact Page */
.contact-section { padding: 80px 0; }
.contact-info-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: 0.4s;
    height: 100%;
}
.contact-info-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.contact-info-card .icon {
    width: 70px; height: 70px;
    background: var(--gradient);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 30px;
    color: #fff;
}
.contact-info-card h5 { font-weight: 600; margin-bottom: 10px; }
.contact-info-card p { color: var(--gray); margin-bottom: 5px; }
.contact-info-card a { color: var(--dark); text-decoration: none; }
.contact-info-card a:hover { color: var(--primary); }
.contact-form-wrapper {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
}
.contact-form-wrapper .form-control {
    padding: 12px 15px;
    border-radius: 10px;
    border: 2px solid #e9ecef;
    transition: 0.3s;
}
.contact-form-wrapper .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(13,110,253,0.1);
}
.map-container { border-radius: 20px; overflow: hidden; }

/* Footer */
.footer {
    background: var(--dark);
    color: #fff;
    padding: 60px 0 0;
}
.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}
.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 40px; height: 2px;
    background: var(--gradient);
}
.footer-desc { color: rgba(255,255,255,0.7); font-size: 14px; line-height: 1.8; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: #fff;
    transition: 0.3s;
    text-decoration: none;
}
.footer-social a:hover { background: var(--gradient); transform: translateY(-3px); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.footer-links a::before { content: '›'; font-size: 18px; }
.footer-links a:hover { color: #fff; padding-left: 5px; }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.footer-contact li i { color: var(--primary); margin-top: 3px; }
.footer-contact a { color: rgba(255,255,255,0.7); text-decoration: none; }
.footer-contact a:hover { color: #fff; }
.footer-bottom {
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 55px; height: 55px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 5px 20px rgba(37,211,102,0.4);
    z-index: 999;
    transition: 0.3s;
    text-decoration: none;
    animation: pulse-whatsapp 2s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
    box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}
@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
    70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* Call Float */
.call-float {
    position: fixed;
    bottom: 165px;
    right: 25px;
    width: 55px; height: 55px;
    background: var(--gradient);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 5px 20px rgba(13,110,253,0.4);
    z-index: 999;
    transition: 0.3s;
    text-decoration: none;
    animation: pulse-call 2s infinite;
    animation-delay: 1s;
}
.call-float:hover {
    transform: scale(1.1);
    color: #fff;
    box-shadow: 0 8px 30px rgba(13,110,253,0.5);
}
@keyframes pulse-call {
    0% { box-shadow: 0 0 0 0 rgba(13,110,253,0.6); }
    70% { box-shadow: 0 0 0 15px rgba(13,110,253,0); }
    100% { box-shadow: 0 0 0 0 rgba(13,110,253,0); }
}

/* Scroll Top */
.scroll-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 45px; height: 45px;
    background: var(--gradient);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    text-decoration: none;
}
.scroll-top.show { opacity: 1; visibility: visible; }
.scroll-top:hover { color: #fff; transform: translateY(-3px); }

/* Testimonials */
.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow);
    position: relative;
}
.testimonial-card::before {
    content: '"';
    font-size: 80px;
    position: absolute;
    top: 10px; right: 20px;
    color: rgba(13,110,253,0.1);
    font-weight: 800;
}
.testimonial-card p { font-size: 15px; line-height: 1.8; color: #555; }
.testimonial-card .name { font-weight: 600; margin-top: 15px; }
.testimonial-card .location { font-size: 13px; color: var(--gray); }

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #0d6efd 100%);
    padding: 80px 0;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    top: -50%; left: -20%;
    width: 400px; height: 400px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
    pointer-events: none;
}
.page-header::after {
    content: '';
    position: absolute;
    bottom: -30%; right: -10%;
    width: 300px; height: 300px;
    background: rgba(255,255,255,0.02);
    border-radius: 50%;
    pointer-events: none;
}
.page-header h1 { font-size: 42px; font-weight: 800; position: relative; z-index: 1; }
.page-header p { font-size: 18px; opacity: 0.9; position: relative; z-index: 1; }
.breadcrumb-custom { justify-content: center; position: relative; z-index: 1; }
.breadcrumb-custom a { color: rgba(255,255,255,0.7); text-decoration: none; }
.breadcrumb-custom a:hover { color: #fff; }
.breadcrumb-custom .active { color: var(--primary); }

/* Service Area Cards */
.area-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: 0.4s;
    height: 100%;
}
.area-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); }
.area-card .icon {
    width: 60px; height: 60px;
    background: var(--gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 26px;
    color: #fff;
}
.area-card h5 { font-weight: 600; }
.area-card p { color: var(--gray); font-size: 14px; }

/* Process Steps */
.process-step {
    text-align: center;
    position: relative;
}
.process-step .step-number {
    width: 60px; height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}
.process-step h5 { font-weight: 600; margin-bottom: 8px; }
.process-step p { font-size: 14px; color: var(--gray); }

/* Why Choose Us */
.why-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: 0.4s;
    height: 100%;
}
.why-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); }
.why-card .icon {
    width: 70px; height: 70px;
    background: rgba(13,110,253,0.1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 30px;
    color: var(--primary);
}
.why-card h5 { font-weight: 600; }
.why-card p { font-size: 14px; color: var(--gray); line-height: 1.7; }

/* Brand Logos */
.brand-logos {
    padding: 30px 0;
    background: var(--light);
}
.brand-logos img {
    height: 40px;
    opacity: 0.5;
    transition: 0.3s;
    filter: grayscale(100%);
}
.brand-logos img:hover { opacity: 1; filter: grayscale(0); }

/* Page Content */
.page-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin: 30px 0 15px;
}
.page-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 25px 0 12px;
}
.page-content p {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 15px;
}
.page-content ul, .page-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
}
.page-content li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 8px;
}

/* CTA Banner */
.cta-banner {
    background: var(--gradient);
    padding: 60px 0;
    color: #fff;
    text-align: center;
}
.cta-banner h2 { font-size: 36px; font-weight: 700; }
.cta-banner p { font-size: 18px; opacity: 0.9; }

/* Preloader (optional, light) */
.premium-divider {
    width: 60px; height: 3px;
    background: var(--gradient);
    margin: 20px auto;
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-slide { min-height: 450px; }
    .hero-content h1 { font-size: 32px; }
    .hero-content p { font-size: 16px; }
    .section-title { font-size: 28px; }
    .service-hero h1 { font-size: 32px; }
    .page-header h1 { font-size: 32px; }
    .stat-number { font-size: 36px; }
    .footer { padding: 40px 0 0; }
}

@media (max-width: 767px) {
    .hero-slide { min-height: 380px; }
    .hero-content h1 { font-size: 26px; }
    .hero-content p { font-size: 14px; }
    .section-padding { padding: 50px 0; }
    .section-title { font-size: 24px; }
    .service-hero { padding: 50px 0; }
    .service-hero h1 { font-size: 26px; }
    .page-header { padding: 50px 0; }
    .page-header h1 { font-size: 26px; }
    .emergency-banner h2 { font-size: 24px; }
    .whatsapp-float, .call-float { width: 48px; height: 48px; font-size: 24px; right: 15px; }
    .call-float { bottom: 145px; }
    .whatsapp-float { bottom: 90px; }
    .about-image img { height: 300px; }
    .contact-form-wrapper { padding: 25px; }
    .glass-card { padding: 20px; }
}

@media (max-width: 575px) {
    .hero-slide { min-height: 320px; }
    .hero-content h1 { font-size: 22px; }
    .brand-text { display: none !important; }
    .navbar-brand img { height: 40px; }
}

/* AOS Overrides */
[data-aos] { pointer-events: none; }
.aos-animate { pointer-events: auto; }

/* Alert Styles */
.alert-success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    border-radius: 10px;
    padding: 15px;
}
.alert-danger {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    border-radius: 10px;
    padding: 15px;
}

/* Loading Lazy */
.lazy { opacity: 0; transition: opacity 0.3s; }
.lazy.loaded { opacity: 1; }
