/*
Theme Name: Premium Limo Service
Theme URI: https://example.com
Author: Your Name
Author URI: https://example.com
Description: A premium, aesthetic WordPress theme for luxury limousine and airport car services
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: premium-limo
Tags: business, transportation, luxury, responsive, custom-background
*/

/* ===================================
   CSS RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gold: #C9A961;
    --primary-dark: #000000;
    --secondary-dark: #0D0D0D;
    --accent-gold: #E0C589;
    --text-light: #FFFFFF;
    --text-gray: #B0B0B0;
    --text-muted: #808080;
    --bg-dark: #000000;
    --bg-section: #0A0A0A;
    --bg-card: #141414;
    --border-subtle: rgba(255, 255, 255, 0.05);
    --border-gold: rgba(201, 169, 97, 0.25);
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--text-light);
    background-color: var(--bg-dark);
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    max-width: 100vw;
}

html,
body {
    overflow-x: hidden;
    max-width: 100%;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button,
input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
}

/* ===================================
   HEADER / NAVIGATION
   =================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 169, 97, 0.15);
    transition: var(--transition);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.site-header.scrolled {
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.8);
    background: rgba(0, 0, 0, 0.98);
    border-bottom: 1px solid rgba(201, 169, 97, 0.25);
}

.header-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 1rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-image {
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 50px;
    width: auto;
    filter: brightness(1.05);
}

.logo-text-container {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-left: 0.5rem;
}

.logo-title {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--primary-gold);
    line-height: 1.2;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--primary-dark);
}

.logo-tagline {
    font-size: 0.6rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9) !important;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    line-height: 1.3;
    display: block;
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    position: relative;
    padding: 0.3rem 0;
    color: var(--text-light);
    transition: color 0.3s ease;
}

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

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

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

.cta-phone {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 2rem;
    background: var(--primary-gold);
    color: #000000;
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: 50px;
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.cta-phone:hover {
    transform: translateY(-1px);
    background: var(--accent-gold);
    box-shadow: 0 6px 20px rgba(184, 147, 74, 0.3);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    position: fixed;
    right: 1rem;
    top: 1.25rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary-gold);
    transition: var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: var(--primary-gold);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    background: var(--primary-gold);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    /* Start from top */
    padding-top: 100px;
    /* Adjusted for better positioning */
    padding-bottom: 50px;
    /* Add bottom padding */
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 15% 25%, rgba(201, 169, 97, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 3rem;
    width: 100%;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 2.5rem;
    align-items: center;
    /* Vertically center both columns */
}

.hero-content {
    animation: fadeInUp 0.8s ease;
    padding-right: 1rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: 1rem;
    color: #FFFFFF;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--primary-gold);
    font-weight: 500;
    margin-bottom: 0.7rem;
    letter-spacing: 0.3px;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
    line-height: 1.6;
    font-weight: 300;
}

.hero-cta-buttons {
    display: flex;
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.hero-cta-button {
    padding: 1.1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    border: none;
    text-decoration: none;
}

.hero-cta-button.primary {
    background: var(--primary-gold);
    color: #000000;
}

.hero-cta-button.secondary {
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--text-light);
}

.hero-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.4);
}

.hero-cta-button.primary:hover {
    background: var(--accent-gold);
}

.hero-cta-button.secondary:hover {
    background: rgba(201, 169, 97, 0.1);
    border-color: var(--accent-gold);
}

.hero-features {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(201, 169, 97, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.hero-feature-text {
    font-size: 0.95rem;
    color: var(--text-gray);
    font-weight: 300;
    line-height: 1.4;
}

/* ===================================
   BOOKING FORM
   =================================== */
.booking-form-wrapper {
    background: rgba(20, 20, 20, 0.9);
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(201, 169, 97, 0.15);
    border-radius: 10px;
    padding: 1.5rem 1.5rem;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.9);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.booking-form-title {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
    color: var(--text-light);
    letter-spacing: -0.3px;
}

.booking-form-subtitle {
    color: var(--text-gray);
    margin-bottom: 1rem;
    font-size: 0.8rem;
    font-weight: 300;
    line-height: 1.4;
}

.booking-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.form-group.full-width {
    grid-column: 1 / -1;
    width: 100%;
}

.form-label {
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
    color: var(--text-light);
    letter-spacing: 0.3px;
}

.form-label .required {
    color: var(--primary-gold);
}

.form-input,
.form-select,
.form-textarea {
    width: 100% !important;
    padding: 0.65rem 0.85rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    color: var(--text-light) !important;
    font-size: 0.85rem;
    transition: var(--transition);
    font-weight: 300;
    display: block;
}

/* Date and Time Input Styling */
.form-input[type="date"],
.form-input[type="time"] {
    color-scheme: dark;
    cursor: pointer;
}

.form-input[type="date"]::-webkit-calendar-picker-indicator,
.form-input[type="time"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
    opacity: 0.7;
}

.form-input[type="date"]::-webkit-calendar-picker-indicator:hover,
.form-input[type="time"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

/* Select dropdown arrow visibility */
.form-select {
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><path fill="%23C9A961" d="M6 9L1 4h10z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 12px;
    padding-right: 2.5rem;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.15);
}

.form-input::placeholder {
    color: rgba(184, 184, 184, 0.5);
}

/* Select options styling */
.form-select option {
    background: #1a1a1a;
    color: var(--text-light);
    padding: 0.5rem;
}

.form-select option:checked {
    background: var(--primary-gold);
    color: #000000;
}

.phone-input-wrapper {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 0.5rem;
}

.country-code-select {
    width: 100%;
}

.date-time-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.date-time-group {
    display: flex;
    flex-direction: column;
}

.date-time-label {
    font-size: 0.75rem;
    color: var(--text-gray);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-textarea {
    min-height: 60px;
    resize: vertical;
}

.submit-button {
    display: block;
    grid-column: 1 / -1;
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-gold), var(--accent-gold));
    color: #000000;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
}

.submit-button:hover {
    background: linear-gradient(135deg, var(--accent-gold), var(--primary-gold));
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(201, 169, 97, 0.5);
}

.submit-button:active {
    transform: translateY(-1px);
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Hide submit button only for multi-step booking form */
#submitBtn {
    display: none;
}

/* ===================================
   MULTI-STEP FORM STYLES
   =================================== */
/* Form Progress Indicator */
.form-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    padding: 1rem 0;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    position: relative;
}

