
/* ===== Reset ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}


/* ===== Hero Section ===== */
.custom-hero {
   min-height: 300px;
    background-image: url("../images/ac-top.jpg.jpeg");
    margin-top: -50px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px; 

    
}

.hero-container {
    max-width: 1100px;
    margin: auto;
}

.hero-title {
    color: #ffffff;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 35px;
}

/* ===== Buttons ===== */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.primary-btn,
.outline-btn {
    padding: 12px 26px;
    font-size: 16px;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Primary */
.primary-btn {
    background: #63c0e5;
    border-radius: 50px;
    color: #fff;
}

.primary-btn:hover {
    background: #ffffff;
    color: #000;
}

/* Outline */
.outline-btn {
    background-color: #63c0e5;
    border-radius: 50px;
    color: #fff;
}

.outline-btn:hover {
    background: #fff;
    color: #000;
}

/* ===== Breadcrumb ===== */
.breadcrumb-nav {
    margin-top: 20px;
}

.breadcrumb-list {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
}

.breadcrumb-list li a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb-list li::after {
    content: "/";
    margin-left: 10px;
    color: rgba(255,255,255,0.6);
}

.breadcrumb-list li:last-child::after {
    content: "";
}

.breadcrumb-list .active {
    color: rgba(255,255,255,0.6);
}

/* ===== Main Content ===== */
.main-content {
    padding: 80px 20px;
}

.content-container {
    max-width: 1200px;
    margin: auto;
}

.content-row {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

/* Left Text */
.content-text {
    flex: 1;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0d6efd;
}

.content-text p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #555;
}

/* Checklist */
.custom-checklist {
    list-style: none;
    margin-top: 20px;
}

.custom-checklist li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.custom-checklist i {
    color: #63c0e5;
}

/* Image */
.content-image {
    flex: 1;
}

.image-box {
    border-radius: 20px;
    overflow: hidden;
    
}

.image-box img {
    width: 100%;
    display: block;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }

    .content-row {
        flex-direction: column;
    }
}

/* ========================= */
/* LOCATIONS SECTION */
/* ========================= */

.locations-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.location-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #111827;
}

/* Wrapper (Grid + Map) */
.locations-wrapper {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

/* Locations Grid */
.locations-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

/* Location Card */
.location-card {
    background: #ffffff;
    padding: 15px 18px;
    border-radius: 8px;
    font-size: 14px;
    color: #374151;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-card i {
    color: #0d6efd;
    font-size: 16px;
}

.location-card:hover {
    background-color: #63c0e5;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Map Container */
.map-container {
    flex: 1;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border: 0;
    border-radius: 10px;
}

/* ========================= */
/* RESPONSIVE DESIGN */
/* ========================= */

@media (max-width: 992px) {
    .locations-wrapper {
        flex-direction: column;
    }

    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .map-container iframe {
        min-height: 350px;
    }
}

@media (max-width: 576px) {
    .locations-grid {
        grid-template-columns: 1fr;
    }

    .location-title {
        font-size: 24px;
    }
}



/* Section Titles */
.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--primary-color);
   
}

/* ================= PACKAGES ================= */
.ac-packages-section {
    padding: 80px 20px;
    max-width: 1200px; 
     margin: 0 auto;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.package-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: 0.3s ease;
    overflow: hidden; /* IMPORTANT */
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 20px;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* FULL WIDTH IMAGE */
.package-image {
    width: 100%;
    height: 220px;          /* optional fixed height */
    object-fit: cover;      /* keeps image nice */
    display: block;
    margin-bottom: 10px;
    border-radius: 14px;
}

/* Card Content Padding */
.package-content {
    padding: 25px;
}

.card-title {
    font-weight: 700;
    margin-top: 10px;
    text-align: center;
}
.package-card .card-list {
    flex-grow: 1;   /* Push price to bottom */
}
.card-list {
    text-align: left;
    margin-top: 15px;
    padding-left: 20px;
}

.service-price {
    margin-top: 20px;
    color: #63c0e5;
    font-weight: 600;
}

/* ================= PROBLEMS ================= */

.ac-problems-section {
    padding: 80px 20px;
    background: #f8f9fa;
    max-width: 1200px;
    margin: 0 auto;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(210px, 1fr));
    gap: 25px;
}

