/*
Theme Name: Premium Taxi Booking
Theme URI: https://vsitlocaltravel.com
Description: A premium luxury taxi booking theme with full-width hero section and advanced search form
Version: 1.0
Author: Visit Local Travel
License: GNU General Public License v2 or later
Text Domain: premium-taxi-booking
*/

/* CSS Variables for Premium Design */
:root {
    --primary-gold: #D4AF37;
    --primary-gold-light: #F4E4BC;
    --primary-black: #1A1A1A;
    --primary-dark: #2C2C2C;
    --primary-charcoal: #3D3D3D;
    --text-light: #FFFFFF;
    --text-dark: #333333;
    --text-muted: #888888;
    --accent-blue: #1E3A5F;
    --gradient-premium: linear-gradient(135deg, #1A1A1A 0%, #2C2C2C 50%, #1E3A5F 100%);
    --shadow-premium: 0 20px 60px rgba(0, 0, 0, 0.4);
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

body {
    font-family: 'Playfair Display', Georgia, serif;
    background-color: var(--primary-black);
    color: var(--text-dark);
    line-height: 1.6;
}

/* Permanent scrollbar styling */
html {
    overflow-y: scroll;
}

/* Premium Webkit Scrollbar Styling (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: var(--primary-black);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #B8960C 100%);
    border-radius: 6px;
    border: 2px solid var(--primary-black);
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #E5C048 0%, var(--primary-gold) 100%);
}

::-webkit-scrollbar-corner {
    background: var(--primary-black);
}

/* Firefox Scrollbar Styling */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-gold) var(--primary-black);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.75rem;
}

p {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.7;
}

/* Premium Button Styles */
.btn-premium {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 15px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #B8960C 100%);
    color: #ffffff;
    font-family: 'Lato', Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    border-radius: 7px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    text-decoration: none;
}

.btn-premium svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #E5C048 0%, var(--primary-gold) 100%);
}

.btn-premium-outline {
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    box-shadow: none;
}

.btn-premium-outline:hover {
    background: var(--primary-gold);
    color: var(--primary-black);
}

/* Header & Navigation */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.site-logo-image {
    height: 50px;
    width: auto;
    display: block;
}

.main-navigation {
    display: flex;
    gap: 40px;
}

.primary-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 40px;
}

.primary-menu li {
    margin: 0;
    padding: 0;
}

.primary-menu a {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.primary-menu a svg {
    width: 21px;
    height: 21px;
    fill: currentColor;
}

.primary-menu a span {
    display: inline-block;
}

.primary-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.primary-menu a:hover {
    color: var(--primary-gold);
}

.primary-menu a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.phone-number {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.phone-number svg {
    width: 18px;
    height: 18px;
    fill: var(--primary-gold);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: grid;
    align-items: center;
    justify-content: center;
    background: var(--gradient-premium);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1549317661-bd32c8ce0db2?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    filter: brightness(0.4);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(30, 58, 95, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    margin-top: 80px;
}

.hero-badge {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    font-family: 'Lato', Arial, sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 30px;
    border-radius: 2px;
}

.hero-title {
    font-size: 4rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-title span {
    color: var(--primary-gold);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
    font-weight: 300;
}

/* Taxi Search Form */
.search-form-container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.taxi-search-form {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 4px;
    padding: 40px;
    box-shadow: var(--shadow-premium);
    margin-top: 30px;
}

.search-form-header {
    text-align: center;
    margin-bottom: 30px;
}

.search-form-header h3 {
    font-size: 1.5rem;
    color: var(--primary-black);
    margin-bottom: 10px;
}

.search-form-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 10px !important;
}

.form-row.three-columns {
    grid-template-columns: repeat(3, 1fr);
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    font-size: 1.0rem !important;
    font-weight: 600 !important;
    color: #b8960c !important;
    margin-top: 2px;
    text-transform: unset !important;
    letter-spacing: 0 !important;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px 15px !important;
    border-radius: 5px !important;
    font-family: 'Lato', Arial, sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    background: white;
    transition: all 0.3s ease;
    appearance: none;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 45px;
}

.search-form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #E5E5E5;
}

.price-display {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    color: var(--primary-black);
}

.price-display span {
    color: var(--primary-gold);
    font-weight: 700;
}

/* Information Section */
.information-section {
    padding: 60px 0;
    text-align: center;
}

.information-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    line-height: 1.8;
    color: #2c3e50;
}

.information-content p {
    margin-bottom: 15px;
}

.information-content ul,
.information-content ol {
    margin-bottom: 15px;
    padding-left: 25px;
}

.information-content li {
    margin-bottom: 8px;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: var(--primary-black);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 20px;
}

.section-header h2 {
    color: var(--text-light);
    margin-bottom: 20px;
}

.section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature-card {
    background: var(--primary-dark);
    padding: 40px;
    border-radius: 4px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-card);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
}

