/* =========================================
   BRIGHT ANGEL - EPASS & UTURN UI (STANDALONE)
   ========================================= */

body {
    background-color: #f8fafc;
    font-family: 'Times New Roman', Times, serif;
    color: #334155;
    margin: 0;
    padding: 0;
}

/* --- Hero Section --- */
.ep-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 */
}

.ep-hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.ep-hero p {
    font-size: 1.25rem;
    color: #94a3b8;
    max-width: 800px;
    margin: 0 auto;
}

/* --- Section Typography --- */
.ep-section-title {
    font-weight: 700;
    font-size: 2.2rem;
    color: #0f172a;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.ep-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #3b82f6; /* Modern Blue */
}

/* --- Intro Overview Box --- */
.ep-intro-box {
    background-color: #f0f8ff;
    border-radius: 12px;
    padding: 40px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.ep-intro-icon {
    flex: 1 1 200px;
    text-align: center;
}

.ep-intro-icon img {
    max-width: 150px;
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.ep-intro-text {
    flex: 2 1 400px;
}

.ep-intro-text h2 {
    color: #0f172a;
    font-weight: 700;
    margin-bottom: 15px;
}

/* --- EPass Services Cards --- */
.ep-service-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    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;
}

.ep-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: #3b82f6;
}

.ep-service-card .icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: inline-block;
}

.ep-service-card h4 {
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.ep-industry-tags span {
    background: #e0f2fe;
    color: #0369a1;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-block;
    margin: 5px;
}

/* --- U-Turn Timeline --- */
.ep-timeline-wrapper {
    position: relative;
    padding-left: 40px;
    border-left: 4px solid #3b82f6;
    max-width: 700px;
    margin: 0 auto;
}

.ep-timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.ep-timeline-icon {
    position: absolute;
    left: -62px;
    top: 0;
    background: #3b82f6;
    color: white;
    font-size: 1.4rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 4px #e0f2fe;
}

.ep-timeline-content {
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
}

.ep-timeline-content h4 {
    color: #0f172a;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* --- Transfer Steps (Horizontal/Grid) --- */
.ep-step-box {
    background: #ffffff;
    border-radius: 10px;
    padding: 25px 20px;
    text-align: center;
    border-top: 5px solid #3b82f6;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    height: 100%;
}

.ep-step-box:hover {
    transform: translateY(-5px);
}

.ep-step-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #3b82f6;
}

.ep-step-box h4 {
    font-size: 1.2rem;
    color: #0f172a;
    font-weight: 700;
}

.ep-suitable-box {
    background-color: #f0f8ff;
    border-left: 6px solid #3b82f6;
    padding: 25px;
    max-width: 800px;
    margin: 40px auto 0 auto;
    border-radius: 8px;
}

.ep-suitable-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ep-suitable-box li {
    font-size: 1.1rem;
    color: #334155;
    margin-bottom: 10px;
}

/* --- Why Choose Us (Flip Cards) --- */
.ep-flip-card {
    perspective: 1000px;
    height: 180px;
}

.ep-flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.ep-flip-card:hover .ep-flip-inner {
    transform: rotateY(180deg);
}

.ep-flip-front, .ep-flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    backface-visibility: hidden;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.ep-flip-front {
    background: #ffffff;
    border: 1px solid #e2e8f0;
}

.ep-flip-front .icon {
    font-size: 2.5rem;
    color: #3b82f6;
    margin-bottom: 10px;
}

.ep-flip-front h5 {
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.ep-flip-back {
    background: #0f172a;
    color: #ffffff;
    transform: rotateY(180deg);
    font-size: 1.05rem;
    line-height: 1.5;
}

/* --- Custom Accordion FAQ --- */
.ep-faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.ep-faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
}

.ep-faq-question {
    width: 100%;
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: left;
    background: #f8fafc;
    color: #0f172a;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ep-faq-question:hover, .ep-faq-question.active {
    background: #e0f2fe;
}

.ep-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #ffffff;
    border-radius: 0 0 8px 8px;
}

.ep-faq-answer p {
    padding: 20px;
    margin: 0;
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .ep-hero { padding: 130px 20px 60px 20px; }
    .ep-hero h1 { font-size: 2.4rem; }
    .ep-timeline-wrapper { padding-left: 20px; }
    .ep-timeline-icon { left: -40px; width: 35px; height: 35px; font-size: 1.2rem; }
}