
/* V2 Theme - Modern Taxi Booking CSS */

/* CSS Variables */
:root {
    --primary: #124E81;
    --primary-dark: #0f3f6b;
    --primary-rgb: 18, 78, 129;
    --secondary: #ffffff;
    --accent: #3b82f6;
    --accent-light: #60a5fa;
    --gold: #D4AF37;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(18, 78, 129, 0.1);
    --light-bg: #ffffff;
    --section-bg: #f9fafb;

    /* Z-Index Scale */
    --z-base: 1;
    --z-dropdown: 1000;
    --z-autocomplete: 1100;
    --z-via-routes: 1200;
    --z-sticky: 1300;
    --z-fixed: 1400;
    --z-modal-backdrop: 1500;
    --z-modal: 1600;
    --z-popover: 1700;
    --z-tooltip: 1800;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--gray-700);
    overflow-x: hidden;
    background: var(--white);
    min-height: 100vh;
}

/* Static Background Image */
.bg-static {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.4;
    pointer-events: none;
    background: url('/images/background.jpeg') center center/cover no-repeat;
    background-attachment: fixed;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    filter: contrast(1.1) brightness(1.05);
}

/* Header Styles - Similar to 1AT Design */
#main-header {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

#main-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Top Header Section */
.header-top {
    background: var(--white);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.header-top-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Logo Section */
.header-logo {
    display: flex;
    align-items: center;
}

.logo-main {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-main:hover {
    transform: translateY(-2px);
}

.logo-image {
    height: 3.5rem; /* reduce header height to meet v2 requirement */
    width: auto;
    transition: all 0.3s ease;
    max-width: 200px;
}

/* Promotional Badges */
.header-promos {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    justify-content: center;
    max-width: 400px;
}

.promo-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #ffffff;
    color: #333333;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.promo-badge:hover {
    background: #f8f9fa;
    color: #111827;
}

.promo-badge svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    opacity: 0.7;
}

.promo-discount {
    background: #ffffff;
    color: #333333;
}

.promo-discount:hover {
    background: #f8f9fa;
}

.promo-childseat {
    background: #ffffff;
    color: #333333;
}

.promo-childseat:hover {
    background: #f8f9fa;
}

/* Header Action Buttons */
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.header-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    min-height: 44px;
    gap: 0.5rem;
}

.header-btn-phone {
    background: var(--gray-600);
    color: var(--white);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    width: auto;
    height: 44px;
}

.header-btn-phone:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.header-btn-book {
    background: #FFA500;
    color: var(--white);
}

.header-btn-book:hover {
    background: #FF8C00;
    transform: translateY(-2px);
}

.header-btn-app {
    background: #28A745;
    color: var(--white);
}

.header-btn-app:hover {
    background: #218838;
    transform: translateY(-2px);
}

/* Header Button Text */
.header-btn-text {
    font-size: 0.85rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

/* Navigation Bar */
.nav-container {
    background: #F8F9FA;
    /* padding: 0.5rem 0; */
    position: relative;
    z-index: 999;
}

.nav-content {
    /* max-width: 1400px; */
    margin: 0 auto;
    /* padding: 0 2rem; */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
    width: 100%;
    box-sizing: border-box;
}

/* Main Navigation Menu */
.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
    margin: 0;
    padding: 0;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow: visible;
    width: 100%;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.nav-menu li {
    margin: 0;
    position: relative;
    flex: 1;
}

.nav-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: var(--white);
    position: relative;
    white-space: nowrap;
    width: 100%;
    text-align: center;
}

/* Add vertical bars between all menu items */
.nav-menu li:not(:last-child) .nav-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 25%;
    bottom: 25%;
    width: 1px;
    background: var(--gray-200);
    transition: all 0.3s ease;
}

.nav-menu li:not(:last-child) .nav-item:hover::after {
    background: rgba(255, 255, 255, 0.3);
}

.nav-item:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.3);
}

/* Navigation Dropdown Styles */
.nav-dropdown-item {
    position: relative;
}

.nav-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    opacity: 0.7;
}

