/* ====== RESET & BASE ====== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    padding-top: 76px;
    background: #f5f7fa;
}

:root {
    --primary: #0A7A9C;
    --primary-light: #1A9BBF;
    --secondary: #34C3E6;
    --accent: #FF8C42;
    --accent-light: #FFA75E;
    --dark: #cb640ac2;
    --dark-light: #14170b;
    --light: #F0F4F8;
    --white: #FFFFFF;
    --gradient: linear-gradient(135deg, #0A7A9C, #34C3E6);
    --gradient-soft: linear-gradient(135deg, #e6f3f8, #d4eaf2);
    --shadow: 0 10px 40px rgba(10, 122, 156, 0.12);
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ====== FLOATING BUTTONS ====== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    z-index: 999;
    box-shadow: 0 4px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
}

.call-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background:  linear-gradient(135deg, #0A7A9C, #34C3E6);
    color: #fff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    z-index: 999;
    box-shadow: 0 4px 25px rgba(255, 140, 66, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite 1s;
}

.call-float:hover {
    transform: scale(1.1);
    color: #fff;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ====== NAVBAR ====== */
#mainNav {
    background: #cb640ac2;
    backdrop-filter: blur(12px);
    padding: 14px 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.12);
}

#mainNav .navbar-brand {
    font-weight: 800;
    font-size: 1.6rem;
    color: #fff;
}

#mainNav .navbar-brand i {
    color: var(--secondary);
}

#mainNav .nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 1rem;
    padding: 10px 20px;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

#mainNav .nav-link:hover,
#mainNav .nav-link.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 8px;
}

