:root {
    --gold: #C5A059;
    --dark: #1a1a1a;
    --card-grey: #D9D9D9;
    --faq-bar: #CCCCCC;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background-color: var(--dark);
    color: #fff;
}

/* HERO */
.hero-banner {
    height: 450px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0 8%;
}

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin: 0;
    font-weight: 900;
}

.hero-content p {
    line-height: 1.6;
    max-width: 520px;
}

.btn-hero-book {
    margin-top: 20px;
    background: var(--gold);
    color: #000;
    border: none;
    padding: 12px 28px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
}

/* APPOINTMENT */
.appointment-section {
    padding: 60px 10%;
    text-align: center;
}

.section-title {
    margin-bottom: 35px;
    font-size: 2rem;
}

.package-container {
    background-color: var(--card-grey);
    border-radius: 14px;
    padding: 30px;
    margin-bottom: 30px;
    text-align: left;
    position: relative;
    color: #000;
}

.package-label {
    margin-top: 0;
    margin-bottom: 22px;
    font-size: 1.3rem;
}

.package-content {
    display: flex;
    gap: 30px;
    position: relative;
}

.package-visual {
    width: 280px;
    height: 320px;
    background-color: #333;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.package-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.package-text-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    flex: 1;
    padding-bottom: 55px;
}

.pkg-bold {
    font-weight: 800;
    margin-top: 0;
}

.pkg-list {
    list-style: none;
    padding: 0;
    font-size: 0.9rem;
    line-height: 1.8;
}

.pkg-list li::before {
    content: "- ";
}

.btn-book-small {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: #444;
    color: #fff;
    padding: 10px 24px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
}

/* FAQ */
.faq-container {
    background-color: var(--card-grey);
    padding: 60px 10%;
    color: #000;
}

.faq-title {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 30px;
}

.faq-item {
    background-color: var(--faq-bar);
    margin-bottom: 10px;
    border-radius: 8px;
    cursor: pointer;
    overflow: hidden;
    transition: background 0.3s ease;
}

.faq-question {
    padding: 16px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    margin: 0;
    line-height: 1.7;
    font-size: 0.95rem;
    opacity: 0;
    transition:
        max-height 0.4s ease,
        opacity 0.3s ease,
        padding 0.3s ease;
}

.faq-item.active {
    background: var(--gold);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    opacity: 1;
    padding: 0 25px 18px;
}

.faq-item.active i {
    transform: rotate(180deg);
}

.faq-item:hover,
.faq-item.active {
    background: var(--gold);
}

.empty-packages {
    background: var(--card-grey);
    color: #000;
    padding: 70px 20px;
    border-radius: 16px;
    text-align: center;
}

.empty-packages i {
    font-size: 55px;
    color: var(--gold);
    margin-bottom: 18px;
}

.book-link {
    text-decoration: none;
}

@media (max-width: 1000px) {
    .package-content {
        flex-direction: column;
    }

    .package-visual {
        width: 100%;
        height: 280px;
    }

    .package-text-grid {
        grid-template-columns: 1fr;
        padding-bottom: 70px;
    }
}

@media (max-width: 700px) {
    .hero-banner {
        height: 360px;
        padding: 0 7%;
    }

    .hero-content h1 {
        font-size: 2.4rem;
    }

    .appointment-section {
        padding: 45px 6%;
    }
}

/* ================= RESPONSIVE FIX ================= */

@media (max-width: 1100px) {

    .hero-banner {
        height: 420px;
        padding: 0 7%;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .appointment-section {
        padding: 55px 7%;
    }

    .package-container {
        padding: 26px;
    }

    .package-content {
        gap: 24px;
    }

    .faq-container {
        padding: 55px 7%;
    }
}

@media (max-width: 800px) {

    .package-content {
        flex-direction: column;
    }

    .package-visual {
        width: 100%;
        height: 300px;
    }

    .package-text-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        padding-bottom: 70px;
    }

    .btn-book-small {
        width: 100%;
        right: 0;
        bottom: 0;
        border-radius: 14px;
        padding: 13px;
    }

    .faq-item.active .faq-answer {
        max-height: 350px;
    }
}

@media (max-width: 600px) {

    .hero-banner {
        height: auto;
        min-height: 360px;
        padding: 100px 7% 60px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.15;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .btn-hero-book {
        width: 100%;
        border-radius: 14px;
        padding: 14px;
    }

    .appointment-section {
        padding: 45px 6%;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .package-container {
        padding: 20px;
        border-radius: 16px;
    }

    .package-label {
        font-size: 1.15rem;
    }

    .package-visual {
        height: 240px;
    }

    .pkg-list {
        font-size: 0.88rem;
    }

    .faq-container {
        padding: 45px 6%;
    }

    .faq-title {
        font-size: 1.6rem;
    }

    .faq-question {
        padding: 15px 18px;
        gap: 14px;
    }

    .faq-answer {
        padding: 0 18px;
    }

    .faq-item.active .faq-answer {
        padding: 0 18px 16px;
        max-height: 420px;
    }

    .empty-packages {
        padding: 55px 18px;
    }
}