.feature-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--primary-gold);
}

.feature-card h3 {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Vehicle Fleet Section */
.fleet-section {
    padding: 100px 0;
    background: var(--primary-dark);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.vehicle-card {
    background: var(--primary-black);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.vehicle-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-card);
}

.vehicle-image {
    width: auto;
    height: 145px;
    background-size: cover;
    background-position: center;
}

.vehicle-details {
    padding: 25px;
}

.vehicle-class {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary-gold);
    margin-bottom: 5px;
}

.vehicle-details h3 {
    color: var(--text-light);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.vehicle-features {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.vehicle-feature {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 5px;
}

.vehicle-feature .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
    color: var(--primary-gold);
}

.vehicle-feature .vehicle-icon {
    width: 16px;
    height: 16px;
    fill: var(--primary-gold);
}

.vehicle-price {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    color: var(--primary-gold);
}

/* Footer */
.site-footer {
    background: var(--primary-black);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-column h4 {
    color: var(--primary-gold);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.footer-column .widget-title {
    color: var(--primary-gold);
    margin-bottom: 25px;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.footer-column .widget {
    margin-bottom: 20px;
}

.footer-column .widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-column .widget ul li {
    margin-bottom: 12px;
}

.footer-column .widget a {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column .widget a:hover {
    color: var(--primary-gold);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-left {
    display: flex;
    align-items: center;
}

.footer-bottom-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.footer-bottom p {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.payment-acceptance {
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-label {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 15px;
    color: #11315f;
    font-weight: 500;
}

.payment-methods-image {
    max-height: 25px;
    width: auto;
    display: block;
}

/* Available Vehicles Section */
.available-vehicles-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.available-vehicles-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.available-vehicles-section .section-header h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.available-vehicles-section .section-header p {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
}

.available-vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.available-vehicle-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.available-vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.5);
}

.available-vehicle-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.available-vehicle-details {
    padding: 25px;
}

.available-vehicle-class {
    display: inline-block;
    background: linear-gradient(135deg, #D4AF37 0%, #B8960C 100%);
    color: #1a1a1a;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.available-vehicle-details h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.available-vehicle-features {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.available-vehicle-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Lato', Arial, sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.available-vehicle-feature .dashicons {
    font-size: 18px;
    color: var(--primary-gold);
}

.available-vehicle-icon {
    width: 18px;
    height: 18px;
    fill: var(--primary-gold);
}

.available-vehicle-price {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3rem;
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 20px;
}

.available-vehicle-book-btn {
    display: inline-block;
    background: linear-gradient(135deg, #D4AF37 0%, #B8960C 100%);
    color: #1a1a1a;
    padding: 12px 30px;
    border-radius: 25px;
    font-family: 'Lato', Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    text-align: center;
}

.available-vehicle-book-btn:hover {
    background: linear-gradient(135deg, #E5C04B 0%, #C9A816 100%);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.no-vehicles-message {
    text-align: center;
    padding: 40px;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Lato', Arial, sans-serif;
    font-size: 1.1rem;
}

/* Vehicle Pricing Section */
.vehicle-pricing-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.vehicle-pricing-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.vehicle-pricing-section .section-header h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    color: var(--primary-black);
    margin-bottom: 15px;
}

.vehicle-pricing-section .section-header p {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 1.1rem;
    color: rgba(0, 0, 0, 0.6);
}

.vehicle-pricing-section .services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.vehicle-pricing-section .services-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vehicle-pricing-section .service-list-item {
    background: #ffffff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.vehicle-pricing-section .service-list-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.vehicle-pricing-section .service-list-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 0px 20px 10px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.vehicle-pricing-section .service-route-info {
    display: flex;
    align-items: center;
    gap: 35px;
    flex: 1;
}

.vehicle-pricing-section .route-destination {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.vehicle-pricing-section .route-label {
    font-size: 13px;
    color: #d4af37;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0px;
}

.vehicle-pricing-section .route-location {
    font-size: 20px;
    color: var(--primary-black);
    font-weight: 500;
}

.vehicle-pricing-section .route-connector {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    border-radius: 50%;
}

.vehicle-pricing-section .route-connector svg {
    width: 20px;
    height: 20px;
    fill: #d4af37;
}

.vehicle-pricing-section .service-type-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #d4af372e 0%, #b8960c30 100%);
    border: 1px solid #ffdb67;
    color: #1a1a1a;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.vehicle-pricing-section .service-type-badge svg {
    width: 18px;
    height: 18px;
    fill: #1a1a1a;
}

.vehicle-pricing-section .service-list-details {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
    padding: 5px 30px;
}

.vehicle-pricing-section .service-vehicle-info {
    display: flex;
    gap: 20px;
    flex: 1;
}

.vehicle-pricing-section .service-vehicle-image {
    width: 185px;
    height: 145px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 6px;
    background-color: #f0f0f0;
}

.vehicle-pricing-section .service-vehicle-image.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vehicle-pricing-section .service-vehicle-image.placeholder svg {
    width: 40px;
    height: 40px;
    fill: rgba(0, 0, 0, 0.2);
}

.vehicle-pricing-section .service-vehicle-text {
    flex: 1;
}

.vehicle-pricing-section .service-vehicle-class {
    font-size: 12px;
    color: var(--primary-gold);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.vehicle-pricing-section .service-vehicle-name {
    font-size: 20px;
    color: var(--primary-black);
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.vehicle-pricing-section .service-vehicle-description {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.5;
}

.vehicle-pricing-section .service-specs-grid {
    display: flex;
    gap: 10px;
}

.vehicle-pricing-section .service-spec-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    min-width: 80px;
}

.vehicle-pricing-section .spec-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vehicle-pricing-section .spec-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--primary-gold);
}

.vehicle-pricing-section .spec-label {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0px;
}

.vehicle-pricing-section .spec-value {
    font-size: 15px;
    color: var(--primary-black);
    font-weight: 600;
}

.vehicle-pricing-section .service-list-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px !important;
    border-top: 1px solid #f0f0f0;
    border-radius: 7px;
    gap: 15px;
}

.instant-confirmation {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.3);
    border-radius: 5px;
    font-size: 0.85rem;
    color: #2ecc71;
    font-weight: 600;
    font-family: 'Lato', Arial, sans-serif;
}

.instant-confirmation svg {
    width: 16px;
    height: 16px;
    fill: #2ecc71;
}

.guaranteed-departures {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    background: rgba(52, 152, 219, 0.1);
    border: 1px solid rgba(52, 152, 219, 0.3);
    border-radius: 5px;
    font-size: 0.85rem;
    color: #3498db;
    font-weight: 600;
    font-family: 'Lato', Arial, sans-serif;
}

.guaranteed-departures svg {
    width: 16px;
    height: 16px;
    fill: #3498db;
}

.no-extra-fee {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    background: rgba(155, 89, 182, 0.1);
    border: 1px solid rgba(155, 89, 182, 0.3);
    border-radius: 5px;
    font-size: 0.85rem;
    color: #9b59b6;
    font-weight: 600;
    font-family: 'Lato', Arial, sans-serif;
}

.no-extra-fee svg {
    width: 16px;
    height: 16px;
    fill: #9b59b6;
}

.vehicle-badges {
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: flex-start;
}

.service-vehicle-text {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 15px;
}

.service-vehicle-name {
    grid-column: 1;
    grid-row: 1;
}

.service-vehicle-description {
    grid-column: 1;
    grid-row: 2;
}

.vehicle-badges {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: start;
}

.btn-book-route {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-book-route svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Premium Radio Button Styling */
input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-gold);
    border-radius: 50%;
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    background: transparent;
}

input[type="radio"]:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

input[type="radio"]:checked {
    border-color: var(--primary-gold);
    background: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
}

input[type="radio"]:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3);
}

input[type="radio"]:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Premium Payment Option Styling */
.payment-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

.payment-option:hover {
    border-color: rgba(212, 175, 55, 0.5);
    background: rgba(212, 175, 55, 0.05);
}

.payment-option:has(input:checked) {
    border-color: var(--primary-gold);
    background: linear-gradient(135deg, rgb(212 175 55 / 68%) 0%, rgba(212, 175, 55, 0.05) 100%);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.payment-option input[type="radio"] {
    margin: 0;
}

.payment-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 35px;
    background: #fff;
    border-radius: 6px;
    padding: 5px;
    flex-shrink: 0;
}

.payment-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.payment-label {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-light);
}

/* Service Specs Accordion for Mobile */
.service-specs-accordion {
    display: none;
}

.specs-accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Lato', Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-gold);
    transition: all 0.3s ease;
}