.btn-call {
    /* background: var(--accent); */
    background:  linear-gradient(135deg, #0A7A9C, #34C3E6);
    color: #fff;
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin-left: 10px;
    border: 2px solid transparent;
}

.btn-call:hover {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.dropdown-menu {
    background: rgba(26, 42, 58, 0.98);
    border: none;
    border-radius: 12px;
    padding: 8px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.dropdown-item {
    color: rgba(255, 255, 255, 0.85);
    border-radius: 8px;
    padding: 10px 18px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.dropdown-item:hover {
    background: var(--primary);
    color: #fff;
}

/* ====== HERO SECTION ====== */
.hero-section {
    background:linear-gradient(rgba(0, 0, 0, 0.4),rgba(0, 0, 0, 0.433)), url(../assets/imgs/slide1.jpg);
    background-attachment: fixed;
     background-size: cover;      /* image fit karega but crop ho sakta hai */
  background-position: right;
  background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    /* padding: 80px 0; */
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(10, 122, 156, 0.07), transparent 70%);
    border-radius: 50%;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(52, 195, 230, 0.06), transparent 70%);
    border-radius: 50%;
}

.hero-badge {
    background: rgba(10, 122, 156, 0.12);
    color: var(--primary);
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
    border: 1px solid rgba(10, 122, 156, 0.15);
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-title span {
    color: var(--primary);
}

.hero-text {
    color: var(--dark-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    padding: 14px 38px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
    background: #1da851;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.35);
}

.navbar-brand img{
    width: 150px;
    height: 100px;
}

/* Hero Form */
.hero-form {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    padding: 32px 30px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 60px rgba(10, 122, 156, 0.08);
    max-width: 100%;
    transition: all 0.3s ease;
}

.hero-form:hover {
    box-shadow: 0 25px 70px rgba(10, 122, 156, 0.12);
}

.hero-form h3 {
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.3rem;
}

.hero-form .form-control,
.hero-form .form-select {
    background: #f8fafc;
    border: 1px solid #e8edf2;
    color: var(--dark);
    padding: 10px 16px;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.hero-form .form-control:focus,
.hero-form .form-select:focus {
    background: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(10, 122, 156, 0.1);
    color: var(--dark);
}

.hero-form .form-control::placeholder {
    color: #9aabba;
}

.hero-form .form-select option {
    color: var(--dark);
}

.btn-submit {
    background: var(--gradient);
    color: #fff;
    padding: 12px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(10, 122, 156, 0.2);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(10, 122, 156, 0.3);
    color: #fff;
}

/* ====== SECTION COMMON STYLES ====== */
.section-badge {
    background: rgba(10, 122, 156, 0.08);
    color: var(--primary);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 15px;
}

.section-subtitle {
    color: #7a8a9a;
    font-size: 1.1rem;
}

/* ====== SERVICES SECTION ====== */
.services-section {
    background: #fff;
    padding: 80px 0;
}

.service-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid #f0f4f8;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(10, 122, 156, 0.08);
}

.service-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-content {
    padding: 25px;
}

.service-content h4 {
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.service-content p {
    color: #7a8a9a;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.btn-readmore {
    color: var(--primary);
    font-weight: 600;
    padding: 0;
    transition: all 0.3s ease;
}

.btn-readmore:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

/* ====== TESTIMONIALS ====== */
.testimonials-section {
    /* background: url(../assets/imgs/changing-the-filter-of-the-air-conditioner.jpg); */
     background: linear-gradient(rgba(0, 0, 0, 0.4),rgba(0, 0, 0, 0.433)),
  url("../assets/imgs/changing-the-filter-of-the-air-conditioner.jpg") center/cover no-repeat;
    background-position: center center;
    background-repeat: no-repeat;
background-attachment: fixed;
    padding: 80px 0;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(10, 122, 156, 0.06);
}

.testimonial-img i {
    font-size: 70px;
    color: var(--primary);
    opacity: 0.15;
}

.testimonial-card h5 {
    font-weight: 700;
    margin: 15px 0 5px;
    color: var(--dark);
}

.testimonial-card .stars {
    color: #FFB800;
    margin-bottom: 12px;
}

.testimonial-card p {
    color: #7a8a9a;
    font-style: italic;
    line-height: 1.7;
}

.carousel-control-prev,
.carousel-control-next {
    background: var(--primary);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.carousel-control-prev {
    left: -60px;
}

.carousel-control-next {
    right: -60px;
}

/* ====== AC TYPES ====== */
.actypes-section {
    background: #fff;
    
    padding: 80px 0;
}

.atype-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    transition: all 0.4s ease;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0f4f8;
}

.atype-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(10, 122, 156, 0.08);
}

.atype-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.atype-card h4 {
    font-weight: 700;
    padding: 20px 20px 10px;
    color: var(--dark);
}

.atype-card p {
    color: #7a8a9a;
    font-size: 0.95rem;
    line-height: 1.7;
    padding: 0 20px 20px;
}

/* ====== WHY CHOOSE US ====== */
.whychoose-section {
    background: var(--light);
    padding: 80px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.4),rgba(0, 0, 0, 0.433)),
  url("../assets/imgs/selective-focus-of-repairman-cleaning-air-conditioner-with-brush.jpg") center/cover no-repeat;
    background-position: center center;
    background-repeat: no-repeat;
background-attachment: fixed;
}

.whychoose-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 20px;
    transition: all 0.4s ease;
    height: 100%;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
}

.whychoose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(10, 122, 156, 0.06);
}

.whychoose-icon {
    font-size: 45px;
    color: var(--primary);
    margin-bottom: 15px;
    background: rgba(10, 122, 156, 0.08);
    padding: 15px;
    border-radius: 16px;
    display: inline-block;
}

.whychoose-card h4 {
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}

