/* ==========================================
   PAGE STYLES - Dynamic page specific CSS
   ========================================== */

/* ==================== PAGE HERO ==================== */
.page-hero {
    background: linear-gradient(105deg, rgba(22,35,54,0.92) 0%, rgba(22,35,54,0.7) 50%, rgba(0,0,0,0.3) 100%),
                url('https://images.unsplash.com/photo-1621905252507-b35492cc74b4?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat;
    padding: 60px 0 70px;
    color: #fff;
}
.page-hero h1 {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 15px;
    color: #fff;
}
.page-hero .hero-subtitle {
    color: var(--orange);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 20px;
}
.page-hero .hero-desc-box {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 14px;
    padding: 20px 25px;
    margin-bottom: 20px;
}
.page-hero .hero-desc-box p {
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}
.page-hero .hero-features {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}
.page-hero .hero-features li {
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.page-hero .feature-icon {
    width: 26px;
    height: 26px;
    background: var(--teal);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
    color: #fff;
}
.hero-cta-btn {
    background: var(--orange);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 32px;
    font-size: 1.05rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 6px 25px rgba(230,126,34,0.4);
    cursor: pointer;
}
.hero-cta-btn:hover {
    background: #D35400;
    color: #fff;
    transform: translateY(-2px);
}

/* ==================== BOOKING FORM (HERO) ==================== */
.page-booking-card {
    background: var(--form-bg);
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.4);
}
.page-booking-card h3 {
    color: var(--primary-light);
    font-weight: 800;
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 5px;
}
.page-booking-card .form-subtitle {
    text-align: center;
    color: #555;
    font-size: 0.85rem;
    margin-bottom: 20px;
}
.page-booking-card .form-control {
    border: 1px solid #c5d5e5;
    border-radius: 6px;
    padding: 11px 14px;
    font-size: 0.92rem;
    background: #fff;
}
.page-booking-card .form-control:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(0,151,167,0.12);
}
.page-booking-card textarea.form-control {
    min-height: 70px;
    resize: none;
}
.text-primary {
    color: rgb(0 151 167) !important 
}

/* ==================== CONTENT AREA ==================== */
.content-section {
    background: #fff;
}
.content-section .seo-content {
    background: #fff;
    border-radius: 14px;
    padding: 35px 30px;
    box-shadow: var(--card-shadow);
    border: 1px solid #eef1f5;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.content-section .seo-content h2,
.content-section .seo-content h3,
.content-section .seo-content h4 {
    color: var(--primary);
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 10px;
}
.content-section .seo-content h2 { font-size: 1.5rem; }
.content-section .seo-content h3 { font-size: 1.25rem; }
.content-section .seo-content p {
    color: #555;
    line-height: 1.85;
    font-size: 0.95rem;
}
.content-section .seo-content ul,
.content-section .seo-content ol {
    color: #555;
    line-height: 1.85;
    padding-left: 20px;
}
.content-section .seo-content li { margin-bottom: 6px; }
.content-section .seo-content a {
    color: var(--teal);
    font-weight: 600;
    text-decoration: underline;
}
.content-section .seo-content a:hover { color: var(--primary-light); }
.content-section .seo-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 10px 0;
}
.content-section .seo-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
    overflow-x: auto;
    display: block;
}
.content-section .seo-content table th {
    background: var(--primary);
    color: #fff;
    padding: 12px 16px;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: left;
}
.content-section .seo-content table td {
    padding: 10px 16px;
    border-bottom: 1px solid #eef1f5;
    font-size: 0.9rem;
}

/* ==================== STICKY SIDEBAR FORM ==================== */
.sidebar-form-card {
    background: var(--form-bg);
    border-radius: 12px;
    padding: 28px 22px;
    box-shadow: var(--card-shadow);
    border-top: 4px solid var(--teal);
}
.sidebar-form-card h3 {
    color: var(--primary-light);
    font-weight: 800;
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 4px;
}
.sidebar-form-card .form-subtitle {
    text-align: center;
    color: #666;
    font-size: 0.82rem;
    margin-bottom: 18px;
}
.sidebar-form-card .form-control {
    border: 1px solid #c5d5e5;
    border-radius: 6px;
    padding: 11px 14px;
    font-size: 0.92rem;
    background: #fff;
}
.sidebar-form-card .form-control:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(0,151,167,0.12);
}

/* ==================== HOW TO BOOK STEPS ==================== */
.steps-section {
    background: linear-gradient(135deg, var(--dark) 0%, #16213e 100%);
}
.steps-section .step-card {
    text-align: center;
}
.step-icon {
    width: 80px;
    height: 80px;
    border: 3px solid var(--teal-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    background: rgba(0,188,212,0.1);
    transition: var(--transition);
}
.step-icon i {
    font-size: 1.8rem;
    color: var(--teal-light);
}
.steps-section .step-card:hover .step-icon {
    background: var(--teal-light);
    transform: scale(1.08);
}
.steps-section .step-card:hover .step-icon i {
    color: var(--dark);
}
.steps-section .step-card h4 {
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 8px;
}
.steps-section .step-card p {
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* ==================== CITY SECTION ==================== */
.city-section {
    background: #0f1f3d;
}
.city-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: #ccc;
    border-radius: 50px;
    padding: 8px 18px;
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}
.city-pill:hover {
    background: var(--teal);
    border-color: var(--teal);
    color: #fff;
    transform: translateY(-2px);
}

/* ==================== RESPONSIVE (PAGE) ==================== */
@media (max-width: 1199px) {
    .page-hero h1 {
        font-size: 2.1rem;
    }
}

@media (max-width: 991px) {
    .page-hero h1 {
        font-size: 1.9rem;
    }
    .page-booking-card {
        margin-top: 30px;
    }
    .content-section .seo-content {
        padding: 25px 20px;
    }
    .sidebar-form-card {
        position: static !important;
        margin-top: 30px;
    }
    .step-icon {
        width: 65px;
        height: 65px;
    }
    .step-icon i {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 40px 0 50px;
    }
    .page-hero h1 {
        font-size: 1.6rem;
    }
    .page-hero .hero-desc-box {
        padding: 15px 18px;
    }
    .page-hero .hero-features li {
        font-size: 0.88rem;
    }
    .hero-cta-btn {
        padding: 10px 24px;
        font-size: 0.95rem;
    }
    .page-booking-card {
        padding: 25px 20px;
    }
    .page-booking-card h3 {
        font-size: 1.2rem;
    }
    .content-section .seo-content {
        padding: 20px 15px;
    }
    .content-section .seo-content h2 {
        font-size: 1.3rem;
    }
    .content-section .seo-content h3 {
        font-size: 1.1rem;
    }
    .sidebar-form-card {
        padding: 22px 18px;
    }
    .city-pill {
        padding: 6px 14px;
        font-size: 0.82rem;
    }
    .step-icon {
        width: 60px;
        height: 60px;
    }
    .step-icon i {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .page-hero h1 {
        font-size: 1.4rem;
    }
    .page-hero .hero-subtitle {
        font-size: 0.85rem;
    }
    .page-booking-card {
        padding: 20px 15px;
    }
    .hero-cta-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }
}