.progress-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-gray);
    transition: all 0.3s ease;
}

.progress-step.active .progress-circle {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: #000000;
    box-shadow: 0 0 15px rgba(201, 169, 97, 0.4);
}

.progress-step.completed .progress-circle {
    background: rgba(201, 169, 97, 0.2);
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

.progress-label {
    font-size: 0.7rem;
    color: var(--text-gray);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.progress-step.active .progress-label {
    color: var(--primary-gold);
    font-weight: 500;
}

.progress-line {
    width: 60px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    top: -10px;
}

.progress-step.completed+.progress-line {
    background: var(--primary-gold);
}

/* Form Steps */
.form-step {
    display: none !important;
    animation: fadeInUp 0.4s ease;
}

.form-step.active {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 1.2rem;
    opacity: 1;
    visibility: visible;
}

/* Ensure Step 2 has proper layout */
.form-step[data-step="2"].active {
    display: grid !important;
}

/* Ensure Step 3 has proper layout */
.form-step[data-step="3"].active {
    display: block !important;
}

/* Fixed height container to prevent form jumping */
.booking-form {
    min-height: 280px;
    position: relative;
}

/* Form Navigation Buttons */
.form-navigation {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    width: 100%;
}

.form-nav-btn {
    flex: 1;
    padding: 0.85rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-nav-btn svg {
    width: 16px;
    height: 16px;
}

.prev-btn {
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: var(--text-light) !important;
}

.prev-btn svg {
    width: 16px;
    height: 16px;
}

.prev-btn:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    transform: translateX(-3px);
}

.next-btn {
    background: var(--primary-gold) !important;
    border: none !important;
    color: #000000 !important;
}

.next-btn svg {
    width: 16px;
    height: 16px;
}

.next-btn:hover {
    background: var(--accent-gold) !important;
    transform: translateX(3px);
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
}

/* Booking Summary */
.booking-summary {
    background: rgba(201, 169, 97, 0.05);
    border: 1px solid rgba(201, 169, 97, 0.15);
    border-radius: 8px;
    padding: 1.25rem;
    margin-top: 1rem;
}

.summary-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.summary-label {
    font-size: 0.8rem;
    color: var(--text-gray);
    font-weight: 400;
}

.summary-value {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
    text-align: right;
    max-width: 60%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ===================================
   FLEET SECTION
   =================================== */
.fleet-section {
    padding: 5rem 3rem;
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 50%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.fleet-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 80% 20%, rgba(201, 169, 97, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(201, 169, 97, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.section-container {
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    width: 100%;
    overflow-x: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
    animation: fadeInUp 0.8s ease;
}

.section-subtitle {
    font-size: 0.875rem;
    color: var(--primary-gold);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 1.2rem;
    color: #FFFFFF;
    letter-spacing: -0.8px;
    line-height: 1.2;
}

.section-description {
    font-size: 1rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.7;
}

/* Premium Fleet Grid */
.fleet-grid-premium {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
    animation: fadeInUp 0.8s ease 0.2s both;
    max-width: 1300px;
    margin: 0 auto;
}

/* Premium Fleet Cards */
.fleet-card-premium {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.95) 0%, rgba(10, 10, 10, 0.98) 100%);
    border: 1px solid rgba(201, 169, 97, 0.15);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
}

.fleet-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.fleet-card-premium:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 169, 97, 0.4);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.8),
        0 0 40px rgba(201, 169, 97, 0.1);
}

.fleet-card-premium:hover::before {
    opacity: 1;
}

.fleet-card-premium.featured {
    border-color: rgba(201, 169, 97, 0.3);
    box-shadow: 0 10px 40px rgba(201, 169, 97, 0.08);
}

/* Fleet Image Container */
.fleet-image-container {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
}

.fleet-vehicle-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fleet-card-premium:hover .fleet-vehicle-image {
    transform: scale(1.08);
}

.fleet-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.85);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    color: var(--primary-gold);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid rgba(201, 169, 97, 0.3);
}

