/* ================= GLOBAL & TYPOGRAPHY ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-main);
    background: var(--bg-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

button, input {
    font-family: inherit;
}

/* Variables for precise theme control */
:root {
    --primary-navy: #002B5B;
    --primary-orange: #FF6B00;
    --orange-hover: #E65C00;
    --bg-light: #F8FAFC;
    --card-bg: #FFFFFF;
    --text-main: #1E293B;
    --text-muted: #64748B;
    --border-light: #E2E8F0;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 25px rgba(0, 43, 91, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 43, 91, 0.12);
}

/* ================= LOGO STYLING ================= */
.logo { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
}

.brand-logo {
    height: 65px;
    width: auto;
    object-fit: contain;
    display: block;
}

.logo-icon {
    width: 44px; 
    height: 44px;
    background: #F0F4F8;
    border-radius: 12px;
    display: flex; 
    align-items: center; 
    justify-content: center;
    font-size: 24px;
}

.logo h2 { 
    font-size: 26px; 
    color: var(--primary-navy); 
    font-weight: 800; 
    font-style: italic; 
    letter-spacing: -1px; 
    line-height: 1; 
}

.logo small { 
    font-size: 12px; 
    color: var(--primary-orange); 
    font-weight: 700; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    display: block;
}

/* ================= NAVBAR ================= */
.navbar {
    height: 80px;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--card-bg);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--border-light);
}

.navbar nav { display: flex; gap: 35px; }

.navbar nav a { 
    color: var(--text-muted); 
    font-size: 15px; 
    font-weight: 600; 
    transition: 0.2s; 
}

.navbar nav a:hover, .navbar nav a.active { 
    color: var(--primary-orange); 
}

/* =========================================
   PROFESSIONAL NAVIGATION & FOOTER LINKS
   ========================================= */

/* Remove underline from ALL navigation links */
nav a,
nav a:hover,
nav a:focus,
nav a:active,
footer a,
footer a:hover,
footer a:focus,
footer a:active {
    text-decoration: none !important;
}

/* ================= NAVBAR ================= */

nav a {
    color: var(--text-main, #1e293b);
    font-weight: 600;
    transition: all 0.25s ease;
    position: relative;
}

nav a:hover {
    color: var(--primary-orange, #ff6b00);
}

/* Professional active indicator */
nav a.active {
    color: var(--primary-orange, #ff6b00);
}

/* Small underline indicator only for active menu */
nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 3px;
    background: var(--primary-orange, #ff6b00);
    border-radius: 10px;
}

.nav-right { display: flex; align-items: center; gap: 16px; }

.user-btn {
    width: 44px; 
    height: 44px;
    border: 1px solid var(--border-light);
    background: transparent; 
    border-radius: 10px; 
    cursor: pointer; 
    transition: 0.2s; 
    font-size: 18px;
}

.user-btn:hover { 
    background: #F0F4F8; 
    border-color: #cbd5e1; 
}


/* =========================================================
   BkGo Travel - Profile Form Additions
========================================================= */


/* =========================================================
   PROFILE AVATAR
========================================================= */

.profile-avatar-wrapper {
    position: relative;
    width: 92px;
    height: 92px;
    flex-shrink: 0;
}

.profile-avatar {
    position: relative;

    width: 92px;
    height: 92px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        #ff6b00,
        #ff914d
    );

    border: 4px solid rgba(255,255,255,.25);

    box-shadow: 0 12px 30px rgba(0,0,0,.2);
}

.profile-avatar img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: none;
}

.avatar-initials {
    color: #fff;

    font-size: 27px;
    font-weight: 800;
}

.avatar-camera {
    position: absolute;

    right: -2px;
    bottom: 0;

    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 3px solid #073b6f;
    border-radius: 50%;

    background: #fff;
    color: #002b5b;

    cursor: pointer;

    transition: .2s;
}

.avatar-camera:hover {
    background: #ff6b00;
    color: #fff;
}


/* =========================================================
   FORM GRID
========================================================= */

.profile-form-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 20px 24px;
}

.profile-form-group {
    min-width: 0;
}

.profile-form-group.full {
    grid-column: 1 / -1;
}

.profile-form-group label {
    display: block;

    margin-bottom: 7px;

    color: #475569;

    font-size: 10px;
    font-weight: 750;
}


/* =========================================================
   INPUT
========================================================= */

.profile-input {
    position: relative;

    display: flex;
    align-items: center;
}

.profile-input > i:first-child {
    position: absolute;

    left: 13px;

    color: #94a3b8;

    font-size: 13px;

    pointer-events: none;
}

.profile-input input,
.profile-input select,
.profile-input textarea {
    width: 100%;

    border: 1px solid #dce4ec;
    border-radius: 9px;

    outline: none;

    background: #fff;
    color: #1e293b;

    font-family: inherit;
    font-size: 12px;

    transition: .2s;
}

.profile-input input,
.profile-input select {
    height: 43px;

    padding: 10px 13px 10px 38px;
}

.profile-input textarea {
    min-height: 90px;

    padding: 12px 13px 12px 38px;

    resize: vertical;
}

.profile-input input::placeholder,
.profile-input textarea::placeholder {
    color: #b0bac7;
}

.profile-input input:focus,
.profile-input select:focus,
.profile-input textarea:focus {
    border-color: #2563eb;

    box-shadow:
        0 0 0 3px rgba(37,99,235,.08);
}


/* SELECT */

.select-input select {
    appearance: none;
    cursor: pointer;
}

.select-arrow {
    position: absolute;

    right: 13px;

    color: #94a3b8;

    font-size: 10px;

    pointer-events: none;
}

.textarea-input {
    align-items: flex-start;
}

.textarea-input > i:first-child {
    top: 14px;
}


/* =========================================================
   MANAGEMENT
========================================================= */

.management-list {
    display: flex;
    flex-direction: column;
}

.management-item {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 17px 0;

    border-bottom: 1px solid #edf1f5;
}

.management-item:first-child {
    padding-top: 0;
}

.management-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.management-left {
    display: flex;
    align-items: center;
    gap: 13px;
}

.management-icon {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 9px;

    background: #f8fafc;
    color: #2563eb;

    font-size: 15px;
}

.management-item h3 {
    margin: 0 0 3px;

    color: #1e293b;

    font-size: 13px;
    font-weight: 700;
}

.management-item p {
    margin: 0;

    color: #94a3b8;

    font-size: 11px;
}

.manage-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    padding: 8px 12px;

    border: 1px solid #dbe4ef;
    border-radius: 7px;

    background: #fff;
    color: #2563eb;

    font-size: 10px;
    font-weight: 700;

    cursor: pointer;

    transition: .2s;
}

.manage-btn:hover {
    background: #eff6ff;
    border-color: #2563eb;
}


/* =========================================================
   PASSWORD FORM
========================================================= */

.password-form {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 18px;
}

.password-input input {
    padding-right: 42px;
}

.password-toggle {
    position: absolute;

    right: 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 28px;
    height: 28px;

    border: 0;

    background: transparent;
    color: #94a3b8;

    cursor: pointer;
}

.password-toggle:hover {
    color: #2563eb;
}

.password-note {
    display: flex;
    align-items: center;
    gap: 9px;

    margin-top: 18px;
    padding: 11px 13px;

    border-radius: 8px;

    background: #f8fafc;

    color: #64748b;

    font-size: 10px;
}

.password-note i {
    color: #2563eb;
    font-size: 13px;
}

.update-password-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    margin-top: 17px;

    padding: 10px 16px;

    border: 0;
    border-radius: 8px;

    background: #002b5b;
    color: #fff;

    font-size: 11px;
    font-weight: 700;

    cursor: pointer;

    transition: .2s;
}

.update-password-btn:hover {
    background: #ff6b00;
}


/* =========================================================
   PROFILE FORM ACTIONS
========================================================= */

.profile-form-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 10px;

    margin-bottom: 20px;
}

.cancel-profile-btn,
.save-profile-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    min-width: 105px;

    padding: 11px 17px;

    border-radius: 8px;

    font-size: 11px;
    font-weight: 700;

    cursor: pointer;

    transition: .2s;
}

.cancel-profile-btn {
    border: 1px solid #dbe4ef;

    background: #fff;
    color: #64748b;
}

.cancel-profile-btn:hover {
    background: #f8fafc;
    color: #1e293b;
}

.save-profile-btn {
    border: 0;

    background: #ff6b00;
    color: #fff;
}

.save-profile-btn:hover {
    background: #e65c00;

    transform: translateY(-1px);

    box-shadow:
        0 6px 15px rgba(255,107,0,.2);
}


/* =========================================================
   LOGOUT
========================================================= */

.logout-card {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 20px 22px;

    border: 1px solid #fee2e2;
    border-radius: 14px;

    background: #fff;
}

.logout-left {
    display: flex;
    align-items: center;
    gap: 13px;
}

.logout-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: #fef2f2;
    color: #dc2626;

    font-size: 16px;
}

.logout-left h3 {
    margin: 0 0 3px;

    color: #1e293b;

    font-size: 13px;
    font-weight: 750;
}

.logout-left p {
    margin: 0;

    color: #94a3b8;

    font-size: 10px;
}

.logout-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    padding: 9px 14px;

    border: 1px solid #fecaca;
    border-radius: 8px;

    background: #fff;
    color: #dc2626;

    font-size: 10px;
    font-weight: 750;

    cursor: pointer;

    transition: .2s;
}

.logout-btn:hover {
    background: #dc2626;
    color: #fff;
}


/* Logout sidebar */

.logout-menu-item:hover {
    background: #fef2f2;
    color: #dc2626;
}

.logout-icon {
    background: #fef2f2;
    color: #dc2626;
}


/* =========================================================
   PASSENGER MODAL
========================================================= */

.passenger-modal {
    position: fixed;

    inset: 0;

    z-index: 9999;

    display: none;

    align-items: center;
    justify-content: center;
}

.passenger-modal.show {
    display: flex;
}

.passenger-modal-overlay {
    position: absolute;

    inset: 0;

    background: rgba(15,23,42,.55);

    backdrop-filter: blur(5px);
}

.passenger-modal-box {
    position: relative;

    z-index: 2;

    width: min(580px, calc(100% - 30px));

    border-radius: 16px;

    background: #fff;

    box-shadow:
        0 25px 70px rgba(15,23,42,.25);

    overflow: hidden;

    animation: passengerModalIn .2s ease;
}

@keyframes passengerModalIn {

    from {
        opacity: 0;
        transform: translateY(15px) scale(.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

}


/* MODAL HEADER */

.passenger-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 18px 20px;

    background: #002b5b;

    color: #fff;
}

.passenger-modal-header > div {
    display: flex;
    align-items: center;
    gap: 11px;
}

.passenger-modal-header span {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: rgba(255,255,255,.12);

    color: #ff914d;
}

.passenger-modal-header h2 {
    margin: 0;

    color: #fff;

    font-size: 15px;
    font-weight: 750;
}

.passenger-modal-header p {
    margin: 3px 0 0;

    color: rgba(255,255,255,.65);

    font-size: 9px;
}

.passenger-modal-header > button {
    width: 31px;
    height: 31px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 7px;

    background: rgba(255,255,255,.1);
    color: #fff;

    cursor: pointer;
}

.passenger-modal-header > button:hover {
    background: #ff6b00;
}


/* MODAL BODY */

.passenger-modal-body {
    padding: 23px;
}

.passenger-form-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
}


