/* =========================================
   GUEST ESSENTIALS
========================================= */

.guest-essentials {
    padding: 60px 0;
    background: #f8fafc;
}

/* =========================================
   SECTION HEADING
========================================= */

.section-heading {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;

    padding: 8px 16px;

    border-radius: 10px;

    background: rgba(20, 184, 166, 0.12);

    color: #0f766e;

    font-size: 0.85rem;
    font-weight: 700;

    margin-bottom: 18px;
}

.section-heading h2 {
    font-size: 2.8rem;
    line-height: 1.1;
    letter-spacing: -2px;

    color: #0f172a;

    margin-bottom: 18px;
}

.section-heading p {
    color: #64748b;
    font-size: 1.2rem;
    line-height: 1.7;
}

/* =========================================
   GRID
========================================= */

.essentials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* =========================================
   CARD
========================================= */

.service-card {
    background: #ffffff;

    border-radius: 24px;

    overflow: hidden;

    border: 1px solid #e2e8f0;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.service-card:hover {
    transform: translateY(-8px);

    border-color: rgba(20, 184, 166, 0.25);

    box-shadow:
        0 20px 45px rgba(15, 23, 42, 0.08);
}

/* =========================================
   IMAGE
========================================= */

.service-image {
    position: relative;
    overflow: hidden;

    height: 140px;
}

.service-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

/* =========================================
   CONTENT
========================================= */

.service-content {
    padding: 24px;
}

.service-content h3 {
    font-size: 1.35rem;
    color: #0f172a;

    margin-bottom: 12px;
}

.service-content p {
    color: #64748b;
    line-height: 1.7;

    margin-bottom: 20px;
}

/* =========================================
   LINK
========================================= */

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: #14b8a6;

    font-weight: 700;
    font-size: 0.95rem;

    transition: gap 0.3s ease;
}

.service-link::after {
    content: "→";
}

.service-link:hover {
    gap: 14px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 960px) {

    .essentials-grid {
        grid-template-columns: 1fr;
    }

    .section-heading h2 {
        font-size: 2.3rem;
    }
}

@media (max-width: 600px) {

    .guest-essentials {
        padding: 70px 0;
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .section-heading h2 {
        font-size: 2rem;
    }

    .service-image {
        height: 120px;
    }

    .service-content {
        padding: 22px;
    }
}