/* SERVICES PAGE STYLES */
.page-header {
    text-align: center;
    padding: 6rem 1rem 3rem;
    background: var(--light-cream);
    color: var(--dark-text);
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.page-header h1 span {
    color: var(--primary-gold);
    font-weight: 600;
}

.page-header p {
    color: var(--light-text);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.page-header h1 span {
    color: var(--primary-gold);
    font-weight: 600;
}

.page-header p {
    color: var(--light-text);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.service-accordion {
    max-width: 1000px;
    margin: 5rem auto;
    padding: 0 1rem;
}

.accordion-item {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.accordion-header {
    padding: 1.2rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--dark-text);
    background: #fff;
    transition: background 0.3s;
}

.accordion-header:hover {
    background: var(--light-cream);
}

.accordion-header.active {
    background: var(--primary-gold);
    color: #fff;
}

.accordion-header .icon {
    font-size: 1.3rem;
    transition: transform 0.3s;
}

.accordion-header.active .icon {
    transform: rotate(90deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    padding-left: 1.5rem;
    transition: max-height 0.5s ease, padding 0.3s ease;
    background: var(--light-cream);
    padding: 0 1.5rem;
}

.accordion-content.open {
    max-height: 2500px;
    padding: 1rem 1.5rem;
}

.accordion-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    font-size: 0.95rem;
}

.accordion-content h4 {
    margin: 1.5rem 0 0.5rem 0;
    color: var(--primary-gold);
}

.accordion-content h4 {
    margin: 1.5rem 0 0.5rem 0;
    color: var(--primary-gold);
}

.accordion-content th,
.accordion-content td {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 0.6rem 1rem;
    text-align: left;
    color: var(--light-text);
}

.accordion-content th {
    color: var(--primary-gold);
    font-weight: 600;
}

footer {
    margin-top: 4rem;
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.2rem;
    }

    .accordion-content table {
        font-size: 0.85rem;
    }
}

.book-now {
    text-align: center;
    margin: 3rem 0 5rem;

}

.book-now a {
    background: #c9a362;
    color: #fff;
    text-decoration: none;
    padding: 0.9rem 2.2rem;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 6px 20px rgba(201, 163, 98, 0.3);

}

.book-now a:hover {
    background: #a67c33;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(201, 163, 98, 0.4);
}

/* ====== Mobile Responsive Accordion & Tables ====== */
@media (max-width: 768px) {
    .service-accordion {
        padding: 0 0.5rem;
    }

    .accordion-header {
        font-size: 1rem;
        padding: 1rem;
    }

    .accordion-content {
        overflow-x: auto;
        /* 👈 scroll on small screens */
    }

    .accordion-content table {
        width: 700px;
        /* 👈 fixed width for horizontal scroll */
        border-collapse: collapse;
        margin-bottom: 1rem;
    }

    .accordion-content th,
    .accordion-content td {
        white-space: nowrap;
        /* 👈 prevents wrapping */
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 0.95rem;
    }

    .book-now {
        margin: 2rem 0 4rem;
    }

    .book-now a {
        padding: 0.8rem 1.8rem;
        font-size: 0.9rem;
    }
}

.accordion-content {
    transition: max-height 0.5s ease, padding 0.3s ease;
}

.accordion-content.open {
    padding: 1rem 1.5rem;
}