.specs-accordion-header:hover {
    background: rgba(212, 175, 55, 0.15);
}

.accordion-arrow {
    width: 20px;
    height: 20px;
    fill: var(--primary-gold);
    transition: transform 0.3s ease;
}

.specs-accordion-header.active .accordion-arrow {
    transform: rotate(180deg);
}

.specs-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.specs-accordion-content.active {
    max-height: 500px;
}

.specs-accordion-content .service-specs-grid {
    padding: 15px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.vehicle-pricing-section .service-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.vehicle-pricing-section .price-amount {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 28px;
    color: var(--primary-gold);
    font-weight: 700;
}

.vehicle-pricing-section .price-currency {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
    font-weight: 600;
}

.vehicle-pricing-section .btn-book-route {
    background: linear-gradient(135deg, #D4AF37 0%, #B8960C 100%);
    color: #1a1a1a;
    padding: 12px 30px;
    border-radius: 25px;
    font-family: 'Lato', Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.vehicle-pricing-section .btn-book-route:hover {
    background: linear-gradient(135deg, #E5C04B 0%, #C9A816 100%);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.vehicle-pricing-section .no-services {
    text-align: center;
    padding: 60px 20px;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.vehicle-pricing-section .no-services-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vehicle-pricing-section .no-services-icon svg {
    width: 60px;
    height: 60px;
    fill: rgba(0, 0, 0, 0.2);
}

.vehicle-pricing-section .no-services h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    color: var(--primary-black);
    margin-bottom: 10px;
}

.vehicle-pricing-section .no-services p {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.6);
}

/* Load More Button Styling */
.vehicle-pricing-section .load-more-container {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
}

.vehicle-pricing-section .btn-load-more {
    background: linear-gradient(135deg, #D4AF37 0%, #B8960C 100%);
    color: #1a1a1a;
    padding: 14px 40px;
    border-radius: 30px;
    font-family: 'Lato', Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.vehicle-pricing-section .btn-load-more:hover {
    background: linear-gradient(135deg, #E5C04B 0%, #C9A816 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.4);
}

.vehicle-pricing-section .btn-load-more:active {
    transform: translateY(0);
}

.vehicle-pricing-section .btn-load-more .btn-text {
    position: relative;
    z-index: 1;
}

.vehicle-pricing-section .btn-load-more .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.vehicle-pricing-section .btn-load-more:hover .btn-icon {
    transform: translateY(2px);
}

.vehicle-pricing-section .btn-load-more .btn-icon svg {
    width: 20px;
    height: 20px;
    fill: #1a1a1a;
}

.vehicle-pricing-section .btn-load-more.loading {
    pointer-events: none;
    opacity: 0.7;
}

.vehicle-pricing-section .btn-load-more.loading .btn-text::after {
    content: '...';
    animation: dots 1.5s infinite;
}

@keyframes dots {
    0%, 20% { content: ''; }
    40% { content: '.'; }
    60% { content: '..'; }
    80%, 100% { content: '...'; }
}

/* Tooltip Styling */
.service-info-tooltip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    cursor: help;
    transition: all 0.3s ease;
    margin-left: 8px;
    position: relative;
    z-index: 10;
}

/* Premium Scrollbar Styling for Booking Modal */
.booking-modal-content {
    scrollbar-width: thin;
    scrollbar-color: #D4AF37 #f5f5f5;
}

.booking-modal-content::-webkit-scrollbar {
    width: 8px;
}

.booking-modal-content::-webkit-scrollbar-track {
    background: #2C2C2C;
    border-radius: 4px;
}

.booking-modal-content::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #D4AF37 0%, #B8960C 100%);
    border-radius: 4px;
    border: 2px solid #f5f5f5;
}

.booking-modal-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #E5C04B 0%, #C9A816 100%);
}

.service-info-tooltip:hover {
    background: rgba(212, 175, 55, 0.4);
    transform: scale(1.1);
}

.service-info-tooltip .dashicons {
    font-size: 20px;
    color: #D4AF37;
    vertical-align: middle;
    height: 20px;
    width: 20px;
}

.service-info-tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: #1a1a1a;
    color: #fff;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999999;
    pointer-events: none;
    max-width: 400px;
    min-width: 200px;
    white-space: normal;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.service-info-tooltip:hover::after {
    opacity: 1;
    visibility: visible;
}

/* Vehicle pricing section specific tooltip */
.vehicle-pricing-section .service-info-tooltip {
    z-index: 5;
}

.vehicle-pricing-section .service-info-tooltip::after {
    z-index: 1000000;
}

/* Taxi Booking System Shortcode Styling */
.taxi-vehicle-search-form {
    background: rgba(255, 255, 255, 0.98) !important;
    border-radius: 4px !important;
    padding: 40px !important;
    box-shadow: var(--shadow-premium) !important;
}

.taxi-vehicle-search-form h2 {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: 1.5rem !important;
    color: var(--primary-black) !important;
    margin-bottom: 30px !important;
    text-align: center !important;
}

.search-form-grid {
    display: flex !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
    margin-bottom: 25px !important;
}
.form-group input[type="text"] {
    height: 52px;
    max-height: 52px;
}
.taxi-vehicle-search-form .form-group label {
    font-family: 'Lato', Arial, sans-serif !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    color: var(--text-muted) !important;
    margin-bottom: 8px !important;
    margin-top: 3px;
}

.taxi-vehicle-search-form .form-control {
    padding: 15px 20px !important;
    border: 2px solid #E5E5E5 !important;
    border-radius: 8px !important;
    font-family: 'Lato', Arial, sans-serif !important;
    font-size: 1rem !important;
    color: var(--text-dark) !important;
    background: white !important;
    transition: all 0.3s ease !important;
    appearance: none !important;
}

.taxi-vehicle-search-form .form-control:focus {
    outline: none !important;
    border-color: var(--primary-gold) !important;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1) !important;
}

.search-vehicles-btn {
    width: 100% !important;
    padding: 16px 40px !important;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #B8960C 100%) !important;
    color: var(--primary-black) !important;
    font-family: 'Lato', Arial, sans-serif !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    border: none !important;
    border-radius: 2px !important;
    cursor: pointer !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3) !important;
}

.search-vehicles-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5) !important;
    background: linear-gradient(135deg, #E5C048 0%, var(--primary-gold) 100%) !important;
}