.fleet-badge.featured-badge {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-gold) 100%);
    color: #000000;
    border: none;
}

/* Fleet Card Content */
.fleet-card-content {
    padding: 1.5rem 1.75rem 2rem;
}

.fleet-vehicle-title {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.6rem;
    color: #FFFFFF;
    letter-spacing: -0.5px;
}

.fleet-vehicle-subtitle {
    font-size: 0.875rem;
    color: var(--text-gray);
    line-height: 1.5;
    margin-bottom: 1.25rem;
    font-weight: 300;
}

/* Fleet Amenities */
.fleet-amenities {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.amenity-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.85rem;
    background: rgba(201, 169, 97, 0.05);
    border: 1px solid rgba(201, 169, 97, 0.15);
    border-radius: 6px;
    font-size: 0.8rem;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.amenity-badge:hover {
    background: rgba(201, 169, 97, 0.1);
    border-color: rgba(201, 169, 97, 0.3);
    transform: translateX(3px);
}

.amenity-icon {
    width: 18px;
    height: 18px;
    color: var(--primary-gold);
    flex-shrink: 0;
}

/* Comfort Section */
.fleet-comfort-section {
    margin-bottom: 1.25rem;
}

.comfort-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.comfort-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.comfort-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-gold) 0%, var(--accent-gold) 100%);
    border-radius: 10px;
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.comfort-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* Fleet Capacity Row */
.fleet-capacity-row {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.capacity-badge {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1rem;
    background: rgba(201, 169, 97, 0.08);
    border: 1px solid rgba(201, 169, 97, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.capacity-badge:hover {
    background: rgba(201, 169, 97, 0.12);
    transform: translateY(-2px);
}

.capacity-icon {
    width: 24px;
    height: 24px;
    color: var(--primary-gold);
    flex-shrink: 0;
}

.capacity-text {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 300;
}

.capacity-text strong {
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Fleet Capacity Options (for multi-size vehicles) */
.fleet-capacity-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.capacity-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.capacity-option:hover {
    background: rgba(201, 169, 97, 0.05);
    border-color: rgba(201, 169, 97, 0.2);
    transform: translateX(5px);
}

.option-size {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
}

.option-luggage {
    font-size: 0.85rem;
    color: var(--text-gray);
    font-weight: 300;
}

/* Fleet Book Button */
.fleet-book-btn {
    width: 100%;
    padding: 0.9rem 1.75rem;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-gold) 100%);
    color: #000000;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

.fleet-book-btn:hover {
    transform: translateY(-3px);
    box-shadow:
        0 10px 30px rgba(201, 169, 97, 0.4),
        0 0 20px rgba(201, 169, 97, 0.2);
}

.fleet-book-btn:hover::before {
    left: 100%;
}

.fleet-book-btn:active {
    transform: translateY(-1px);
}

/* Legacy Fleet Styles (keep for backward compatibility) */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.fleet-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.fleet-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.fleet-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-gold);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.fleet-card:hover::before {
    transform: scaleX(1);
}

.fleet-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: rgba(184, 147, 74, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.fleet-title {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 1rem;
    text-align: center;
    letter-spacing: -0.3px;
}

.fleet-capacity {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-subtle);
}

.capacity-item {
    text-align: center;
}

.capacity-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    display: block;
}

.capacity-label {
    font-size: 0.85rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===================================
   SERVICES SECTION
   =================================== */
.services-section {
    padding: 5rem 3rem;
    background: linear-gradient(180deg, #0a0a0a 0%, #000000 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 30% 30%, rgba(201, 169, 97, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
    border: 1px solid rgba(201, 169, 97, 0.12);
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    border-color: rgba(201, 169, 97, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.7);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.75rem;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.1) 0%, rgba(201, 169, 97, 0.05) 100%);
    border: 1px solid rgba(201, 169, 97, 0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.15) 0%, rgba(201, 169, 97, 0.08) 100%);
    border-color: rgba(201, 169, 97, 0.4);
}

.service-title {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--text-light);
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.service-description {
    color: var(--text-gray);
    line-height: 1.75;
    font-size: 0.95rem;
    font-weight: 300;
}

/* ===================================
   FAQ SECTION
   =================================== */
.faq-section {
    padding: 6rem 3rem;
    background: var(--bg-dark);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--border-gold);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 1.8rem;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 400;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-gold);
}

.faq-icon {
    font-size: 1.3rem;
    color: var(--primary-gold);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-section .faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 1.8rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    visibility: hidden;
}

.faq-section .faq-item.active .faq-answer {
    max-height: 1000px !important;
    opacity: 1 !important;
    padding: 0 1.8rem 1.8rem !important;
    visibility: visible !important;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 300;
    font-size: 0.95rem;
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
    padding: 6rem 3rem;
    background: var(--bg-section);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(184, 147, 74, 0.08), transparent);
    border-radius: 50%;
}

