:root {
    --gold: #C5A059;
    --black: #0b0b0b;
    --gray: #aaa;
}

/* ================= BASE ================= */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: var(--black);
    color: #fff;
}

/* ================= HERO (UNCHANGED LAYOUT) ================= */
.contact-banner {
    padding: 120px 10%;
    background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85)), url('film-strip-bg.jpg');
    background-size: cover;
}

.banner-content h1{
    font-family: 'Gotham Light', sans-serif;
    font-weight: 750;
}

.banner-content h1 {
    font-size: 3rem;
    letter-spacing: 2px;
}

.banner-content p {
    max-width: 600px;
    color: #ccc;
}

/* GRID */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    padding: 80px 10%;
}
/* ================= SERVICES GRID (UNCHANGED) ================= */
.services-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 60px 10%;
}

.services-wrapper a {
    text-decoration: none;
    display: block; /* makes it behave like the button container */
}

.gray-card {
    background: #D9D9D9;
    color: #000;
    padding: 20px;
    border-radius: 15px;
    transition: transform 0.3s;
}

.gray-card:hover {
    transform: translateY(-5px);
}

.card-img {
    width: 100%;
    height: 180px;
    background: #333;
    border-radius: 10px;
    margin-bottom: 15px;
}

.btn-pkg {
    width: 100%;
    background: transparent;
    border: 1px solid #000;
    padding: 10px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 10px;
}

.card-img {
    width: 100%;
    height: 230px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 18px;
    background: #222;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.gray-card:hover .card-img img {
    transform: scale(1.05);
}

.card-content {
    display: flex;
    flex-direction: column;
}

.service-badge {
    display: inline-block;
    width: fit-content;
    background: #111;
    color: var(--gold);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 12px;
    font-weight: 600;
}

.gray-card h3 {
    margin-top: 0;
    margin-bottom: 14px;
    min-height: 50px;
}

.btn-pkg {
    width: 100%;
    background: #111;
    color: #fff;
    border: none;
    padding: 13px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 10px;
    margin-top: auto;
    transition: 0.3s ease;
}

.btn-pkg:hover {
    background: var(--gold);
    color: #000;
}

.empty-services {
    grid-column: 1/-1;
    text-align: center;
    padding: 100px 20px;
}

.empty-services i {
    font-size: 60px;
    color: var(--gold);
    margin-bottom: 20px;
}

@media (max-width: 991px) {

    .services-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {

    .services-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-banner {
        padding: 90px 7%;
    }

    .banner-content h1 {
        font-size: 2.2rem;
    }
}

/* ================= RESPONSIVE FIX ================= */

@media (max-width: 1100px) {

    .services-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        padding: 55px 7%;
    }

    .card-img {
        height: 220px;
    }

}

@media (max-width: 700px) {

    .contact-banner {
        padding: 105px 7% 70px;
    }

    .banner-content h1 {
        font-size: 2.2rem;
    }

    .banner-content p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .services-wrapper {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 45px 7%;
    }

    .gray-card {
        padding: 18px;
        border-radius: 16px;
    }

    .card-img {
        height: 240px;
        margin-bottom: 16px;
    }

    .gray-card h3 {
        font-size: 1.15rem;
        min-height: auto;
    }

    .service-badge {
        font-size: 11px;
        padding: 6px 11px;
    }

    .btn-pkg {
        height: 50px;
        font-size: 14px;
        border-radius: 12px;
    }

    .empty-services {
        padding: 70px 20px;
    }

    .empty-services i {
        font-size: 52px;
    }

}

@media (max-width: 420px) {

    .contact-banner {
        padding: 95px 6% 60px;
    }

    .banner-content h1 {
        font-size: 1.9rem;
    }

    .services-wrapper {
        padding: 40px 6%;
    }

    .card-img {
        height: 220px;
    }

    .gray-card {
        padding: 16px;
    }

}