/* ==================== ROOT VARIABLES ==================== */
:root {
    /* Primary Brand Colors */
  --primary-color: #a26f10;
    --primary-dark: #C18C2C;
    --primary-light: #d1a960;

    /* Secondary & Accent Colors */
    --secondary-color: #2C3E50;
    --accent-color: #E74C3C;

    /* Status Colors */
    --success-color: #27AE60;
    --warning-color: #F39C12;
    --error-color: #C0392B;
    --info-color: #3498DB;

    /* Text Colors */
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --text-white: #FFFFFF;

    /* Background Colors */
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --bg-dark: #1C1C1C;
    --bg-overlay: rgba(0,0,0,0.6);

    /* Borders & Shadows */
    --border-color: #E0E0E0;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);

    /* Transitions & Animation */
    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;
    --transition-slow: all 0.5s ease;

    /* Buttons & Interactive States */
    --btn-hover: #D4A853;
    --btn-active: #9A6E26;
    --btn-disabled: #BDC3C7;

    /* Video & UI Specific */
    --video-overlay-color: rgba(184,131,46,0.2); /* subtle brand tint for highlights */
    --annotation-color: #E74C3C; /* for arrows, highlights, callouts */
    --highlight-bg: #FFF3E0; /* soft background for emphasis boxes */

    /* Misc */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
}


/* ==================== RESET & BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ==================== NAVIGATION ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    transition: var(--transition);
}

.navbar .container-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-logo-img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    padding: 8px 16px;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    background: rgba(184, 131, 46, 0.1);
}

.nav-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-login,
.btn-signup {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-login {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-login:hover {
    background: var(--primary-color);
    color: white;
}

.btn-signup {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
}

.btn-signup:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-dark);
    cursor: pointer;
}

/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    height: 600px;
    margin-top: 80px;
    background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23B8832E" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,165.3C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.85) 0%, rgba(52, 73, 94, 0.75) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 1;
}

.hero-text {
    color: white;
    max-width: 700px;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 40px;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-stats {
    display: flex;
    gap: 50px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-item i {
    font-size: 36px;
    color: var(--primary-light);
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: white;
}

.stat-label {
    display: block;
    font-size: 14px;
    opacity: 0.9;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== BOOKING SECTION ==================== */
.booking-section {
    margin-top: -80px;
    position: relative;
    z-index: 10;
    padding: 0 20px 80px;
}

.booking-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    max-width: 1100px;
    margin: 0 auto;
}

.booking-header {
    text-align: center;
    margin-bottom: 40px;
}

.booking-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.booking-header p {
    font-size: 16px;
    color: var(--text-light);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: flex;
    gap: 20px;
    align-items: flex-end;
}

.form-group {
    flex: 1;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 14px;
}

.form-group label i {
    color: var(--primary-color);
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-family: 'Cairo', sans-serif;
    font-size: 15px;
    transition: var(--transition);
    background: var(--bg-light);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(184, 131, 46, 0.1);
}

.swap-btn {
    padding-bottom: 0;
}

.btn-swap {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 18px;
}

.btn-swap:hover {
    transform: rotate(180deg);
    background: var(--primary-dark);
}