.cta-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.cta-content p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
}

.cta-button {
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.9rem;
}

.cta-button.primary {
    background: var(--primary-gold);
    color: #000000;
}

.cta-button.secondary {
    background: transparent;
    border: 1px solid var(--border-gold);
    color: var(--text-light);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 147, 74, 0.3);
}

.cta-button.primary:hover {
    background: var(--accent-gold);
}

.cta-button.secondary:hover {
    border-color: var(--primary-gold);
    background: rgba(184, 147, 74, 0.1);
}

.cta-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
}

.cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact-section {
    padding: 6rem 3rem;
    background: var(--bg-section);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.8rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    transition: var(--transition);
}

.contact-item:hover {
    border-color: var(--border-gold);
    transform: translateX(3px);
}

.contact-item-icon {
    width: 45px;
    height: 45px;
    background: rgba(184, 147, 74, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-item-content h3 {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    letter-spacing: -0.3px;
}

.contact-item-content p {
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 300;
    font-size: 0.95rem;
}

/* Centered layout for contact section without form */
.contact-grid-centered {
    display: flex !important;
    justify-content: center;
}

.contact-grid-centered .contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1000px;
    width: 100%;
}

.contact-gr-centered .contact-item {
    padding: 2.5rem;
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
    border: 1px solid rgba(201, 169, 97, 0.12);
}

.contact-grid-centered .contact-item:hover {
    border-color: rgba(201, 169, 97, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.6);
}

.contact-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    padding: 2.5rem;
}

/* ===================================
   STICKY FOOTER
   =================================== */
.sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    background: rgba(0, 0, 0, 0.98);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-top: 2px solid var(--primary-gold);
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.sticky-footer.visible {
    transform: translateY(0);
}

.sticky-footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.sticky-button {
    padding: 0.9rem 2.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.sticky-button.book-now {
    background: var(--primary-gold);
    color: #000000;
}

.sticky-button.call-now {
    background: transparent;
    border: 1px solid var(--border-gold);
    color: var(--text-light);
}

.sticky-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 147, 74, 0.3);
}

.sticky-button.book-now:hover {
    background: var(--accent-gold);
}

.sticky-button.call-now:hover {
    border-color: var(--primary-gold);
    background: rgba(184, 147, 74, 0.1);
}

/* ===================================
   FOOTER
   =================================== */
.site-footer {
    background: var(--bg-dark);
    padding: 4rem 3rem 2rem;
    border-top: 1px solid var(--border-subtle);
}

.footer-content {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--primary-gold);
    letter-spacing: 0.5px;
}

.footer-section p,
.footer-section li {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 0.8rem;
    font-weight: 300;
    font-size: 0.9rem;
}

.footer-section ul {
    list-style: none;
}

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

