
:root {
    --container-max: 1400px;
    --pad-x: clamp(15px, 3.2vw, 30px);
    --section-space: 60px;
    --card-gap: 30px;
    --inner-gap: 40px;
}

@media screen and (max-width: 1024px) {
    :root { --section-space: 45px; --card-gap: 24px; --inner-gap: 28px; }
}

@media screen and (max-width: 767px) {
    :root { --section-space: 40px; --card-gap: 16px; --inner-gap: 18px; }
}




.pk-packages {
    background-image: url("../photos/package-background.webp");
    position: relative;
    width: 100%;
    height: clamp(180px, 22vw, 320px);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pk-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(2, 21, 43, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 var(--pad-x);
}

.pk-banner-overlay h1 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: clamp(24px, 4vw + 8px, 56px);
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    text-align: center;
    letter-spacing: -1px;
    padding: 0 20px;
    line-height: 1.15;
}


/* ===================== SERVICES GRID ===================== */

.pk-container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--pad-x);
}

.pk-section-title {
    text-align: center;
    padding-top: var(--section-space);
    margin-bottom: var(--inner-gap);
}

.pk-section-title h2 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: clamp(26px, 2vw + 18px, 42px);
    color: #0f172a;
    line-height: 1.25;
}

.pk-section-title p {
    color: #666;
    margin-top: 15px;
    font-size: 18px;
}

.pk-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--card-gap);
    margin-bottom: var(--section-space);
}

.pk-services a {
    text-decoration: none;
    display: block;
    height: 100%;
}

.pk-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    transition: .4s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pk-card:hover {
    transform: translateY(-8px);
}

.pk-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.pk-content {
    padding: clamp(18px, 2vw, 25px);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pk-content h3 {
    font-family: "Bricolage Grotesque", sans-serif;
    color: #1a1a1a;
    margin: 0;
    margin-bottom: 15px;
    font-size:20px;
}

.pk-content p {
    color: #555;
    line-height: 1.7;
    font-size: 18px;
    margin: 0;
}


/* ===================== CTA ===================== */

.pk-cta {
    text-align: center;
    background: #ff6600;
    color: white;
    padding: var(--section-space) var(--pad-x);
}

.pk-cta h2 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: clamp(24px, 2vw + 18px, 42px);
    margin: 0;
    line-height: 1.25;
}

.pk-cta p {
    max-width: 700px;
    margin: auto;
    margin-top: 15px;
    margin-bottom: 25px;
    font-size: 18px;
    line-height: 1.6;
}

.pk-btn {
    display: inline-block;
    padding: clamp(12px, 1.2vw, 15px) clamp(24px, 2.6vw, 35px);
    background: white;
    color: #ff6600;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: .3s;
    font-size:18px;
}

.pk-btn:hover {
    background: #0f172a;
    color: white;
}


/* ==========================================================
   STRUCTURAL BREAKPOINTS — matches styles.css tiers exactly
   (1024 / 991 / 767 / 480 / 320)
========================================================== */

@media screen and (max-width: 1025px) {
    .pk-services {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 767px) {
    .pk-services {
        grid-template-columns: 1fr;
    }

    .pk-card img {
        /* aspect-ratio: 16 / 9; */
    }
}

@media screen and (max-width: 480px) {
    .pk-section-title {
        margin-bottom: var(--inner-gap);
    }
}

@media screen and (max-width: 320px) {
    .pk-content { padding: 16px; }
}