/* ===== Reset ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
}

body {
    font-family: Arial, sans-serif;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}

/* ===== Hero Section ===== */
.custom-hero {
    min-height: 300px;
    background-image: url("../images/ac-top.jpg.jpeg");
    margin-top: -70px;
    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;
}



/* ========================= */
/* LOCATIONS SECTION */
/* ========================= */

.locations-section {
    padding: 30px 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;
}




/* 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;
}

.services-section {

    padding: 20px 20px;
}

.container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.section-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.section-subtitle {
    color: #555;
    font-size: 14px;
    max-width: 700px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Card Styling */
.service-card {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.service-card h4 {
    margin-top: 15px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Hover Effect */
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* ================= 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;
}

/* =========================================
   COMPLETE MOBILE VERSION (MAX 768px)
========================================= */

@media (max-width: 768px) {

    /* ===== HERO SECTION ===== */
    .custom-hero {
        /* margin-top: -65x;   */
        padding: 30px 15px;
    }

    .hero-title {
        font-size: 26px;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .primary-btn,
    .outline-btn {
        width: 100%;
        justify-content: center;
        font-size: 14px;
        padding: 12px;
    }

    .breadcrumb-list {
        flex-wrap: wrap;
        font-size: 12px;
    }

    /* ===== MAIN CONTENT ===== */

    .main-content {
        padding: 20px 15px;
    }

    .content-row {
        flex-direction: column;
        gap: 30px;
    }

    .section-title {
        font-size: 22px;
    }

    .content-text p {
        font-size: 14px;
    }

    .custom-checklist li {
        font-size: 14px;
    }

    /* ===== LOCATIONS ===== */

    .locations-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .locations-grid {
        grid-template-columns: 1fr;
    }

    .map-container iframe {
        min-height: 300px;
    }

    .location-title {
        font-size: 22px;
        margin-bottom: 30px;
    }

    /* ===== PACKAGES ===== */

    .ac-packages-section {
        padding: 20px 28px;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        /* Single column */
        justify-items: center;
        /* Center cards */
    }

    .package-card {
        width: 100%;
        max-width: 350px;
        /* Card width limit */
    }

    .package-image {
        height: 180px;
    }

    .package-content {
        padding: 15px;
    }

    .card-title {
        font-size: 16px;
    }

    .card-list li {
        font-size: 14px;
    }

    /* ===== PROBLEMS ===== */

    .ac-problems-section {
        padding: 50px 28px;
    }

    .problems-grid {
        grid-template-columns: 1fr;
    }

    .problem-card {
        padding: 25px;
    }

    /* ===== PROCESS SECTION ===== */

    .service-process-section {
        padding: 20px 28px;
    }

    .process-main-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-card {
        padding: 20px;
    }

    /* ===== SERVICES ===== */

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card img {
        height: 180px;
    }

    /* ===== CTA SECTION ===== */

    .cta-section {
        padding: 30px 15px;
    }

    .cta-container h2 {
        font-size: 22px;
    }

    .cta-container p {
        font-size: 14px;
    }

    .cta-button {
        width: 100%;
        padding: 12px;
    }
}

@media (max-width: 480px) {

    .custom-container,
    .container,
    .content-container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .locations-wrapper,
    .content-row {
        flex-direction: column;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    iframe {
        width: 100%;
        max-width: 100%;
    }

}