/* Modal Styling */
.taxi-modal {
    z-index: 10000 !important;
}

.taxi-modal-content {
    background: var(--primary-dark) !important;
    border: 1px solid rgba(212, 175, 55, 0.2) !important;
    border-radius: 4px !important;
}

.taxi-modal-header {
    border-bottom: 1px solid rgba(212, 175, 55, 0.2) !important;
    padding: 25px !important;
}

.taxi-modal-header h3 {
    font-family: 'Playfair Display', Georgia, serif !important;
    color: var(--primary-gold) !important;
    margin: 0 !important;
}

.taxi-modal-close {
    color: var(--primary-gold) !important;
    font-size: 32px !important;
}

.taxi-modal-close:hover {
    color: var(--text-light) !important;
}

.vehicle-results-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
}

.vehicle-result-card {
    background: var(--primary-black) !important;
    border: 1px solid rgba(212, 175, 55, 0.1) !important;
    border-radius: 4px !important;
    padding: 25px !important;
    transition: all 0.4s ease !important;
}

.vehicle-result-card:hover {
    transform: translateY(-5px) !important;
    border-color: var(--primary-gold) !important;
    box-shadow: var(--shadow-card) !important;
}

.vehicle-class-badge {
    background: rgba(212, 175, 55, 0.2) !important;
    color: var(--primary-gold) !important;
    border: 1px solid var(--primary-gold) !important;
    padding: 8px 16px !important;
    margin-right: 10px;
    border-radius: 5px !important;
    font-family: 'Lato', Arial, sans-serif !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
}