.nav-dropdown-item:hover .nav-dropdown-arrow {
    transform: rotate(180deg);
    opacity: 1;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px) scale(0.95);
    background: var(--white);
    border: none;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.08);
    min-width: 240px;
    max-width: 280px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: var(--white);
    border-radius: 3px;
    transform: translateX(-50%) rotate(45deg);
    box-shadow: -2px -2px 8px rgba(0, 0, 0, 0.05);
}

.nav-dropdown-item:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
}

.nav-dropdown-link {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1rem 1.5rem;
    color: var(--gray-700);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--gray-100);
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    flex-wrap: wrap;
}

.nav-dropdown-link:last-child {
    border-bottom: none;
}

.nav-dropdown-link:hover {
    background: var(--gray-50);
    color: var(--primary);
}

.nav-dropdown-link:first-child {
    border-radius: 16px 16px 0 0;
}

.nav-dropdown-link:last-child {
    border-radius: 0 0 16px 16px;
}

.nav-dropdown-icon {
    font-size: 1rem;
    width: 20px;
    text-align: center;
    transition: color 0.3s ease;
}

.nav-dropdown-link:hover .nav-dropdown-icon {
    color: var(--primary);
}



/* Navigation Dropdown Styles */
.dropdown-menu-item {
    position: relative;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.dropdown-menu-item:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: var(--z-dropdown);
}

.dropdown-menu-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown item hover effects */
.nav-dropdown .dropdown-item:first-child {
    border-radius: 12px 12px 0 0;
}

.nav-dropdown .dropdown-item:last-child {
    border-radius: 0 0 12px 12px;
}

.nav-dropdown .dropdown-item:only-child {
    border-radius: 12px;
}

/* Better spacing for dropdown items */
.nav-dropdown .item-icon {
    width: 20px;
    text-align: center;
    font-size: 1rem;
}

/* Button styles inspired by demo */
.button {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

.button--aylen {
    position: relative;
    overflow: hidden;
}

.button--aylen:hover {
    color: var(--primary);
    background: rgba(var(--primary-rgb), 0.1);
    transform: translateY(-1px);
}

.button--aylen::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.button--aylen:hover::before {
    width: 100%;
}

/* Info Buttons - Demo inspired */
.info-btns ul {
    display: flex;
    list-style: none;
    gap: 1rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.info-btns .btn {
    margin: 0;
}

.info-btns .btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    min-height: 44px;
    box-sizing: border-box;
}

/* Call button */
.info-btns .btn.call.bg-black a {
    background: var(--gray-800);
    color: white;
    padding: 0.75rem;
    border-radius: 50%;
    width: 44px;
    height: 44px;
}

.info-btns .btn.call.bg-black a:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.info-btns .btn.call img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

/* Book Online button */
.info-btns .btn.book-icon a {
    background: var(--primary);
    color: white;
    border-radius: 8px;
}

.info-btns .btn.book-icon a:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.3);
}

/* WhatsApp button */
.info-btns .btn.app-icon a {
    background: #25D366;
    color: white;
    border-radius: 8px;
}

.info-btns .btn.app-icon a:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.contact-info {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.contact-label {
    font-size: 0.7rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.2rem;
    line-height: 1;
}

.phone {
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary);
    transition: all 0.3s ease;
    text-decoration: none;
    line-height: 1.2;
    white-space: nowrap;
}

.phone:hover {
    color: var(--gold);
    transform: scale(1.05);
    text-decoration: none;
}

/* Auth Section */
.auth-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.auth-link {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-300);
}

.auth-link:hover {
    background: var(--gray-100);
    color: var(--primary);
    transform: translateY(-2px);
}

/* User Menu */
.user-menu {
    position: relative;
}

.user-menu-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gray-100);
    border: 1px solid var(--gray-300);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    color: var(--gray-700);
}

