/* -------- BOOKING TERMS PAGE -------- */

.terms-hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
                url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1366&q=80") center/cover no-repeat;
    padding: 120px 20px;
    text-align: center;
    color: #fff;
    animation: fadeIn 1.3s ease;
}

.terms-hero-content h1 {
    font-size: 48px;
    font-weight: 800;
}
.terms-hero-content p {
    font-size: 18px;
    margin-top: 10px;
    opacity: 0.9;
}

.terms-wrapper {
    padding: 60px 20px;
}

.terms-container {
    max-width: 1100px;
    margin: auto;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    color: #d8232a;
    text-align: left;
    position: relative;
    margin-bottom: 15px;
}
.section-title::before {
    content: "";
    width: 60px;
    height: 4px;
    background: #d8232a;
    display: block;
    margin-bottom: 10px;
}

.section-sub {
    color: #555;
    margin-bottom: 40px;
}

.term-block {
    padding: 25px 30px;
    margin-bottom: 25px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    animation: slideUp 1s ease;
}
.term-block h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}
.term-block h3 span {
    color: #d8232a;
}
.term-block p {
    line-height: 1.7;
    color: #444;
}

/* ------- ACCORDION ------- */
.accordion-btn {
    width: 100%;
    padding: 18px;
    background: #f8f8f8;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    border-left: 4px solid #d8232a;
    transition: all 0.3s;
}
.accordion-btn:hover {
    background: #ececec;
}

.accordion-content {
    padding: 0 18px 15px;
    display: none;
    animation: fadeIn 0.5s ease;
    color: #555;
    font-size: 16px;
}

/* ------- ANIMATIONS ------- */
@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}
@keyframes slideUp {
    from {transform: translateY(20px); opacity: 0;}
    to {transform: translateY(0); opacity: 1;}
}

/* ------- RESPONSIVE ------- */
@media (max-width: 768px) {
    .terms-hero-content h1 { font-size: 32px; }
    .term-block { padding: 20px; }
}