/* MODAL FOOTER */

.passenger-modal-footer {
    display: flex;
    justify-content: flex-end;

    gap: 9px;

    padding: 15px 20px;

    border-top: 1px solid #edf1f5;

    background: #fafcff;
}

.modal-cancel-btn,
.modal-save-btn {
    padding: 9px 14px;

    border-radius: 8px;

    font-size: 10px;
    font-weight: 700;

    cursor: pointer;
}

.modal-cancel-btn {
    border: 1px solid #dbe4ef;

    background: #fff;
    color: #64748b;
}

.modal-save-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    border: 0;

    background: #ff6b00;
    color: #fff;
}

.modal-save-btn:hover {
    background: #e65c00;
}


/* Prevent page scroll */

.modal-open-custom {
    overflow: hidden;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 992px) {

    .password-form {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 768px) {

    .profile-form-grid {
        grid-template-columns: 1fr;
    }

    .profile-form-group.full {
        grid-column: auto;
    }

    .password-form {
        grid-template-columns: 1fr;
    }

    .profile-form-actions {
        flex-direction: column-reverse;
    }

    .cancel-profile-btn,
    .save-profile-btn {
        width: 100%;
    }

    .logout-card {
        align-items: flex-start;
        flex-direction: column;
    }

    .logout-btn {
        width: 100%;
        justify-content: center;
    }

    .passenger-form-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 576px) {

    .profile-avatar-wrapper,
    .profile-avatar {
        width: 70px;
        height: 70px;
    }

    .avatar-initials {
        font-size: 20px;
    }

    .profile-main-info {
        align-items: flex-start;
        gap: 15px;
    }

    .profile-name-row h1 {
        font-size: 18px;
    }

    .profile-details p {
        font-size: 11px;
    }

    .card-heading {
        align-items: flex-start;
    }

    .profile-card {
        padding: 20px;
    }

    .management-item {
        align-items: flex-start;
    }

    .management-left {
        align-items: flex-start;
    }

    .manage-btn {
        flex-shrink: 0;
    }

    .passenger-item {
        align-items: flex-start;
    }

    .passenger-meta {
        flex-direction: column;
        gap: 5px;
    }

    .passenger-actions {
        margin-left: auto;
    }

    .add-passenger-btn {
        padding: 7px 9px;
    }

    .password-note {
        align-items: flex-start;
    }

}



.login-btn {
    padding: 10px 24px;
    border: 2px solid var(--primary-navy);
    background: var(--card-bg);
    color: var(--primary-navy);
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s ease;
}

.login-btn:hover { 
    background: var(--primary-navy); 
    color: white; 
    box-shadow: 0 4px 12px rgba(0, 43, 91, 0.2); 
}

/* ================= HERO & OVERLAPPING SEARCH ================= */
/* .hero-section {
    background: linear-gradient(135deg, var(--primary-navy), #001f40);
    padding: 127px 5% 178px;
    text-align: center;
    color: white;
    position: relative;
} */
.hero-section {
    /* We added a background URL and kept a semi-transparent blue gradient over it so text is readable */
    background: linear-gradient(45deg, rgba(0, 25, 45, 0.65)), 
                url('https://images.unsplash.com/photo-1544620347-c4fd4a3d5957?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    padding: 159px 5% 192px; /* slightly more padding to show off the image */
    text-align: center;
    color: white;
    position: relative;
}

.hero-content {
    max-width: 700px;
    margin: auto;
    text-align: center;
}

.hero-tag {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    color: var(--primary-orange);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
    backdrop-filter: blur(5px);
}

.hero-section h1 { 
    font-size: 52px; 
    font-weight: 800; 
    margin-bottom: 20px; 
    line-height: 1.15; 
    letter-spacing: -1px; 
}

.hero-section h1 span { color: var(--primary-orange); }

.hero-section p { 
    font-size: 18px; 
    color: #cbd5e1; 
    max-width: 600px; 
    margin: 0 auto; 
    font-weight: 400; 
}

.search-container {
    max-width: 1200px;
    margin: -80px auto 0;
    padding: 0 5%;
    position: relative;
    z-index: 10;
}

.search-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.trip-type {
    display: flex; gap: 30px; margin-bottom: 24px; font-size: 15px; font-weight: 600; color: var(--text-main);
}
.trip-type label { cursor: pointer; }
.trip-type input { accent-color: var(--primary-orange); margin-right: 8px; transform: scale(1.1); }

.search-fields-wrapper {
    display: flex;
    align-items: center;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 14px;
    padding: 8px;
}

.search-input-group {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    border-radius: 10px;
    transition: 0.2s;
}

.search-input-group:hover { background: white; box-shadow: var(--shadow-sm); }

.field-icon { font-size: 22px; }

.input-content { display: flex; flex-direction: column; width: 100%; }
.input-content label { font-size: 12px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; margin-bottom: 4px; }
.input-content input { border: none; background: transparent; outline: none; font-size: 16px; font-weight: 700; color: var(--primary-navy); width: 100%; }
.input-content input::placeholder { color: #94a3b8; font-weight: 500; }

.swap-btn {
    width: 40px; height: 40px; flex-shrink: 0;
    border-radius: 50%; border: 1px solid var(--border-light);
    background: white; color: var(--primary-navy);
    font-size: 20px; cursor: pointer; transition: 0.3s;
    box-shadow: var(--shadow-sm); z-index: 2; margin: 0 -10px;
}
.swap-btn:hover { background: var(--primary-orange); color: white; border-color: var(--primary-orange); }

.divider { width: 1px; height: 40px; background: var(--border-light); margin: 0 15px; }

.search-btn {
    padding: 0 35px;
    height: 60px;
    background: var(--primary-orange);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    white-space: nowrap;
}
.search-btn:hover { background: var(--orange-hover); box-shadow: 0 8px 20px rgba(255,107,0,0.25); }
/* ================= COMMON SECTION HEADER ================= */

.section {
    padding: 80px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-container {
    width: 100%;
    max-width:1600px;
    margin: 0 auto;
    padding: 30px 5%;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
    padding: 0;
    width: 100%;
}

.section-label {
    color: var(--primary-orange);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.section-header h2,
.section-center h2 {
    font-size: 32px;
    color: var(--primary-navy);
    font-weight: 800;
    letter-spacing: -0.5px;
    margin: 7px 0;
}

.section-header p,
.section-center p {
    color: var(--text-muted);
    font-size: 15px;
}

.view-link {
    color: var(--primary-navy);
    font-weight: 700;
    font-size: 15px;
    transition: 0.2s;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
}

.view-link:hover {
    color: var(--primary-orange);
    border-color: var(--primary-orange);
}


/* ================= TRENDING ROUTES ================= */

.routes-section {
    width: 100%;
}

.route-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    width: 100%;
    margin: 0;
    padding: 0;
}

.route-card {
    width: 100%;
    min-width: 0;
    background: var(--card-bg);
    border: 1px solid var(--border-light) !important;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.route-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md) !important;
    border-color: #cbd5e1 !important;
}

/* Route Image */
.route-card > div:first-child {
    position: relative !important;
    width: 100%;
    height: 160px !important;
}

.route-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Route Badge */
.route-card .badge {
    background: rgba(0, 43, 91, 0.9) !important;
    color: white;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
}

/* Route Content */
.route-content {
    width: 100%;
    padding: 18px 20px !important;
}

.route-path {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 14px;
}

.route-path span {
    color: var(--primary-orange);
    margin: 0 8px;
    font-weight: 600;
}

.route-meta {
    font-size: 14px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    border-top: 1px solid var(--border-light);
    padding-top: 14px;
}

.route-meta strong {
    color: var(--primary-orange) !important;
    font-size: 17px;
    font-weight: 800;
    margin-left: 4px;
}

@media (max-width: 1100px) {

    .route-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media (max-width: 768px) {

    .route-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

}

@media (max-width: 480px) {

    .route-grid {
        grid-template-columns: 1fr;
    }

}

/* ================= FEATURES (WHY US) ================= */
.why-section { background: #1975d238; padding: 75px 7%; }
.section-center { text-align: center; margin-bottom: 50px; }

.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; max-width: 1150px; margin: auto; }
.feature-card { padding: 30px 22px; border-radius: 16px; border: 1px solid var(--border-light); transition: 0.3s; background: var(--card-bg); text-align: center; }
.feature-card:hover { border-color: var(--primary-orange); box-shadow: var(--shadow-md); transform: translateY(-5px); }

.feature-icon {
    width: 64px; height: 64px; margin: 0 auto 20px;
    background: #e6f0fa; color: var(--primary-navy); border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 32px; box-shadow: var(--shadow-sm);
}

.feature-card h3 { color: var(--primary-navy); font-size: 18px; margin: 17px 0 12px; font-weight: 700; }
.feature-card p { color: var(--text-muted); font-size: 14px; line-height: 1.6; }

/* ================= STEPS ================= */
.steps { max-width: 1050px; margin: auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }

.step { position: relative; text-align: center; padding: 15px; }

.step-number { position: absolute; top: 0; right: 10px; font-size: 14px; color: var(--primary-orange); font-weight: 800; }

.step-icon {
    width: 65px; height: 65px; background: #e6f0fa; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: auto; font-size: 25px; box-shadow: var(--shadow-sm);
}

.step h3 { margin: 15px 0 7px; font-size: 17px; color: var(--primary-navy); }
.step p { color: var(--text-muted); font-size: 14px; }

/* ================= PROMO BANNER / OFFER ================= */
.offer-section {
    max-width: 1300px; margin: 40px auto 80px; padding: 50px 60px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--primary-navy), #00162B);
    color: white;
    display: flex; align-items: center; justify-content: space-between;
    box-shadow: var(--shadow-lg);
    position: relative; overflow: hidden;
}

.offer-content { position: relative; z-index: 2; max-width: 600px; }

.offer-tag, .offer-content span {
    background: rgba(255,107,0,0.2); color: var(--primary-orange); padding: 6px 14px;
    border-radius: 8px; font-size: 12px; font-weight: 800; letter-spacing: 1.5px;
    display: inline-block; margin-bottom: 16px; text-transform: uppercase;
}

.offer-content h2 { font-size: 36px; font-weight: 800; margin-bottom: 12px; line-height: 1.2; }
.offer-content p { font-size: 16px; color: #cbd5e1; margin-bottom: 24px; }
.offer-content strong, .offer-content p strong { color: white; background: var(--primary-orange); padding: 2px 8px; border-radius: 4px; font-size: 16px; }

.offer-content button {
    padding: 14px 30px; border: none; border-radius: 10px;
    background: var(--primary-orange); color: white;
    font-size: 16px; font-weight: 700; cursor: pointer; transition: 0.3s; margin-top: 18px;
}
.offer-content button:hover { background: white; color: var(--primary-orange); transform: translateY(-2px); }

.offer-graphic, .offer-icon { font-size: 100px; opacity: 0.9; transform: rotate(-10deg); margin-right: 40px; filter: drop-shadow(0 10px 10px rgba(0,0,0,0.2)); }

/* ================= FOOTER ================= */
footer { background: #001224; color: white; padding-top: 80px; }

.footer-main { max-width: 1400px; margin: 0 auto; padding: 0 5% 60px; display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 60px; }

.footer-logo { background: white; padding: 10px 43px; border-radius: 12px; display: inline-block; margin-bottom: 15px; }
.footer-logo .brand-logo { height: 79px; }
.footer-logo h2 { color: white; font-style: italic; }
.footer-logo small { color: var(--primary-orange); }


.footer-about > p { margin: 2px 0; color: #94a3b8; font-size: 15px; line-height: 1.7; max-width: 320px; }

/* .social { display: flex; gap: 12px; }
.social span {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.05); border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 16px; cursor: pointer; transition: 0.3s;
}
.social span:hover { background: var(--primary-orange); transform: translateY(-3px); } */

.footer-column { display: flex; flex-direction: column; gap: 12px; }
.footer-column h3 { font-size: 16px; margin-bottom: 10px; color: white; font-weight: 700; letter-spacing: 0.5px; }
.footer-column a, .footer-column p { display: block; color: #94a3b8; font-size: 15px; transition: 0.2s; }
.footer-column a:hover { color: var(--primary-orange); padding-left: 5px; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1); padding: 24px 5%;
    display: flex; justify-content: space-between; color: #64748B;
    font-size: 14px; max-width: 1400px; margin: 0 auto;
}


/* ================= FOOTER ================= */

footer a {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    color: #cbd5e1;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.25s ease;
}

footer a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

/* Footer quick-link icons */
footer a i {
    color: var(--primary-orange, #ff6b00);
    transition: transform 0.25s ease;
}

footer a:hover i {
    transform: translateX(2px);
}

/* Footer logo should never move on hover */
footer .footer-logo:hover {
    transform: none;
}

/* ================= FOOTER COLUMNS ================= */

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column h3 {
    color: #ffffff;
    margin-bottom: 8px;
}

/* Contact information is not a link */
.footer-column p {
    color: #cbd5e1;
    font-size: 14px;
    margin: 0;
}

.footer-column p i {
    color: var(--primary-orange, #ff6b00);
}

/* ================= FOOTER BOTTOM ================= */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom span {
    color: #94a3b8;
    font-size: 13px;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

    nav a.active::after {
        display: none;
    }

    nav a {
        text-decoration: none !important;
    }

    footer a {
        text-decoration: none !important;
    }
}

/* ================= THEME ELEMENTS ================= */
.text-theme-blue { color: var(--primary-navy) !important; font-weight: 700; }
.text-theme-orange { color: var(--primary-orange) !important; }
.bg-theme-orange-light { background-color: #fff5eb !important; border-bottom: 3px solid var(--primary-orange); }

.info-list { padding-left: 1.2rem; margin-top: 1rem; }
.info-list li { margin-bottom: 0.8rem; color: #555; }
.info-list li::marker { color: var(--primary-orange); }

.travel-card { transition: transform 0.3s ease, box-shadow 0.3s ease; cursor: pointer; border: 1px solid var(--border-light); }
.travel-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md) !important; border-color: var(--primary-navy); }
.travel-card img { height: 100px; object-fit: cover; }

/* ================= RESPONSIVE DESIGN ================= */
@media (max-width: 1100px) {
    .navbar { padding: 0 4%; }
    .search-fields-wrapper { flex-wrap: wrap; padding: 16px; border: none; background: transparent; gap: 16px;}
    .search-input-group { background: var(--bg-light); border: 1px solid var(--border-light); flex: 1 1 calc(50% - 20px); }
    .swap-btn, .divider { display: none; }
    .search-btn { flex: 1 1 100%; height: 55px; }
    .route-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .features, .steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 850px) {
    .navbar { height: auto; padding: 15px 5%; flex-wrap: wrap; gap: 15px; }
    .navbar nav { order: 3; width: 100%; justify-content: center; gap: 20px; }
    .hero-section { padding: 60px 5% 100px; }
    .hero-section h1 { font-size: 36px; }
    .section, .why-section { padding: 55px 5%; }
    .offer-section { flex-direction: column; text-align: center; padding: 40px 30px; gap: 30px; margin: 20px 5%; }
    .offer-graphic, .offer-icon { margin: 0; transform: none; font-size: 80px; }
    .footer-main { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}

@media (max-width: 768px) {
    .route-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
}

@media (max-width: 600px) {
    .nav-right { display: none; }
    .navbar nav { overflow-x: auto; justify-content: flex-start; }
    .hero-section { padding: 50px 5% 80px; }
    .hero-section h1 { font-size: 30px; }
    .hero-section p { font-size: 14px; }
    .search-card { padding: 15px; margin: -50px 5% 0; }
    .search-input-group { flex: 1 1 100%; }
    .search-btn { width: 100%; }
    .route-grid, .features, .steps { grid-template-columns: 1fr; }
    .section-header { flex-direction: column; align-items: flex-start; gap: 16px; }
    .view-link { display: inline-block; margin-top: 15px; }
    .offer-section { padding: 30px; }
    .offer-content h2 { font-size: 23px; }
    .offer-graphic, .offer-icon { display: none; }
    .footer-main { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 12px; }
}

/* =========================================================
   BkGo Travel - Search Buses Page
========================================================= */

.booking-page {
    background: #f5f7fb;
    min-height: 100vh;
    color: #1f2937;
}


/* =========================================================
   SEARCH HERO
========================================================= */

.search-hero {
    position: relative;
    padding: 65px 0 75px;
    background: linear-gradient(
        135deg,
        #061A3A 0%,
        #0879D9 65%,
        #FF8A00 100% );
    overflow: hidden;
}

.search-hero::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    top: -220px;
    right: 8%;
}

.search-hero::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    bottom: -180px;
    left: 5%;
}

.search-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.search-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 7px 15px;

    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;

    background: rgba(255,255,255,0.1);

    color: #fff;

    font-size: 12px;
    font-weight: 600;
}

.search-hero h1 {
    margin: 18px 0 10px;

    color: #fff;

    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    letter-spacing: -1px;
}

.search-hero h1 span {
    color: #8fc7ff;
}

.search-hero p {
    max-width: 650px;
    margin: 0 auto 35px;

    color: rgba(255,255,255,0.78);

    font-size: 15px;
}


/* =========================================================
   SEARCH BOX
========================================================= */

.search-box {
    max-width: 1050px;
    margin: auto;

    display: flex;
    align-items: center;

    padding: 10px;

    background: #fff;

    border-radius: 18px;

    box-shadow:
        0 20px 50px rgba(0,0,0,0.2);
}

.search-field {
    flex: 1;

    display: flex;
    align-items: center;

    gap: 13px;

    padding: 14px 18px;

    text-align: left;
}

.search-field > i {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: #edf5ff;

    color: #0d6efd;

    font-size: 18px;
}

.search-field small {
    display: block;

    color: #9ca3af;

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.8px;
}

.search-field strong {
    display: block;

    margin-top: 2px;

    color: #111827;

    font-size: 15px;
}

.swap-route {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border: 1px solid #dbe4ef;

    border-radius: 50%;

    background: #fff;

    color: #0d6efd;

    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.search-divider {
    width: 1px;
    height: 42px;

    background: #e5e7eb;
}

.search-again-btn {
    min-height: 52px;

    padding: 0 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    border: 0;
    border-radius: 12px;

    background: #0d6efd;

    color: #fff;

    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    transition: 0.25s ease;
}

.search-again-btn:hover {
    background: #0957c7;

    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(13,110,253,0.25);
}


/* =========================================================
   FILTER CARD
========================================================= */

.filter-card {
    position: sticky;
    top: 20px;

    background: #fff;

    border: 1px solid #e7ebf1;

    border-radius: 18px;

    padding: 22px;

    box-shadow:
        0 8px 25px rgba(15, 23, 42, 0.05);
}

.filter-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    padding-bottom: 18px;

    border-bottom: 1px solid #edf0f4;
}

.filter-header span {
    color: #0d6efd;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1px;
}

.filter-header h4 {
    margin: 3px 0 0;

    font-size: 20px;
    font-weight: 750;
}

.filter-header button {
    border: 0;
    background: transparent;

    color: #0d6efd;

    font-size: 12px;
    font-weight: 600;

    cursor: pointer;
}

.filter-section {
    padding: 20px 0;

    border-bottom: 1px solid #edf0f4;
}

.filter-section:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.filter-section h6 {
    display: flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 14px;

    font-size: 13px;
    font-weight: 700;

    color: #374151;
}

.filter-section h6 i {
    color: #0d6efd;
}


/* FILTER OPTION */

.filter-option {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 11px;

    color: #596273;

    font-size: 13px;

    cursor: pointer;
}

.filter-option:last-child {
    margin-bottom: 0;
}

.filter-option input {
    appearance: none;

    width: 17px;
    height: 17px;

    margin: 0;

    border: 1.5px solid #cfd6df;

    border-radius: 5px;

    background: #fff;

    cursor: pointer;

    transition: 0.2s ease;
}

.filter-option input:checked {
    border-color: #0d6efd;

    background: #0d6efd;

    box-shadow: inset 0 0 0 4px #fff;
}


/* =========================================================
   RESULTS HEADER
========================================================= */

.bus-result-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 6px;

    padding: 5px 2px;
}

.result-label {
    color: #0d6efd;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1px;
}

.bus-result-header h2 {
    display: flex;
    align-items: center;
    gap: 10px;

    margin: 4px 0;

    font-size: 25px;
    font-weight: 800;
}

.bus-result-header h2 i {
    color: #0d6efd;

    font-size: 18px;
}

.bus-result-header p {
    margin: 0;

    color: #8a94a4;

    font-size: 13px;
}

.bus-result-header p strong {
    color: #374151;
}

.sort-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-box label {
    color: #8a94a4;

    font-size: 12px;
}

.sort-box select {
    min-width: 190px;

    padding: 10px 14px;

    border: 1px solid #dfe5ec;

    border-radius: 10px;

    background: #fff;

    color: #374151;

    font-size: 12px;

    outline: none;

    cursor: pointer;
}


/* =========================================================
   BUS CARD
========================================================= */

.bus-card {
    position: relative;

    margin-bottom: 18px;

    padding: 23px;

    background: #fff;

    border: 1px solid #e5eaf0;

    border-radius: 18px;

    box-shadow:
        0 8px 25px rgba(15, 23, 42, 0.045);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.bus-card:hover {
    transform: translateY(-3px);

    border-color: #cddff7;

    box-shadow:
        0 14px 35px rgba(15, 23, 42, 0.08);
}


/* RECOMMENDED */

.featured-bus {
    border: 1px solid #bcd7fa;
}

.featured-label {
    position: absolute;

    top: 0;
    right: 25px;

    padding: 7px 13px;

    border-radius: 0 0 9px 9px;

    background: #0d6efd;

    color: #fff;

    font-size: 10px;
    font-weight: 700;
}

.featured-label i {
    margin-right: 4px;
}


/* =========================================================
   BUS TOP
========================================================= */

.bus-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-bottom: 20px;

    border-bottom: 1px solid #edf0f4;
}

.operator {
    display: flex;
    align-items: center;

    gap: 13px;
}

.bus-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background: linear-gradient(
        135deg,
        #edf5ff,
        #dbeaff
    );

    color: #0d6efd;

    font-size: 21px;
}

.operator h4 {
    margin: 0 0 4px;

    color: #1f2937;

    font-size: 16px;
    font-weight: 750;
}

.operator p {
    margin: 0;

    color: #8993a2;

    font-size: 12px;
}

.operator p span {
    margin: 0 4px;

    color: #c1c7d0;
}


/* RATING */

.rating {
    display: flex;
    align-items: center;

    gap: 5px;

    padding: 3px 13px;

    border-radius: 8px;

    background: #f0f8f4;

    color: #168052;

    margin-top: 3px;
}

.rating i {
    font-size: 11px;
}

.rating strong {
    font-size: 12px;
}

.rating span {
    color: #82908a;

    font-size: 10px;
}


/* =========================================================
   JOURNEY
========================================================= */

.bus-journey {
    display: grid;

    grid-template-columns: 1fr 1.3fr 1fr;

    align-items: center;

    gap: 25px;

    /* padding: 25px 5px; */
}

.journey-time:first-child {
    text-align: left;
}

.journey-time:last-child {
    text-align: right;
}

.journey-time strong {
    display: block;

    color: #111827;

    font-size: 20px;
    font-weight: 800;
}

.journey-time span {
    display: block;

    margin-top: 4px;

    color: #374151;

    font-size: 13px;
    font-weight: 600;
}

.journey-time small {
    display: block;

    margin-top: 3px;

    color: #9aa3af;

    font-size: 10px;
}


/* DURATION */

.journey-duration {
    text-align: center;
}

.journey-duration > span {
    display: inline-block;

    margin-bottom: 8px;

    color: #687386;

    font-size: 11px;
    font-weight: 600;
}

.journey-line {
    position: relative;

    height: 2px;

    background: #dce3eb;
}

.journey-line::before,
.journey-line::after {
    content: "";

    position: absolute;

    top: 50%;

    width: 8px;
    height: 8px;

    transform: translateY(-50%);

    border: 2px solid #0d6efd;

    border-radius: 50%;

    background: #fff;
}

.journey-line::before {
    left: 0;
}

.journey-line::after {
    right: 0;
}

.journey-line span {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 7px;
    height: 7px;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    background: #0d6efd;
}

.journey-duration small {
    display: block;

    margin-top: 8px;

    color: #a0a8b4;

    font-size: 9px;
}


/* =========================================================
   CARD BOTTOM
========================================================= */

.bus-card-bottom {
    display: grid;

    grid-template-columns: 1.6fr 0.7fr 1fr;

    align-items: center;

    gap: 20px;

    padding-top: 5px;

    border-top: 1px solid #edf0f4;
}


/* AMENITIES */

.amenities {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;
}

.amenities span {
    display: inline-flex;
    align-items: center;

    gap: 5px;

    padding: 7px 10px;

    border: 1px solid #e7ebf0;

    border-radius: 7px;

    background: #fafbfc;

    color: #6b7280;

    font-size: 10px;
}

.amenities i {
    color: #0d6efd;
}


/* PRICE */

.bus-price {
    text-align: center;
}

.bus-price small {
    display: block;

    color: #9aa2ae;

    font-size: 9px;
}

.bus-price strong {
    display: block;

    margin: 2px 0;

    color: #111827;

    font-size: 22px;
    font-weight: 800;
}

.bus-price span {
    color: #a0a7b1;

    font-size: 9px;
}


/* =========================================================
   SEAT ACTION
========================================================= */

.seat-action {
    display: flex;
    flex-direction: column;

    align-items: flex-end;

    gap: 9px;
}

.seat-action > span {
    color: #168052;

    font-size: 10px;
    font-weight: 600;
}

.seat-action > span i {
    margin-right: 3px;
}

.select-seat-btn {
    min-width: 130px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 11px 17px;

    border-radius: 9px;

    background: #0d6efd;

    color: #fff !important;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none;

    transition: 0.25s ease;
}

.select-seat-btn:hover {
    background: #0957c7;

    transform: translateY(-2px);

    box-shadow:
        0 8px 18px rgba(13,110,253,0.22);
}

.select-seat-btn i {
    transition: 0.2s ease;
}

.select-seat-btn:hover i {
    transform: translateX(3px);
}


/* =========================================================
   RESPONSIVE - TABLET
========================================================= */

@media (max-width: 991px) {

    .search-hero {
        padding: 50px 0 60px;
    }

    .search-box {
        flex-wrap: wrap;

        padding: 12px;
    }

    .search-field {
        flex: 1 1 45%;
    }

    .search-divider {
        display: none;
    }

    .search-again-btn {
        width: 100%;
    }

    .filter-card {
        position: static;

        margin-bottom: 10px;
    }

    .bus-card-bottom {
        grid-template-columns: 1fr 1fr;

    }

    .amenities {
        grid-column: 1 / -1;
    }

    .seat-action {
        align-items: flex-end;
    }
}


/* =========================================================
   RESPONSIVE - MOBILE
========================================================= */

@media (max-width: 767px) {

    .search-hero {
        padding: 40px 0 45px;
    }

    .search-hero h1 {
        font-size: 32px;
    }

    .search-hero p {
        font-size: 13px;
    }

    .search-box {
        display: block;

        border-radius: 15px;
    }

    .search-field {
        width: 100%;

        padding: 12px;
    }

    .swap-route {
        position: absolute;

        margin-left: 46%;

        transform: translateY(-5px);

        width: 32px;
        height: 32px;
    }

    .date-field {
        border-top: 1px solid #edf0f4;
    }

    .search-again-btn {
        margin-top: 5px;
    }

    .bus-result-header {
        display: block;
    }

    .sort-box {
        margin-top: 15px;

        justify-content: space-between;
    }

    .sort-box select {
        min-width: 0;
        flex: 1;
    }

    .bus-card {
        padding: 17px;
    }

    .bus-card-top {
        align-items: flex-start;
    }

    .operator h4 {
        font-size: 14px;
    }

    .rating span {
        display: none;
    }

    .bus-journey {
        grid-template-columns: 1fr;

        gap: 15px;

        padding: 20px 0;
    }

    .journey-time:first-child,
    .journey-time:last-child {
        text-align: center;
    }

    .journey-duration {
        order: 3;
    }

    .bus-card-bottom {
        display: flex;
        flex-direction: column;

        align-items: stretch;
    }

    .amenities {
        justify-content: center;
    }

    .bus-price {
        padding: 10px 0;

        border-top: 1px solid #edf0f4;
        border-bottom: 1px solid #edf0f4;
    }

    .seat-action {
        align-items: stretch;
    }

    .select-seat-btn {
        width: 100%;
    }

    .featured-label {
        right: 15px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 450px) {

    .search-hero h1 {
        font-size: 28px;
    }

    .search-badge {
        font-size: 10px;
    }

    .bus-result-header h2 {
        font-size: 21px;
    }

    .bus-icon {
        width: 42px;
        height: 42px;

        font-size: 18px;
    }

    .journey-time strong {
        font-size: 18px;
    }

    .amenities span {
        flex: 1;

        justify-content: center;
    }

}
/* BOOKING FORM */

/* =========================================
   BOOKING PAGE
========================================= */

.booking-form-page {
    min-height: 100vh;
    background: #f4f7fb;
    padding-bottom: 70px;
}


/* =========================================
   TOP BOOKING BANNER
========================================= */

.booking-banner {
    position: relative;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: space-between;

    min-height: 280px;
    margin-bottom: 30px;
    padding: 45px 55px;

     background: linear-gradient(
        135deg,
        #061A3A 0%,
        #0879D9 65%,
        #FF8A00 100%
    );


    color: #ffffff;

    box-shadow: 0 20px 45px rgba(13, 110, 253, 0.2);
}

.booking-banner::before {
    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    top: -230px;
    right: -120px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.08);
}

.booking-banner::after {
    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    bottom: -170px;
    left: 35%;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.06);
}

.booking-banner-content {
    position: relative;
    z-index: 2;

    max-width: 700px;
}

.booking-banner-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 8px 16px;
    margin-bottom: 18px;

    background: rgba(255, 255, 255, 0.15);

    border: 1px solid rgba(255, 255, 255, 0.15);

    border-radius: 50px;

    font-size: 13px;
    font-weight: 600;
}

.booking-banner h1 {
    margin-bottom: 14px;

    font-size: 38px;
    font-weight: 750;

    line-height: 1.2;
}

.booking-banner h1 span {
    color: #ff9243;
}

.booking-banner p {
    max-width: 620px;

    margin-bottom: 25px;

    color: rgba(255, 255, 255, 0.88);

    font-size: 15px;
    line-height: 1.7;
}


/* =========================================
   BANNER ROUTE
========================================= */

.banner-trip-info {
    display: flex;
    align-items: center;
    gap: 18px;
}

.banner-trip-info div {
    display: flex;
    align-items: center;
    gap: 8px;

    padding: 10px 15px;

    background: rgba(255, 255, 255, 0.12);

    border-radius: 10px;

    font-size: 14px;
    font-weight: 600;
}

.banner-trip-info div i {
    color: #ff9243;
}

.banner-arrow {
    font-size: 20px;
}


/* =========================================
   BANNER BUS ICON
========================================= */

.booking-banner-icon {
    position: relative;
    z-index: 2;

    margin-left: 30px;
}

.bus-circle {
    width: 140px;
    height: 140px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.12);

    border: 1px solid rgba(255, 255, 255, 0.15);

    font-size: 65px;

    color: #ffffff;
}


/* =========================================
   BOOKING PROGRESS
========================================= */

.booking-progress {
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 25px 35px;

    margin-bottom: 10px;

    background: #ffffff;

    border-radius: 18px;

    border: 1px solid #e9eef5;

    box-shadow: 0 10px 30px rgba(31, 41, 55, 0.06);
}


/* =========================================
   PREMIUM FORM CARDS
========================================= */

.form-card {
    position: relative;

    margin-bottom: 25px;
    padding: 32px;

    background: #ffffff;

    border: 1px solid #e9eef5;

    border-radius: 20px;

    box-shadow: 0 10px 30px rgba(31, 41, 55, 0.06);

    transition: all 0.3s ease;
}

.form-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 5px;
    height: 100%;

    border-radius: 20px 0 0 20px;

    background: linear-gradient(
        to bottom,
        #0d6efd,
        #5b9cff
    );
}

.form-card:hover {
    transform: translateY(-4px);

    box-shadow: 0 18px 40px rgba(31, 41, 55, 0.1);
}


/* =========================================
   FORM CARD HEADER
========================================= */

.form-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 28px;
    padding-bottom: 18px;

    border-bottom: 1px solid #edf1f6;
}

