/* Service detail pages (tour, corporate, etc.) — layout + readability */

.service-page .page-header {
    height: auto;
    min-height: 320px;
    padding: 48px 0 56px;
    display: block;
}

.service-page .page-header .container {
    position: relative;
    z-index: 2;
}

.service-page .page-header-info {
    max-width: 640px;
}

.service-page .page-header-info p {
    max-width: 100%;
}

.service-page-hero-img {
    max-height: 280px;
    width: 100%;
    max-width: 520px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.service-page-lead {
    font-size: 1.15rem;
    line-height: 1.65;
    color: #333;
}

.service-page-section-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 1rem;
}

.service-page-subtitle {
    font-size: 1.05rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 0.5rem;
}

.service-page-card {
    height: 100%;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 1.35rem 1.25rem;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-page-card:hover {
    border-color: rgba(255, 153, 0, 0.45);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.1);
}

.service-page-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255, 153, 0, 0.15);
    color: #e68600;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.service-page-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #222;
}

.service-page-card ul {
    margin: 0;
    padding-left: 1.1rem;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.55;
}

.service-page-aside {
    background: #f8f9fb;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 1.5rem 1.35rem;
    /* Static: sidebar sits only beside the intro block (see markup), not a long column */
    position: static;
}

/* Full-width block below intro + sidebar (tour cards, CTA, etc.) */
.service-page-main-below {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.service-page-aside .section-heading h4 {
    font-size: 1.15rem;
    line-height: 1.35;
}

.service-page-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-page-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    color: #444;
    font-size: 0.98rem;
    line-height: 1.5;
}

.service-page-checklist li i {
    color: #ff9900;
    margin-top: 3px;
    flex-shrink: 0;
}

.service-page-cta {
    background: linear-gradient(135deg, #1f1f1f 0%, #2a2a2a 100%);
    color: #fff;
    border-radius: 12px;
    padding: 2rem 1.75rem;
}

.service-page-cta h3 {
    color: #fff;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.service-page-cta p {
    color: #cfcfcf;
    margin-bottom: 1.25rem;
    max-width: 640px;
}

.service-page-cta .default-btn {
    margin-right: 0.75rem;
    margin-bottom: 0.5rem;
}

.service-page-cta .default-btn.bg-dark {
    background-color: transparent !important;
    border: 2px solid #ff9900;
    color: #ff9900 !important;
}

.service-page-cta .default-btn.bg-dark:hover {
    background-color: #ff9900 !important;
    color: #222 !important;
}

.service-page-faq .accordion-button {
    font-weight: 600;
    font-size: 1rem;
}

@media (max-width: 991px) {
    .service-page-aside {
        margin-top: 1.5rem;
    }

    .service-page .page-header {
        padding-top: 36px;
        padding-bottom: 40px;
    }

    .service-page-main-below {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
}

@media (max-width: 575px) {
    .service-page-hero-img {
        max-height: 220px;
    }

    .service-page-cta {
        padding: 1.5rem 1.25rem;
    }
}