.user-menu-btn:hover {
    background: var(--gray-200);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.user-icon {
    font-size: 1rem;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.user-menu-btn:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.user-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.user-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--gray-700);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.dropdown-item:hover {
    background: var(--gray-50);
    color: var(--primary);
}

.dropdown-item:first-child {
    border-radius: 12px 12px 0 0;
}

.dropdown-item:last-child {
    border-radius: 0 0 12px 12px;
}

.item-icon {
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.dropdown-divider {
    height: 1px;
    background: var(--gray-200);
    margin: 0.5rem 0;
}

.dropdown-form {
    margin: 0;
}

.logout-btn {
    color: #ef4444;
}

.logout-btn:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

/* Book Now Button */
.book-now-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--gold) 100%);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(18, 78, 129, 0.3);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.book-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(18, 78, 129, 0.4);
}

.btn-icon {
    font-size: 1rem;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
    z-index: 1002;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-left: 0.5rem;
    flex-shrink: 0;
}

.mobile-menu-btn:hover {
    background: var(--gray-100);
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: var(--gray-700);
    margin: 2px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-btn:hover .hamburger-line {
    background: var(--primary);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: var(--white);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1001;
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-content {
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.mobile-logo {
    height: 35px;
    width: auto;
}

.mobile-close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray-700);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-close-btn:hover {
    background: var(--gray-100);
    color: var(--primary);
}

.mobile-nav-menu {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    font-size: 1rem;
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
    background: var(--gray-100);
    color: var(--primary);
    transform: translateX(5px);
}

.nav-icon {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

/* Mobile Submenu Styles */
.mobile-nav-submenu {
    margin: 0;
}

.mobile-submenu-trigger {
    justify-content: space-between;
}

.mobile-dropdown-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.mobile-submenu-trigger.active .mobile-dropdown-arrow {
    transform: rotate(180deg);
}

.mobile-submenu-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--gray-50);
    border-radius: 8px;
    margin: 0.5rem 0;
    text-align: left;
}

.mobile-submenu-content.active {
    max-height: 300px;
}

.mobile-nav-subitem {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.5rem;
    color: var(--gray-600);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin: 0.25rem 0;
    text-align: left;
    justify-content: flex-start;
}

.mobile-nav-subitem:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateX(5px);
}

.mobile-nav-divider {
    height: 1px;
    background: var(--gray-200);
    margin: 1rem 0;
}

.mobile-nav-form {
    margin: 0;
}

.mobile-nav-item.logout-btn {
    color: #ef4444;
}

.mobile-nav-item.logout-btn:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.mobile-contact {
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 12px;
}

.contact-label {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.contact-value {
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
}

.contact-value:hover {
    color: var(--primary-dark);
}

.mobile-book-btn {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-decoration: none;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.mobile-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.3);
}

.mobile-nav-content {
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.mobile-logo {
    height: 35px;
    width: auto;
}

.mobile-close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray-700);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-close-btn:hover {
    background: var(--gray-100);
    color: var(--primary);
}

.mobile-nav-menu {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    font-size: 1rem;
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
    background: var(--gray-100);
    color: var(--primary);
    transform: translateX(5px);
}

.nav-icon {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.mobile-nav-divider {
    height: 1px;
    background: var(--gray-200);
    margin: 1rem 0;
}

.mobile-nav-form {
    margin: 0;
}

.mobile-nav-item.logout-btn {
    color: #ef4444;
}

.mobile-nav-item.logout-btn:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

/* Mobile promotional info section */
.mobile-promo-info {
    background: #ffffff;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.mobile-promo-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 0.75rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-promo-badges {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.mobile-promo-badge {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    background: #ffffff;
    color: #333333;
}

.mobile-promo-badge.discount {
    background: #ffffff;
    color: #333333;
}

.mobile-promo-badge.childseat {
    background: #ffffff;
    color: #333333;
}

.mobile-promo-badge svg {
    width: 12px;
    height: 12px;
    opacity: 0.7;
}

.mobile-contact {
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.mobile-contact-item:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mobile-contact-item .nav-icon {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
    color: var(--primary);
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--primary);
}

.contact-label {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.contact-value {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
    text-decoration: none;
}

.contact-value:hover {
    color: var(--primary-dark);
}

.mobile-book-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--gold) 100%);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(18, 78, 129, 0.3);
}