.footer-bottom {
    max-width: 1600px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--border-subtle);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 300;
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
    .fleet-grid-premium {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 4rem 2.5rem;
    }

    .hero-content {
        padding-right: 0;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .cta-container,
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .main-navigation {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: auto;
        max-height: calc(100vh - 80px);
        background: rgba(0, 0, 0, 0.98) !important;
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        z-index: 999 !important;
        overflow-y: auto;
        border-bottom: 2px solid var(--primary-gold);
        opacity: 0;
        transform: translateY(-20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        pointer-events: none;
    }

    .main-navigation.active {
        display: flex !important;
        opacity: 1 !important;
        transform: translateY(0) !important;
        pointer-events: auto !important;
    }

    .nav-menu {
        flex-direction: column !important;
        gap: 1rem !important;
        width: 100% !important;
    }

    .nav-menu li {
        width: 100% !important;
        text-align: center !important;
    }

    .nav-menu a {
        display: block !important;
        padding: 1rem !important;
        font-size: 1rem !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        color: #ffffff !important;
        font-weight: 500 !important;
    }

    .nav-menu a:hover {
        color: #C9A961 !important;
    }

    .cta-phone {
        width: 100% !important;
        justify-content: center !important;
        margin-top: 1rem !important;
        background: #C9A961 !important;
        color: #000000 !important;
    }

    .mobile-menu-toggle {
        display: flex !important;
        z-index: 1001 !important;
        position: fixed !important;
        right: 1rem !important;
        top: 1.25rem !important;
    }

    /* Mobile Logo Optimizations */
    .header-container {
        padding: 0.75rem 1.5rem;
        justify-content: flex-start;
    }

    .logo {
        flex-direction: row;
        align-items: center;
        gap: 0.6rem;
        text-align: left;
    }

    .logo-image {
        display: flex;
        justify-content: flex-start;
    }

    .logo img {
        max-height: 35px !important;
    }

    .logo-text-container {
        margin-left: 0;
        align-items: flex-start;
        text-align: left;
        gap: 0.1rem;
    }

    .logo-title {
        font-size: 0.9rem !important;
        letter-spacing: 0.4px;
        line-height: 1.1;
        text-align: left;
    }

    .logo-tagline {
        font-size: 0.42rem !important;
        letter-spacing: 0.4px !important;
        line-height: 1.2 !important;
        text-align: left;
        white-space: normal;
        max-width: 180px;
    }


    .hero-container {
        grid-template-columns: 1fr;
        padding: 3rem 2rem;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-cta-buttons {
        display: none !important;
    }

    .hero-cta-button {
        display: none !important;
    }

    .hero-features {
        margin-top: 2rem;
    }

    .booking-form {
        grid-template-columns: 1fr;
    }

    .date-time-wrapper {
        grid-template-columns: 1fr;
    }

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

    /* Premium Fleet Responsive */
    .fleet-grid-premium {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .fleet-image-container {
        height: 250px;
    }

    .fleet-amenities {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }

    .fleet-capacity-row {
        flex-direction: column;
        gap: 0.75rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .sticky-footer {
        padding: 0.75rem 1rem;
    }

    .sticky-footer-container {
        flex-direction: row;
        gap: 0.75rem;
        max-width: 100%;
    }

    .sticky-button {
        flex: 1;
        justify-content: center;
        padding: 0.85rem 1.5rem;
        font-size: 0.85rem;
    }

    .sticky-button span {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .fleet-section,
    .services-section {
        padding: 5rem 2rem;
    }

    /* Multi-step form responsive */
    .form-progress {
        padding: 0.75rem 0;
    }

    .progress-circle {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }

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

    .progress-line {
        width: 40px;
    }

    /* Prevent horizontal overflow on tablet */
    .hero-section,
    .section-container {
        padding-left: 2rem;
        padding-right: 2rem;
        max-width: 100%;
    }

    .hero-container {
        max-width: 100%;
    }
}

@media (max-width: 480px) {

    /* Extra Small Mobile Logo Optimizations */
    .header-container {
        padding: 0.65rem 1rem;
        justify-content: center;
    }

    .logo {
        flex-direction: column;
        align-items: center;
        gap: 0.4rem;
    }

    .logo img {
        max-height: 40px !important;
    }

    .logo-text-container {
        margin-left: 0;
        align-items: center;
        text-align: center;
    }

    .logo-title {
        font-size: 1rem !important;
        letter-spacing: 0.4px;
        text-align: center;
    }

    .logo-tagline {
        font-size: 0.48rem !important;
        letter-spacing: 0.5px !important;
        text-align: center;
    }

    .hero-container {
        padding: 2.5rem 1.5rem;
    }

    .hero-title {
        font-size: 2.2rem;
        letter-spacing: -0.5px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.9rem;
    }

    .section-description {
        font-size: 0.95rem;
    }

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

    .fleet-vehicle-title {
        font-size: 1.5rem;
    }

    .fleet-card-content {
        padding: 1.5rem;
    }

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

    .section-title {
        font-size: 2rem;
    }

    .booking-form-wrapper {
        padding: 1.8rem 1.5rem;
    }

    .phone-input-wrapper {
        grid-template-columns: 1fr;
    }

    /* Multi-step form mobile */
    .progress-label {
        display: none;
    }

    .progress-line {
        width: 30px;
    }

    .booking-summary {
        padding: 1rem;
    }

    .summary-title {
        font-size: 0.9rem;
    }

    .summary-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .summary-value {
        max-width: 100%;
        text-align: left;
    }

    /* Prevent horizontal scroll on all sections */
    section {
        overflow-x: hidden;
        max-width: 100vw;
    }

    /* Contact Section Mobile */
    .contact-grid-centered .contact-info {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .contact-item {
        padding: 1.5rem !important;
    }

    .contact-item-icon {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.1rem !important;
    }

    .contact-item-content h3 {
        font-size: 1rem !important;
    }

    .contact-item-content p {
        font-size: 0.9rem !important;
    }

    /* Hero Section Mobile */
    .hero-section,
    .fleet-section,
    .services-section,
    .faq-section,
    .cta-section,
    .contact-section {
        padding-left: 1rem;
        padding-right: 1rem;
        width: 100%;
        max-width: 100%;
    }

    .hero-container,
    .section-container,
    .cta-container {
        padding-left: 1rem;
        padding-right: 1rem;
        width: 100%;
        max-width: 100%;
    }

    .fleet-grid-premium,
    .services-grid,
    .faq-container {
        width: 100%;
        max-width: 100%;
    }
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center {
    text-align: center;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

/* ===================================
   ENHANCED SCROLL ANIMATIONS
   =================================== */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Fleet card stagger animation */
.fleet-card-premium:nth-child(1) {
    animation: fadeInUp 0.8s ease 0.1s both;
}

.fleet-card-premium:nth-child(2) {
    animation: fadeInUp 0.8s ease 0.2s both;
}

.fleet-card-premium:nth-child(3) {
    animation: fadeInUp 0.8s ease 0.3s both;
}

.fleet-card-premium:nth-child(4) {
    animation: fadeInUp 0.8s ease 0.4s both;
}

.fleet-card-premium:nth-child(5) {
    animation: fadeInUp 0.8s ease 0.5s both;
}

.fleet-card-premium:nth-child(6) {
    animation: fadeInUp 0.8s ease 0.6s both;
}

/* Service card stagger animation */
.service-card:nth-child(1) {
    animation: fadeInUp 0.7s ease 0.1s both;
}

.service-card:nth-child(2) {
    animation: fadeInUp 0.7s ease 0.2s both;
}

.service-card:nth-child(3) {
    animation: fadeInUp 0.7s ease 0.3s both;
}

.service-card:nth-child(4) {
    animation: fadeInUp 0.7s ease 0.4s both;
}

.service-card:nth-child(5) {
    animation: fadeInUp 0.7s ease 0.5s both;
}

.service-card:nth-child(6) {
    animation: fadeInUp 0.7s ease 0.6s both;
}

/* ===================================
   PREMIUM UI ENHANCEMENTS
   =================================== */

/* Smooth scroll snap for sections */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #000000;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-gold) 0%, var(--accent-gold) 100%);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

/* Selection color */
::selection {
    background: var(--primary-gold);
    color: #000000;
}

::-moz-selection {
    background: var(--primary-gold);
    color: #000000;
}

/* Focus states for accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid var(--primary-gold);
    outline-offset: 2px;
}

/* Loading state for images */
img {
    transition: opacity 0.3s ease;
}

img[data-loading="true"] {
    opacity: 0.3;
}

/* Gradient text effect for special headings */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glass morphism effect */
.glass-effect {
    background: rgba(20, 20, 20, 0.8);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Shine effect on hover */
.shine-effect {
    position: relative;
    overflow: hidden;
}

.shine-effect::after {
    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 ease;
}

.shine-effect:hover::after {
    left: 100%;
}

/* Pulse animation for CTA buttons */
@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(201, 169, 97, 0.7);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(201, 169, 97, 0);
    }
}

.pulse-effect {
    animation: pulse 2s infinite;
}

/* ===================================
   GOOGLE PLACES AUTOCOMPLETE STYLING
   =================================== */
.pac-container {
    background-color: #1a1a1a !important;
    border: 1px solid var(--border-gold) !important;
    border-radius: 8px !important;
    margin-top: 4px !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.8) !important;
    font-family: 'Inter', sans-serif !important;
    z-index: 9999 !important;
}

.pac-container::after {
    display: none !important;
}

.pac-item {
    background-color: #1a1a1a !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
    padding: 12px 16px !important;
    cursor: pointer !important;
    color: var(--text-light) !important;
    font-size: 0.9rem !important;
}

.pac-item:first-child {
    border-top: none !important;
}

.pac-item:hover,
.pac-item-selected {
    background-color: #252525 !important;
}

.pac-item-query {
    color: var(--primary-gold) !important;
    font-weight: 500 !important;
    font-size: 0.95rem !important;
}

.pac-matched {
    color: var(--accent-gold) !important;
    font-weight: 600 !important;
}

.pac-icon {
    background-image: none !important;
    width: 20px !important;
    height: 20px !important;
    margin-right: 12px !important;
}

.pac-icon::before {
    content: '📍';
    font-size: 16px;
}

.pac-item-selected .pac-icon::before {
    content: '✓';
    color: var(--primary-gold);
}

/* ===================================
   WPFORMS STYLING - THEME INTEGRATION
   =================================== */

/* WPForms Container */
.booking-form-wrapper .wpforms-container {
    margin: 0;
    padding: 0;
}

.booking-form-wrapper .wpforms-form {
    background: transparent;
}

/* WPForms Input Fields */
.booking-form-wrapper .wpforms-field input[type="text"],
.booking-form-wrapper .wpforms-field input[type="email"],
.booking-form-wrapper .wpforms-field input[type="tel"],
.booking-form-wrapper .wpforms-field input[type="number"],
.booking-form-wrapper .wpforms-field input[type="date"],
.booking-form-wrapper .wpforms-field input[type="time"],
.booking-form-wrapper .wpforms-field select,
.booking-form-wrapper .wpforms-field textarea {
    width: 100% !important;
    padding: 0.65rem 0.85rem !important;
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 6px !important;
    color: var(--text-light) !important;
    font-size: 0.85rem !important;
    transition: var(--transition) !important;
    font-weight: 300 !important;
}

/* WPForms Input Focus State */
.booking-form-wrapper .wpforms-field input[type="text"]:focus,
.booking-form-wrapper .wpforms-field input[type="email"]:focus,
.booking-form-wrapper .wpforms-field input[type="tel"]:focus,
.booking-form-wrapper .wpforms-field input[type="number"]:focus,
.booking-form-wrapper .wpforms-field input[type="date"]:focus,
.booking-form-wrapper .wpforms-field input[type="time"]:focus,
.booking-form-wrapper .wpforms-field select:focus,
.booking-form-wrapper .wpforms-field textarea:focus {
    outline: none !important;
    border-color: var(--primary-gold) !important;
    background: rgba(255, 255, 255, 0.06) !important;
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.15) !important;
}

/* WPForms Labels */
.booking-form-wrapper .wpforms-field-label {
    color: var(--text-light) !important;
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    margin-bottom: 0.5rem !important;
}

/* WPForms Required Indicator */
.booking-form-wrapper .wpforms-required-label {
    color: var(--primary-gold) !important;
}

/* WPForms Placeholder Text */
.booking-form-wrapper .wpforms-field input::placeholder,
.booking-form-wrapper .wpforms-field textarea::placeholder {
    color: rgba(184, 184, 184, 0.5) !important;
}

/* WPForms Select Dropdown */
.booking-form-wrapper .wpforms-field select {
    appearance: none !important;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><path fill="%23C9A961" d="M6 9L1 4h10z"/></svg>') !important;
    background-repeat: no-repeat !important;
    background-position: right 0.75rem center !important;
    background-size: 12px !important;
    padding-right: 2.5rem !important;
    cursor: pointer !important;
}

.booking-form-wrapper .wpforms-field select option {
    background: #1a1a1a !important;
    color: var(--text-light) !important;
    padding: 0.5rem !important;
}

.booking-form-wrapper .wpforms-field select option:checked {
    background: var(--primary-gold) !important;
    color: #000000 !important;
}

/* WPForms Date & Time Inputs */
.booking-form-wrapper .wpforms-field input[type="date"],
.booking-form-wrapper .wpforms-field input[type="time"] {
    color-scheme: dark !important;
    cursor: pointer !important;
}

.booking-form-wrapper .wpforms-field input[type="date"]::-webkit-calendar-picker-indicator,
.booking-form-wrapper .wpforms-field input[type="time"]::-webkit-calendar-picker-indicator {
    filter: invert(1) !important;
    cursor: pointer !important;
    opacity: 0.7 !important;
}

.booking-form-wrapper .wpforms-field input[type="date"]::-webkit-calendar-picker-indicator:hover,
.booking-form-wrapper .wpforms-field input[type="time"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1 !important;
}

/* WPForms Submit Button */
.booking-form-wrapper .wpforms-submit-container {
    margin-top: 1.5rem !important;
}

.booking-form-wrapper .wpforms-submit {
    display: block !important;
    width: 100% !important;
    padding: 1rem 2rem !important;
    background: linear-gradient(135deg, var(--primary-gold), var(--accent-gold)) !important;
    color: #000000 !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    border: none !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3) !important;
}

.booking-form-wrapper .wpforms-submit:hover {
    background: linear-gradient(135deg, var(--accent-gold), var(--primary-gold)) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 30px rgba(201, 169, 97, 0.5) !important;
}

.booking-form-wrapper .wpforms-submit:active {
    transform: translateY(-1px) !important;
}

.booking-form-wrapper .wpforms-submit:disabled {
    opacity: 0.6 !important;
    cursor: not-allowed !important;
    transform: none !important;
}

/* WPForms Error Messages */
.booking-form-wrapper .wpforms-error {
    color: #ff6b6b !important;
    font-size: 0.75rem !important;
    margin-top: 0.35rem !important;
}

.booking-form-wrapper .wpforms-field.wpforms-has-error input,
.booking-form-wrapper .wpforms-field.wpforms-has-error select,
.booking-form-wrapper .wpforms-field.wpforms-has-error textarea {
    border-color: #ff6b6b !important;
}

/* WPForms Success Message */
.booking-form-wrapper .wpforms-confirmation-container-full {
    background: rgba(201, 169, 97, 0.1) !important;
    border: 1px solid var(--primary-gold) !important;
    border-radius: 8px !important;
    padding: 1.5rem !important;
    color: var(--text-light) !important;
}

/* WPForms Field Descriptions */
.booking-form-wrapper .wpforms-field-description {
    color: var(--text-gray) !important;
    font-size: 0.75rem !important;
    margin-top: 0.35rem !important;
}

/* WPForms Textarea */
.booking-form-wrapper .wpforms-field textarea {
    min-height: 80px !important;
    resize: vertical !important;
}

/* ===================================
   WPFORMS DATE PICKER / CALENDAR FIX
   =================================== */

/* Flatpickr Calendar Container */
.flatpickr-calendar {
    background: rgba(20, 20, 20, 0.98) !important;
    border: 2px solid #C9A961 !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5) !important;
    padding: 15px !important;
    font-family: 'Inter', sans-serif !important;
    width: auto !important;
    min-width: 350px !important;
    max-width: 420px !important;
}

/* Calendar Month/Year Header */
.flatpickr-months {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 12px !important;
    background: rgba(201, 169, 97, 0.1) !important;
    border-radius: 8px !important;
    margin-bottom: 15px !important;
}

.flatpickr-month {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.flatpickr-current-month {
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    color: #fff !important;
}

/* Navigation Arrows */
.flatpickr-prev-month,
.flatpickr-next-month {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 36px !important;
    height: 36px !important;
    background: rgba(201, 169, 97, 0.2) !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    padding: 8px !important;
    transition: all 0.2s ease !important;
}

.flatpickr-prev-month svg,
.flatpickr-next-month svg {
    fill: #C9A961 !important;
    width: 18px !important;
    height: 18px !important;
}

.flatpickr-prev-month:hover,
.flatpickr-next-month:hover {
    background: rgba(201, 169, 97, 0.4) !important;
    transform: scale(1.1) !important;
}

.flatpickr-prev-month:hover svg,
.flatpickr-next-month:hover svg {
    fill: #E0C589 !important;
}

/* Weekday Headers (Sun, Mon, Tue, etc.) */
.flatpickr-weekdays {
    display: flex !important;
    align-items: center !important;
    padding: 12px 0 !important;
    margin-bottom: 8px !important;
    border-bottom: 1px solid rgba(201, 169, 97, 0.2) !important;
}

.flatpickr-weekday {
    flex: 1 !important;
    text-align: center !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    color: #C9A961 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

/* Days Grid */
.flatpickr-days {
    display: block !important;
    width: 100% !important;
}

.dayContainer {
    display: grid !important;
    grid-template-columns: repeat(7, 1fr) !important;
    gap: 4px !important;
    padding: 5px !important;
    min-width: 320px !important;
    max-width: 100% !important;
    width: 100% !important;
}

/* Individual Day Cells */
.flatpickr-day {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 8px !important;
    font-size: 0.9rem !important;
    color: #ffffff !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    border: none !important;
    background: transparent !important;
    font-weight: 500 !important;
}

/* Today's Date */
.flatpickr-day.today {
    background: rgba(201, 169, 97, 0.2) !important;
    border: 2px solid #C9A961 !important;
    font-weight: 700 !important;
    color: #C9A961 !important;
}

/* Selected Date */
.flatpickr-day.selected {
    background: #C9A961 !important;
    color: #000000 !important;
    font-weight: 700 !important;
    box-shadow: 0 0 10px rgba(201, 169, 97, 0.5) !important;
}

/* Hover State */
.flatpickr-day:hover:not(.selected):not(.flatpickr-disabled) {
    background: rgba(201, 169, 97, 0.3) !important;
    color: #fff !important;
    transform: scale(1.05) !important;
}

/* Disabled/Previous Month Days */
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
    color: #666 !important;
    opacity: 0.4 !important;
}

.flatpickr-day.flatpickr-disabled {
    color: #555 !important;
    cursor: not-allowed !important;
    opacity: 0.3 !important;
}

.flatpickr-day.flatpickr-disabled:hover {
    background: transparent !important;
    transform: none !important;
}

/* Time Picker (if enabled) */
.flatpickr-time {
    border-top: 1px solid #eee !important;
    padding: 10px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 5px !important;
}

.flatpickr-time input {
    background: #f8f8f8 !important;
    border: 1px solid #ddd !important;
    border-radius: 4px !important;
    padding: 5px !important;
    font-size: 1rem !important;
    text-align: center !important;
    color: #1a1a1a !important;
}

.flatpickr-time input:focus {
    border-color: #C9A961 !important;
    outline: none !important;
}

/* Month Select Dropdown */
.flatpickr-monthDropdown-months {
    background: #fff !important;
    border: 1px solid #ddd !important;
    border-radius: 4px !important;
    padding: 2px 5px !important;
    font-size: 0.9rem !important;
    color: #1a1a1a !important;
}

/* Year Input */
.numInput {
    background: transparent !important;
    border: none !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: #1a1a1a !important;
    width: 60px !important;
    text-align: center !important;
}

.numInput:focus {
    outline: none !important;
}

/* Arrow Incrementers */
.arrowUp,
.arrowDown {
    display: none !important;
    /* Hide the small up/down arrows */
}

/* Calendar Animation */
.flatpickr-calendar.open {
    animation: fadeInCalendar 0.2s ease !important;
}

@keyframes fadeInCalendar {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dark Mode Calendar Support */
@media (prefers-color-scheme: dark) {
    .flatpickr-calendar {
        background: #2a2a2a !important;
        border-color: #C9A961 !important;
    }

    .flatpickr-months {
        background: #333 !important;
    }

    .flatpickr-current-month,
    .flatpickr-weekday,
    .flatpickr-day {
        color: #fff !important;
    }

    .flatpickr-day.prevMonthDay,
    .flatpickr-day.nextMonthDay {
        color: #666 !important;
    }
}


/* WPForms Radio and Checkbox */
.booking-form-wrapper .wpforms-field-radio li label,
.booking-form-wrapper .wpforms-field-checkbox li label {
    color: var(--text-light) !important;
    font-weight: 300 !important;
}

.booking-form-wrapper .wpforms-field-radio input[type="radio"],
.booking-form-wrapper .wpforms-field-checkbox input[type="checkbox"] {
    accent-color: var(--primary-gold) !important;
}

/* WPForms Field Containers */
.booking-form-wrapper .wpforms-field {
    margin-bottom: 1.25rem !important;
}

/* WPForms Page Break (for multi-page forms) */
.booking-form-wrapper .wpforms-page-button {
    padding: 0.85rem 1.75rem !important;
    background: var(--primary-gold) !important;
    color: #000000 !important;
    border: none !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.booking-form-wrapper .wpforms-page-button:hover {
    background: var(--accent-gold) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.4) !important;
}