.vehicle-result-name {
    font-family: 'Playfair Display', Georgia, serif !important;
    color: var(--text-light) !important;
    font-size: 1.25rem !important;
}

.vehicle-result-details {
    color: rgba(255, 255, 255, 0.6) !important;
    font-family: 'Lato', Arial, sans-serif !important;
}

.vehicle-result-price {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: 1.5rem !important;
    color: var(--primary-gold) !important;
    font-weight: 700 !important;
}

.btn-select-vehicle {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #B8960C 100%) !important;
    color: var(--primary-black) !important;
    font-family: 'Lato', Arial, sans-serif !important;
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    border: none !important;
    border-radius: 2px !important;
    padding: 12px 20px !important;
    transition: all 0.4s ease !important;
}

.btn-select-vehicle:hover {
    background: linear-gradient(135deg, #E5C048 0%, var(--primary-gold) 100%) !important;
    transform: translateY(-2px) !important;
}

.no-results {
    color: rgba(255, 255, 255, 0.6) !important;
    font-family: 'Lato', Arial, sans-serif !important;
}

/* Services Page Styling */
.services-hero-section {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-premium);
    overflow: hidden;
}

.services-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    filter: brightness(0.4);
}

.services-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(30, 58, 95, 0.7) 100%);
}

.services-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    margin-top: 80px;
}