.mobile-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(18, 78, 129, 0.4);
}

/* Mobile Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Prevent body scroll when mobile menu is open */
body.mobile-menu-open {
    overflow: hidden;
}

/* Main content */
.main-content {
    padding-top: 120px; /* Adjusted for new header height */
}

@media (max-width: 768px) {
    .main-content {
        padding-top: 180px; /* Further increased padding for mobile to ensure hero text is fully visible */
    }
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg,
        rgba(18, 78, 129, 0.5) 0%,
        rgba(15, 63, 107, 0.4) 50%,
        rgba(18, 78, 129, 0.5) 100%
    ), url('/images/background.jpeg') center center/cover no-repeat;
    background-attachment: fixed;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(18, 78, 129, 0.4) 0%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(18, 78, 129, 0.4) 100%
    );
    z-index: 1;
}

.hero > * {
    position: relative;
    z-index: 2;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInUp 1s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    animation: slideInUp 1s ease-out 0.2s both;
}

/* Booking Form */
.booking-form {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 10px 20px rgba(0, 0, 0, 0.1);
    animation: slideInUp 1s ease-out 0.4s both;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    color: var(--gray-700);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid var(--gray-300);
    border-radius: 16px;
    background: var(--white);
    color: var(--gray-700);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(18, 78, 129, 0.1);
}

.form-control::placeholder {
    color: var(--gray-400);
}

/* Autocomplete Dropdown */
.location-autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: var(--z-autocomplete);
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: 12px;
    max-height: 300px;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-top: 0.5rem;
    display: none;
}

.location-autocomplete-item {
    padding: 1rem;
    cursor: pointer;
    border-bottom: 1px solid var(--gray-200);
    background: var(--white);
    color: var(--gray-700);
    transition: background 0.3s ease;
}

.location-autocomplete-item:hover {
    background: var(--gray-50);
}

.location-autocomplete-item:last-child {
    border-bottom: none;
}

/* Multiple Stops Toggle Section */
.stops-toggle-section {
    margin: 1rem 0;
    text-align: center;
}