.form-card-header h4 {
    margin: 0 0 6px;

    color: #1f2937;

    font-size: 21px;
    font-weight: 700;
}

.form-card-header p {
    margin: 0;

    color: #6b7280;

    font-size: 14px;
}

.form-card-header > i {
    width: 54px;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(
        135deg,
        #e7f0ff,
        #d7e7ff
    );

    color: #0d6efd;

    border-radius: 15px;

    font-size: 23px;
}


/* =========================================
   INPUT FIELDS
========================================= */

.form-card label {
    display: block;

    margin-bottom: 8px;

    color: #374151;

    font-size: 13px;
    font-weight: 650;
}

.form-card .form-control,
.form-card .form-select {
    height: 52px;

    border: 1px solid #dfe6ef;

    border-radius: 11px;

    padding: 10px 15px;

    background: #fbfcfe;

    font-size: 14px;

    transition: all 0.25s ease;
}

.form-card textarea.form-control {
    height: auto;

    min-height: 130px;

    padding-top: 15px;
}

.form-card .form-control:focus,
.form-card .form-select:focus {
    background: #ffffff;

    border-color: #0d6efd;

    box-shadow:
        0 0 0 4px rgba(13, 110, 253, 0.1);
}


/* =========================================
   BOOKING SUMMARY PREMIUM CARD
========================================= */