.services-listing-section {
    padding: 40px 0;
    background: var(--primary-black);
}

.services-search-container {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 0 20px;
}

.services-search-form {
    background: var(--primary-dark);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 4px;
    padding: 20px 40px 25px 40px;
}

.search-form-header {
    text-align: center;
    margin-bottom: 20px;
}

.search-form-header h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.75rem;
    color: var(--text-light);
    margin-bottom: 10px;
    font-weight: 600;
}

.search-form-header p {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.search-form-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 35px;
}

.search-form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.search-form-group label {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary-gold);
}

.search-select,
.search-input {
    padding: 15px 20px;
    background: var(--primary-black);
    border: 2px solid rgba(212, 175, 55, 0.2) !important;
    border-radius: 2px;
    font-family: 'Lato', Arial, sans-serif;
    font-size: 1rem;
    color: var(--text-light);
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23D4AF37'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
    padding-right: 45px;
}

.search-input {
    background-image: none;
    padding-right: 20px;
}

.search-select:focus,
.search-input:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.search-select option {
    background: var(--primary-dark);
    color: var(--text-light);
}

.search-form-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-search-services {
    padding: 16px 50px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #B8960C 100%);
    color: var(--primary-black);
    font-family: 'Lato', Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-search-services:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #E5C048 0%, var(--primary-gold) 100%);
}

.btn-reset-search {
    padding: 16px 50px;
    background: transparent;
    color: var(--text-light);
    font-family: 'Lato', Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.btn-reset-search:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.1);
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.service-list-item {
    background: var(--primary-dark);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.service-list-item:hover {
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-card);
    transform: translateY(-2px);
}

.service-list-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.service-route-info {
    display: flex;
    align-items: center;
    gap: 40px;
    flex: 1;
}

.route-destination {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.route-label {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary-gold);
}

.route-location {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    color: var(--text-light);
    font-weight: 600;
}

.route-connector {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.route-connector svg {
    width: 24px;
    height: 24px;
    fill: var(--primary-gold);
}

.service-type-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid #5d5743;
    color: var(--primary-gold);
    font-family: 'Lato', Arial, sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 5px;
}

.service-type-badge svg {
    width: 20px;
    height: 20px;
    fill: var(--primary-gold);
}

.service-list-details {
    display: flex;
    gap: 40px;
    padding: 20px 30px;
}

.service-vehicle-info {
    display: flex;
    gap: 20px;
    align-items: center;
    flex: 1;
}

.service-vehicle-image {
    width: 220px;
    height: 160px;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    flex-shrink: 0;
}