.whychoose-card p {
    color: #7a8a9a;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ====== AREAS SECTION ====== */
.areas-section {
    background: #fff;
     

    padding: 80px 0;
}

.areas-section p {
    font-size: 1rem;
    color: var(--dark);
    font-weight: 500;
    padding: 8px 0;
    border-bottom: 1px solid #f0f4f8;
}

.areas-section p i {
    color: var(--primary);
}

/* ====== FOOTER ====== */
.footer-section {
    background: var(--dark);
    
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 30px;
    text-align: center;
}

.footer-buttons .footer-btn {
    background: rgba(255, 255, 255, 0.06);
    padding: 20px 25px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: default;
}

.footer-buttons .footer-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.footer-btn i {
    font-size: 32px;
    color: var(--secondary);
    min-width: 40px;
}

.footer-btn h5 {
    color: #fff;
    font-weight: 600;
    margin: 0;
    font-size: 1rem;
}

.footer-btn p {
    margin: 0;
    font-size: 0.95rem;
}

.footer-brand {
    color: #fff;
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-brand i {
    color: var(--secondary);
}

.footer-description {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

.footer-section h5 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-bottom: 12px;
}

.footer-contact li i {
    color: var(--secondary);
    width: 28px;
    font-size: 1.1rem;
}

.footer-contact li a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-contact li a:hover {
    color: var(--secondary);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.06);
    margin: 40px 0 20px;
}

/* ====== RESPONSIVE ====== */

/* Tablet & Mobile - Center text */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.4rem;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-form {
        margin-top: 40px;
        padding: 25px;
    }

    .carousel-control-prev {
        left: -20px;
    }
    .carousel-control-next {
        right: -20px;
    }
    
    #mainNav .nav-link {
        padding: 8px 15px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-section {
        padding: 60px 0;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-badge {
        margin-left: auto;
        margin-right: auto;
        display: inline-block;
    }
    
    .btn-whatsapp {
        display: inline-block;
        margin: 0 auto;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-form {
        padding: 20px;
    }
    
    .hero-form .form-control,
    .hero-form .form-select {
        padding: 8px 14px;
        font-size: 0.85rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
        right: 20px;
    }

    .call-float {
        width: 45px;
        height: 45px;
        font-size: 20px;
        bottom: 80px;
        right: 20px;
    }

    .footer-buttons .footer-btn {
        padding: 15px 20px;
    }
    
    .footer-description {
        font-size: 0.95rem;
    }
    
    .footer-contact li {
        font-size: 0.95rem;
    }

    .testimonial-card {
        margin-bottom: 0;
    }
    
    #mainNav .nav-link {
        font-size: 0.95rem;
        padding: 6px 12px;
        text-align: center;
    }
    
    .btn-call {
        padding: 8px 20px;
        font-size: 0.9rem;
        margin-left: 0;
        margin-top: 5px;
        display: inline-block;
        width: auto;
    }
    
    /* Center all section text on mobile */
    .services-section .section-title,
    .services-section .section-subtitle,
    .testimonials-section .section-title,
    .testimonials-section .section-subtitle,
    .actypes-section .section-title,
    .actypes-section .section-subtitle,
    .whychoose-section .section-title,
    .whychoose-section .section-subtitle,
    .areas-section .section-title,
    .areas-section .section-subtitle {
        text-align: center;
    }
    
    .service-card {
        text-align: center;
    }
    
    .atype-card {
        text-align: center;
    }
    
    .whychoose-card {
        text-align: center;
    }
    
    .areas-section p {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .hero-text {
        font-size: 0.95rem;
    }

    .btn-whatsapp {
        padding: 12px 25px;
        font-size: 0.95rem;
    }

    .service-card .service-img {
        height: 180px;
    }
    
    .atype-img {
        height: 160px;
    }
    
    /* Testimonials - show 1 card on mobile */
    .testimonial-card {
        margin: 0 5px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 35px;
        height: 35px;
    }
    
    .carousel-control-prev {
        left: -10px;
    }
    .carousel-control-next {
        right: -10px;
    }
}


/* About page section css */
/* ====== ABOUT HERO ====== */
/* ====== ABOUT PAGE STYLES ====== */

/* About Hero */
.about-hero-section {
    background: var(--gradient-soft);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.about-hero-section::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(10, 122, 156, 0.06), transparent 70%);
    border-radius: 50%;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 15px;
}

.about-hero-text {
    font-size: 1.2rem;
    color: var(--dark-light);
    max-width: 600px;
    margin: 0 auto;
}

.min-vh-50 {
    min-height: 50vh;
}

/* Story Section */
.story-section {
    background: #fff;
    padding: 80px 0;
    width: 100%;
    overflow: hidden;
}

.story-text {
    color: var(--dark-light);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 20px;
}

.story-icon-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--light);
    padding: 15px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.story-icon-box:hover {
    background: rgba(10, 122, 156, 0.06);
    transform: translateY(-3px);
}

