/* ========== SAFETRANSFER - CONSOLIDATED STYLESHEET ========== */

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2d6cdf;
    --primary-dark: #1e4bb5;
    --primary-light: #EBF2FF;
    --secondary: #00d2ff;
    --accent: #f9d423;
    --dark: #0f172a;
    --light: #f8fafc;
    --glass: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(255, 255, 255, 0.2);
    --text-main: #1e293b;
    --text-muted: #64748b;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}


/* ===== HEADER ===== */
.header-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

.header-main.scrolled {
    position: fixed;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    padding: 0.75rem 0;
    box-shadow: var(--shadow);
}

.nav-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.6rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo-icon i {
    font-size: 1.8rem;
    color: white;
    /* No longer blue, matches screenshot */
}

.logo-text span {
    color: var(--secondary);
    /* The 'Transfer' text is light blue */
    font-weight: 500;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    font-size: 0.95rem;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn-my-booking {
    background: var(--primary);
    color: white !important;
    border: none;
    padding: 0.6rem 1.4rem;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-my-booking:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(45, 108, 223, 0.3);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;

    cursor: pointer;
    font-size: 1.6rem;
}

/* ===== MOBILE NAV FIXES ===== */
@media (max-width: 992px) {
    .nav-links {
        display: none !important;
    }

    .menu-toggle {
        display: block;
        padding-left: 0.25rem;
    }

    .logo-text span {
        display: none;
        /* Hide 'Transfer' text to fit button */
    }

    .btn-my-booking {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .nav-actions {
        gap: 0.75rem;
    }
}

/* ===== MOBILE BOTTOM NAV ===== */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    top: 80px;
    right: 12px;
    transform: scale(0.85) translateY(-10px);
    transform-origin: top right;
    opacity: 0;
    pointer-events: none;
    width: calc(100% - 80px);
    max-width: 380px;
    height: 60px;
    background: #181e38;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
    z-index: 9999;
    transition: transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1), opacity 0.25s ease;
}

.mobile-bottom-nav.nav-open {
    transform: scale(1) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.mobile-bottom-nav-inner {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    overflow-x: auto;
    padding: 0 10px;
    gap: 2px;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE / Edge */
}

.mobile-bottom-nav-inner::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}


.mbn-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.42);
    border-radius: 40px;
    padding: 11px 14px;
    transition: all 0.28s ease;
}

.mbn-item i {
    font-size: 20px;
}

.mbn-item span {
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    font-size: 0.8rem;
    font-weight: 700;
    transition: all 0.32s ease;
    white-space: nowrap;
}

.mbn-item.active {
    background: var(--primary);
    color: white;
    padding: 11px 18px;
    gap: 8px;
}

.mbn-item.active span {
    max-width: 90px;
    opacity: 1;
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 8rem;
    padding-bottom: 4rem;
    background-size: cover;
    background-position: center;
    text-align: center;
    /* Center inline text */
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    /* Ensure it stays above background */
    max-width: 1000px;
    padding: 0 2rem;
    width: 100%;
}

.hero-content h1,
.hero-text h1 {
    font-size: 4rem;
    color: white;
    margin-bottom: 1.5rem;

    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-content p,
.hero-text p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 auto 2rem !important;
    max-width: 650px;
    opacity: 0.95;
    text-align: center;
}

/* HOME HERO */
.page-home .hero-section {
    background: none;
    /* Redundant if background div is used */
}

.page-home .hero-background {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../../image/pid.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.page-home .hero-section {
    display: flex;
    align-items: center;
    /* Center content vertically */
    padding: 10rem 0 6rem;
    min-height: 100vh;
}

.page-home .hero-content {
    margin-bottom: 0;
    animation: fadeInUp 1s ease-out;
    position: relative;
    z-index: 5;
}

/* PAGE HEROES (short) */
/* .page-payment-success .hero-section,
.page-view-details .hero-section,
.page-booking .hero-section {
    height: 300px;
    min-height: 300px;
    padding-top: 100px;
    background-image: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.8)), url('../../image/about.jpg');
} */

/* GALLERY & ABOUT HERO */
.page-gallery .hero,
.page-about .hero,
.page-contact .hero {
    position: relative;
    min-height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center horizontally */
    text-align: center;
    /* Center text */
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

/* .page-about .hero-background,
.page-about .hero-section {
    background-image: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.5)), url('../../image/about1.jpg');
} */

.page-gallery .hero-background,
.page-gallery .hero-section {
    background-image: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.5)), url('../../image/photo2.jpg');
}

.page-contact .hero-background,
.page-contact .hero-section {
    background-image: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.5)), url('../../image/contect1.jpg');
}

.page-about .hero-background,
.page-about .hero-section {
    background-image: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.5)), url('../../image/about1.jpg');

}

/* PAGE HEROES (short) */
.page-payment-success .hero-section,
.page-view-details .hero-section,
.page-booking .hero-section {
    height: 300px;
    min-height: 300px;
    padding-top: 100px;
    text-align: center;
    background-image: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.8)), url('../../image/about.jpg');
}

.page-gallery .hero-content,
.page-about .hero-content,
.page-contact .hero-content {
    position: relative;
    z-index: 2;
    padding: 8rem 0 4rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center flex items */
}

.hero-text {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ===== GLASSMORPHISM BOOKING CARD ===== */
.booking-glass-card {
    position: relative;
    margin: 4rem auto 0;
    width: 100%;
    max-width: 1140px;
    background: var(--glass);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
    border-radius: 32px;
    padding: 3rem;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.booking-form-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.input-label-group {
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 0.75rem;
}

.input-label-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-label-group .form-input {
    background: white;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    color: var(--dark);
    width: 100%;
    outline: none;
    transition: var(--transition);
}

.input-label-group .form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(45, 108, 223, 0.1);
}

.form-row-center {
    display: grid;
    grid-template-columns: 1fr 1fr 0.6fr;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.return-trip-toggle {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    color: var(--dark);
    font-weight: 700;
}

/* Toggle Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 32px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #E2E8F0;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 4px;
    bottom: 4px;
    background: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.slider {
    background: var(--primary);
}

input:checked+.slider:before {
    transform: translateX(28px);
}

/* Premium Search Button */
.btn-premium-search {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(0, 210, 255, 0.3);
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.5px;
}

.btn-premium-search:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 210, 255, 0.4);
}

.btn-premium-search:hover i {
    transform: translateX(5px);
}

.btn-premium-search i {
    transition: transform 0.3s ease;
}

/* ===== FEATURE CARDS ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid #F1F5F9;
    transition: var(--transition);
    box-shadow: var(--shadow);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: #F1F5F9;
    color: var(--primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    color: white;
    transform: rotate(-10deg);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-muted);
}

/* ===== WHY CHOOSE US ===== */
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 24px;
    border: 1px solid #F1F5F9;
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background: #F1F5F9;
    color: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.benefit-item:hover .benefit-icon {
    background: var(--primary);
    color: white;
}

.benefit-text {
    text-align: left;
}

.benefit-text h4 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.benefit-text p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ===== NEW BENEFITS SECTION (PREMIUM DESIGN) ===== */
.benefits-section {
    padding: 6rem 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.benefits-section .benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0;
    background: transparent;
    border: none;
    transition: var(--transition);
}

.benefits-section .benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: none;
    border: none;
}

.benefits-section .benefit-icon {
    width: 80px;
    height: 80px;
    background: #eef4ff;
    color: #2563eb;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition);
}

.benefits-section .benefit-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 2px;
}

.benefits-section .benefit-item:hover .benefit-icon {
    background: #2563eb;
    color: white;
}

.benefits-section .benefit-item h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.75rem;
    font-family: 'Outfit', sans-serif;
}

.benefits-section .benefit-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
    max-width: 280px;
}

@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 640px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== ROUTE CARDS ===== */
.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.route-card {
    background: white;
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid #E2E8F0;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.route-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.route-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 1.5rem;
    display: flex;
    align-items: flex-end;
}

.route-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.8), transparent);
}