.booking-summary {
    position: relative;

    padding: 30px;

    background: #ffffff;

    border-radius: 20px;

    border: 1px solid #e9eef5;

    box-shadow: 0 15px 35px rgba(31, 41, 55, 0.08);

    overflow: hidden;
}

.booking-summary::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 5px;

    background: linear-gradient(
        90deg,
        #0d6efd,
        #4d94ff
    );
}

.booking-summary > h4 {
    margin-bottom: 25px;

    color: #1f2937;

    font-size: 21px;
    font-weight: 700;
}


/* =========================================
   TRIP ROUTE
========================================= */

.trip-summary-route {
    position: relative;

    padding: 22px;

    margin-bottom: 22px;

    background: linear-gradient(
        135deg,
        #f0f6ff,
        #f8fbff
    );

    border: 1px solid #e1ecff;

    border-radius: 15px;
}

.trip-summary-route strong {
    display: block;

    color: #1f2937;

    font-size: 18px;
}

.trip-summary-route span {
    display: flex;
    align-items: center;

    gap: 10px;

    margin: 10px 0;

    color: #0d6efd;
}


/* =========================================
   SUMMARY ROWS
========================================= */

.summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 13px 0;

    border-bottom: 1px dashed #e5e9ef;

    font-size: 14px;
}