.service-vehicle-image.placeholder {
    background: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-vehicle-image.placeholder svg {
    width: 40px;
    height: 40px;
    fill: var(--primary-gold);
    opacity: 0.5;
}

.service-vehicle-text {
    display: grid;
    flex-direction: column;
    gap: 8px;
}

.service-vehicle-class {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary-gold);
}

.service-vehicle-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    color: var(--text-light);
    font-weight: 600;
}

.service-vehicle-description {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.service-specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-spec-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 20px;
    background: var(--primary-black);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 4px;
}

.spec-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
}

.spec-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--primary-gold);
}

.spec-label {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
}

.spec-value {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    color: var(--text-light);
    font-weight: 600;
}

.service-list-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    background: rgb(212 175 55 / 15%);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    line-height: 0px;
}

.service-price .price-amount {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    color: var(--primary-gold);
    font-weight: 700;
}

.service-price .price-currency {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 1rem;
    color: var(--text-muted);
}

.btn-book-route {
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #B8960C 100%);
    color: var(--primary-black);
    font-family: 'Lato', Arial, sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-book-route:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #E5C048 0%, var(--primary-gold) 100%);
}

.no-services {
    text-align: center;
    padding: 80px 20px;
    background: var(--primary-dark);
    border-radius: 4px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.no-services-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
}

.no-services-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--primary-gold);
    opacity: 0.5;
}

.no-services h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.no-services p {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Booking Modal Styling */
.booking-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.booking-modal.active {
    display: block;
}

.booking-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 0%);
    backdrop-filter: blur(5px);
}

.booking-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 950px;
    max-height: 96vh;
    background: var(--primary-dark);
    border: 0px solid var(--primary-gold);
    border-radius: 10px;
    box-shadow: var(--shadow-premium);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.booking-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    background: var(--primary-black);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.booking-modal-header h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    color: var(--text-light);
    margin: 0;
    font-weight: 600;
}

.booking-modal-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.booking-modal-close:hover {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
}

.booking-modal-close svg {
    width: 20px;
    height: 20px;
    fill: var(--primary-gold);
    transition: fill 0.3s ease;
}

.booking-modal-close:hover svg {
    fill: var(--primary-black);
}

.booking-modal-body {
    padding: 30px;
    overflow-y: auto;
    max-height: calc(98vh - 80px);
}

.booking-modal-body .taxi-booking-form {
    background: transparent !important;
    padding: 0 !important;
    box-shadow: none !important;
    border: none !important;
}