.route-badge {
    position: relative;
    z-index: 2;
    background: var(--primary);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.route-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.route-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.route-destination {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.route-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.detail-item {
    background: #F8FAFC;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ===== FLOATING CHAT ===== */
.floating-chat {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 64px;
    height: 64px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    z-index: 1000;
    transition: var(--transition);
}

.floating-chat:hover {
    transform: translateY(-5px) scale(1.1);
}

/* ===== MODAL ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    animation: slideUp 0.3s ease;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid #E5E7EB;
}

.modal-header h3 {
    margin: 0;
    color: var(--primary);
    font-size: 1.25rem;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: 0.2s;
}

.modal-close:hover {
    background: #F3F4F6;
}

.modal-body {
    padding: 24px;
}

.modal-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 16px;
    transition: 0.2s;
    font-family: 'Outfit', sans-serif;
}

.modal-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(45, 108, 223, 0.1);
}

.modal-btn {
    width: 100%;
    background: var(--primary);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: 0.2s;
    font-family: 'Outfit', sans-serif;
}

.modal-btn:hover {
    background: var(--primary-dark);
}

/* ===== PROGRESS STEPS ===== */
.progress-container {
    margin: -40px auto 40px;
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    padding: 1.5rem 3rem;
    background: white;
    border-radius: 50px;
    box-shadow: var(--shadow);
    border: 1px solid #F1F5F9;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 700;
    position: relative;
    flex: 1;
}

.progress-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: #F1F5F9;
    z-index: -1;
}

.progress-step.active {
    color: var(--primary);
}

.progress-step .step-icon {
    width: 40px;
    height: 40px;
    background: #F8FAFC;
    border: 2px solid #F1F5F9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
}

.progress-step.active .step-icon {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 0 20px rgba(45, 108, 223, 0.3);
}

/* ===== PAGE TITLE ===== */
.page-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin: 2rem 0 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.page-title i {
    color: var(--accent);
}

/* ===== ALERTS ===== */
.alert {
    padding: 1.2rem 1.8rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    border: 1px solid transparent;
    animation: slideDown 0.3s ease;
}

.alert-error {
    background: #FEE2E2;
    color: #991B1B;
    border-color: #FECACA;
}

.alert-success {
    background: #DCFCE7;
    color: #166534;
    border-color: #BBF7D0;
}

/* ===== SUCCESS PAGE ===== */
.success-page {
    padding: 0 0 6rem;
    background: #F8FAFC;
}

.success-container {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 32px;
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid #F1F5F9;
}

.success-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 4rem 2rem;
    text-align: center;
    color: white;
}

.success-icon-wrapper {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.success-icon-wrapper i {
    font-size: 3rem;
    color: white;
}

.success-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.success-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.success-content {
    padding: 2.5rem;
}

/* ===== SECTION CARD ===== */
.section-card {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid #F1F5F9;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #F1F5F9;
}

.card-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    display: flex;
    flex-direction: column;
}

.card-title span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== BOOKING REFERENCE CARD ===== */
.booking-reference-card {
    background: linear-gradient(135deg, #F8FAFC, white);
    border: 2px dashed var(--primary);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.booking-ref-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.booking-ref-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
}

.booking-ref-text {
    display: flex;
    flex-direction: column;
}

.booking-ref-label {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.booking-ref-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 2px;
    line-height: 1.2;
}

.booking-ref-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #F8FAFC;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    color: var(--text-muted);
}

.booking-ref-right i {
    color: var(--accent);
}

/* ===== DETAILS GRID ===== */
.details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.detail-item {
    background: #F8FAFC;
    padding: 1rem 1.5rem;
    border-radius: 16px;
    border: 1px solid #F1F5F9;
}

.detail-label {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.detail-label i {
    color: var(--accent);
}

.detail-value {
    font-weight: 600;
    color: var(--dark);
    font-size: 1rem;
}

/* ===== VEHICLE CARD (success page) ===== */
.vehicle-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: #F8FAFC;
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid #F1F5F9;
}

.vehicle-image-wrapper {
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid #F1F5F9;
}

.vehicle-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.vehicle-info {
    flex: 1;
}

.vehicle-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.vehicle-specs {
    display: flex;
    gap: 2rem;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    background: white;
    padding: 0.5rem 1.25rem;
    border-radius: 40px;
    border: 1px solid #F1F5F9;
}

.spec-item i {
    color: var(--primary);
}

/* ===== TRIP TIMELINE ===== */
.trip-timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline-item {
    position: relative;
    padding-bottom: 2rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -1.5rem;
    top: 2rem;
    bottom: 0;
    width: 2px;
    background: #F1F5F9;
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-icon {
    position: absolute;
    left: -2.5rem;
    top: 0;
    width: 3rem;
    height: 3rem;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    border: 3px solid white;
    box-shadow: var(--shadow-sm);
}

.timeline-content {
    background: #F8FAFC;
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid #F1F5F9;
}

.timeline-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.route-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.route-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.route-item .label {
    min-width: 80px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.route-item .value {
    flex: 1;
    font-weight: 600;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.route-item .value i {
    color: var(--accent);
    width: 16px;
}

/* ===== PRICE CARD ===== */
.price-card {
    background: linear-gradient(135deg, var(--dark), #1e293b);
    color: white;
    border: none;
}

.price-card .card-header {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.price-card .card-title {
    color: white;
}

.price-card .card-title span {
    color: rgba(255, 255, 255, 0.6);
}

.payment-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.payment-badge i {
    color: #98FB98;
}

.price-breakdown {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-row:last-child {
    border-bottom: none;
}

.price-row.total {
    border-top: 2px solid var(--accent);
    margin-top: 0.5rem;
    padding-top: 1rem;
    font-size: 1.2rem;
    font-weight: 800;
}

.price-label {
    color: rgba(255, 255, 255, 0.8);
}

.price-value {
    font-weight: 700;
}

.price-value.advance {
    color: #98FB98;
}

.price-value.balance {
    color: #ffb700;
}

/* ===== NOTES SECTION ===== */
.notes-section {
    background: #F8FAFC;
    border-radius: 24px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid #F1F5F9;
}

.notes-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.notes-title i {
    color: var(--accent);
}

.notes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.note-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: white;
    border-radius: 40px;
    font-size: 0.9rem;
    color: var(--text-muted);
    border: 1px solid #F1F5F9;
}

.note-item i {
    color: var(--primary);
    width: 16px;
}

/* ===== ACTION BUTTONS ===== */
.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 10px 20px rgba(45, 108, 223, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(45, 108, 223, 0.3);
    color: white;
}

.btn-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

.btn-danger {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    box-shadow: 0 10px 20px rgba(220, 38, 38, 0.2);
}

.btn-danger:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(220, 38, 38, 0.3);
}

.btn-premium-search:hover {
    background: #1a56cc;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 59, 122, 0.2);
}

.cursor-pointer {
    cursor: pointer;
}

/* Home Page Utilities */
.select-no-appearance {
    appearance: none;
}

.return-label-text {
    font-weight: 600;
}

.return-segment {
    display: none;
    margin-bottom: 30px;
}

.return-grid {
    grid-template-columns: 1fr 1fr 1fr;
}

.route-description-home {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.btn-book-home {
    padding: 1rem;
}

/* Payment Success Page Utilities */
.hero-success {
    background-image: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.8)), url('../../image/photo1.jpg');
}

.badge-label {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.badge-val {
    font-weight: 600;
}

.instructions-box {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: #F8FAFC;
    border-radius: 16px;
    border-left: 4px solid var(--accent);
}

.instructions-label {
    color: var(--primary);
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

.instructions-text {
    color: var(--dark);
}

.price-paid-full {
    color: #98FB98;
}

.paid-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.9rem;
}

/* Search Page Utilities */
.hero-search {
    background-image: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.8)), url('../../image/photo1.jpg');
}

.trip-info-white {
    background: white;
    margin-top: 1rem;
}

.trip-stats-spacing {
    margin-top: 0.5rem;
}

.error-box {
    background: #fee2e2;
    border: 1px solid #fecaca;
    margin-top: 1rem;
}

.error-icon {
    background: #fecaca;
    color: #dc2626;
}

.error-text {
    color: #dc2626;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flex-gap-8 {
    display: flex;
    gap: 8px;
}

.map-canvas {
    width: 100%;
    height: 200px;
    background: #e9eef2;
    border-radius: 16px;
    margin-top: 16px;
    display: none;
}

.card-title-flex {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    gap: 8px;
}

.include-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.include-item-flex {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
}

.review-stars {
    color: #ffb700;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.sort-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
}

@media (max-width: 576px) {
    .sort-container {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .sort-select {
        max-width: 100%;
    }
}

.sort-select {
    padding: 10px 20px;
    border-radius: 40px;
    border: 1.5px solid #E5E7EB;
    background: white;
    font-weight: 500;
    outline: none;
    font-family: 'Outfit', sans-serif;
}

.remove-return-btn {
    background: none;
    border: none;
    color: #dc2626;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-new-quote {
    width: 100%;
    padding: 1.2rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 2rem;
}

/* ===== SEARCH RESULTS PAGE ===== */
.vehicles-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.search-vehicle-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    display: flex;
    gap: 2.5rem;
    border: 1px solid #F1F5F9;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.search-vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--primary-light);
}

.vehicle-visual {
    flex: 0 0 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.vehicle-visual img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: var(--transition);
}

.search-vehicle-card:hover .vehicle-visual img {
    transform: scale(1.05);
}

.vehicle-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.vehicle-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.vehicle-title-area h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.badge-class {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary-light);
    color: var(--primary);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
}

.capacity-pills {
    display: flex;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.pill-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.9rem;
}

.pill-item i {
    color: var(--primary);
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.stars-gold {
    color: #FFB700;
    font-size: 0.9rem;
}

.review-count {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

.feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
}

.badge-feature {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark);
    background: #F8FAFC;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #F1F5F9;
}

.vehicle-pricing-area {
    flex: 0 0 240px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: right;
    padding-left: 2rem;
    border-left: 1px solid #F1F5F9;
}

.cancel-policy {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    color: #10B981;
    font-size: 0.85rem;
    font-weight: 700;
}

.price-main {
    margin-top: 1rem;
}

.price-value-large {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.price-desc-sub {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: 4px;
}

/* Comfort Design Enhancements */
.comfort-content {
    display: grid !important;
    grid-template-columns: 1fr 200px;
    gap: 1rem;
}

.comfort-content .vehicle-header-flex,
.comfort-content .capacity-pills-comfort,
.comfort-content .rating-row-comfort,
.comfort-content .vertical-features {
    grid-column: 1 / 2;
}

.comfort-content .vertical-features {
    grid-column: 2 / 3;
    grid-row: 1 / 5;
    /* stretch along the right side of the middle col */
}

.capacity-pills-comfort {
    display: flex;
    gap: 24px;
    margin-bottom: 2rem;
}

.pill-item-comfort {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pill-item-comfort i {
    color: var(--primary);
    font-size: 1.25rem;
}

.pill-text-stack {
    display: flex;
    flex-direction: column;
}

.pill-text-stack .pill-val {
    font-weight: 800;
    color: var(--dark);
    font-size: 1.15rem;
    line-height: 1.1;
}

.pill-text-stack .pill-lbl {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
}

.rating-row-comfort {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 1.5rem;
}

.stars-gold-wrap {
    color: #FFB700;
    font-size: 1.1rem;
    display: flex;
    flex-wrap: wrap;
    width: 65px;
    line-height: 1.4;
}

.review-text-stack {
    display: flex;
    flex-direction: column;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.3;
}

.vertical-features {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    /* right-align features maybe? No, the screenshot shows centered or left aligned badges */
    align-items: flex-start;
    gap: 10px;
    margin-top: 0;
}

.vertical-features .badge-feature {
    background: #F8FAFC;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    border: none;
    font-size: 0.85rem;
    font-weight: 700;
}

.comfort-visual {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
}

.comfort-pricing-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
}

.comfort-pricing-right {
    flex: 0 0 160px;
    /* Right column just for cancel policy */
    border-left: none;
    /* remove right border */
    padding-left: 0;
    align-items: flex-end;
    /* Align badge top right or flex-start */
    justify-content: flex-start;
}

.comfort-pricing {
    justify-content: center !important;
    align-items: center !important;
    gap: 1.5rem;
    text-align: center;
}

.comfort-cancel i {
    color: #10B981;
}

.comfort-cancel {
    background: transparent;
    color: #10B981;
    font-weight: 800;
    font-size: 0.95rem;
    justify-content: flex-end !important;
    margin-bottom: 0 !important;
}

.comfort-price {
    margin-top: 0 !important;
    text-align: center;
}

.comfort-price .price-display {
    font-size: 2.6rem;
    font-weight: 900;
    letter-spacing: -1px;
}

.comfort-btn {
    background: #104473 !important;
    /* solid dark blue */
    border-radius: 50px !important;
    padding: 1.1rem 2rem !important;
    box-shadow: none !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px;
    width: 100%;
}

.comfort-btn:hover {
    background: #082d4d !important;
}

@media (max-width: 992px) {
    .search-vehicle-card {
        flex-direction: column;
        gap: 2rem;
        padding: 1.5rem;
    }

    .vehicle-visual {
        flex: 0 0 auto;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .vehicle-pricing-area {
        flex: 0 0 auto;
        padding-left: 0;
        border-left: none;
        border-top: 1px solid #F1F5F9;
        padding-top: 1.5rem;
        text-align: center;
    }

    .cancel-policy {
        justify-content: center;
    }
}


/* Booking Page Utilities */
.hero-booking {
    background: #F8FAFC;
    min-height: auto !important;
    padding: 10rem 0 6rem !important;
    text-align: center;
}

.hero-booking .hero-content {
    margin: 0 auto;
}

.hero-booking h1 {
    color: var(--dark) !important;
    text-shadow: none !important;
    font-size: 3rem !important;
    margin-bottom: 0.5rem !important;
}

.hero-booking p {
    color: var(--text-muted) !important;
    font-size: 1.1rem !important;
}

.form-section-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    border: 1px solid #F1F5F9;
    margin-bottom: 2rem;
}

.form-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-label-premium {
    display: block;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-input-premium {
    width: 100%;
    padding: 0.8rem 1.2rem;
    border: 1.5px solid #E5E7EB;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    outline: none;
}

.form-input-premium:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(45, 108, 223, 0.1);
}

.address-highlight-card {
    background: #F8FAFC;
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.address-highlight-icon {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.address-highlight-content h4 {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.address-highlight-content p {
    font-weight: 700;
    color: var(--dark);
    font-size: 1.1rem;
}

/* Progress Stepper */
.progress-container {
    margin-top: -30px;
    position: relative;
    z-index: 5;
    margin-bottom: 4rem;
}

.progress-steps {
    display: flex;
    justify-content: space-around;
    align-items: center;
    list-style: none;
    padding: 1.5rem 2rem;
    background: white;
    border-radius: 100px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid #F1F5F9;
    max-width: 800px;
    margin: 0 auto;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 700;
}

.step-icon {
    width: 52px;
    height: 52px;
    background: #F8FAFC;
    color: #CBD5E1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.progress-step.active {
    color: var(--primary);
}

.progress-step.active .step-icon {
    background: var(--primary);
    color: white;
    box-shadow: 0 10px 15px -3px rgba(45, 108, 223, 0.3);
}

.progress-step.completed .step-icon {
    background: #DCFCE7;
    color: #166534;
}

/* View Details Page Utilities */
.hero-details {
    background-image: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.8)), url('../../image/photo1.jpg');
}

.accent-icon {
    color: var(--accent);
}

.payment-val-primary {
    font-weight: 700;
    color: var(--primary);
}

.payment-val-success {
    font-weight: 700;
    color: #4CAF50;
}

.full-payment-box {
    background: #e8f5e9;
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.full-payment-label {
    color: #166534;
}

.full-payment-val {
    font-weight: 700;
    color: #166534;
}

.status-pill {
    color: white;
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
}

.status-pill-paid {
    background: #4CAF50;
}

.status-pill-pending {
    background: #FFC107;
}

.status-badge {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-confirmed {
    background: #DCFCE7;
    color: #166534;
}

.status-cancelled {
    background: #FEE2E2;
    color: #991B1B;
}

.vehicle-info {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: #F8FAFC;
    border-radius: 24px;
    margin-bottom: 2rem;
}

.vehicle-info .vehicle-image {
    width: 200px;
    height: auto;
    object-fit: contain;
}

.btn-home {
    background: white;
    color: var(--dark);
    border: 2px solid #E2E8F0;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    text-decoration: none;
}

.btn-home:hover {
    background: #F8FAFC;
    border-color: #CBD5E1;
    transform: translateY(-2px);
}

.form-inline {
    display: inline;
}

/* ===== CONTACT PAGE ===== */
/* ===== VIEW DETAILS PAGE ===== */
.booking-card {
    background: white;
    border-radius: 32px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    border: 1px solid #F1F5F9;
    margin-bottom: 3rem;
}

.booking-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #F1F5F9;
}

.booking-ref {
    display: flex;
    align-items: center;
    gap: 12px;
}

.status-badge {
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.status-confirmed {
    background: #DCFCE7;
    color: #166534;
    border: 1px solid #BBF7D0;
}

.status-cancelled {
    background: #FEE2E2;
    color: #991B1B;
    border: 1px solid #FECACA;
}

.status-pending {
    background: #FEF3C7;
    color: #92400E;
    border: 1px solid #FDE68A;
}

.vehicle-info {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: #F8FAFC;
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid #F1F5F9;
}

.vehicle-image {
    width: 120px;
    height: 120px;
    object-fit: contain;
    background: white;
    border-radius: 16px;
    padding: 0.5rem;
    border: 1px solid #F1F5F9;
}

.vehicle-details h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.vehicle-details p {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.vehicle-details p i {
    color: var(--accent);
    width: 20px;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.detail-section {
    background: #F8FAFC;
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid #F1F5F9;
    transition: var(--transition);
}

.detail-section:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-sm);
}

.detail-section h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #F1F5F9;
}

.detail-section h3 i {
    color: var(--accent);
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid #F1F5F9;
    font-size: 0.95rem;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row span:first-child {
    color: var(--text-muted);
    font-weight: 500;
}

.detail-row span:last-child {
    font-weight: 600;
    color: var(--dark);
    text-align: right;
}

.actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #F1F5F9;
}

.btn-lookup {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
}

.btn-lookup:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

.lookup-button-wrapper {
    text-align: center;
    margin-bottom: 2rem;
}

/* ===== BOOKING DETAILS PAGE ===== */
.booking-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.sidebar-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.summary-card {
    background: white;
    border-radius: 32px;
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid #F1F5F9;
}

.trip-info {
    background: #F8FAFC;
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid #F1F5F9;
}

.trip-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.trip-row:last-child {
    margin-bottom: 0;
}

.trip-icon {
    width: 36px;
    height: 36px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.trip-details {
    flex: 1;
}

.trip-label {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trip-value {
    font-weight: 700;
    color: var(--dark);
    font-size: 0.95rem;
    line-height: 1.3;
}

.trip-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    background: white;
    padding: 1.25rem;
    border-radius: 16px;
    margin-bottom: 1rem;
    border: 1px solid #F1F5F9;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-weight: 800;
    color: var(--dark);
    font-size: 0.9rem;
}

.stat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 700;
}

.vehicle-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 16px;
    margin-top: 1rem;
    border: 1px solid #F1F5F9;
}

.vehicle-badge img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: 12px;
    background: #F8FAFC;
}

.vehicle-badge-info h4 {
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.vehicle-badge-info div {
    display: flex;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.currency-box {
    background: white;
    border-radius: 24px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #F1F5F9;
    box-shadow: var(--shadow);
}

.currency-label {
    font-weight: 800;
    color: var(--dark);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.currency-label i {
    color: var(--accent);
}

.currency-select {
    padding: 0.7rem 1.2rem;
    border-radius: 12px;
    background: #F8FAFC;
    border: 1px solid #F1F5F9;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    min-width: 140px;
}

.form-section {
    background: white;
    border-radius: 32px;
    padding: 2rem;
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
    border: 1px solid #F1F5F9;
}

.form-section h2 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-section h2 i {
    color: var(--accent);
}

.form-row {
    margin-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.form-row>div {
    flex: 1;
    min-width: 200px;
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    font-size: 0.95rem;
    transition: var(--transition);
    background: white;
    font-family: 'Outfit', sans-serif;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(45, 108, 223, 0.1);
}

.form-control.error {
    border-color: #dc2626;
}

.error-message {
    color: #dc2626;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    display: block;
}

textarea.form-control {
    border-radius: 20px;
    resize: vertical;
    min-height: 100px;
}

.payment-type-container {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.payment-type-option {
    flex: 1;
    background: white;
    border: 2px solid #F1F5F9;
    border-radius: 16px;
    padding: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.payment-type-option:hover,
.payment-type-option.selected {
    border-color: var(--primary);
}

.payment-type-option.selected {
    background: #F0F7FF;
}

.btn-book {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 20px;
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Outfit', sans-serif;
    box-shadow: 0 10px 20px rgba(45, 108, 223, 0.2);
}

.btn-book:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(45, 108, 223, 0.3);
}

.btn-book:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 1.5rem 0 1rem;
    padding: 1.2rem;
    background: #F8FAFC;
    border-radius: 50px;
    border: 1px solid #F1F5F9;
}

.checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--primary);
    flex-shrink: 0;
}

.checkbox label {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.checkbox a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.free-cancellation {
    background: #DCFCE7;
    color: #166534;
    padding: 1rem 1.2rem;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 1.5rem;
}

.included-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 1rem;
}

.included-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
    background: #F8FAFC;
    padding: 0.5rem 1rem;
    border-radius: 30px;
}

.included-item i {
    color: #22c55e;
}

.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* ===== GALLERY ===== */
.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    color: #64748b;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(45, 108, 223, 0.2);
    transform: translateY(-2px);
}

.gallery-grid {
    columns: 3 350px;
    column-gap: 2rem;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 2rem;
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    background: #f8fafc;
    cursor: pointer;
    transition: all 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 40%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-item:hover .item-overlay {
    opacity: 1;
}

.item-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.item-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.fleet-gallery {
    margin-top: 5rem;
    padding: 4rem 2rem;
    background: #0f172a;
    border-radius: 60px;
    color: white;
}

.fleet-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.fleet-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--primary);
}

.responsive-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* ===== TRAVELER STORIES ===== */
.stories-section {
    margin-top: 6rem;
    background: #f8fafc;
    padding: 6rem 2rem;
    border-radius: 60px;
}

.stories-header {
    text-align: center;
    margin-bottom: 3rem;
}

.stories-header h3 {
    font-size: 2.5rem;
    font-weight: 800;
}

.stories-header p {
    color: #64748b;
}

.story-card {
    background: white;
    padding: 3rem;
    border-radius: 32px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
}

.story-user {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
}

.story-user-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.story-user-info h5 {
    margin: 0;
    font-size: 1.1rem;
}

.story-user-info span {
    font-size: 0.8rem;
    color: #94a3b8;
}

.story-text {
    color: #64748b;
    font-style: italic;
    line-height: 1.7;
}

/* ===== ABOUT PAGE ===== */
.about-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-floating-card {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: white;
    border-radius: 24px;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.about-stat-card {
    text-align: center;
    color: white;
}

.about-stat-number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.about-stat-line {
    width: 40px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    margin: 1rem auto;
    border-radius: 2px;
}

.about-stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.value-card {
    text-align: center;
}

.value-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.value-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.team-card {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid #F1F5F9;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.team-card-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--primary-light);
}

.team-card-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #F1F5F9;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: calc(50% + 2rem);
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item.right {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: calc(50% + 2rem);
}

.timeline-card {
    background: white;
    border-radius: 20px;
    padding: 1.5rem 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid #F1F5F9;
    max-width: 340px;
    width: 100%;
}

.timeline-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.timeline-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 1.5rem;
    width: 14px;
    height: 14px;
    background: var(--primary);
    border-radius: 50%;
    transform: translateX(-50%);
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--primary-light);
}

.dark-promo-card {
    position: relative;
    overflow: hidden;
    border-radius: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, #1a56cc 60%, var(--secondary) 100%);
    text-align: center;
    padding: 5rem 2rem;
}

.dark-promo-card h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.dark-promo-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 auto 2.5rem;
    position: relative;
    z-index: 1;
}