.summary-row span {
    color: #6b7280;
}

.summary-row strong {
    color: #1f2937;

    font-weight: 650;
}


/* =========================================
   TOTAL AMOUNT
========================================= */

.summary-total {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 20px 0;
}

.summary-total span {
    color: #4b5563;

    font-size: 15px;
    font-weight: 600;
}

.summary-total strong {
    color: #0d6efd;

    font-size: 27px;
    font-weight: 750;
}


/* =========================================
   CONTINUE BUTTON
========================================= */



.continue-btn:hover {
    transform: translateY(-2px);

    box-shadow:
        0 12px 25px rgba(13, 110, 253, 0.3);
}


/* =========================================
   STICKY SUMMARY
========================================= */

.sticky-summary {
    position: sticky;
    top: 25px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .booking-banner {
        padding: 40px;
    }

    .booking-banner-icon {
        display: none;
    }

    .sticky-summary {
        position: relative;
        top: auto;
    }

}


@media (max-width: 768px) {

    .booking-banner {
        padding: 35px 25px;
        min-height: auto;
    }

    .booking-banner h1 {
        font-size: 30px;
    }

    .banner-trip-info {
        flex-wrap: wrap;
    }

    .booking-progress {
        overflow-x: auto;
        justify-content: flex-start;
    }

    .form-card {
        padding: 24px;
    }

}


@media (max-width: 576px) {

    .booking-banner {
        border-radius: 18px;
    }

    .booking-banner h1 {
        font-size: 26px;
    }

    .booking-banner p {
        font-size: 14px;
    }

    .banner-trip-info {
        gap: 10px;
    }

    .form-card {
        padding: 20px;
    }

    .form-card-header h4 {
        font-size: 18px;
    }

}
/* =========================================
   MY BOOKINGS PAGE
========================================= */


.my-bookings-page {
    background: #f5f7fb;
    min-height: 100vh;
    padding-bottom: 50px;
}


/* =========================================
   CONTAINER
========================================= */

.my-bookings-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}


/* =========================================
   BOOKING HEADER
========================================= */

/* =========================================
   BKGO MY BOOKINGS - LOGO THEME
========================================= */

.my-bookings-page {
    background: #f5f8fc;
    min-height: 100vh;
    padding-bottom: 50px;
}

.my-bookings-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}


/* =========================================
   BOOKING HEADER
========================================= */

.booking-header {
    background: linear-gradient(
        135deg,
        #061A3A 0%,
        #0879D9 65%,
        #FF8A00 100%
    );
    color: #ffffff;
    padding: 45px 0;
}

.booking-header .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.booking-header span {
    display: inline-block;
    padding: 8px 18px;
    margin-bottom: 15px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.14);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.booking-header h2 {
    margin-bottom: 10px;
    font-size: 42px;
    font-weight: 750;
}

.booking-header p {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
}

/* =========================================
   STATS
========================================= */

.booking-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.booking-stat-card {
    background: #ffffff;
    border: 1px solid #DCE7F3;
    border-radius: 14px;
    padding: 22px 24px;

    display: flex;
    align-items: center;
    gap: 18px;

    box-shadow: 0 5px 18px rgba(6, 26, 58, 0.06);

    transition: all 0.25s ease;
}

.booking-stat-card:hover {
    transform: translateY(-3px);

    border-color: #B7D6F2;

    box-shadow: 0 10px 25px rgba(6, 26, 58, 0.10);
}

.booking-stat-card > i {
    width: 50px;
    height: 50px;

    border-radius: 12px;

    background: #EAF5FF;
    color: #0879D9;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 23px;
}

.booking-stat-card span {
    display: block;
    color: #6D7B8C;
    font-size: 14px;
    margin-bottom: 3px;
}

.booking-stat-card h3 {
    margin: 0;
    font-size: 25px;
    color: #061A3A;
    font-weight: 700;
}


/* =========================================
   TOOLBAR
========================================= */

.booking-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 20px;
    margin-bottom: 22px;
}


/* =========================================
   BOOKING TABS
========================================= */

.booking-tabs {
    display: flex;
    align-items: center;

    gap: 6px;

    background: #ffffff;
    border: 1px solid #DCE7F3;

    padding: 5px;

    border-radius: 10px;
}

.booking-tabs button {
    border: none;

    background: transparent;

    color: #68778A;

    padding: 9px 18px;

    border-radius: 7px;

    font-size: 14px;
    font-weight: 600;

    cursor: pointer;

    transition: all 0.2s ease;
}

.booking-tabs button:hover {
    color: #0879D9;
    background: #EAF5FF;
}

.booking-tabs button.active {
    background: #0879D9;
    color: #ffffff;

    box-shadow: 0 3px 8px rgba(8, 121, 217, 0.25);
}


/* =========================================
   SEARCH
========================================= */

.booking-search {
    width: 300px;
    height: 44px;

    background: #ffffff;

    border: 1px solid #DCE7F3;

    border-radius: 9px;

    display: flex;
    align-items: center;

    padding: 0 14px;

    transition: all 0.2s ease;
}

.booking-search:focus-within {
    border-color: #0879D9;

    box-shadow:
        0 0 0 3px rgba(8, 121, 217, 0.10);
}

.booking-search i {
    color: #0879D9;

    font-size: 17px;

    margin-right: 9px;
}

.booking-search input {
    width: 100%;

    border: none;
    outline: none;

    background: transparent;

    color: #172B4D;

    font-size: 14px;
}

.booking-search input::placeholder {
    color: #9AA6B5;
}


/* =========================================
   BOOKING CARD
========================================= */

.my-booking-card {
    background: #ffffff;

    border: 1px solid #DCE7F3;

    border-radius: 15px;

    margin-bottom: 20px;

    overflow: hidden;

    box-shadow:
        0 5px 18px rgba(6, 26, 58, 0.05);

    transition: all 0.25s ease;
}

.my-booking-card:hover {
    border-color: #B7D6F2;

    box-shadow:
        0 10px 28px rgba(6, 26, 58, 0.09);
}


/* =========================================
   STATUS TOP
========================================= */

.booking-status-top {
    padding: 14px 22px;

    background: #F7FAFD;

    border-bottom: 1px solid #E5EDF5;

    display: flex;
    justify-content: space-between;
    align-items: center;

    color: #718096;

    font-size: 13px;
    font-weight: 500;
}

.confirmed-status,
.completed-status {
    display: inline-flex;

    align-items: center;

    gap: 6px;

    font-weight: 700;
}

.confirmed-status {
    color: #0879D9;
}

.completed-status {
    color: #0879D9;
}

.confirmed-status i,
.completed-status i {
    font-size: 15px;
}


/* =========================================
   BOOKING MAIN
========================================= */

.booking-main {
    padding: 25px 22px;

    display: grid;

    grid-template-columns: 1fr 2fr 1fr;

    align-items: center;

    gap: 30px;
}



/* =========================================
   BUS OPERATOR
========================================= */

.booking-operator {
    display: flex;

    align-items: center;

    gap: 13px;
}

.bus-logo {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

    border-radius: 11px;

    background: linear-gradient(
        135deg,
        #EAF5FF,
        #D9EDFF
    );

    color: #0879D9;

    display: flex;

    align-items: center;
    justify-content: center;
}

.bus-logo i {
    font-size: 23px;
}

.booking-operator h5 {
    margin: 0 0 4px;

    font-size: 16px;

    font-weight: 700;

    color: #061A3A;
}