.btn-book {
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.booking-note {
    text-align: center;
    padding: 15px;
    background: rgba(184, 131, 46, 0.1);
    border-radius: 12px;
    color: var(--text-dark);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.booking-note i {
    color: var(--primary-color);
}

.booking-note a {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
}

/* ==================== SERVICES SECTION ==================== */
.services-section {
    padding: 80px 20px;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 38px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-light);
    padding: 35px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
    background: white;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
    color: white;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ==================== SCHEDULE SECTION ==================== */
.schedule-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.last-update {
    text-align: center;
    padding: 12px;
    background: white;
    border-radius: 10px;
    margin-bottom: 30px;
    font-size: 14px;
    color: var(--text-light);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.last-update i {
    color: var(--primary-color);
}

.schedule-table-wrapper {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    overflow-x: auto;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
}

.schedule-table thead {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.schedule-table th {
    padding: 18px;
    text-align: center;
    color: white;
    font-weight: 700;
    font-size: 15px;
}

.schedule-table tbody tr {
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.schedule-table tbody tr:hover {
    background: rgba(184, 131, 46, 0.05);
}

.schedule-table td {
    padding: 18px;
    text-align: center;
    font-size: 14px;
}

.route-name {
    font-weight: 700;
    color: var(--text-dark);
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.badge-success {
    background: rgba(39, 174, 96, 0.15);
    color: var(--success-color);
}

.badge-danger {
    background: rgba(231, 76, 60, 0.15);
    color: var(--accent-color);
}

.schedule-actions {
    text-align: center;
    margin-top: 30px;
}

.btn-secondary {
    padding: 12px 30px;
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

/* ==================== BRANCHES SECTION ==================== */
.branches-section {
    padding: 80px 20px;
    background: white;
}

.branches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.branch-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.branch-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
    background: white;
}

.branch-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: white;
}

.branch-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.branch-address {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.branch-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    background: white;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.contact-link:hover {
    background: var(--primary-color);
    color: white;
}

.contact-link.whatsapp {
    background: #25D366;
    color: white;
}

.contact-link.whatsapp:hover {
    background: #1EBE55;
}

/* ==================== CONTACT SECTION ==================== */
.contact-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: var(--shadow-lg);
}

.contact-info h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.contact-info > p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-item i {
    font-size: 28px;
    color: var(--primary-color);
    margin-top: 5px;
}

.contact-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.contact-item p,
.contact-item a {
    font-size: 15px;
    color: var(--text-light);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--bg-light);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.contact-form-wrapper {
    background: var(--bg-light);
    padding: 35px;
    border-radius: 16px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form .form-control {
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-family: 'Cairo', sans-serif;
    font-size: 15px;
    transition: var(--transition);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--secondary-color);
    color: white;
    padding: 60px 20px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-light);
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.9;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    opacity: 0.9;
}

.footer-section ul li a:hover {
    color: var(--primary-light);
    padding-right: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.8;
}

/* ==================== RESPONSIVE DESIGN ==================== */
/* ==================== ENHANCED MOBILE RESPONSIVE FIXES ==================== */

/* Mobile Navigation Improvements */
@media (max-width: 1024px) {
    .navbar .container-nav {
        padding: 0 20px;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        opacity: 0;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .nav-link {
        width: 100%;
        padding: 15px;
        text-align: center;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    /* Navbar */
    .navbar .container-nav {
        height: 70px;
        padding: 0 15px;
    }
    
    .nav-logo-img {
        height: 40px;
    }
    
    .nav-actions {
        gap: 10px;
    }
    
    .btn-login,
    .btn-signup {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .btn-login span,
    .btn-signup span {
        display: none;
    }
    
    .btn-login,
    .btn-signup {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Hero Section */
    .hero {
        height: auto;
        min-height: 450px;
        margin-top: 70px;
        padding: 60px 0;
    }
    
    .hero-content {
        min-height: 450px;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 30px;
        line-height: 1.6;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .stat-item {
        width: 100%;
        padding: 15px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        backdrop-filter: blur(10px);
    }
    
    .stat-item i {
        font-size: 28px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 13px;
    }
    
    /* Booking Section */
    .booking-section {
        margin-top: -60px;
        padding: 0 15px 60px;
    }
    
    .booking-card {
        padding: 25px 20px;
        border-radius: 16px;
    }
    
    .booking-header {
        margin-bottom: 30px;
    }
    
    .booking-header h2 {
        font-size: 24px;
        margin-bottom: 8px;
    }
    
    .booking-header p {
        font-size: 14px;
    }
    
    .booking-form {
        gap: 20px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }
    
    .form-group {
        width: 100%;
    }
    
    .form-group label {
        font-size: 13px;
        margin-bottom: 8px;
    }
    
    .form-control {
        padding: 12px 15px;
        font-size: 14px;
        border-radius: 10px;
    }
    
    .swap-btn {
        display: none;
    }
    
    .btn-book {
        padding: 14px 24px;
        font-size: 16px;
        border-radius: 10px;
        width: 100%;
    }
    
    .booking-note {
        padding: 12px;
        font-size: 13px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .booking-note a {
        display: block;
        margin-top: 5px;
    }
}

@media (max-width: 480px) {
    /* Navbar */
    .navbar .container-nav {
        height: 65px;
        padding: 0 12px;
    }
    
    .nav-logo-img {
        height: 35px;
    }
    
    .nav-actions {
        gap: 8px;
    }
    
    .btn-login,
    .btn-signup {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
    
    .mobile-menu-toggle {
        font-size: 20px;
    }
    
    /* Hero Section */
    .hero {
        min-height: 400px;
        margin-top: 65px;
        padding: 40px 0;
    }
    
    .hero-content {
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .hero-stats {
        gap: 15px;
    }
    
    .stat-item {
        padding: 12px;
    }
    
    .stat-item i {
        font-size: 24px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    /* Booking Section */
    .booking-section {
        margin-top: -50px;
        padding: 0 12px 50px;
    }
    
    .booking-card {
        padding: 20px 15px;
        border-radius: 14px;
    }
    
    .booking-header {
        margin-bottom: 25px;
    }
    
    .booking-header h2 {
        font-size: 22px;
    }
    
    .booking-header p {
        font-size: 13px;
    }
    
    .booking-form {
        gap: 18px;
    }
    
    .form-group label {
        font-size: 12px;
        gap: 6px;
    }
    
    .form-group label i {
        font-size: 13px;
    }
    
    .form-control {
        padding: 11px 14px;
        font-size: 13px;
    }
    
    .btn-book {
        padding: 13px 20px;
        font-size: 15px;
        gap: 8px;
    }
    
    .btn-book i {
        font-size: 14px;
    }
    
    .booking-note {
        padding: 10px;
        font-size: 12px;
        border-radius: 10px;
    }
    
    .booking-note i {
        font-size: 14px;
    }
}

/* Landscape Phone Optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 350px;
        padding: 30px 0;
    }
    
    .hero-content {
        min-height: 350px;
    }
    
    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .stat-item {
        flex: 1;
        min-width: calc(33.333% - 10px);
    }
}

/* Extra Small Devices */
@media (max-width: 375px) {
    .booking-card {
        padding: 18px 12px;
    }
    
    .booking-header h2 {
        font-size: 20px;
    }
    
    .hero-title {
        font-size: 22px;
    }
    
    .form-control {
        padding: 10px 12px;
        font-size: 13px;
    }
}