.problem-card {
    background: #ffffff;
    padding: 50px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: 0.3s ease;
    
}

.problem-card:hover {
    transform: translateY(-6px);
}

/* Shared Icon Box */
.icon-box {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: #63c0e5;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 22px;
}


service-process-section {
    padding: 80px 20px;
    background: #f3f4f6;
    text-align: center;
}

.process-main-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
}

.process-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    /* 5 in one row */
    gap: 25px;
}

.process-card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transition: 0.3s ease;
}

.process-card:hover{
    transform: translateY(-5px);
    background-color: #63c0e5;
    color: #ffffff;
}
.process-card:hover p {
    color: #ffffff;
}
.step-number {
    width: 65px;
    height: 65px;
    margin: 0 auto 20px;
    background: #0d6efd;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
}

.process-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.process-card p {
    font-size: 14px;
    color: #6b7280;
}


@media (max-width: 992px) {
    .process-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 400px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}

/* ================= CTA SECTION ================= */

.cta-section {
    background: linear-gradient(135deg, #fd0d91, #0b5ed7);
    padding: 80px 20px;
    text-align: center;
    color: #ffffff;
}

.cta-container {
    max-width: 800px;
    margin: auto;
}

.cta-container h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.cta-container p {
    margin-bottom: 30px;
    font-size: 18px;
}

.cta-button {
    display: inline-block;
    background: #ffffff;
    color: #0d6efd;
    padding: 14px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.cta-button:hover {
    background: #000000;
    color: #ffffff;
}


/* ===================================== */
/* MOBILE RESPONSIVE DESIGN */
/* ===================================== */

@media (max-width: 992px) {

    /* Hero */
    .custom-hero {
        padding: 70px 20px;
    }

    .hero-title {
        font-size: 30px;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    /* Main Content */
    .main-content {
        padding: 60px 15px;
    }

    .section-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .content-row {
        flex-direction: column;
        gap: 30px;
    }

    .content-text p {
        font-size: 15px;
    }

    /* Locations */
    .locations-section {
        padding: 60px 15px;
    }

    .locations-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .locations-grid {
        grid-template-columns: 1fr;
    }

    .map-container iframe {
        min-height: 300px;
    }

    /* AC Packages */
    .ac-packages-section {
        padding: 60px 15px;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .package-card {
        padding: 18px;
    }

    .package-image {
        height: 180px;
    }

    .card-title {
        font-size: 18px;
    }

    .card-list li {
        font-size: 14px;
    }

    .service-price {
        font-size: 14px;
    }

    /* Problems Section */
    .ac-problems-section {
        padding: 60px 15px;
    }

    .problems-grid {
        grid-template-columns: 1fr;
    }

    .problem-card {
        padding: 30px 20px;
    }

    /* Service Process */
    .service-process-section {
        padding: 50px 15px;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .process-title {
        font-size: 14px;
    }

    /* CTA */
    .cta-section {
        padding: 60px 15px;
    }

    .cta-container h2 {
        font-size: 24px;
    }

    .cta-container p {
        font-size: 15px;
    }

    .cta-button {
        padding: 12px 20px;
        font-size: 14px;
    }

}

@media (max-width: 768px) {
    .custom-hero {
        padding:20px 15px;
        background-position: center;
    }
}

/* Extra Small Devices (below 480px) */
@media (max-width: 480px) {

    .hero-title {
        font-size: 24px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .primary-btn,
    .outline-btn {
        width: 100%;
        justify-content: center;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

}

@media (min-width: 501px) and (max-width: 768px) {

    .packages-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 cards side by side */
        gap: 20px;
    }

    .package-image {
        height: 170px;   /* reduce image height */
    }

    .package-card {
        padding: 18px;
    }

}
@media (min-width: 771px) and (max-width: 1200px) {
    .package-image {
        height: 190px;
    }

    .packages-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}