/* Modern Process Timeline */
.modern-timeline {
    position: relative;
    margin: 2rem 0;
    padding-left: 0;
}

.modern-timeline::before {
    content: '';
    position: absolute;
    top: 28px;
    bottom: 28px;
    left: 27px;
    width: 2px;
    background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-border) 100%);
}

.timeline-step {
    position: relative;
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.75rem;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.timeline-number {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    z-index: 1;
}

.timeline-card {
    flex: 1;
    background: #fff;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    padding: 1.25rem 1.5rem;
    transition: all 0.3s ease;
}

.timeline-step:hover .timeline-card {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
    border-color: var(--color-primary);
}

.timeline-card h5 {
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.4rem;
}

.timeline-card p {
    margin-bottom: 0;
    color: var(--color-text-muted);
}

@media (max-width: 576px) {
    .modern-timeline::before {
        left: 21px;
    }

    .timeline-step {
        gap: 1rem;
    }

    .timeline-number {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

    .timeline-card {
        padding: 1rem 1.1rem;
    }
}

/* Service Hero */
.service-hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--color-bg-alt) 0%, #ffffff 100%);
    border-bottom: 1px solid var(--color-border);
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.hero-cta {
    margin-top: 2rem;
}

.service-details {
    padding: 3rem 0;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.benefit-card {
    padding: 1.5rem;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.benefit-card i {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

/* Sidebar */
.service-sidebar {
    position: relative;
}

.sidebar-card {
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-meta {
    list-style: none;
    padding: 0;
}

.service-meta li {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-border);
}

.service-meta i {
    width: 1.5rem;
    color: var(--color-accent);
    margin-right: 0.75rem;
}

/* Booking Section Styles */
.booking-section {
    background-color: var(--color-bg-alt);
}

.booking-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-color: white;
}

.booking-card .form-control,
.booking-card .form-select {
    padding: 12px 15px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
}

.booking-card .form-control:focus,
.booking-card .form-select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 0.2rem rgba(31, 42, 120, 0.15);
}

.booking-card label {
    font-weight: 600;
    margin-bottom: 8px;
}

/* FAQ Section Styles */
.faq-section {
    background-color: white;
}

.accordion-button {
    font-weight: 600;
    padding: 1.25rem;
    border-radius: var(--radius-md) !important;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(31, 42, 120, 0.06);
    color: var(--color-primary);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(31, 42, 120, 0.2);
}

.accordion-body {
    padding: 1.5rem;
}

/* Brand logo strip */
.brand-logo {
    max-height: 60px;
    width: auto;
    transition: all 0.3s ease;
    padding: 10px;
}

.grayscale {
    filter: grayscale(100%);
    opacity: 0.7;
}

.grayscale:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Custom carousel controls */
.carousel-control-prev, .carousel-control-next {
    width: 5%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-size: 60%;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-cta .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }

    .service-sidebar {
        margin-top: 3rem;
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        text-align: center;
    }

    .booking-card {
        padding: 1.5rem;
    }

    .accordion-button {
        padding: 1rem;
        font-size: 1rem;
    }

    .accordion-body {
        padding: 1rem;
    }

    .brand-logo {
        max-height: 40px;
    }

    .carousel-indicators {
        margin-bottom: 0;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.75rem;
    }

    .service-details, .service-hero {
        padding: 2rem 0;
    }

    .booking-form {
        padding: 1rem;
    }

    .booking-section,
    .faq-section {
        padding: 2rem 0;
    }

    .booking-card {
        padding: 1.25rem;
    }

    .booking-card .form-control,
    .booking-card .form-select {
        padding: 10px 12px;
    }
}

/* Low-end Android floor */
@media (max-width: 360px) {
    .hero-content h1 {
        font-size: 1.4rem;
    }

    .benefit-card {
        padding: 1rem;
    }

    .sidebar-card {
        padding: 1rem;
    }
}