.booking-operator p {
    margin: 0;

    font-size: 13px;

    color: #718096;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .booking-main {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .travel-date {
        padding-left: 0;
        border-left: none;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .booking-header {
        padding: 65px 0;
    }

    .booking-header h2 {
        font-size: 34px;
    }

    .booking-stats {
        grid-template-columns: 1fr;
        margin-top: 25px;
    }

    .booking-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .booking-tabs {
        width: 100%;
        overflow-x: auto;
    }

    .booking-search {
        width: 100%;
    }

    .booking-main {
        padding: 25px 20px;
    }

    .booking-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .action-buttons {
        width: 100%;
        flex-wrap: wrap;
    }

    .action-buttons button {
        flex: 1;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 576px) {

    .booking-header h2 {
        font-size: 30px;
    }

    .booking-route {
        gap: 8px;
    }

    .booking-route h5 {
        font-size: 15px;
    }

    .booking-status-top {
        padding: 14px 18px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .booking-stat-card {
        padding: 20px;
    }

    .action-buttons {
        flex-direction: column;
    }

    .action-buttons button {
        width: 100%;
    }

}



/* =========================================
   CONTACT PAGE
========================================= */

.contact-page {
    background: #f7f9fc;
    min-height: 100vh;
}


/* =========================================
   CONTACT HERO
========================================= */

.contact-hero {
    padding: 90px 0;
    background: linear-gradient(
        135deg,
        #061A3A 0%,
        #0879D9 65%,
        #FF8A00 100%
    );
    color: #ffffff;
    text-align: center;
}

.contact-hero-content {
    max-width: 780px;
    margin: 0 auto;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    margin-bottom: 22px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
}

.contact-hero h1 {
    margin-bottom: 18px;
    font-size: 48px;
    font-weight: 700;
}

.contact-hero h1 span {
    color: #ffb703;
}

.contact-hero p {
    max-width: 680px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.88);
    font-size: 17px;
    line-height: 1.8;
}


/* =========================================
   CONTACT SECTION
========================================= */

.contact-section,
.help-section,
.office-section,
.contact-faq-section {
    padding: 80px 0;
}


/* =========================================
   SECTION HEADING
========================================= */

.section-heading {
    max-width: 720px;
    margin: 0 auto 45px;
}

.section-heading > span,
.help-content > span {
    display: inline-block;
    margin-bottom: 10px;
    color: #0d6efd;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.section-heading h2,
.help-content h2 {
    margin-bottom: 15px;
    color: #1f2937;
    font-size: 35px;
    font-weight: 700;
}

.section-heading p,
.help-content p {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================
   CONTACT CARDS
========================================= */

.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 18px;

    padding: 25px;

    background: #ffffff;
    border: 1px solid #edf0f5;
    border-radius: 16px;

    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}


/* =========================================
   CONTACT ICONS
========================================= */

.contact-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;
    font-size: 23px;
}

.blue-icon {
    background: #e7f0ff;
    color: #0d6efd;
}

.orange-icon {
    background: #fff1e5;
    color: #f97316;
}

.green-icon {
    background: #e8f8ef;
    color: #198754;
}

.purple-icon {
    background: #f1e9ff;
    color: #7c3aed;
}


/* =========================================
   CONTACT TEXT
========================================= */

.contact-info-text span {
    display: block;
    margin-bottom: 5px;
    color: #6b7280;
    font-size: 13px;
}

.contact-info-text h4 {
    margin: 0 0 7px;
    color: #1f2937;
    font-size: 18px;
    font-weight: 700;
}

.contact-info-text p {
    margin: 0;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
}


/* =========================================
   HELP SECTION
========================================= */

.help-section {
    background: #ffffff;
}

.help-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.help-content h2 {
    font-size: 38px;
}

.help-content p {
    margin-bottom: 18px;
}


/* =========================================
   HELP LIST
========================================= */

.help-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.help-item {
    display: flex;
    gap: 18px;
    padding: 20px;

    background: #f8fafc;
    border-radius: 14px;
    border: 1px solid #edf0f5;

    transition: 0.3s ease;
}

.help-item:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.help-item-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #e7f0ff;
    color: #0d6efd;

    border-radius: 12px;
    font-size: 20px;
}

.help-item h4 {
    margin: 0 0 5px;
    color: #1f2937;
    font-size: 16px;
    font-weight: 700;
}

.help-item p {
    margin: 0;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
}


/* =========================================
   OFFICE SECTION
========================================= */

.office-section {
    background: #f7f9fc;
}

.office-card {
    display: flex;
    align-items: center;
    gap: 30px;

    max-width: 850px;
    margin: 0 auto;

    padding: 45px;

    background: #ffffff;
    border-radius: 20px;

    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.07);
}

.office-icon {
    width: 85px;
    height: 85px;
    min-width: 85px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #e7f0ff;
    color: #0d6efd;

    border-radius: 18px;
    font-size: 34px;
}

.office-content h3 {
    margin-bottom: 10px;
    color: #1f2937;
    font-size: 24px;
    font-weight: 700;
}

.office-content > p {
    margin-bottom: 20px;
    color: #6b7280;
    line-height: 1.7;
}


/* =========================================
   OFFICE DETAILS
========================================= */

.office-details {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 25px;
}

.office-details div {
    color: #4b5563;
    font-size: 14px;
}

.office-details i {
    margin-right: 6px;
    color: #0d6efd;
}


/* =========================================
   SUPPORT BANNER
========================================= */

.support-banner-section {
    padding: 0 0 80px;
}

.support-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;

    padding: 35px 40px;

    background: linear-gradient(135deg, #0d6efd, #084298);
    color: #ffffff;

    border-radius: 20px;
}

.support-banner-icon {
    width: 65px;
    height: 65px;
    min-width: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;

    font-size: 27px;
}

.support-banner h2 {
    margin: 0 0 7px;
    font-size: 24px;
    font-weight: 700;
}

.support-banner p {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
}

.support-contact {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 15px 20px;

    background: rgba(255, 255, 255, 0.12);
    border-radius: 12px;
}

.support-contact > i {
    font-size: 24px;
}

.support-contact span {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.support-contact strong {
    display: block;
    font-size: 16px;
}


/* =========================================
   FAQ SECTION
========================================= */

.contact-faq-section {
    background: #ffffff;
}




/* =========================================
   TABLET RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .help-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .support-banner {
        flex-wrap: wrap;
    }

}


/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media (max-width: 768px) {

    .contact-hero {
        padding: 65px 20px;
    }

    .contact-hero h1 {
        font-size: 38px;
    }

    .contact-section,
    .help-section,
    .office-section,
    .contact-faq-section {
        padding: 60px 0;
    }

    .contact-cards {
        grid-template-columns: 1fr;
    }

    .office-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
    }

    .support-banner-section {
        padding-bottom: 60px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 576px) {

    .contact-hero h1 {
        font-size: 32px;
    }

    .contact-hero p {
        font-size: 15px;
    }

    .section-heading h2,
    .help-content h2 {
        font-size: 28px;
    }

    .contact-info-card {
        padding: 20px;
        align-items: flex-start;
    }

    .contact-icon {
        width: 52px;
        height: 52px;
        min-width: 52px;
    }

    .support-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px;
    }

    .support-contact {
        width: 100%;
    }

   

}

/* =========================================
   ROUTE
========================================= */

.booking-route {
    display: grid;

    grid-template-columns: auto 1fr auto;

    align-items: center;

    gap: 15px;
}

.booking-route h5 {
    margin: 0 0 3px;

    color: #061A3A;

    font-size: 17px;

    font-weight: 700;
}

.booking-route span {
    color: #718096;

    font-size: 13px;
}


/* =========================================
   ROUTE LINE
========================================= */

.route-middle {
    text-align: center;

    min-width: 100px;
}

.route-middle span {
    display: block;

    font-size: 11px;

    color: #8A97A7;

    margin-bottom: 7px;
}

.route-middle div {
    width: 100%;

    height: 2px;

    background: linear-gradient(
        90deg,
        #0879D9,
        #FF8A00
    );

    position: relative;
}

.route-middle div::before,
.route-middle div::after {
    content: "";

    position: absolute;

    top: 50%;

    width: 8px;
    height: 8px;

    border-radius: 50%;

    transform: translateY(-50%);
}

.route-middle div::before {
    left: 0;

    background: #0879D9;
}

.route-middle div::after {
    right: 0;

    background: #FF8A00;
}


/* =========================================
   TRAVEL DATE
========================================= */

.travel-date {
    text-align: right;
}

.travel-date span {
    display: block;

    color: #8A97A7;

    font-size: 12px;

    margin-bottom: 5px;
}

.travel-date strong {
    display: block;

    color: #061A3A;

    font-size: 15px;
}


/* =========================================
   BOOKING ACTIONS
========================================= */

.booking-actions {
    border-top: 1px solid #E5EDF5;

    padding: 15px 22px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 15px;
}


/* =========================================
   SEAT / PNR
========================================= */

.seat-tag,
.pnr-tag {
    display: inline-flex;

    align-items: center;

    padding: 6px 10px;

    border-radius: 6px;

    font-size: 12px;

    font-weight: 600;
}

.seat-tag {
    background: #EAF5FF;

    color: #0879D9;
}

.pnr-tag {
    background: #FFF3E0;

    color: #E87500;
}


/* =========================================
   ACTION BUTTONS
========================================= */

.action-buttons {
    display: flex;

    align-items: center;

    gap: 9px;
}

.action-buttons button,
.booking-actions > button {
    height: 38px;

    border-radius: 7px;

    padding: 0 14px;

    font-size: 13px;

    font-weight: 600;

    cursor: pointer;

    transition: all 0.2s ease;
}


/* =========================================
   VIEW TICKET
========================================= */

.live-ticket-btn {
    border: 1px solid #0879D9;

    background: #0879D9;

    color: #ffffff;
}

.live-ticket-btn:hover {
    background: #061A3A;

    border-color: #061A3A;
}


/* =========================================
   DOWNLOAD
========================================= */

.download-btn {
    border: 1px solid #B7D6F2;

    background: #ffffff;

    color: #0879D9;
}

.download-btn:hover {
    background: #EAF5FF;

    border-color: #0879D9;

    color: #061A3A;
}


/* =========================================
   CANCEL
========================================= */

.cancel-booking-btn {
    border: 1px solid #F1C8A0;

    background: #ffffff;

    color: #E87500;
}

.cancel-booking-btn:hover {
    background: #FFF3E0;

    border-color: #FF8A00;

    color: #D96800;
}

/* =========================================
   ROUTE
========================================= */

.booking-route {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 15px;
}

.booking-route h5 {
    margin: 0 0 3px;
    color: #202938;
    font-size: 17px;
    font-weight: 700;
}

.booking-route span {
    color: #7c8796;
    font-size: 13px;
}

.route-middle {
    text-align: center;
    min-width: 100px;
}

.route-middle span {
    display: block;
    font-size: 11px;
    color: #929baa;
    margin-bottom: 7px;
}

.route-middle div {
    width: 100%;
    height: 1px;
    background: #d8dee7;
    position: relative;
}

.route-middle div::before,
.route-middle div::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #0b7a5c;
    transform: translateY(-50%);
}

.route-middle div::before {
    left: 0;
}

.route-middle div::after {
    right: 0;
}


