/* =========================================
   BRIGHT ANGEL - ELITE SERVICE DETAILS UI
   ========================================= */

body {
    background-color: #f8fafc;
    font-family: 'Times New Roman', Times, serif;
    color: #334155;
}

/* --- Service Hero --- */
.service-hero {
    padding: 160px 20px 80px 20px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
    text-align: center;
    border-bottom: 4px solid #ef4444; /* Corporate Red Accent */
}

.service-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.service-hero p {
    font-size: 1.2rem;
    color: #cbd5e1;
    max-width: 700px;
    margin: 0 auto;
}

/* --- Section Titles --- */
.section-title-elite {
    font-weight: 700;
    font-size: 2.2rem;
    color: #0f172a;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title-elite::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #3b82f6; /* Corporate Blue */
}

/* --- Features Cards --- */
.feature-card-elite {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px 20px;
    height: 100%;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card-elite:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: #3b82f6;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: inline-block;
}

.feature-card-elite h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
}

.feature-card-elite p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* --- Process Steps --- */
.process-step-box {
    background: #ffffff;
    border-left: 5px solid #3b82f6;
    padding: 20px 25px;
    border-radius: 6px;
    margin-bottom: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.process-step-box:hover {
    background: #f1f5f9;
    border-left-color: #ef4444;
    transform: translateX(5px);
}

.process-step-box strong {
    color: #0f172a;
    margin-right: 10px;
    font-size: 1.15rem;
}

/* --- Elite CTA Section --- */
.elite-cta-section {
    background: linear-gradient(90deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 60px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.elite-cta-section h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.elite-cta-section p {
    font-size: 1.15rem;
    color: #cbd5e1;
    margin-bottom: 30px;
}

.btn-cta-red {
    background: #ef4444;
    color: #ffffff !important;
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
}

.btn-cta-red:hover {
    background: #dc2626;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(239, 68, 68, 0.4);
}

@media (max-width: 768px) {
    .service-hero { padding: 130px 20px 60px 20px; }
    .service-hero h1 { font-size: 2.2rem; }
    .process-step-box { flex-direction: column; align-items: flex-start; }
    .process-step-box strong { margin-bottom: 5px; }
}