/* Premium Taxi Service Styles */
:root {
    --primary-color: #ffc107; /* Golden yellow */
    --primary-hover: #e0a800;
    --dark-bg: #1a1a1a;
    --light-bg: #f8f9fa;
    --text-color: #333;
    --text-light: #777;
    --border-radius: 12px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease-in-out;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    padding-bottom: 0; /* Adjusted for mobile bottom bar via media query */
}

/* Header & Top Bar */
.top-bar {
    background-color: var(--dark-bg);
    padding: 12px 0;
    font-size: 0.9rem;
    color: #ccc;
}
.top-bar a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}
.top-bar a:hover {
    color: var(--primary-color);
}
.navbar {
    background-color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    padding: 15px 0;
}
.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark-bg) !important;
    letter-spacing: 0px;
}
.navbar-brand span {
    color: var(--primary-color);
}
.nav-link {
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--dark-bg) !important;
    margin: 0 4px;
    white-space: nowrap !important;
    transition: var(--transition);
}
.nav-link:hover, .nav-item.active .nav-link {
    color: var(--primary-color) !important;
}
.dropdown-menu {
    border-radius: 8px;
    padding: 8px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.dropdown-item {
    padding: 9px 20px;
    color: var(--dark-bg);
    transition: var(--transition);
}
.dropdown-item:hover, .dropdown-item:focus {
    background-color: var(--light-bg);
    color: #000;
    padding-left: 24px;
}
@media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        animation: fadeIn 0.2s ease-in;
    }
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Nav Search Box */
.nav-search-container {
    position: relative;
    width: 200px;
    flex-shrink: 0;
}
.nav-search-input {
    border-radius: 20px;
    padding-left: 14px;
    padding-right: 36px;
    font-size: 0.82rem;
    background-color: #f1f3f5;
    border: 1px solid #e2e6ea;
    height: 38px;
    width: 100%;
    transition: var(--transition);
}
.nav-search-input:focus {
    background-color: #ffffff;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}
.nav-search-btn {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    color: #6c757d;
    padding: 6px 10px;
    font-size: 0.85rem;
    transition: var(--transition);
}
.nav-search-btn:hover {
    color: var(--dark-bg);
}
@media (max-width: 991px) {
    .nav-search-container {
        max-width: 100%;
        width: 100%;
        margin-top: 12px;
        margin-bottom: 12px;
    }
}

/* Dynamic Live Suggestions Dropdown */
.search-suggestions-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 280px;
    max-height: 360px;
    overflow-y: auto;
    background: #ffffff !important;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18) !important;
    z-index: 1050;
    padding: 6px 0;
}
@media (max-width: 991px) {
    .search-suggestions-dropdown {
        left: 0;
        right: 0;
        width: 100%;
    }
}
.search-suggestion-item {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 10px 14px !important;
    color: #212529 !important;
    text-decoration: none !important;
    font-size: 0.86rem !important;
    font-weight: 500 !important;
    transition: var(--transition);
    border-bottom: 1px solid #f1f3f5;
    width: 100% !important;
    box-sizing: border-box;
}
.search-suggestion-item:last-child {
    border-bottom: none;
}
.search-suggestion-item:hover, .search-suggestion-item.active {
    background-color: #fff9e6 !important;
    color: #000 !important;
    padding-left: 18px !important;
}
.search-suggestion-badge {
    font-size: 0.68rem;
    padding: 3px 7px;
    border-radius: 4px;
    background: #e9ecef;
    color: #495057;
    font-weight: 600;
    white-space: nowrap;
    margin-left: 8px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7)), url('../images/home_banner.png') center center/cover no-repeat;
    min-height: 90vh;
    display: flex;
    align-items: center;
    color: white;
    padding-top: 100px; /* Offset for sticky header */
}
.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}
.hero p {
    font-size: 1.15rem;
    font-weight: 400;
    margin-bottom: 30px;
    color: #e0e0e0;
}

/* Buttons */
.btn-primary-custom {
    background-color: var(--primary-color);
    color: #000;
    font-weight: 700;
    padding: 12px 25px;
    border-radius: 8px;
    border: none;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}
.btn-primary-custom:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    color: #000;
}
.btn-whatsapp {
    background-color: #25D366;
    color: #fff;
    font-weight: 700;
    padding: 12px 25px;
    border-radius: 8px;
    border: none;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}
.btn-whatsapp:hover {
    background-color: #1ebe5d;
    color: #fff;
    transform: translateY(-2px);
}
.btn-phone {
    background-color: #0d6efd;
    color: #fff;
    font-weight: 700;
    padding: 12px 25px;
    border-radius: 8px;
    border: none;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}
.btn-phone:hover {
    background-color: #0b5ed7;
    color: #fff;
    transform: translateY(-2px);
}

/* Quick Booking Form */
.booking-form-wrapper {
    background: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    color: var(--text-color);
}
.booking-form-wrapper h3 {
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--dark-bg);
}
.form-control, .form-select {
    border-radius: 8px;
    padding: 12px 15px;
    border: 1px solid #dee2e6;
}
.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25);
}

/* Feature Cards */
.feature-card {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
    height: 100%;
    border-bottom: 3px solid transparent;
}
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
    border-bottom: 3px solid var(--primary-color);
}
.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: rgba(255, 193, 7, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.feature-icon {
    font-size: 2rem;
    color: var(--primary-color);
}

/* Sections */
.section-padding { padding: 80px 0; }
.bg-light-custom { background-color: var(--light-bg); }

/* Footer */
footer {
    background-color: var(--dark-bg);
    color: #ccc;
    padding: 80px 0 30px;
}
footer a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}
footer a:hover { color: var(--primary-color); }

/* Mobile Sticky Bottom Bar */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1050;
}
.mobile-bottom-bar .col {
    padding: 0;
}
.mobile-bottom-bar a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    color: var(--dark-bg);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    height: 60px;
    border-right: 1px solid #eee;
}
.mobile-bottom-bar a:last-child {
    border-right: none;
}
.mobile-bottom-bar a i {
    font-size: 1.2rem;
    margin-bottom: 3px;
}

/* Responsive Overrides */
@media (max-width: 991px) {
    .hero h1 { font-size: 2.5rem; }
    .hero { padding: 120px 0 60px; min-height: auto; }
}

@media (max-width: 768px) {
    body { padding-bottom: 60px; /* Space for mobile bar */ }
    .mobile-bottom-bar { display: flex; }
    .top-bar { display: none; } /* Hide top bar on mobile */
    .hero h1 { font-size: 2rem; }
    .hero p { font-size: 1rem; }
}

