/* =========================================
   BRIGHT ANGEL - SPASS & UTURN UI (STANDALONE)
   ========================================= */

body {
    background-color: #f8fafc;
    font-family: 'Times New Roman', Times, serif;
    color: #334155;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* --- Hero Section --- */
.sp-hero {
    padding: 160px 20px 80px 20px;
    background: linear-gradient(135deg, #0b1120 0%, #1e293b 100%);
    color: #ffffff;
    text-align: center;
    border-bottom: 4px solid #ef4444; /* Corporate Red */
}

.sp-hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.sp-hero p {
    font-size: 1.25rem;
    color: #94a3b8;
    max-width: 800px;
    margin: 0 auto;
}

/* --- Section Typography --- */
.sp-section-title {
    font-weight: 700;
    font-size: 2.2rem;
    color: #0f172a;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.sp-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #3b82f6; /* Modern Blue */
}

.sp-section-title.text-white::after {
    background: #ef4444;
}

/* --- Overview Cards (Top 3) --- */
.sp-overview-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 35px 25px;
    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;
}

.sp-overview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: #3b82f6;
}

.sp-overview-icon {
    font-size: 3rem;
    color: #3b82f6;
    margin-bottom: 20px;
    display: inline-block;
}

.sp-overview-card h5 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
}

.sp-overview-card p {
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

/* --- S Pass Services List --- */
.sp-feature-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.sp-feature-box:hover {
    transform: translateX(10px);
    border-color: #3b82f6;
}

.sp-feature-box i {
    font-size: 1.8rem;
    color: #3b82f6;
    margin-right: 20px;
    width: 40px;
    text-align: center;
}

.sp-feature-box span {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
}

.sp-highlight-banner {
    background: rgba(59, 130, 246, 0.1);
    border-left: 4px solid #3b82f6;
    padding: 20px;
    border-radius: 6px;
    font-size: 1.1rem;
    color: #0f172a;
    margin-top: 30px;
}

/* --- U-Turn Section --- */
.sp-uturn-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 35px;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-top: 4px solid #10b981; /* Success Green */
}

.sp-uturn-card h5 {
    color: #0f172a;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.sp-uturn-list {
    list-style: none;
    padding: 0;
}

.sp-uturn-list li {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.sp-uturn-list i {
    color: #10b981;
    margin-right: 12px;
    margin-top: 4px;
}

/* --- Transfer Timeline --- */
.sp-timeline-card {
    background: #ffffff;
    padding: 30px 30px 30px 60px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.05);
    position: relative;
    border: 1px solid #e2e8f0;
}

.sp-timeline-card::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 35px;
    width: 16px;
    height: 16px;
    background: #ef4444; /* Corporate Red */
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.2);
}

.sp-timeline-card h5 {
    font-size: 1.3rem;
    color: #0f172a;
    font-weight: 700;
    margin-bottom: 15px;
}

.sp-timeline-card ul {
    padding-left: 20px;
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.6;
}

.sp-timeline-card ul li { margin-bottom: 8px; }

/* --- 3D Flip Cards (Why Choose Us) --- */
.sp-flip-card {
    perspective: 1000px;
    height: 180px;
}

.sp-flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0.2, 0.2, 1);
    transform-style: preserve-3d;
}

.sp-flip-card:hover .sp-flip-inner {
    transform: rotateY(180deg);
}

.sp-flip-front, .sp-flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    backface-visibility: hidden;
    border: 1px solid #e2e8f0;
}

.sp-flip-front {
    background: #ffffff;
    color: #0f172a;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.sp-flip-front i {
    color: #3b82f6;
    margin-right: 10px;
    font-size: 1.4rem;
}

.sp-flip-back {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
    transform: rotateY(180deg);
    font-size: 1rem;
    line-height: 1.5;
    padding: 25px;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .sp-hero { padding: 130px 20px 60px 20px; }
    .sp-hero h1 { font-size: 2.4rem; }
    .sp-timeline-card { padding-left: 50px; }
    .sp-timeline-card::before { left: 15px; }
}