
/* --- FONT & BASE STYLES --- */

.abudhabi-timeline {
    font-family: Arial, sans-serif;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.timeline-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 24px;
    font-weight: 700;
    /* Changed color to a common Abu Dhabi theme color (e.g., gold/yellow-orange) */
    color: #cc9900; 
}

/* --- TIMELINE STRUCTURE --- */
.timeline-item {
    display: flex;
    margin-bottom: 50px;
    position: relative;
    padding-left: 80px; /* Space for the line and icon */
}

/* Vertical line */
.timeline-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 30px;
    width: 4px;
    height: 100%;
    background-color: #e0e0e0;
}

/* Hide the vertical line on the last item after the icon */
.timeline-item:last-child:before {
    height: 30px; /* Stop the line after the icon */
}

/* --- ICON/STEP NUMBER --- */
.timeline-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    /* Icon background (AD theme color) */
    background-color: #cc9900; 
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    font-weight: 900;
    font-size: 24px;
    z-index: 10;
    border: 4px solid #ffffff; /* White border to stand out against the line */
    box-shadow: 0 0 0 2px #cc9900; /* Extra shadow for effect */
}

/* --- CONTENT BOX --- */
.timeline-content {
    background: #fcfcfc; /* Very light background for content box */
    padding: 20px;
    border-radius: 8px;
    /* Highlight border (AD theme color) */
    border-left: 5px solid #cc9900; 
    flex-grow: 1;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.timeline-content h3 {
    margin-top: 0;
    font-size: 18px;
    color: #343a40;
    font-weight: 600;
}

.timeline-content .timeline-days {
    display: inline-block;
    background-color: #17a2b8; /* A light blue for timeline days */
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
}

.timeline-content ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 15px; /* Added space before the next section */
    font-size: 15px;
    color: #6c757d;
}

.timeline-content ul li {
    margin-bottom: 5px;
}

.timeline-note {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 15px;
    border-radius: 4px;
    margin-top: 20px;
    color: #856404;
    font-size: 14px;
}


/* --- RESPONSIVENESS (Mobile Adjustment) --- */
@media (max-width: 600px) {
    .abudhabi-timeline {
        padding: 10px;
    }
    
    .timeline-item {
        padding-left: 60px; /* Reduce padding for smaller screens */
        margin-bottom: 40px;
    }

    .timeline-icon {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 18px;
    }

    .timeline-item:before {
        left: 20px; /* Move line left */
    }

    .timeline-content {
        padding: 15px;
    }

    .timeline-content h3 {
        font-size: 16px;
    }

    .timeline-content .timeline-days {
        font-size: 12px;
    }

    .timeline-content ul {
        font-size: 14px;
    }
}