.add-stop-toggle-btn {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.add-stop-toggle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

.add-stop-toggle-btn span {
    font-size: 1.2rem;
    font-weight: bold;
}

/* Multiple Stops Section */
.stops-section {
    margin: 1rem 0 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.stops-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.stops-title {
    color: var(--gray-800);
    font-size: 1.2rem;
    font-weight: 600;
}

.stops-info {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.stops-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(59, 130, 246, 0.2);
    color: var(--accent-light);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.stops-placeholder {
    text-align: center;
    padding: 2rem;
    border: 2px dashed var(--gray-300);
    border-radius: 12px;
    background: rgba(249, 250, 251, 0.5);
}

.stops-placeholder-text {
    color: var(--gray-700);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stops-placeholder-desc {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.add-first-stop-btn {
    background: linear-gradient(135deg, var(--gold) 0%, #f59e0b 100%);
    color: var(--primary);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-first-stop-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(251, 191, 36, 0.3);
}

.quote-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--gold) 0%, #f59e0b 100%);
    color: var(--primary);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quote-btn:hover:not(.loading) {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.4);
}

.quote-btn.loading {
    opacity: 0.9;
    cursor: not-allowed;
    pointer-events: none;
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    transform: none;
    box-shadow: 0 5px 15px rgba(107, 114, 128, 0.3);
}

/* Loading animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.loading.hidden {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid var(--glass-border);
    border-top: 4px solid var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loading-spinner {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 0.5rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Features Section */
.features {
    padding: 80px 0;
    background: linear-gradient(135deg,
        rgba(249, 250, 251, 0.6) 0%,
        rgba(255, 255, 255, 0.5) 50%,
        rgba(249, 250, 251, 0.98) 100%
    );
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/images/background.jpeg') center center/cover no-repeat;
    opacity: 0.08;
    z-index: 0;
}

.features-container {
    position: relative;
    z-index: 1;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    background: rgba(255, 255, 255, 1);
    border-color: rgba(255, 255, 255, 0.5);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 16px; /* Changed from circle to rounded square */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(18, 78, 129, 0.2);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(18, 78, 129, 0.3);
}

.feature-title {
    color: var(--gray-800);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-desc {
    color: var(--gray-600);
    line-height: 1.6;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--gray-600);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Fleet Section */
.fleet-section {
    padding: 80px 0;
    background: linear-gradient(135deg,
        rgba(18, 78, 129, 0.5) 0%,
        rgba(15, 63, 107, 0.4) 50%,
        rgba(18, 78, 129, 0.5) 100%
    );
    backdrop-filter: blur(10px);
    position: relative;
}

.fleet-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/images/background.jpeg') center center/cover no-repeat;
    opacity: 0.15;
    z-index: 0;
}

.fleet-container {
    position: relative;
    z-index: 1;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.fleet-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.fleet-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 1);
}

.fleet-image {
    width: 100%;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.fleet-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.fleet-card:hover .fleet-image img {
    transform: scale(1.05);
}

.fleet-name {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.fleet-description {
    color: var(--gray-600);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.fleet-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.fleet-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
    font-size: 0.9rem;
}

.fleet-feature-icon {
    font-size: 1rem;
}

.fleet-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    text-align: center;
    padding: 1rem;
    background: rgba(251, 191, 36, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg,
        rgba(249, 250, 251, 0.6) 0%,
        rgba(255, 255, 255, 0.5) 50%,
        rgba(249, 250, 251, 0.98) 100%
    );
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/images/background.jpeg') center center/cover no-repeat;
    opacity: 0.08;
    z-index: 0;
}

.testimonials-container {
    position: relative;
    z-index: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.testimonial-text {
    color: var(--gray-700);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-name {
    color: var(--gray-800);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-title {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .nav-container {
        gap: 1.5rem;
    }

    .contact-info {
        gap: 1rem;
    }

    .contact-label {
        font-size: 0.65rem;
    }

    .phone {
        font-size: 0.95rem;
    }
}

@media (max-width: 1024px) {
    .nav-container {
        padding: 0 1.5rem;
        gap: 1rem;
    }

    .menu ul {
        gap: 0.8rem;
    }

    .contact-info {
        gap: 0.8rem;
    }

    .contact-label {
        font-size: 0.6rem;
    }

    .phone {
        font-size: 0.85rem;
    }

    .logo img {
        height: 4rem;
    }
}

@media (max-width: 1024px) {
    .nav-container {
        padding: 0 1.5rem;
    }

    .menu ul {
        gap: 1rem;
    }

    .info-btns ul {
        gap: 0.75rem;
    }

    .info-btns .btn a {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }

    .info-btns .btn.call.bg-black a {
        width: 40px;
        height: 40px;
        padding: 0.6rem;
    }

    /* Adjust dropdown for smaller screens */
    .nav-dropdown {
        min-width: 200px;
        left: -50px; /* Center the dropdown better */
    }
}

@media (max-width: 900px) {
    .nav-container {
        padding: 0 1rem;
        gap: 0.5rem;
    }

    .menu ul {
        gap: 0.5rem;
    }

    .contact-info {
        gap: 0.5rem;
    }

    .contact-label {
        font-size: 0.55rem;
    }

    .phone {
        font-size: 0.8rem;
    }

    .logo img {
        height: 3.5rem;
    }
}

/* Large Tablet Responsive */
@media (max-width: 1024px) {
    .header-top-container {
        padding: 0 1.5rem;
    }

    .header-actions {
        gap: 0.4rem;
    }

    .header-btn {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }

    .header-btn-text {
        font-size: 0.8rem;
    }

    .header-promos {
        gap: 0.75rem;
        max-width: 350px;
    }

    .promo-badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }

    .promo-badge svg {
        width: 14px;
        height: 14px;
    }
}

/* Medium Tablet Responsive */
@media (max-width: 900px) {
    .header-top-container {
        padding: 0 1.25rem;
    }

    .logo-image {
        height: 3.5rem;
    }

    .header-actions {
        gap: 0.3rem;
    }

    .header-btn {
        padding: 0.65rem 0.9rem;
        font-size: 0.8rem;
    }

    .header-btn-text {
        font-size: 0.75rem;
    }

    .header-promos {
        gap: 0.5rem;
        max-width: 300px;
    }

    .promo-badge {
        padding: 0.35rem 0.7rem;
        font-size: 0.75rem;
    }

    .promo-badge svg {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 768px) {
    /* Header Top Section Mobile - 3 row layout */
    .header-top-container {
        padding: 0 1rem;
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto auto;
        gap: 0.25rem; /* tighter vertical spacing */
        align-items: center;
    }

    /* First row: Logo and Burger Menu */
    .header-logo {
        grid-column: 1;
        grid-row: 1;
        justify-self: start;
    }

    .mobile-menu-btn {
        display: flex;
        grid-column: 2;
        grid-row: 1;
        justify-self: end;
        align-self: center;
    }

    /* Second row: Header Actions (Phone/WhatsApp buttons) */
    .header-actions {
        grid-column: 1 / -1;
        grid-row: 2;
        justify-self: center;
        display: flex;
        gap: 0.5rem;
        flex-wrap: nowrap;
        margin: 0.5rem 0;
    }

    /* Third row: Promotional badges - centered */
    .header-promos {
        display: flex;
        grid-column: 1 / -1;
        grid-row: 3;
        justify-self: center;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 0.5rem;
        padding-top: 0.5rem;
        width: 100%;
    }

    /* Logo adjustments for mobile */
    .logo-image {
        height: 3rem;
    }

    .promo-badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
        border-radius: 6px;
        display: flex;
        align-items: center;
        gap: 0.3rem;
        font-weight: 500;
        background: #ffffff;
        color: #333333;
        border: 1px solid #e5e5e5;
    }

    .promo-badge svg {
        width: 12px;
        height: 12px;
        opacity: 0.7;
    }

    .promo-discount {
        background: #ffffff;
        color: #333333;
        border: 1px solid #e5e5e5;
    }

    .promo-childseat {
        background: #ffffff;
        color: #333333;
        border: 1px solid #e5e5e5;
    }

    /* Add borders to mobile promo info in responsive view */
    .mobile-promo-info {
        border: 1px solid #e5e5e5;
    }

    .mobile-promo-badge {
        border: 1px solid #e5e5e5;
    }

    .header-btn {
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
        white-space: nowrap;
    }

    .header-btn-phone {
        width: auto;
        height: 40px;
        padding: 0.6rem 0.8rem;
    }

    .header-btn-text {
        font-size: 0.75rem;
        margin-left: 0.25rem;
    }

    /* Hide navigation bar on mobile */
    .nav-container {
        display: none;
    }

    /* Adjust main content padding for mobile */
    .main-content {
        padding-top: 140px; /* reduced to meet v2 header height target */
    }
}

@media (max-width: 480px) {
    .header-top-container {
        padding: 0 1rem;
        gap: 0.4rem;
    }

    /* Logo adjustments for small mobile */
    .logo-image {
        height: 2.5rem;
    }

    /* Mobile promotional badges - smaller on small screens */
    .promo-badge {
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
        gap: 0.25rem;
    }

    .promo-badge svg {
        width: 10px;
        height: 10px;
    }

    /* Header actions small mobile - maintain center alignment */
    .header-actions {
        gap: 0.4rem;
        margin: 0.4rem 0;
    }

    .header-btn {
        padding: 0.5rem 0.7rem;
        font-size: 0.75rem;
    }

    .header-btn-phone {
        width: auto;
        height: 35px;
        padding: 0.5rem 0.7rem;
    }

    .header-btn-text {
        font-size: 0.7rem;
        margin-left: 0.25rem;
    }

    /* Adjust main content padding for smaller header */
    .main-content {
        padding-top: 170px; /* Further increased for better hero text visibility */
    }
}

    /* Better responsive handling for very small screens */
    @media (max-width: 400px) {
        .header-top-container {
            padding: 0 0.75rem;
        }

        .header-actions {
            gap: 0.2rem;
        }

        .header-btn-text {
            font-size: 0.65rem;
            margin-left: 0.2rem;
        }

        .header-btn {
            padding: 0.5rem 0.6rem;
            font-size: 0.7rem;
        }
    }

    /* Very small screens adjustments */
    @media (max-width: 360px) {
        .header-top-container {
            padding: 0 0.75rem;
            gap: 0.3rem;
        }

        .header-btn-text {
            display: none;
        }

        .header-btn-phone, .header-btn-app {
            width: 35px;
            padding: 0.5rem;
        }

        .header-actions {
            gap: 0.3rem;
            margin: 0.3rem 0;
        }

        /* Stack promotional badges vertically on very small screens */
        .header-promos {
            flex-direction: column;
            gap: 0.3rem;
            margin-top: 0.3rem;
            padding-top: 0.3rem;
        }

        .promo-badge {
            padding: 0.25rem 0.5rem;
            font-size: 0.65rem;
            justify-content: center;
        }

        .mobile-promo-badges {
            flex-direction: column;
            gap: 0.3rem;
        }

        .mobile-promo-badge {
            padding: 0.4rem 0.6rem;
            font-size: 0.7rem;
            justify-content: center;
        }

        /* Adjust main content padding for very small screens */
        .main-content {
            padding-top: 140px; /* Increased to ensure hero text is visible on very small screens */
        }

        .header-btn svg {
            width: 14px;
            height: 14px;
        }

        .mobile-nav {
            width: 100%;
            right: -100%;
        }

        .mobile-nav.active {
            right: 0;
        }

        .mobile-nav-content {
            padding: 1.5rem;
        }

        .mobile-contact-item {
            padding: 0.75rem;
        }

        .mobile-book-btn {
            padding: 0.875rem 1.25rem;
            font-size: 0.95rem;
        }
    }

/* Additional navigation adjustments for small screens */
@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .logo-image {
        height: 35px;
    }

    .book-now-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .mobile-nav {
        width: 100%;
        right: -100%;
    }

    .mobile-nav.active {
        right: 0;
    }

    .mobile-nav-content {
        padding: 1.5rem;
    }

    .mobile-contact-item {
        padding: 0.75rem;
    }

    .mobile-book-btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
}

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .booking-form {
        padding: 1.5rem;
        margin: 0 1rem;
    }

    .hero {
        padding: 40px 0 60px; /* Reduced hero padding since main-content padding handles the header clearance */
    }

    .hero-title {
        font-size: clamp(2rem, 4vw, 3rem);
        z-index: 10;
        position: relative;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        z-index: 10;
        position: relative;
        margin-bottom: 2.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .stops-features {
        justify-content: center;
    }

    .fleet-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

@media (max-width: 480px) {
    .hero {
        padding: 30px 0 50px; /* Reduced hero padding since main-content padding handles header clearance */
    }

    .hero-container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 0.75rem;
        z-index: 10;
        position: relative;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        z-index: 10;
        position: relative;
        line-height: 1.4;
    }

    .features-container {
        padding: 0 1rem;
    }

    .booking-form {
        padding: 1rem;
    }

    .form-control {
        padding: 0.75rem 1rem;
    }
}

/* Footer Styles */
.footer {
    background: var(--primary);
    color: var(--white);
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(18, 78, 129, 0.5) 0%, rgba(15, 63, 107, 0.4) 100%);
    z-index: 1;
}

.footer-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    padding: 4rem 0 2rem 0;
}

.footer-section {
    position: relative;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.footer-title {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
    border-radius: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--gold);
    transform: translateX(5px);
}



.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem 0;
    position: relative;
    z-index: 2;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--gold);
}

/* Footer Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 0 2rem 0;
    }

    .footer-container {
        padding: 0 1rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-bottom-links {
        justify-content: center;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .footer-social {
        justify-content: center;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}