.story-icon-box i {
    font-size: 30px;
    color: var(--primary);
}

.story-icon-box h5 {
    font-weight: 700;
    margin: 0;
    color: var(--dark);
}

.story-icon-box p {
    margin: 0;
    color: #7a8a9a;
    font-size: 0.9rem;
}

.story-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(10, 122, 156, 0.1);
}

.story-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.story-image-wrapper:hover .story-image {
    transform: scale(1.03);
}

.story-experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--gradient);
    color: #fff;
    padding: 15px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(10, 122, 156, 0.3);
}

.story-experience-badge i {
    font-size: 24px;
}

/* Mission Section */
.mission-section {
    background: var(--light);
    padding: 80px 0;
    width: 100%;
    overflow: hidden;
}

.mission-card {
    background: #fff;
    padding: 40px 35px;
    border-radius: 20px;
    text-align: center;
    height: 100%;
    transition: all 0.4s ease;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(10, 122, 156, 0.08);
}

.mission-icon {
    font-size: 50px;
    color: var(--primary);
    margin-bottom: 20px;
    background: rgba(10, 122, 156, 0.08);
    padding: 18px;
    border-radius: 16px;
    display: inline-block;
}

.mission-card h3 {
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.mission-card p {
    color: #7a8a9a;
    line-height: 1.8;
    font-size: 1rem;
}

/* About Why Choose */
.about-whychoose {
    background: #fff;
    padding: 80px 0;
    width: 100%;
    overflow: hidden;
}

.about-whychoose-card {
    text-align: center;
    padding: 35px 25px;
    border-radius: 20px;
    background: var(--light);
    height: 100%;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.about-whychoose-card:hover {
    background: #fff;
    border-color: rgba(10, 122, 156, 0.1);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(10, 122, 156, 0.06);
}

.about-whychoose-icon {
    width: 70px;
    height: 70px;
    background: rgba(10, 122, 156, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 32px;
    color: var(--primary);
    transition: all 0.3s ease;
}

.about-whychoose-card:hover .about-whychoose-icon {
    background: var(--primary);
    color: #fff;
}

.about-whychoose-card h4 {
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.about-whychoose-card p {
    color: #7a8a9a;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Team Section */
.team-section {
    background: var(--light);
    padding: 80px 0;
    width: 100%;
    overflow: hidden;
}

.team-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(10, 122, 156, 0.08);
}

.team-img i {
    font-size: 80px;
    color: var(--primary);
    opacity: 0.15;
    margin-bottom: 10px;
}

.team-card h4 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 5px;
}

.team-role {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.team-card p {
    color: #7a8a9a;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.team-social a {
    display: inline-block;
    margin: 0 8px;
    width: 38px;
    height: 38px;
    background: var(--light);
    border-radius: 50%;
    line-height: 38px;
    color: var(--dark);
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--primary);
    color: #fff;
}

/* Stats Section */
.stats-section {
    background: var(--gradient);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

.stat-card {
    color: #fff;
    padding: 20px;
}

.stat-icon {
    font-size: 40px;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 15px;
}

.stat-card h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-card p {
    font-size: 1rem;
    opacity: 0.8;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    background: #fff;
    width: 100%;
    overflow: hidden;
}

.cta-box {
    background: var(--gradient-soft);
    padding: 50px 60px;
    border-radius: 24px;
    border: 1px solid rgba(10, 122, 156, 0.05);
}

.cta-box h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
}

.cta-box h2 span {
    color: var(--primary);
}

.cta-box p {
    color: var(--dark-light);
    font-size: 1.05rem;
    margin-bottom: 0;
}

.btn-cta {
    background: var(--gradient);
    color: #fff;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-cta:hover {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
}

/* ====== ABOUT PAGE RESPONSIVE ====== */
@media (max-width: 991px) {
    .about-hero-title {
        font-size: 2.8rem;
    }
    .cta-box {
        padding: 35px 30px;
        text-align: center;
    }
    .cta-box .text-lg-end {
        text-align: center !important;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .about-hero-title {
        font-size: 2.2rem;
    }
    .about-hero-text {
        font-size: 1rem;
    }
    .story-image {
        height: 300px;
    }
    .story-experience-badge {
        bottom: 15px;
        right: 15px;
        padding: 10px 18px;
        font-size: 0.85rem;
    }
    .mission-card {
        padding: 30px 20px;
    }
    .stat-card h2 {
        font-size: 2.2rem;
    }
    .cta-box h2 {
        font-size: 1.6rem;
    }
    .cta-box {
        padding: 30px 20px;
    }
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    .row {
        margin-left: 0;
        margin-right: 0;
    }
    .col-lg-3,
    .col-lg-4,
    .col-lg-6,
    .col-md-6 {
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media (max-width: 576px) {
    .about-hero-title {
        font-size: 1.8rem;
    }
    .about-hero-section {
        padding: 100px 0 60px;
    }
    .story-icon-box {
        padding: 12px 16px;
    }
    .story-icon-box i {
        font-size: 24px;
    }
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }
    .col-lg-3,
    .col-lg-4,
    .col-lg-6,
    .col-md-6 {
        padding-left: 8px;
        padding-right: 8px;
    }
}

/* ====== CONTACT PAGE STYLES ====== */

/* Contact Hero */
.contact-hero-section {
    background: var(--gradient-soft);
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.contact-hero-section::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(10, 122, 156, 0.06), transparent 70%);
    border-radius: 50%;
}

.contact-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 15px;
}

.contact-hero-text {
    font-size: 1.2rem;
    color: var(--dark-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Section */
.contact-section {
    background: #fff;
    padding: 60px 0 80px;
    width: 100%;
    overflow: hidden;
}

.contact-info-card {
    background: var(--light);
    padding: 30px 25px;
    border-radius: 16px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.contact-info-card:hover {
    background: #fff;
    border-color: rgba(10, 122, 156, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(10, 122, 156, 0.06);
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: rgba(10, 122, 156, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 28px;
    color: var(--primary);
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-info-icon {
    background: var(--primary);
    color: #fff;
}

.contact-info-card h5 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.contact-info-card p {
    color: #7a8a9a;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.contact-info-card a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-info-card a:hover {
    color: var(--secondary);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--light);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.04);
}

.contact-form-wrapper h3 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 25px;
}

.contact-form-wrapper .form-control {
    background: #fff;
    border: 1px solid #e8edf2;
    padding: 12px 18px;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.contact-form-wrapper .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(10, 122, 156, 0.08);
}

.contact-form-wrapper textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.btn-submit-contact {
    background: var(--gradient);
    color: #fff;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(10, 122, 156, 0.2);
}

.btn-submit-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(10, 122, 156, 0.3);
    color: #fff;
}

/* Map Section */
.map-section {
    padding: 0;
    width: 100%;
    overflow: hidden;
}

.map-section iframe {
    width: 100%;
    height: 400px;
    border: 0;
    display: block;
}

/* Working Hours */
.hours-section {
    background: var(--light);
    padding: 60px 0;
    width: 100%;
    overflow: hidden;
}

.hours-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
}

.hours-card i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 15px;
}

.hours-card h4 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f0f4f8;
    color: var(--dark-light);
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list li span {
    font-weight: 600;
}

.hours-list li .day {
    color: #7a8a9a;
}

.hours-list li .time {
    color: var(--dark);
}

/* ====== CONTACT PAGE RESPONSIVE ====== */
@media (max-width: 991px) {
    .contact-hero-title {
        font-size: 2.8rem;
    }
    .contact-form-wrapper {
        padding: 30px;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .contact-hero-title {
        font-size: 2.2rem;
    }
    .contact-hero-text {
        font-size: 1rem;
    }
    .contact-hero-section {
        padding: 100px 0 40px;
    }
    .contact-form-wrapper {
        padding: 20px;
    }
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    .row {
        margin-left: 0;
        margin-right: 0;
    }
    .col-lg-3,
    .col-lg-4,
    .col-lg-6,
    .col-md-6 {
        padding-left: 10px;
        padding-right: 10px;
    }
    .contact-info-card {
        padding: 20px 15px;
    }
    .hours-card {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .contact-hero-title {
        font-size: 1.8rem;
    }
    .contact-hero-section {
        padding: 80px 0 30px;
    }
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }
    .col-lg-3,
    .col-lg-4,
    .col-lg-6,
    .col-md-6 {
        padding-left: 8px;
        padding-right: 8px;
    }
    .contact-form-wrapper {
        padding: 15px;
    }
    .btn-submit-contact {
        width: 100%;
        text-align: center;
        padding: 12px;
    }
    .hours-list li {
        font-size: 0.9rem;
    }
}

/* ====== PRICING PAGE STYLES ====== */

/* Pricing Hero */
.pricing-hero {
    background: var(--gradient-soft);
    padding: 80px 0 50px;
    text-align: center;
}

.pricing-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
}

.pricing-hero p {
    color: var(--dark-light);
    font-size: 1.1rem;
}

/* Offer Banner */
.offer-banner {
    background: var(--gradient);
    padding: 35px 0;
    text-align: center;
    color: #fff;
}

.offer-banner h2 {
    font-weight: 800;
    font-size: 2rem;
}

.offer-banner p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 15px;
}

.offer-banner .btn-offer {
    background: #fff;
    color: var(--primary);
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.offer-banner .btn-offer:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    color: var(--primary);
}

/* Price Section */
.price-section {
    padding: 50px 0;
}

.price-section:nth-child(even) {
    background: #fff;
}

.price-section:nth-child(odd) {
    background: #f8f9fa;
}

.price-heading {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 25px;
    text-align: center;
    letter-spacing: 0.5px;
}

/* Price Block */
.price-block {
    max-width: 700px;
    margin: 0 auto 25px;
}

.price-block h4 {
    font-weight: 700;
    color: var(--dark);
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.price-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.price-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px dashed #e8edf2;
    color: var(--dark);
    font-weight: 500;
    font-size: 0.95rem;
}

.price-list li:last-child {
    border-bottom: none;
}

.price-list li span {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.95rem;
}

/* Services Included */
.services-included {
    max-width: 700px;
    margin: 30px auto 0;
    background: #f8f9fa;
    padding: 20px 25px;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

.services-included h5 {
    font-weight: 700;
    color: var(--dark);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.services-included ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px 20px;
}

.services-included ul li {
    color: #6c7a88;
    font-size: 0.9rem;
    padding: 4px 0;
}

.services-included ul li i {
    color: var(--secondary);
    margin-right: 8px;
    font-size: 0.8rem;
}

/* Offer Cards */
.offer-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 25px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    height: 100%;
    border: 2px solid var(--accent);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(10, 122, 156, 0.1);
}

.offer-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent);
    color: #fff;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
}

