/* --- CSS VARIABLES & RESET --- */
:root {
    --bg-color: #F8F6F2;
    --primary-blue: #0057D9;
    --icon-bg-blue: #DBEAFE;
    --text-dark: #111111;
    --text-grey: #666666;
    --white: #FFFFFF;
    --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    --border-radius-phone: 30px;
    --border-radius-card: 12px;
    --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.location-booking-wrapper * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

.location-booking-wrapper {
    background-color: var(--bg-color);
    color: var(--text-dark);
    display: flex;
    justify-content: center;
    overflow-x: hidden;
    width: 100%;
}

.location-booking-wrapper .main-wrapper {
    width: 100%;
    max-width: 1200px;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.location-booking-wrapper .booking-section-title {
    font-size: clamp(1.8rem, 2.8vw, 2.75rem);
    font-weight: 400;
    margin-bottom: 40px;
    text-align: center;
    color: var(--text-dark);
    line-height: 1.3;
}

@media (max-width: 768px) {
    .location-booking-wrapper .booking-section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
}

/* --- PROGRESS BAR (Mobile Only) --- */
.location-booking-wrapper .progress-container {
    display: flex;
    gap: 10px;
    width: 100%;
    max-width: 400px;
    /* Limits width on mobile */
    margin-bottom: 10px;
}

.location-booking-wrapper .progress-step {
    height: 6px;
    flex: 1;
    background-color: #E0DDD7;
    /* Inactive color */
    border-radius: 3px;
    cursor: pointer;
    transition: var(--transition);
}

.location-booking-wrapper .progress-step.active {
    background-color: var(--primary-blue);
}

.location-booking-wrapper .step-label {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
    align-self: flex-start;
    /* Centers relative to max-width */
    padding-left: 5px;
}

/* On desktop, we hide the progress bars as per Frame 234 */
@media (min-width: 992px) {

    .location-booking-wrapper .progress-container,
    .location-booking-wrapper .step-label {
        display: none;
    }
}

/* --- CAROUSEL / GRID SYSTEM --- */
.location-booking-wrapper .content-area {
    width: 100%;
    overflow: hidden;
    /* Masks overflow for carousel */
}

.location-booking-wrapper .track {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease-in-out;
}

.location-booking-wrapper .slide {
    min-width: 100%;
    /* Full width on mobile */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
}

/* Desktop: Turn carousel into a 3-column grid */
@media (min-width: 992px) {
    .location-booking-wrapper .track {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        transform: none !important;
        /* Disable carousel sliding */
    }

    .location-booking-wrapper .slide {
        min-width: auto;
        padding: 0;
    }
}

/* --- PHONE MOCKUP STYLES --- */
.location-booking-wrapper .phone-container {
    width: 280px;
    height: 550px;
    position: relative;
    margin-bottom: 30px;
    /* Placeholder styling to mimic the phone frame */
    background: #002B49;
    border-radius: 40px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 4px solid #ffffff;
}

/* This image represents the screen content provided in your design */
.location-booking-wrapper .phone-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

/* --- TEXT CONTENT --- */
.location-booking-wrapper .slide-title {
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    line-height: 1.4;
    max-width: 280px;
    margin-bottom: 40px;
    color: var(--text-dark);
}

/* --- FEATURES SECTION --- */
.location-booking-wrapper .features-wrapper {
    width: 100%;
    margin-top: 20px;
}

/* Mobile: Stacked, Desktop: Grid */
.location-booking-wrapper .features-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media (min-width: 992px) {
    .location-booking-wrapper .features-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}

.location-booking-wrapper .feature-card {
    background: transparent;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    box-shadow: none;
}

.location-booking-wrapper .feature-pill {
    background: var(--white);
    border-radius: 12px;
    padding: 7px 16px 7px 6px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--card-shadow);
}

.location-booking-wrapper .icon-box {
    width: 40px;
    height: 40px;
    background-color: var(--icon-bg-blue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.location-booking-wrapper .icon-box i {
    font-size: 20px;
    color: #003366;
    /* Darker blue for icon */
}

.location-booking-wrapper .feature-pill h4 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0px;
}

.location-booking-wrapper .feature-subtitle {
    font-size: 14px;
    color: #9B8A71;
    text-align: center;
    font-weight: 500;
}

.location-booking-wrapper .feature-subtitle a {
    color: inherit;
}