.booking-modal-body .taxi-booking-form h3 {
    display: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .form-row.three-columns {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .vehicle-results-grid {
        grid-template-columns: 1fr !important;
    }
    
    .search-form-grid {
        grid-template-columns: repeat(2, 1fr);
        display: contents !important;
    }
    
    .service-list-main {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .service-route-info {
        flex-direction: column;
        gap: 15px !important;
        align-items: flex-start;
    }
    
    .route-connector {
        transform: rotate(90deg);
    }
    
    .service-list-details {
        flex-direction: column;
        gap: 30px;
    }
    
    .service-specs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 15px 20px;
    }
    
    .main-navigation {
        display: none;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .taxi-search-form {
        padding: 25px;
    }
    
    .taxi-vehicle-search-form {
        padding: 25px !important;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-row.three-columns {
        grid-template-columns: 1fr;
    }
    
    .search-form-footer {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .fleet-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .search-form-grid {
        grid-template-columns: 1fr !important;
    }
    
    .services-search-form {
        padding: 15px;
    }
    
    .search-form-actions {
        flex-direction: column;
    }
    
    .btn-search-services,
    .btn-reset-search {
        width: 100%;
    }
    
    .services-hero-section {
        min-height: 40vh;
    }
    
    .service-list-main,
    .service-list-details,
    .service-list-footer {
        padding: 25px !important;
    }
    .vehicle-pricing-section .service-list-main {
        padding: 0px 0px 10px 0px !important;
    }
    
    .route-location {
        font-size: 1.25rem;
    }
    .services-search-container {
        padding: 0 10px;
    }
    .service-vehicle-info {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .service-vehicle-image {
        width: 100% !important;
        height: 150px !important;
    }
    
    .service-specs-grid {
        grid-template-columns: 1fr;
    }
    .service-vehicle-text {
        display: flex;
    }
    /* Show accordion on mobile, hide regular grid */
    .service-specs-accordion {
        display: block;
    }
    
    .specs-accordion-content .service-specs-grid {
        padding: 10px;
        gap: 10px;
    }
    
    .service-list-footer {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .btn-book-route {
        width: 100%;
    }
    
    /* Booking Modal Mobile Styles */
    .booking-modal-content {
        width: 95%;
        max-width: none;
        max-height: 90vh;
        margin: 20px auto;
        border-radius: 12px;
    }
    
    .booking-modal-header {
        padding: 20px;
    }
    
    .booking-modal-header h2 {
        font-size: 1.5rem;
    }
    
    .booking-modal-close {
        width: 36px;
        height: 36px;
    }
    
    .booking-modal-body {
        padding: 20px;
        max-height: calc(90vh - 80px);
        overflow-y: auto;
    }
    
    /* Vehicle Modal Mobile Styles */
    .vehicle-modal-content {
        width: 95%;
        max-width: none;
        max-height: 90vh;
        margin: 20px auto;
        border-radius: 12px;
    }
    
    .vehicle-modal-header {
        padding: 20px;
    }
    
    .vehicle-modal-header h3 {
        font-size: 1.25rem;
    }
    
    .vehicle-modal-close {
        width: 36px;
        height: 36px;
    }
    
    .vehicle-modal-body {
        padding: 20px;
        max-height: calc(90vh - 80px);
        overflow-y: auto;
    }
    
    /* Navigation Mobile Styles */
    .main-navigation {
        padding: 15px;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 10px;
    }
    
    .main-navigation li {
        width: 100%;
    }
    
    .main-navigation a {
        padding: 12px;
        text-align: center;
    }
    
    /* Hero Section Mobile Styles */
    .hero-section {
        min-height: 60vh;
        padding: 40px 20px;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    /* Load More Button Mobile Styles */
    .load-more-container {
        padding: 20px;
    }
    
    .btn-load-more {
        width: 100%;
        padding: 16px 24px;
        font-size: 16px;
    }
    
    .btn-load-more .btn-icon {
        width: 24px;
        height: 24px;
    }
    
    /* Footer Mobile Styles */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 20px;
    }
    
    .payment-acceptance {
        justify-content: center;
    }
    
    .payment-methods-image {
        max-height: 25px;
    }
    
    /* Service Info Tooltip Mobile */
    .service-info-tooltip {
        width: 28px;
        height: 28px;
    }
    
    .service-info-tooltip .dashicons {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    .hero-section {
        min-height: 50vh;
        padding: 30px 15px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .booking-modal-content {
        width: 90%;
        margin: 15px auto;
        border-radius: 8px;
    }
    
    .booking-modal-header {
        padding: 15px;
    }
    
    .booking-modal-header h2 {
        font-size: 1.25rem;
    }
    
    .booking-modal-close {
        width: 32px;
        height: 32px;
    }
    
    .booking-modal-body {
        padding: 7px;
    }
    
    .vehicle-modal-content {
        width: 90%;
        margin: 15px auto;
        border-radius: 8px;
    }
    
    .vehicle-modal-header {
        padding: 15px;
    }
    
    .vehicle-modal-header h3 {
        font-size: 1.1rem;
    }
    
    .vehicle-modal-close {
        width: 32px;
        height: 32px;
    }
    
    .vehicle-modal-body {
        padding: 15px;
    }
    
    .btn-premium {
        padding: 14px 30px;
        font-size: 14px;
    }
    
    .btn-load-more {
        padding: 14px 20px;
        font-size: 14px;
    }
    
    .service-list-main,
    .service-list-details,
    .service-list-footer {
        padding: 0px !important;
    }
    
    .route-location {
        font-size: 1.1rem;
    }
    
    .service-vehicle-name {
        font-size: 1rem;
    }
    
    .service-vehicle-class {
        font-size: 0.85rem;
    }
    
    .spec-value {
        font-size: 0.9rem;
    }
    
    .price-amount {
        font-size: 1.5rem;
    }
    
    .footer-bottom {
        padding: 5px;
        display: flex;
    }
    
    .payment-methods-image {
        max-height: 20px;
    }
}