.free-gas-badge {
    background: rgba(255, 140, 66, 0.15);
    color: var(--accent);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-block;
    border: 1px solid rgba(255, 140, 66, 0.2);
    margin-bottom: 10px;
}

.offer-card h3 {
    font-weight: 700;
    color: var(--dark);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.offer-card p {
    color: #7a8a9a;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.offer-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 15px;
}

.offer-price span {
    font-size: 1rem;
    font-weight: 400;
    color: #7a8a9a;
}

.offer-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.offer-card ul li {
    padding: 5px 0;
    color: #6c7a88;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.offer-card ul li i {
    color: var(--secondary);
    width: 18px;
    font-size: 0.8rem;
}

/* Free Items Box */
.free-items-box {
    max-width: 700px;
    margin: 30px auto 0;
    background: var(--gradient-soft);
    padding: 20px 25px;
    border-radius: 12px;
    text-align: center;
}

.free-items-box h5 {
    font-weight: 700;
    color: var(--dark);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.free-items-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.free-items-list span {
    background: #fff;
    color: var(--dark);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.free-items-list span i {
    color: var(--secondary);
    margin-right: 6px;
}

/* Inspection Note */
.inspection-note {
    font-size: 1rem;
    color: var(--dark);
    background: #fff3e0;
    padding: 12px 20px;
    border-radius: 8px;
    border-left: 4px solid var(--accent);
}

/* CTA Section */
.cta-section {
    background: var(--dark);
    padding: 50px 0;
    color: #fff;
}

.cta-section h2 {
    font-weight: 800;
    font-size: 2rem;
    margin-bottom: 10px;
}

.cta-section p {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 20px;
}

.btn-cta {
    background: var(--accent);
    color: #fff;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-cta:hover {
    background: #e07a2e;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(255, 140, 66, 0.3);
}

/* Book Button */
.btn-book {
    background: var(--gradient);
    color: #fff;
    padding: 10px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
}

.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(10, 122, 156, 0.3);
    color: #fff;
}

/* ====== PRICING RESPONSIVE ====== */
@media (max-width: 768px) {
    .pricing-hero h1 {
        font-size: 2rem;
    }
    
    .pricing-hero {
        padding: 60px 0 40px;
    }
    
    .price-heading {
        font-size: 1.3rem;
    }
    
    .price-list li {
        font-size: 0.85rem;
        padding: 6px 0;
        flex-wrap: wrap;
        gap: 5px;
    }
    
    .price-list li span {
        font-size: 0.85rem;
    }
    
    .services-included ul {
        grid-template-columns: 1fr;
    }
    
    .offer-price {
        font-size: 1.6rem;
    }
    
    .offer-card {
        padding: 25px 20px;
    }
    
    .offer-banner h2 {
        font-size: 1.5rem;
    }
    
    .cta-section h2 {
        font-size: 1.5rem;
    }
    
    .btn-cta {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .free-items-list span {
        font-size: 0.75rem;
        padding: 4px 14px;
    }
}

@media (max-width: 576px) {
    .pricing-hero h1 {
        font-size: 1.6rem;
    }
    
    .pricing-hero p {
        font-size: 0.95rem;
    }
    
    .price-heading {
        font-size: 1.1rem;
    }
    
    .price-block h4 {
        font-size: 0.95rem;
    }
    
    .price-list li {
        font-size: 0.8rem;
    }
    
    .price-list li span {
        font-size: 0.8rem;
    }
    
    .offer-card h3 {
        font-size: 1rem;
    }
    
    .offer-price {
        font-size: 1.4rem;
    }
    
    .offer-banner h2 {
        font-size: 1.2rem;
    }
    
    .offer-banner p {
        font-size: 0.95rem;
    }
    
    .offer-banner .btn-offer {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .cta-section h2 {
        font-size: 1.2rem;
    }
    
    .cta-section p {
        font-size: 0.95rem;
    }
    
    .btn-cta {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}
.about-hero-section{
background:linear-gradient(rgba(0, 0, 0, 0.4),rgba(0, 0, 0, 0.433)), url(../assets/imgs/changing-the-filter-of-the-air-conditioner.jpg);
background-position: center;
background-attachment: fixed;
}
.contact-hero-section{
    background:linear-gradient(rgba(0, 0, 0, 0.4),rgba(0, 0, 0, 0.433)), url(../assets/imgs/selective-focus-of-repairman-cleaning-air-conditioner-with-brush.jpg);
background-position: center;
background-attachment: fixed;
}