.promo-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.btn-promo-light {
    background: white;
    color: var(--primary);
    text-decoration: none;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-promo-light:hover {
    background: #f8fafc;
    transform: translateY(-3px);
}

.btn-promo-outline {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    text-decoration: none;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.btn-promo-outline:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.deco-circle-1 {
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
}

.deco-circle-2 {
    bottom: -60px;
    left: -60px;
    width: 220px;
    height: 220px;
}

.team-section {
    padding: 6rem 0;
    background: white;
}

.team-member-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.3rem;
}

.journey-section {
    padding: 6rem 0;
    background: #f8fafc;
}

.milestone-year {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.milestone-card-special {
    border: 2px solid var(--primary);
}

.value-icon-1 {
    background: linear-gradient(135deg, #e0eaff, #c7d9ff);
    color: var(--primary);
}

.value-icon-2 {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    color: #059669;
}

.value-icon-3 {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #d97706;
}

.value-icon-4 {
    background: linear-gradient(135deg, #fce7f3, #fbcfe8);
    color: #db2777;
}

.value-icon-5 {
    background: linear-gradient(135deg, #e0f2fe, #bae6fd);
    color: #0284c7;
}

.value-icon-6 {
    background: linear-gradient(135deg, #ede9fe, #ddd6fe);
    color: #7c3aed;
}

/* About Page Utilities */
.about-badge {
    display: inline-block;
    background: rgba(45, 108, 223, 0.08);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.about-text {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.value-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon-box i {
    width: 28px;
    height: 28px;
}

/* ===== CONTACT PAGE ===== */
.page-contact .hero-section {
    height: 400px;
    min-height: 400px;
}

.contact-form-card {
    background: white;
    border-radius: 32px;
    padding: 4rem;
    box-shadow: var(--shadow);
    border: 1px solid #E2E8F0;
    margin-top: -100px;
    position: relative;
    z-index: 10;
    animation: fadeInUp 1s ease-out;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-info-icon {
    width: 64px;
    height: 64px;
    background: #F1F5F9;
    color: var(--primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-info-item:hover .contact-info-icon {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
}

.form-group-modern {
    margin-bottom: 2rem;
}

.form-group-modern label {
    display: block;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control-modern {
    width: 100%;
    padding: 1.25rem;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: #F8FAFC;
    outline: none;
}

.form-control-modern:focus {
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(45, 108, 223, 0.1);
}

.page-contact-main {
    padding-bottom: 5rem;
}

.contact-title-main {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
    font-weight: 800;
}

.contact-subtitle-main {
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.info-title {
    font-size: 1.25rem;
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.info-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.info-value {
    font-weight: 800;
    color: var(--primary);
    font-size: 1.4rem;
}

.info-value-small {
    font-weight: 800;
    color: var(--primary);
    font-size: 1.2rem;
}

.info-value-address {
    font-weight: 800;
    color: var(--primary);
    font-size: 1.1rem;
}

.social-links-contact {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
}

.contact-social-icon {
    width: 52px;
    height: 52px;
    background: #F1F5F9;
    color: var(--primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
    text-decoration: none;
}

.contact-social-icon:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.contact-form-side {
    background: #F8FAFC;
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid #E2E8F0;
}

.form-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--dark);
    font-weight: 800;
}

.btn-submit-contact {
    width: 100%;
    border: none;
    cursor: pointer;
    justify-content: center;
}

/* ===== DESTINATIONS PAGE ===== */
.page-destinations .hero-section {
    height: 500px;
    min-height: 500px;
    background-image: linear-gradient(rgba(15, 23, 42, 0.6), rgba(15, 23, 42, 0.4)), url('../../image/destination.jpg');
}

.badge-airport {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1rem;
    margin-top: 1.5rem;
    color: white;
}

.dest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.route-card {
    background: white;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.route-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.card-img {
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 2rem;
    display: flex;
    align-items: flex-end;
}

.route-content {
    padding: 2rem 2.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.route-title {
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1rem;
    font-family: 'Outfit', sans-serif;
}

.card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.8), transparent);
}

.img-label {
    position: relative;
    z-index: 2;
    background: white;
    color: #0f172a;
    padding: 0.6rem 1.25rem;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: none;
}

.region-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #2d6cdf;
    font-weight: 800;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.price-hint {
    font-weight: 800;
    color: var(--primary);
    font-size: 1.1rem;
}

.airport-cover-dest {
    background: linear-gradient(135deg, var(--dark), var(--primary-dark));
    border-radius: 40px;
    padding: 5rem 4rem;
    color: white;
    margin: 6rem 0;
    text-align: center;
}

.airport-grid-dest {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.airport-item-dest {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 1.25rem;
    border-radius: 20px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.airport-item-dest:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.airport-item-dest i {
    color: var(--accent);
}

.showcase-block-dest {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    margin: 6rem 0;
    background: white;
    border-radius: 40px;
    padding: 4rem;
    align-items: center;
    box-shadow: var(--shadow);
}

.showcase-text-dest h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 2rem;
}

.showcase-text-dest ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.showcase-text-dest li {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-muted);
}

.showcase-text-dest li i {
    width: 32px;
    height: 32px;
    background: #F1F5F9;
    color: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.showcase-image-dest {
    border-radius: 32px;
    overflow: hidden;
    height: 400px;
    background-image: url('https://images.unsplash.com/photo-1575881875475-31023242e3f9?q=80&w=1974&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

.route-description-dest {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.price-hint {
    font-weight: 800;
    color: var(--primary);
    font-size: 1.25rem;
    letter-spacing: -0.5px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #2d6cdf;
    color: white !important;
    padding: 1rem 2.5rem;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    text-decoration: none !important;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(45, 108, 223, 0.2);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: #1e4bb5;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 108, 223, 0.3);
}

.btn-book-small {
    background: #2d6cdf !important;
    color: white !important;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.6rem 1.5rem !important;
    border-radius: 50px !important;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(45, 108, 223, 0.15);
}

.btn-book-small:hover {
    background: #1e4bb5 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(45, 108, 223, 0.25);
}

.btn-book-small i {
    font-size: 0.8rem;
}

.route-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid #f1f5f9;
}

.airport-title-dest {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.airport-subtitle-dest {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

/* ===== FOOTER ===== */
/* ===== NEW DUAL-TONE WAVE FOOTER (REFERENCE STYLE) ===== */
.site-footer-new {
    width: 100%;
    margin-top: 5rem;
    position: relative;
    background: #fff;
    font-family: 'Outfit', sans-serif;
}

.footer-top-light {
    padding: 3rem 0;
    background: #fff;
}

.footer-icon-top {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90px;
    height: 90px;
    background: #fff;
    border-radius: 50%;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    padding: 10px;
}

.footer-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Header Logo Styling */
.header-logo-img {
    height: 48px;
    width: auto;
    vertical-align: middle;
}

.footer-wave-wrap {
    height: 120px;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    background: #fff;
}

.footer-wave-wrap svg {
    display: block;
    width: 100%;
    height: 100%;
}

.footer-wave-wrap .shape-fill {
    fill: #003b46;
    /* Matching dark teal for the wave bottom */
}

.footer-bottom-dark {
    background: linear-gradient(rgba(0, 59, 70, 0.96), rgba(0, 59, 70, 0.96)), url('../../image/about.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-main-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 5rem;
    align-items: start;
    margin-bottom: 4rem;
}

/* Col 1: Logo & Social */
.footer-col-logo-social {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.footer-brand-box {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: 1px;
    line-height: 1;
}

.brand-subtitle {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
}

.footer-social-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-label {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    opacity: 0.8;
}

.social-icons-row {
    display: flex;
    gap: 12px;
}

.social-circle {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.social-circle:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* Col 2 & 3: Info & Nav */
.footer-col-info h4,
.footer-col-nav h4 {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.info-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.info-content strong {
    color: white;
    font-weight: 700;
}

.footer-nav-links {
    list-style: none;
    padding: 0;
}

.footer-nav-links li {
    margin-bottom: 1rem;
}

.footer-nav-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-nav-links a:hover {
    color: white;
    padding-left: 8px;
}

.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

/* Responsive Redesign */
@media (max-width: 992px) {
    .footer-main-content {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }

    .footer-col-logo-social {
        align-items: center;
    }

    .social-icons-row {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .site-footer-new {
        margin-top: 3rem;
    }

    .footer-top-light {
        padding: 2rem 0;
    }

    .footer-icon-top {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .footer-main-content {
        gap: 3rem;
    }

    /* Column Row for Mobile (Contact & Navigate) */
    .footer-col-info,
    .footer-col-nav {
        text-align: left;
    }

    .footer-brand-box {
        align-items: center;
    }
}

/* ===== PAYMENT FAILURE PAGE ===== */
.page-payment-failure .failure-container {
    max-width: 800px;
    margin: 4rem auto;
    padding: 4rem;
    background: white;
    border-radius: 32px;
    box-shadow: var(--shadow);
    text-align: center;
    border: 1px solid #E2E8F0;
}

.failure-icon {
    width: 100px;
    height: 100px;
    background: #FEE2E2;
    color: #EF4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
}

.failure-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
}

.failure-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.error-box {
    background: #F8FAFC;
    border-radius: 20px;
    padding: 2.5rem;
    margin: 2rem 0;
    text-align: left;
    border: 1px solid #E2E8F0;
}

.error-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.error-message {
    font-size: 1.25rem;
    color: #EF4444;
    font-weight: 700;
}

.troubleshooting {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    margin: 2rem 0;
    text-align: left;
    border: 1px solid #E2E8F0;
}

.troubleshooting h3 {
    color: var(--dark);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.troubleshooting ul {
    list-style: none;
}

.troubleshooting li {
    padding: 1rem 0;
    border-bottom: 1px solid #F1F5F9;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.troubleshooting li:last-child {
    border-bottom: none;
}

.troubleshooting li::before {
    content: "•";
    color: var(--primary);
    font-weight: 900;
}

.failure-support-box {
    background: #F8FAFC;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #E2E8F0;
    margin: 2rem 0;
}

.failure-support-box h4 {
    color: var(--dark);
    margin-bottom: 1rem;
}

.failure-support-box p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.failure-support-box a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.failure-footer-info {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--gray-200);
    color: var(--gray-600);
    font-size: 0.9rem;
}

/* ===== UTILITY CLASSES ===== */
.modal-info {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.form-group-modal {
    margin-bottom: 16px;
}

.form-group-modal-large {
    margin-bottom: 24px;
}

.modal-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .booking-glass-card {
        padding: 2rem;
    }

    .about-mission-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .page-home .hero-section {
        height: auto;
        min-height: auto;
        padding: 10rem 0 8rem;
    }

    .page-home .hero-content {
        margin-bottom: 2rem;
    }

    .booking-glass-card {
        position: relative;
        bottom: 0;
        transform: none;
        left: 0;
        width: 100%;
        margin-top: -4rem;
        border-radius: 24px;
    }

    .booking-form-grid,
    .form-row-center {
        grid-template-columns: 1fr;
    }

    .section-header {
        margin: 4rem auto 3rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .benefit-grid {
        grid-template-columns: 1fr;
    }

    .routes-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .value-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .booking-grid {
        grid-template-columns: 1fr;
    }

    .sidebar-left {
        order: 2;
    }

    .progress-steps {
        padding: 1.25rem 2rem;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 0;
        border-radius: 60px;
    }

    .progress-step {
        display: flex;
        align-items: center;
        flex: none;
    }

    .progress-step:not(:last-child)::after {
        content: '';
        display: block;
        width: 40px;
        height: 2px;
        background: #e2e8f0;
        margin: 0 6px;
    }

    .progress-step span:last-child {
        display: none;
    }

    .responsive-grid-3 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }

    .nav-links {
        display: none !important;
    }

    .menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    .mobile-bottom-nav {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .benefit-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .benefit-text {
        text-align: center;
    }

    .floating-chat {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }

    .booking-reference-card {
        flex-direction: column !important;
        align-items: flex-start !important;
        text-align: left !important;
        gap: 1.25rem !important;
        padding: 1.5rem !important;
        overflow: hidden !important;
    }

    .booking-ref-left {
        flex-direction: column !important;
        align-items: flex-start !important;
        text-align: left !important;
        gap: 0.75rem !important;
        width: 100% !important;
    }

    .booking-ref-icon {
        width: 56px !important;
        height: 56px !important;
        background: #eef4ff !important;
        border-radius: 16px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 1.4rem !important;
        color: var(--primary) !important;
    }

    .booking-ref-label {
        font-size: 0.7rem !important;
        font-weight: 700 !important;
        letter-spacing: 1.5px !important;
        color: #64748b !important;
        text-transform: uppercase !important;
        display: block !important;
        margin-bottom: 4px !important;
    }

    .booking-ref-value {
        font-size: 1.6rem !important;
        font-weight: 800 !important;
        color: var(--primary) !important;
        word-break: break-all !important;
        overflow-wrap: anywhere !important;
        line-height: 1.2 !important;
        display: block !important;
        max-width: 100% !important;
    }

    .booking-ref-right {
        width: 100% !important;
        font-size: 0.85rem !important;
        word-break: break-all !important;
        overflow-wrap: anywhere !important;
        flex-wrap: wrap !important;
        justify-content: flex-start !important;
    }

    .success-title {
        font-size: 2rem;
    }

    .details-grid {
        grid-template-columns: 1fr;
    }

    .vehicle-card {
        flex-direction: column;
        text-align: center;
    }

    .vehicle-specs {
        flex-direction: column;
        gap: 0.5rem;
    }

    .notes-grid {
        grid-template-columns: 1fr;
    }

    .action-buttons {
        flex-direction: column;
    }

    .booking-card {
        padding: 1.5rem;
    }

    .booking-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .vehicle-info {
        flex-direction: column;
        text-align: center;
    }

    .vehicle-details p {
        justify-content: center;
    }

    .actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .gallery-grid {
        columns: 1;
    }

    .fleet-gallery {
        padding: 3rem 1.5rem;
        border-radius: 30px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .value-grid {
        grid-template-columns: 1fr;
    }

    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        flex-direction: column;
    }

    .form-row>div {
        width: 100%;
    }

    .payment-type-container {
        flex-direction: column;
    }

    .checkbox {
        border-radius: 20px;
    }

    .page-title {
        font-size: 1.5rem;
    }

    .timeline-item {
        padding-right: 0;
        padding-left: 2rem;
        justify-content: flex-start;
    }

    .timeline-item.right {
        padding-left: 2rem;
    }

    .timeline-line {
        left: 7px;
    }

    .timeline-dot {
        left: 7px;
    }
}

@media (max-width: 576px) {
    .team-grid {
        grid-template-columns: 1fr;
    }

    .progress-steps {
        padding: 1rem;
    }

    .about-stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* GLOBAL UTILITIES */
.section-padding {
    padding: 5rem 0;
}

.section-padding-small {
    padding: 3rem 0;
}

.bg-white {
    background: white !important;
}

.bg-primary {
    background: var(--primary) !important;
}

.text-white {
    color: white !important;
}

.text-center {
    text-align: center !important;
}

.align-center {
    align-items: center !important;
}

.mt-4 {
    margin-top: 2rem !important;
}

/* RESPONSIVE GRID UTILITIES */
.responsive-grid-4,
.responsive-grid-3,
.responsive-grid-2 {
    display: grid;
    gap: 1.5rem;
    width: 100%;
}

.responsive-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.responsive-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.responsive-grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 992px) {
    .section-padding {
        padding: 5rem 0;
    }

    .responsive-grid-4,
    .responsive-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-home .hero-section {
        padding: 8rem 0 4rem;
        min-height: auto;
    }

    .booking-glass-card {
        margin-top: 2rem;
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 4rem 0;
    }

    .responsive-grid-4,
    .responsive-grid-3,
    .responsive-grid-2 {
        grid-template-columns: 1fr;
    }

    .logo-text {
        font-size: 1rem !important;
    }

    .logo-text span {
        display: block;
        font-size: 0.8rem;
        margin-top: -4px;
    }

    .hero-content h1,
    .hero-text h1 {
        font-size: 2.2rem !important;
        line-height: 1.2;
    }

    .hero-content p,
    .hero-text p {
        font-size: 1rem !important;
    }

    .page-gallery .hero-content,
    .page-about .hero-content,
    .page-about .hero-section,
    .page-contact .hero-content {
        padding: 5rem 0 2rem;
    }

    /* Booking Form Mobile Fixes */
    .booking-form-grid,
    .form-row-center {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    .return-trip-toggle {
        justify-content: flex-start !important;
        margin-top: 5px;
        padding-left: 2px;
    }

    .input-label-group .form-input {
        padding: 12px 16px !important;
    }

    .page-gallery .hero,
    .page-about .hero,
    .page-about .hero-section,
    .page-contact .hero {
        min-height: 10vh !important;
    }

    .booking-glass-card {
        padding: 1.5rem;
        border-radius: 20px;
    }

    .input-label-group label {
        font-size: 0.75rem;
    }

    .btn-premium-search {
        padding: 1rem !important;
        font-size: 1rem !important;
    }

    .gallery-grid {
        columns: 1 !important;
    }

    .timeline-container {
        padding-left: 20px;
    }

    .timeline-line,
    .timeline-dot {
        left: 20px !important;
    }

    .timeline-item {
        width: 100% !important;
        padding-left: 45px !important;
        padding-right: 0 !important;
        text-align: left !important;
        justify-content: flex-start !important;
        border-radius: 12px;
        margin-bottom: 1.5rem;
    }

    .timeline-item.right {
        left: 0 !important;
    }

    /* HORIZONTAL SCROLL CAROUSEL FOR MOBILE */
    .features-grid,
    .benefit-grid,
    .routes-grid,
    .benefits-grid,
    .why-grid,
    .workflow-grid,
    .drivers-grid,
    .stats-section .responsive-grid-4 {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        gap: 1.5rem !important;
        padding: 1rem 1rem 2rem !important;
        margin-left: -1.25rem;
        margin-right: -1.25rem;
        scrollbar-width: none;
    }

    .features-grid::-webkit-scrollbar,
    .benefit-grid::-webkit-scrollbar,
    .routes-grid::-webkit-scrollbar,
    .benefits-grid::-webkit-scrollbar,
    .why-grid::-webkit-scrollbar,
    .workflow-grid::-webkit-scrollbar,
    .drivers-grid::-webkit-scrollbar,
    .stats-section .responsive-grid-4::-webkit-scrollbar {
        display: none;
    }

    .feature-card,
    .route-card,
    .benefit-item,
    .why-card,
    .workflow-step,
    .driver-card {
        flex: 0 0 280px !important;
        scroll-snap-align: center;
        margin-bottom: 0 !important;
    }

    .stats-section .responsive-grid-4>div {
        flex: 0 0 200px !important;
        scroll-snap-align: center;
    }
}

/* GALLERY FILTER STYLES */
.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    color: #64748b;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(45, 108, 223, 0.2);
    transform: translateY(-2px);
}

/* FLEET SECTION STYLES */
.fleet-section {
    padding: 5rem 0;
    background: white;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.fleet-card {
    padding: 2rem;
    border-radius: 20px;
    transition: transform 0.3s ease;
    box-shadow: var(--shadow);
}

.fleet-card:hover {
    transform: translateY(-5px);
}

.fleet-card img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.fleet-card h3 {
    margin-bottom: 0.5rem;
}

.fleet-card p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.fleet-specs {
    list-style: none;
    padding: 0;
}

.fleet-specs li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fleet-specs i {
    width: 16px;
    color: var(--primary);
}

/* REFINED SECTIONS STYLES */
.benefits-section {
    padding: 5rem 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.benefit-item {
    text-align: center;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: #EBF2FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary);
    transition: var(--transition);
}

.benefit-item:hover .benefit-icon {
    transform: translateY(-5px);
    background: var(--primary-light);
    box-shadow: 0 10px 20px rgba(45, 108, 223, 0.1);
}

.benefit-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.benefit-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* HOW IT WORKS SECTION - PREMIUM DESIGN */
.how-it-works {
    padding: 5rem 0;
    background: white;
}

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
    margin-top: 4rem;
}

.workflow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.step-number {
    width: 60px;
    height: 60px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.2);
    transition: var(--transition);
    border: 4px solid white;
}

.workflow-step:hover .step-number {
    transform: translateY(-5px) scale(1.05);
    background: #1e40af;
    box-shadow: 0 12px 20px rgba(37, 99, 235, 0.3);
}

.workflow-step h4 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.01em;
}

.workflow-step p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
    max-width: 260px;
}

@media (max-width: 1100px) {
    .workflow-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem 2rem;
    }
}

@media (max-width: 640px) {
    .workflow-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
}

/* SERVICES OVERVIEW - PREMIUM DESIGN */
.services-overview {
    padding: 5rem 0;
    background: white;
    overflow: hidden;
}

.services-overview .responsive-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.services-image {
    position: relative;
    padding-right: 2rem;
}

.services-image img {
    width: 100%;
    border-radius: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: block;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: 0;
    background: #2563eb;
    color: white;
    padding: 2rem;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.3);
    min-width: 140px;
    z-index: 5;
}

.exp-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.exp-label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.services-text {
    padding-left: 3rem;
}

.services-text .sub-title {
    display: inline-block;
    color: #2563eb;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.services-text h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.services-text p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.services-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    list-style: none;
    padding: 0;
}

.services-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    color: #1e293b;
    font-size: 1.1rem;
}

.services-list li svg {
    color: #1e293b;
    width: 28px;
    height: 28px;
    stroke-width: 2px;
}

@media (max-width: 1024px) {
    .services-overview .responsive-grid-2 {
        grid-template-columns: 1fr !important;
        gap: 6rem;
    }

    .services-text {
        padding-left: 0;
    }

    .services-image {
        padding-right: 0;
        max-width: 600px;
        margin: 0 auto;
    }

    .services-text h2 {
        font-size: 2.5rem;
    }
}

/* OUR DRIVERS SECTION - PREMIUM DESIGN */
.drivers-section {
    padding: 5rem 0;
    background: #f8fafc;
}

.drivers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.driver-card {
    background: white;
    padding: 3.5rem 2.5rem;
    border-radius: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid #f1f5f9;
}

.driver-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.driver-image {
    width: 130px;
    height: 130px;
    margin: 0 auto 2rem;
    position: relative;
}

.driver-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    display: block;
}

.driver-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-family: 'Outfit', sans-serif;
}

.experience-text {
    color: #00d2ff;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    text-transform: capitalize;
}

.driver-quote {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
    opacity: 0.9;
}

.driver-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.driver-rating .stars {
    display: flex;
    gap: 0.25rem;
    color: #fbbf24;
}

.driver-rating .stars svg {
    width: 18px;
    height: 18px;
    fill: #fbbf24;
}

.review-count {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .drivers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .drivers-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* LAYOUT UTILITIES */
.responsive-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.responsive-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.responsive-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.mt-4 {
    margin-top: 2.5rem !important;
}

.mt-2 {
    margin-top: 1.25rem !important;
}

@media (max-width: 1024px) {
    .responsive-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .responsive-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .responsive-grid-4,
    .responsive-grid-3,
    .responsive-grid-2 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* FAQ SECTION - PREMIUM DESIGN */
.faq-section {
    padding: 5rem 0;
    background: white;
}

.faq-container {
    max-width: 900px;
    margin: 4rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-card {
    background: white;
    padding: 2.5rem;
    border-radius: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    transition: var(--transition);
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.faq-question svg {
    width: 24px;
    height: 24px;
    color: #2563eb;
    flex-shrink: 0;
}

.faq-question h4 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--dark);
    margin: 0;
    font-family: 'Outfit', sans-serif;
}

.faq-answer p {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
    padding-left: 2.5rem;
}

@media (max-width: 768px) {
    .faq-card {
        padding: 2rem;
        border-radius: 24px;
    }

    .faq-answer p {
        padding-left: 0;
        margin-top: 1rem;
    }
}

/* ABOUT PAGE - PREMIUM DESIGN */
.about-mission {
    padding: 5rem 0;
    background: white;
}

.about-badge {
    display: inline-block;
    background: #00d2ff;
    color: white;
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 210, 255, 0.2);
}

.about-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 2.5rem;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
}

.about-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 2rem;
    max-width: 600px;
}

.about-image-wrapper {
    position: relative;
    padding: 2rem;
}

.about-image-card {
    position: relative;
    z-index: 1;
}

.about-image-card img {
    width: 100%;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    display: block;
}

.about-floating-card {
    position: absolute;
    bottom: 0;
    left: -20px;
    background: white;
    padding: 1.75rem 2.5rem;
    border-radius: 28px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.stat-icon-box {
    width: 56px;
    height: 56px;
    background: #00d2ff;
    color: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.stat-rating {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.about-mission .btn-primary {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 25px rgba(45, 108, 223, 0.2);
}

@media (max-width: 1024px) {
    .about-title {
        font-size: 2.8rem;
    }

    .about-image-wrapper {
        padding: 0;
        margin-top: 4rem;
    }

    .about-floating-card {
        left: 20px;
        bottom: -20px;
    }
}

/* ABOUT STATS STRIP */
.about-stats-strip {
    background: var(--dark);
    padding: 4rem 0;
    color: white;
}

.about-stat-card {
    text-align: center;
    position: relative;
}

.about-stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: #00d2ff;
}

.about-stat-line {
    width: 40px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 auto 1rem;
}

.about-stat-label {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-values {
    padding: 5rem 0;
    background: #f8fafc;
}

.value-card {
    background: white;
    padding: 3rem;
    border-radius: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid #f1f5f9;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.value-icon-box {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.value-icon-1 {
    background: #eff6ff;
    color: #2563eb;
}

.value-icon-2 {
    background: #fef2f2;
    color: #ef4444;
}

.value-icon-3 {
    background: #ecfdf5;
    color: #10b981;
}

.value-icon-4 {
    background: #fdf2f8;
    color: #ec4899;
}

.value-icon-5 {
    background: #f0fdf4;
    color: #22c55e;
}

.value-icon-6 {
    background: #fff7ed;
    color: #f97316;
}

.value-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--dark);
}

.value-card p {
    color: #64748b;
    line-height: 1.7;
}

/* TEAM SECTION */
.team-section {
    padding: 5rem 0;
    background: white;
}

.team-card {
    background: white;
    border-radius: 32px;
    overflow: hidden;
    text-align: center;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.team-card-img {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #f8fafc;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.team-card-badge {
    display: inline-block;
    background: #e0f2fe;
    color: #0369a1;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.team-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}

/* JOURNEY SECTION */
.journey-section {
    padding: 5rem 0;
    background: #f8fafc;
}

.timeline-container {
    max-width: 900px;
    margin: 4rem auto 0;
    position: relative;
}

.timeline-line {
    position: absolute;
    left: 50%;
    width: 4px;
    height: 100%;
    background: #e2e8f0;
    transform: translateX(-50%);
}

.timeline-item {
    width: 100%;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item.left {
    padding-right: 3rem;
    text-align: right;
}

.timeline-item.right {
    padding-left: 3rem;
    margin-left: 50%;
}

.timeline-dot {
    position: absolute;
    top: 20px;
    width: 20px;
    height: 20px;
    background: white;
    border: 4px solid var(--primary);
    border-radius: 50%;
    z-index: 5;
}

.timeline-item.left .timeline-dot {
    right: -12px;
}

.timeline-item.right .timeline-dot {
    left: -12px;
}

.timeline-card {
    background: white;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.milestone-year {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.timeline-card.milestone-card-special {
    border: 2px solid var(--primary);
    background: #fdfdfd;
}

/* CTA BANNER & PROMO CARD */
.about-cta {
    background: white;
}

.dark-promo-card {
    background: var(--dark);
    padding: 5rem;
    border-radius: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: white;
}

.promo-content {
    position: relative;
    z-index: 5;
}

.dark-promo-card h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
}

.dark-promo-card p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.promo-btns {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-promo-light {
    background: white;
    color: var(--dark) !important;
    padding: 1rem 2.5rem;
    border-radius: 14px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
}

.btn-promo-outline {
    background: transparent;
    color: white !important;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2.5rem;
    border-radius: 14px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
}

.btn-promo-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

.btn-promo-outline:hover {
    border-color: white;
    transform: translateY(-3px);
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.1), transparent);
}

.deco-circle-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
}

.deco-circle-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
}

@media (max-width: 768px) {
    .timeline-line {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 50px !important;
        text-align: left !important;
    }

    .timeline-item.right {
        margin-left: 0;
    }

    .timeline-dot {
        left: 12px !important;
    }

    .dark-promo-card {
        padding: 3.5rem 2rem;
    }

    .dark-promo-card h2 {
        font-size: 2rem;
    }
}

/* ===== CONTACT PAGE STYLES ===== */
.page-contact-main {
    margin-top: 150px;
    position: relative;
    z-index: 10;
    margin-bottom: 5rem;
}

.contact-form-card {
    background: white;
    border-radius: 40px;
    padding: 4rem;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
    border: 1px solid #f1f5f9;
}

.contact-title-main {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1rem;
    font-family: 'Outfit', sans-serif;
}

.contact-subtitle-main {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 500px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    background: #f8fafc;
    transform: translateX(10px);
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: #eef4ff;
    color: #2d6cdf;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.info-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.info-desc {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 0.25rem;
}

.info-value,
.info-value-small,
.info-value-address {
    font-weight: 700;
    color: #2d6cdf;
    font-size: 1.1rem;
}

.info-value-small {
    font-size: 1rem;
}

.info-value-address {
    color: #1e293b;
    font-size: 1rem;
    font-weight: 600;
}

.contact-image-below {
    margin-top: 3rem;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-image-below img {
    width: 100%;
    display: block;
    height: 350px;
    object-fit: cover;
}

.contact-form-side {
    background: #f8fafc;
    padding: 3rem;
    border-radius: 30px;
}

.form-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 2rem;
}

.form-group-contact {
    margin-bottom: 1.5rem;
}

.form-group-contact label {
    display: block;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    color: #64748b;
}

.form-input-contact {
    width: 100%;
    padding: 1rem 1.25rem;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    background: white;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input-contact:focus {
    border-color: #2d6cdf;
    box-shadow: 0 0 0 4px rgba(45, 108, 223, 0.1);
    outline: none;
}

.btn-send-message {
    width: 100%;
    background: #2d6cdf;
    color: white;
    border: none;
    padding: 1.25rem;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.btn-send-message:hover {
    background: #1e4bb5;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(45, 108, 223, 0.2);
}

@media (max-width: 992px) {
    .page-contact-main {
        margin-top: 70px;
        margin-bottom: 3rem;
    }

    .contact-form-card {
        padding: 2.5rem 1.25rem;
        border-radius: 24px;
        margin-top: 80px;
        width: 100%;
        overflow: hidden;
    }

    .contact-title-main {
        font-size: 1.8rem;
        text-align: center;
    }

    .contact-subtitle-main {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .contact-info-item {
        padding: 1.25rem;
        gap: 1rem;
        background: #f8fafc;
        margin-bottom: 1rem;
        border: 1px solid #f1f5f9;
        width: 100%;
    }

    .contact-info-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        flex-shrink: 0;
    }

    .info-title {
        font-size: 1.1rem;
        margin-bottom: 2px;
    }

    .info-value,
    .info-value-small,
    .info-value-address {
        font-size: 0.95rem;
        word-break: break-all;
        word-wrap: break-word;
        overflow-wrap: anywhere;
        line-height: 1.4;
    }

    .contact-image-below {
        margin-top: 2rem;
        border-radius: 20px;
    }

    .contact-image-below img {
        height: 200px;
    }

    .contact-form-side {
        padding: 2rem 1.5rem;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .page-contact-main {
        margin-top: 50px;
    }

    .contact-form-card .responsive-grid-2 {
        grid-template-columns: 1fr;
    }

    .contact-form-card .responsive-grid-3 {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
}

/* ===== ICON ALIGNMENT REFINEMENTS ===== */
.logo-icon {
    background: transparent;
}

.header-logo-img {
    width: 60px;          /* adjust size */
    height: auto;
    display: block;
    background: transparent;
}
.header-logo-img {
    mix-blend-mode: multiply;
}

.footer-logo-icon-small {
    height: 40px;
    width: auto;
    display: block;
    margin-bottom: 12px;
}

.footer-brand-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}