/* =========================================
   TRAVEL DATE
========================================= */

.travel-date {
    text-align: right;
}

.travel-date span {
    display: block;
    color: #8a94a3;
    font-size: 12px;
    margin-bottom: 5px;
}

.travel-date strong {
    display: block;
    color: #202938;
    font-size: 15px;
}


/* =========================================
   BOOKING ACTIONS
========================================= */

.booking-actions {
    border-top: 1px solid #edf0f4;
    padding: 15px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.booking-actions > div:first-child {
    display: flex;
    align-items: center;
    gap: 8px;
}


/* =========================================
   TAGS
========================================= */

.seat-tag,
.pnr-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.seat-tag {
    background: #eef5ff;
    color: #3478c9;
}

.pnr-tag {
    background: #f3f4f6;
    color: #687386;
}


/* =========================================
   ACTION BUTTONS
========================================= */

.action-buttons {
    display: flex;
    align-items: center;
    gap: 9px;
}

.action-buttons button,
.booking-actions > button {
    height: 38px;
    border-radius: 7px;
    padding: 0 14px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}


/* View Ticket */

.live-ticket-btn {
    border: 1px solid #0b7a5c;
    background: #0b7a5c;
    color: #fff;
}

.live-ticket-btn:hover {
    background: #09664d;
    border-color: #09664d;
}


/* Download */

.download-btn {
    border: 1px solid #dce2e9;
    background: #fff;
    color: #4e5969;
}

.download-btn:hover {
    border-color: #0b7a5c;
    color: #0b7a5c;
    background: #f1faf7;
}


/* Cancel */

.cancel-booking-btn {
    border: 1px solid #f0caca;
    background: #fff;
    color: #d64545;
}

.cancel-booking-btn:hover {
    background: #fff3f3;
    border-color: #d64545;
}


/* =========================================
   SECOND BOOKING ACTION
========================================= */

.my-booking-card .booking-actions > .download-btn {
    margin-left: auto;
}


/* =========================================
   BOOTSTRAP ICON ALIGNMENT
========================================= */

.booking-actions button i {
    margin-right: 5px;
    vertical-align: middle;
}


/* =========================================
   RESPONSIVE - TABLET
========================================= */

@media (max-width: 992px) {

    .booking-main {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .travel-date {
        text-align: left;
    }

    .booking-route {
        max-width: 550px;
    }

    .booking-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* =========================================
   RESPONSIVE - MOBILE
========================================= */

@media (max-width: 768px) {

    .booking-header {
        padding: 35px 0;
    }

    .booking-header h2 {
        font-size: 27px;
    }

    .booking-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .booking-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .booking-tabs {
        width: 100%;
        overflow-x: auto;
    }

    .booking-tabs button {
        flex: 1;
        white-space: nowrap;
    }

    .booking-search {
        width: 100%;
    }

    .booking-status-top {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .booking-route {
        grid-template-columns: auto 1fr auto;
        gap: 8px;
    }

    .route-middle {
        min-width: 60px;
    }

    .booking-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .booking-actions > div:first-child {
        flex-wrap: wrap;
    }

    .action-buttons {
        width: 100%;
        flex-wrap: wrap;
    }

    .action-buttons button {
        flex: 1;
    }

    .my-booking-card .booking-actions > .download-btn {
        margin-left: 0;
        width: 100%;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .my-bookings-page .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .booking-header h2 {
        font-size: 24px;
    }

    .booking-header p {
        font-size: 13px;
    }

    .booking-main {
        padding: 20px 16px;
    }

    .booking-status-top {
        padding: 12px 16px;
    }

    .booking-actions {
        padding: 13px 16px;
    }

    .booking-route h5 {
        font-size: 14px;
    }

    .booking-route span {
        font-size: 11px;
    }

    .route-middle span {
        font-size: 10px;
    }

    .action-buttons {
        flex-direction: column;
    }

    .action-buttons button {
        width: 100%;
    }
}

   /* Page Specific CSS - Can be moved to style.css */
    :root {
        --nav-blue: #002B5B;
        --brand-orange: #FF6B00;
        --bg-light: #F8FAFC;
        --text-dark: #1E293B;
        --text-muted: #64748B;
        --border-color: #E2E8F0;
    }

    .booking-form-page {
        background-color: var(--bg-light);
        font-family: system-ui, -apple-system, sans-serif;
        color: var(--text-dark);
    }

    /* Banner */
    .booking-banner {
        /* background: linear-gradient(135deg, var(--nav-blue), #001229); */
        background: linear-gradient(
        135deg,
        #061A3A 0%,
        #0879D9 65%,
        #FF8A00 100%
    );
        border-radius: 24px;
        padding: 50px 60px;
        color: white;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 30px;
        box-shadow: 0 15px 35px rgba(0, 43, 91, 0.15);
    }

    .booking-banner-badge {
        display: inline-block;
        background: rgba(255, 107, 0, 0.2);
        color: var(--brand-orange);
        padding: 8px 16px;
        border-radius: 50px;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 1px;
        margin-bottom: 20px;
    }

    .booking-banner h1 { font-size: 40px; font-weight: 800; margin-bottom: 12px; }
    .booking-banner h1 span { color: #8fc7ff; }
    .booking-banner p { color: #CBD5E1; font-size: 16px; max-width: 500px; margin-bottom: 25px; }

    .banner-route { display: flex; align-items: center; gap: 20px; background: rgba(255,255,255,0.1); padding: 12px 24px; border-radius: 12px; display: inline-flex; backdrop-filter: blur(5px); }
    .banner-location small { display: block; font-size: 11px; color: var(--brand-orange); font-weight: 700; }
    .banner-location strong { font-size: 18px; font-weight: 700; }
    .banner-route-line { color: #CBD5E1; font-size: 20px; }
    .booking-banner-visual { font-size: 140px; opacity: 0.1; transform: rotate(-10deg); }

    /* Progress Tracker */
    .booking-progress {
        display: flex; align-items: center; justify-content: space-between;
        background: white; padding: 20px 40px; border-radius: 16px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.03); margin-top: -60px;
        position: relative; z-index: 10; max-width: 900px; margin-left: auto; margin-right: auto;
    }
    .progress-step { display: flex; align-items: center; gap: 12px; opacity: 0.5; }
    .progress-step.completed, .progress-step.active { opacity: 1; }
    .step-circle { width: 40px; height: 40px; border-radius: 50%; background: #F1F5F9; color: var(--text-muted); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; }
    .progress-step.completed .step-circle { background: #10B981; color: white; }
    .progress-step.active .step-circle { background: var(--brand-orange); color: white; box-shadow: 0 4px 10px rgba(255,107,0,0.3); }
    .progress-step strong { display: block; font-size: 14px; color: var(--nav-blue); }
    .progress-step small { font-size: 12px; color: var(--text-muted); }
    .progress-line { flex-grow: 1; height: 2px; background: #E2E8F0; margin: 0 15px; }
    .progress-line.completed-line { background: #10B981; }

    /* Layout */
    .booking-layout { display: grid; grid-template-columns: 1fr 400px; gap: 30px; margin-top: 50px; }

    /* Cards */
    .booking-card, .booking-summary-card, .booking-help-card {
        background: white; border-radius: 16px; padding: 30px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.03); margin-bottom: 25px; border: 1px solid var(--border-color);
    }

    .booking-card-header { display: flex; gap: 15px; margin-bottom: 25px; align-items: flex-start; }
    .card-title-icon { width: 48px; height: 48px; border-radius: 12px; background: #E6F0FA; color: var(--nav-blue); display: flex; align-items: center; justify-content: center; font-size: 20px; }
    .card-title-icon.green { background: #ECFDF5; color: #10B981; }
    .card-title-icon.orange { background: #FFF7ED; color: var(--brand-orange); }
    .booking-card-header h3 { font-size: 20px; font-weight: 700; color: var(--nav-blue); margin: 0 0 4px 0; }
    .booking-card-header p { font-size: 14px; color: var(--text-muted); margin: 0; }

    /* Forms */
    .booking-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    .field-large { grid-column: span 2; }
    .form-field label { display: block; font-size: 13px; font-weight: 600; color: var(--nav-blue); margin-bottom: 8px; }
    .input-box { position: relative; }
    .input-box i { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: #94A3B8; font-size: 16px; }
    .input-box input, .input-box select { width: 100%; padding: 14px 15px 14px 45px; border: 1px solid var(--border-color); border-radius: 10px; font-size: 15px; font-family: inherit; color: var(--text-dark); transition: 0.3s; background: #F8FAFC; }
    .input-box input:focus, .input-box select:focus { outline: none; border-color: var(--nav-blue); background: white; box-shadow: 0 0 0 3px rgba(0,43,91,0.1); }
    
    .booking-textarea { width: 100%; padding: 15px; border: 1px solid var(--border-color); border-radius: 10px; min-height: 120px; font-family: inherit; font-size: 15px; resize: vertical; background: #F8FAFC; }
    .booking-textarea:focus { outline: none; border-color: var(--nav-blue); background: white; }
    .textarea-note { font-size: 13px; color: var(--text-muted); display: flex; gap: 8px; align-items: center; margin-top: 10px; }

    /* Summary Pane (Sticky) */
    .booking-right { position: sticky; top: 100px; }
    .summary-header { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--border-color); padding-bottom: 20px; margin-bottom: 20px; }
    .summary-header span { font-size: 11px; font-weight: 800; color: var(--brand-orange); letter-spacing: 1px; }
    .summary-header h3 { font-size: 22px; font-weight: 800; color: var(--nav-blue); margin: 0; }
    .summary-header i { font-size: 28px; color: var(--border-color); }

    .summary-bus { display: flex; align-items: center; gap: 15px; margin-bottom: 25px; }
    .summary-bus-icon { width: 45px; height: 45px; background: var(--nav-blue); color: white; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; }
    .summary-bus strong { display: block; font-size: 16px; color: var(--nav-blue); }
    .summary-bus span { font-size: 13px; color: var(--text-muted); }

    .summary-route { display: flex; justify-content: space-between; background: #F8FAFC; padding: 20px; border-radius: 12px; margin-bottom: 25px; border: 1px solid var(--border-color); }
    .summary-place strong { display: block; font-size: 18px; color: var(--nav-blue); }
    .summary-place span { font-size: 13px; font-weight: 600; color: var(--text-muted); }
    .summary-route-middle { text-align: center; flex-grow: 1; margin: 0 15px; }
    .summary-route-middle small { font-size: 12px; color: var(--brand-orange); font-weight: 700; }
    .summary-line { height: 2px; border-top: 2px dashed #CBD5E1; position: relative; margin-top: 8px; }

    .journey-details { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; }
    .journey-detail { display: flex; flex-direction: column; gap: 5px; }
    .journey-detail i { color: var(--brand-orange); font-size: 18px; }
    .journey-detail small { font-size: 12px; color: var(--text-muted); }
    .journey-detail strong { font-size: 14px; color: var(--text-dark); }

    .fare-section { border-top: 1px dashed var(--border-color); border-bottom: 1px dashed var(--border-color); padding: 20px 0; margin-bottom: 20px; }
    .fare-title { font-size: 15px; font-weight: 700; color: var(--nav-blue); margin-bottom: 15px; }
    .fare-row { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 10px; color: var(--text-muted); }
    .fare-row strong { color: var(--text-dark); font-weight: 600; }
    
    .summary-total { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
    .summary-total span { font-size: 16px; font-weight: 700; color: var(--nav-blue); }
    .summary-total strong { font-size: 28px; font-weight: 800; color: var(--brand-orange); }

    .secure-payment { display: flex; align-items: center; gap: 8px; background: #ECFDF5; color: #059669; padding: 10px 15px; border-radius: 8px; font-size: 12px; font-weight: 600; margin-bottom: 20px; }
    
    .continue-btn { width: 100%; padding: 18px; background:  linear-gradient(
            135deg,
            #0d6efd,
            #084298
        ); color: white; border: none; border-radius: 12px; font-size: 16px; font-weight: 700; display: flex; justify-content: center; align-items: center; gap: 10px; cursor: pointer; transition: 0.3s; box-shadow: 0 8px 20px rgba(255,107,0,0.25); }
    .continue-btn:hover { background: #E65C00; transform: translateY(-2px); }

    .booking-help-card { display: flex; gap: 15px; align-items: flex-start; }
    .help-icon { width: 45px; height: 45px; border-radius: 50%; background: #F1F5F9; color: var(--nav-blue); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
    .booking-help-card strong { font-size: 16px; color: var(--nav-blue); display: block; margin-bottom: 4px; }
    .booking-help-card p { font-size: 13px; color: var(--text-muted); margin: 0 0 10px 0; }
    .booking-help-card a { font-size: 14px; color: var(--brand-orange); font-weight: 700; text-decoration: none; display: flex; align-items: center; gap: 5px; }
    .booking-help-card a:hover { text-decoration: underline; }

    @media (max-width: 992px) {
        .booking-layout { grid-template-columns: 1fr; }
        .booking-right { position: static; }
        .booking-banner { padding: 40px 30px; flex-direction: column; text-align: center; }
        .booking-banner-visual { display: none; }
        .booking-progress { display: none; /* Hide complex progress on mobile, or replace with simple version */ }
        .booking-form-grid { grid-template-columns: 1fr; }
        .field-large { grid-column: span 1; }
    }
    
    /* =========================================
ABOUT PAGE
========================================= */

.section-padding {
padding: 90px 0;
}

/* =========================================
HERO SECTION
========================================= */

.about-hero {
position: relative;
padding: 130px 0;
background:
linear-gradient(
135deg,
rgba(0, 43, 91, 0.95),
rgba(0, 43, 91, 0.82)
),
url("https://images.unsplash.com/photo-1544620347-c4fd4a3d5957?auto=format&fit=crop&w=1600&q=80")
center/cover;
color: #fff;
}

.about-hero-content {
max-width: 760px;
}

.about-tag,
.section-tag {
display: inline-block;
font-size: 13px;
font-weight: 700;
letter-spacing: 1.5px;
color: var(--primary-orange);
margin-bottom: 15px;
text-transform: uppercase;
}

.about-hero .about-tag {
color: #FFD3B0;
}

.about-hero h1 {
font-size: 56px;
font-weight: 800;
line-height: 1.2;
margin-bottom: 25px;
}

.about-hero h1 span {
color: var(--primary-orange);
}

.about-hero p {
font-size: 18px;
line-height: 1.8;
max-width: 700px;
color: rgba(255, 255, 255, 0.9);
}

/* =========================================
BUTTONS
========================================= */

.about-btn,
.cta-btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 10px;
margin-top: 20px;
padding: 14px 30px;
border-radius: 8px;
background: var(--primary-orange);
color: #fff;
text-decoration: none;
font-weight: 700;
border: 2px solid var(--primary-orange);
transition: all 0.3s ease;
}

.about-btn,
.cta-btn {
background: var(--orange-hover);
border-color: var(--orange-hover);
color: #fff;
transform: translateY(-3px);
box-shadow: 0 10px 25px rgba(255, 107, 0, 0.25);
}

.about-btn i,
.cta-btn i {
transition: transform 0.3s ease;
}

.about-btn i,
.cta-btn i {
transform: translateX(5px);
}

/* =========================================
INTRO SECTION
========================================= */

.about-intro {
background: var(--card-bg);
}

.about-intro h2,
.section-heading h2,
.values-section h2 {
font-size: 38px;
font-weight: 800;
margin-bottom: 20px;
color: var(--primary-navy);
}

.about-intro p,
.values-section p {
color: var(--text-muted);
line-height: 1.8;
margin-bottom: 16px;
}

.about-image-wrapper {
position: relative;
}

.about-image-wrapper img {
width: 100%;
height: 500px;
object-fit: cover;
border-radius: 20px;
box-shadow: var(--shadow-lg);
}

.experience-box {
position: absolute;
bottom: -25px;
right: -20px;
max-width: 240px;
padding: 25px;
border-radius: 15px;
background: var(--primary-orange);
color: #fff;
box-shadow: 0 15px 40px rgba(255, 107, 0, 0.25);
}

.experience-box strong {
display: block;
font-size: 20px;
margin-bottom: 5px;
}

.experience-box span {
font-size: 14px;
opacity: 0.9;
}

.about-features {
margin-top: 25px;
}

.feature-item {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 14px;
font-weight: 600;
color: var(--text-main);
}

.feature-item i {
color: var(--primary-orange);
font-size: 20px;
}

/* =========================================
STATS SECTION
========================================= */

.about-stats {
padding: 65px 0;
background: var(--primary-navy);
color: #fff;
}

.stat-item {
padding: 15px;
transition: transform 0.3s ease;
}

.stat-item {
transform: translateY(-5px);
}

.stat-item i {
font-size: 32px;
margin-bottom: 12px;
color: var(--primary-orange);
}

.stat-item h3 {
font-size: 32px;
font-weight: 800;
margin-bottom: 5px;
}

.stat-item p {
margin: 0;
opacity: 0.85;
}

/* =========================================
SECTION HEADING
========================================= */

.section-heading {
max-width: 700px;
margin: auto;
}

.section-heading p {
color: var(--text-muted);
line-height: 1.7;
}

/* =========================================
MISSION SECTION
========================================= */

.mission-section {
background: var(--bg-light);
}

.mission-card {
height: 100%;
padding: 40px;
background: var(--card-bg);
border: 1px solid var(--border-light);
border-radius: 18px;
box-shadow: var(--shadow-sm);
transition: all 0.3s ease;
}

.mission-card {
transform: translateY(-7px);
box-shadow: var(--shadow-md);
}

.mission-icon,
.why-icon {
width: 65px;
height: 65px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 14px;
background: rgba(255, 107, 0, 0.12);
color: var(--primary-orange);
font-size: 28px;
margin-bottom: 25px;
}

.mission-card h3 {
font-weight: 750;
margin-bottom: 15px;
color: var(--primary-navy);
}

.mission-card p {
color: var(--text-muted);
line-height: 1.8;
}

/* =========================================
WHY CHOOSE US SECTION
========================================= */

.why-section {
background: var(--card-bg);
}

.why-card {
height: 100%;
padding: 30px;
border: 1px solid var(--border-light);
border-radius: 16px;
background: var(--card-bg);
transition: all 0.3s ease;
}

.why-card {
transform: translateY(-6px);
border-color: rgba(255, 107, 0, 0.35);
box-shadow: var(--shadow-md);
}

.why-icon {
width: 58px;
height: 58px;
font-size: 24px;
margin-bottom: 18px;
}

.why-card h4 {
font-size: 20px;
font-weight: 700;
margin-bottom: 12px;
color: var(--primary-navy);
}

.why-card p {
margin: 0;
color: var(--text-muted);
line-height: 1.7;
}

/* =========================================
VALUES SECTION
========================================= */

.values-section {
background: var(--bg-light);
}

.value-list {
display: flex;
flex-direction: column;
gap: 18px;
}

.value-item {
display: flex;
align-items: flex-start;
gap: 18px;
padding: 24px;
background: var(--card-bg);
border: 1px solid var(--border-light);
border-radius: 14px;
transition: all 0.3s ease;
}

.value-item {
transform: translateX(8px);
border-color: rgba(255, 107, 0, 0.35);
box-shadow: var(--shadow-sm);
}

.value-item > i {
font-size: 30px;
color: var(--primary-orange);
}

.value-item h5 {
font-weight: 700;
margin-bottom: 5px;
color: var(--primary-navy);
}

.value-item p {
margin: 0;
font-size: 14px;
}

/* =========================================
CALL TO ACTION
========================================= */

.about-cta {
padding: 100px 0;
background:
linear-gradient(
135deg,
rgba(0, 43, 91, 0.98),
rgba(0, 43, 91, 0.88)
);
color: #fff;
}

.about-cta h2 {
font-size: 42px;
font-weight: 800;
margin: 15px 0;
}

.about-cta p {
max-width: 600px;
margin: auto;
color: rgba(255, 255, 255, 0.85);
font-size: 17px;
}

.light-tag {
color: #FFD3B0;
}

.cta-btn {
margin-top: 28px;
}

/* =========================================
RESPONSIVE DESIGN
========================================= */

@media (max-width: 991px) {

.section-padding {
    padding: 75px 0;
}

.about-hero {
    padding: 100px 0;
}

.about-hero h1 {
    font-size: 44px;
}

.about-image-wrapper img {
    height: 400px;
}

.experience-box {
    right: 10px;
}

.about-intro h2,
.section-heading h2,
.values-section h2 {
    font-size: 34px;
}

}

@media (max-width: 767px) {

.section-padding {
    padding: 70px 0;
}

.about-hero {
    padding: 85px 0;
}

.about-hero h1 {
    font-size: 38px;
}

.mission-card {
    padding: 30px;
}

.about-cta {
    padding: 80px 0;
}

.about-cta h2 {
    font-size: 36px;
}

}

@media (max-width: 576px) {

.section-padding {
    padding: 60px 0;
}

.about-hero {
    padding: 70px 0;
}

.about-hero h1 {
    font-size: 32px;
}

.about-hero p {
    font-size: 16px;
}

.about-intro h2,
.section-heading h2,
.values-section h2 {
    font-size: 28px;
}

.about-cta h2 {
    font-size: 30px;
}

.about-image-wrapper img {
    height: 320px;
}

.experience-box {
    position: relative;
    bottom: auto;
    right: auto;
    max-width: 100%;
    margin-top: 15px;
}

.mission-card,
.why-card {
    padding: 25px;
}

.value-item {
    padding: 20px;
    gap: 15px;
}

.value-item:hover {
    transform: translateY(-4px);
}

.about-btn,
.cta-btn {
    padding: 13px 22px;
}

.stat-item h3 {
    font-size: 28px;
}

}