/* ========================================
   RENT CARS GEORGIA - MASTER STYLESHEET
   ======================================== */

/* VARIABLES & COLOR PALETTE */
:root {
    --sage-grey: #F3F6FA;
    --forest-green: #1F2937;
    --terracotta: #3B82F6;
    --gold: #94A3B8;
    --text-dark: #1E293B;
    --text-light: #64748B;
    --border-light: #E2E8F0;
    --card-white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.16);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
    background-color: var(--sage-grey);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* CONTAINER */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */

.header {
    background: linear-gradient(135deg, var(--forest-green) 0%, #111827 100%);
    color: white;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
}

.sticky-header {
    position: sticky;
    top: 0;
    box-shadow: var(--shadow-md);
}

.header-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 40px;
}

.header-left .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.5px;
    cursor: pointer;
    transition: var(--transition);
    min-width: fit-content;
    text-decoration: none;
    color: white;
}

.header-left .logo:hover {
    opacity: 0.9;
    color: white;
}

.header-left .logo img.logo-img,
.header-left .logo svg,
.header-left .logo .logo-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
}

/* Navigation Menu */
.header-center .nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    justify-content: center;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--terracotta);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--terracotta);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Header Right Section */
.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}

/* Selector Group (Currency & Language) */
.selector-group {
    position: relative;
}

.selector-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.selector-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.selector-btn.active {
    background: rgba(255, 255, 255, 0.2);
}

.selector-icon {
    font-size: 16px;
}

.selector-text {
    font-weight: 600;
}

.dropdown-icon {
    color: white;
    transition: transform 0.3s ease;
}

.selector-btn.active .dropdown-icon {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    min-width: 180px;
    z-index: 1001;
    overflow: hidden;
}

.dropdown-menu.active {
    display: block;
}

.dropdown-header {
    padding: 12px 16px;
    background: var(--sage-grey);
    font-size: 11px;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--border-light);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
}

.dropdown-item:hover {
    background: var(--sage-grey);
    color: var(--forest-green);
}

.language-flag {
    font-size: 18px;
}

.checkmark {
    margin-left: auto;
    color: var(--terracotta);
    font-weight: 700;
}

/* Partner Button */
.partner-btn {
    padding: 8px 24px;
    background: #3B82F6;
    border: none;
    color: white;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.partner-btn:hover {
    background: #2563eb;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow: visible;
    padding-top: 80px;
    margin-bottom: 0;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.7) 0%, rgba(59, 130, 246, 0.2) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.hero-main {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 60px;
    align-items: center;
    flex: 1;
    padding-bottom: 40px;
}

.hero-left {
    color: white;
}

.hero-headline {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-subtext {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    line-height: 1.6;
}

.discount {
    color: #3B82F6;
    font-weight: 700;
}

.rating-section {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
    flex-wrap: wrap;
    font-size: 13px;
}

.rating-stars {
    font-size: 18px;
    letter-spacing: 2px;
}

.rating-text {
    color: #3B82F6;
    font-weight: 700;
    font-size: 16px;
}

.rating-source {
    color: rgba(255, 255, 255, 0.8);
}

.divider {
    color: rgba(255, 255, 255, 0.3);
}

.badge {
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 0;
}

.car-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* Booking Form */
.booking-form-container {
    background: white;
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    margin-top: auto;
    border: none;
    overflow: visible;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1.5fr 1.5fr 2fr auto;
    gap: 16px;
    align-items: flex-end;
    margin-bottom: 20px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.location-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid var(--border-light);
    border-top: none;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
    margin-top: -1px;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 1px solid var(--border-light);
}

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

.location-item:hover {
    background: var(--sage-grey);
    color: var(--terracotta);
}

.location-icon {
    font-size: 16px;
    flex-shrink: 0;
}

.location-item span:last-child {
    font-size: 14px;
    color: var(--text-dark);
}

.input-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 0 12px;
    transition: var(--transition);
}

.input-wrapper:hover {
    border-color: var(--terracotta);
}

.input-wrapper:focus-within {
    border-color: var(--terracotta);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.input-icon {
    font-size: 18px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.form-group label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.booking-input {
    padding: 12px 0;
    border: none;
    border-radius: 0;
    font-size: 14px;
    transition: var(--transition);
    background: transparent;
    cursor: pointer;
    flex: 1;
    outline: none;
}

.booking-input::placeholder {
    color: var(--text-dark);
    font-weight: 500;
}

.booking-input:focus {
    outline: none;
}

.search-btn {
    padding: 12px 32px;
    background: var(--terracotta);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.search-btn:hover {
    background: #2563eb;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
}

.advanced-filters-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--terracotta);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.advanced-filters-toggle:hover {
    color: #2563eb;
}

/* ========================================
   ADVANCED FILTERS MODAL
   ======================================== */
.advanced-filters-modal {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: none;
    align-items: center;
    justify-content: center;
}
.advanced-filters-modal.active {
    display: flex;
}
.filters-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(2px);
}
.filters-content {
    position: relative;
    background: #fff;
    border-radius: 16px;
    width: 90%;
    max-width: 640px;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 25px 60px rgba(0,0,0,0.2);
}
.filters-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #e2e8f0;
}
.filters-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}
.filters-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #f1f5f9;
    color: #64748b;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.filters-close:hover { background: #e2e8f0; }
.filters-grid {
    padding: 20px 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.filter-item {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
}
.filter-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: #fff;
    border: none;
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    cursor: pointer;
    transition: background 0.2s;
}
.filter-button:hover { background: #f8fafc; }
.filter-button.active { background: #eff6ff; }
.filter-button svg { transition: transform 0.2s; }
.filter-button.active svg { transform: rotate(90deg); }
.filter-options {
    display: none;
    flex-wrap: wrap;
    gap: 10px;
    padding: 12px 18px 16px;
    border-top: 1px solid #f1f5f9;
    background: #f8fafc;
}
.filter-options label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #334155;
    cursor: pointer;
    padding: 6px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #fff;
    transition: all 0.2s;
}
.filter-options label:hover { border-color: #93c5fd; }
.filter-options label:has(input:checked) {
    background: #eff6ff;
    border-color: #3b82f6;
    color: #1d4ed8;
}
.filter-options input[type="checkbox"] {
    accent-color: #3b82f6;
}
.filters-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    padding: 16px 24px;
    border-top: 1px solid #e2e8f0;
}
.btn-reset {
    padding: 10px 20px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #fff;
    color: #64748b;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-reset:hover { background: #f8fafc; }
.btn-apply-filters {
    padding: 10px 24px;
    border: none;
    border-radius: 8px;
    background: #3b82f6;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-apply-filters:hover { background: #2563eb; }

/* ========================================
   CALENDAR PICKER MODAL
   ======================================== */

.calendar-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.calendar-modal.active {
    display: flex;
}

.calendar-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.calendar-content {
    position: relative;
    z-index: 2;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    padding: 32px;
    max-width: 900px;
    width: 90%;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.nav-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-dark);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border-radius: var(--radius-sm);
}

.nav-btn:hover {
    background: var(--sage-grey);
}

.month-year-selector {
    display: flex;
    gap: 16px;
}

.month-year-selector select {
    padding: 8px 12px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    background: white;
}

.calendar-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 32px;
}

.month-calendar {
    display: flex;
    flex-direction: column;
}

.month-calendar h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    text-align: center;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.calendar-day-header {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-light);
    text-align: center;
    padding: 8px;
    text-transform: uppercase;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    color: var(--text-dark);
    border: 1px solid transparent;
}

.calendar-day:hover:not(.other-month):not(.disabled) {
    background: var(--sage-grey);
    border-color: var(--terracotta);
}

.calendar-day.other-month {
    color: var(--text-light);
    opacity: 0.4;
    cursor: default;
}

.calendar-day.disabled {
    color: #cbd5e1;
    cursor: not-allowed;
    background: #f1f5f9;
}

.calendar-day.disabled:hover {
    background: #f1f5f9;
}

.calendar-day.selected {
    background: var(--terracotta);
    color: white;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.calendar-day.selected.start::after {
    content: '';
}

.calendar-day.selected.end::before {
    content: '';
}

.calendar-day.in-range {
    background: rgba(59, 130, 246, 0.15);
    color: var(--text-dark);
    border-radius: 0;
    font-weight: 500;
}

.calendar-day.in-range:hover {
    background: rgba(59, 130, 246, 0.25);
}

.calendar-grid .calendar-day.in-range:first-child {
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.calendar-grid .calendar-day.in-range:last-child {
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.time-selectors {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
}

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

.time-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.time-inputs {
    display: flex;
    align-items: center;
    gap: 12px;
}

.time-select {
    flex: 1;
    padding: 10px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-size: 14px;
    cursor: pointer;
    background: white;
    transition: var(--transition);
}

.time-select:hover {
    border-color: var(--terracotta);
}

.time-inputs span {
    color: var(--text-dark);
    font-weight: 600;
}

.calendar-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.btn-cancel {
    padding: 10px 24px;
    background: transparent;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    color: var(--text-dark);
    transition: var(--transition);
}

.btn-cancel:hover {
    background: var(--sage-grey);
}

.btn-apply {
    padding: 10px 24px;
    background: var(--terracotta);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-apply:hover {
    background: #2563eb;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
}

/* ========================================
   ADVANCED FILTERS MODAL
   ======================================== */

.advanced-filters-modal {
    position: fixed;
    inset: 0;
    z-index: 2001;
    display: none;
    align-items: center;
    justify-content: center;
}

.advanced-filters-modal.active {
    display: flex;
}

.filters-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.filters-content {
    position: relative;
    z-index: 2;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    padding: 32px;
    max-width: 1000px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--terracotta);
}

.filters-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.filters-close {
    background: none;
    border: none;
    font-size: 28px;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.filters-close:hover {
    color: var(--text-dark);
    background: var(--sage-grey);
    border-radius: var(--radius-sm);
}

.filters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.filter-item {
    display: flex;
    flex-direction: column;
}

.filter-button {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.filter-button:hover {
    border-color: var(--terracotta);
    background: var(--sage-grey);
}

.filter-button.active {
    border-color: var(--terracotta);
    background: rgba(59, 130, 246, 0.05);
}

.filter-button svg {
    transition: transform 0.3s ease;
}

.filter-button.active svg {
    transform: rotate(90deg);
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    background: var(--sage-grey);
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    border: 1px solid var(--border-light);
    border-top: none;
}

.filter-options label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-dark);
    transition: var(--transition);
    padding: 6px 8px;
    border-radius: var(--radius-sm);
}

.filter-options label:hover {
    background: rgba(59, 130, 246, 0.1);
}

.filter-options input[type="checkbox"] {
    cursor: pointer;
    accent-color: var(--terracotta);
}

.filters-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.btn-reset {
    padding: 10px 24px;
    background: transparent;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    color: var(--text-dark);
    transition: var(--transition);
}

.btn-reset:hover {
    background: var(--sage-grey);
    border-color: var(--text-light);
}

.btn-apply-filters {
    padding: 10px 24px;
    background: var(--terracotta);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-apply-filters:hover {
    background: #2563eb;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
}

/* BOOKING FIELDS */
.booking-fields {
    margin-bottom: 20px;
}

.field-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-field label {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-field input,
.form-field select {
    padding: 12px 14px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-family: inherit;
    transition: var(--transition);
}

.form-field input:focus,
.form-field select:focus {
    outline: none;
    border-color: var(--terracotta);
    box-shadow: 0 0 0 3px rgba(226, 125, 96, 0.1);
}

.booking-microcopy {
    padding: 12px 16px;
    background: rgba(212, 175, 55, 0.05);
    border-left: 3px solid var(--gold);
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
}

.booking-microcopy p {
    font-size: 13px;
    color: var(--text-dark);
    font-weight: 500;
}

/* BOOKING ACTIONS */
.booking-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    padding: 14px 28px;
    border: none;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--terracotta), #d97d5f);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: white;
    color: var(--terracotta);
    border: 2px solid var(--terracotta);
}

.btn-secondary:hover {
    background: rgba(226, 125, 96, 0.05);
}

.btn-full {
    width: 100%;
}

.btn-large {
    padding: 18px 40px;
    font-size: 16px;
}

/* ========================================
   FLOATING ELEMENTS
   ======================================== */

.floating-whatsapp,
.floating-map-widget {
    position: fixed;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    z-index: 100;
    transition: var(--transition);
}

.floating-whatsapp {
    bottom: 30px;
    right: 30px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #25d366;
    font-weight: 600;
    font-size: 13px;
}

.floating-whatsapp:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.2);
}

.floating-map-widget {
    bottom: 120px;
    left: 30px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 200px;
}

.map-icon {
    font-size: 28px;
}

.map-content strong {
    display: block;
    font-size: 13px;
    color: var(--text-dark);
}

.map-content p {
    font-size: 12px;
    color: var(--text-light);
}

.floating-map-widget:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   CAR CAROUSEL SECTION
   ======================================== */

.carousel-section {
    padding: 80px 0;
    background: white;
    position: relative;
}

.carousel-header {
    text-align: center;
    margin-bottom: 60px;
}

.carousel-header::before {
    content: 'Our Fleet';
    display: inline-block;
    background: rgba(59, 130, 246, 0.1);
    color: var(--terracotta);
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.carousel-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 16px 0 8px 0;
    letter-spacing: -1px;
}

.carousel-subtitle {
    font-size: 14px;
    color: var(--text-light);
}

/* FLEET GRID — responsive card layout */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

/* FLEET CARD */
.fleet-card {
    background: var(--card-white);
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    animation: fleetFadeIn 0.4s ease-out both;
}

.fleet-card:nth-child(1) { animation-delay: 0s; }
.fleet-card:nth-child(2) { animation-delay: 0.05s; }
.fleet-card:nth-child(3) { animation-delay: 0.1s; }
.fleet-card:nth-child(4) { animation-delay: 0.15s; }

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

.fleet-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
    border-color: var(--terracotta);
}

.fleet-card-img {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.fleet-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

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

.fleet-card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #22c55e;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 6px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.fleet-card-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.fleet-card-title {
    margin: 0 0 10px 0;
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
}

.fleet-card-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.fleet-tag {
    font-size: 11px;
    padding: 4px 10px;
    background: #f1f5f9;
    border-radius: 6px;
    color: var(--text-light);
    font-weight: 600;
}

.fleet-card-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    margin-top: auto;
}

.fleet-card-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.fleet-price-amount {
    font-size: 22px;
    font-weight: 800;
    color: var(--terracotta);
}

.fleet-price-unit {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
}

.fleet-card-year {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 600;
    background: #f8fafc;
    padding: 4px 10px;
    border-radius: 6px;
}

.fleet-card-btn {
    width: 100%;
    padding: 11px;
    background: var(--terracotta);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.fleet-card-btn:hover {
    background: #2563eb;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

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

.show-all-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--terracotta);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.show-all-link:hover {
    color: #2563eb;
    gap: 12px;
}

@media (max-width: 1200px) {
    .fleet-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .carousel-section {
        padding: 50px 0;
    }

    .carousel-header {
        margin-bottom: 36px;
    }

    .carousel-title {
        font-size: 32px;
    }

    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .fleet-card-img {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .carousel-title {
        font-size: 24px;
    }

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

    .fleet-card-img {
        height: 180px;
    }
}

/* ========================================
   FEATURES SECTION - BENTO GRID
   ======================================== */

.features-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--sage-grey) 0%, #e8eef5 100%);
    margin-top: 0;
    position: relative;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--forest-green);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}

.bento-tile {
    background: white;
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bento-tile:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.bento-tile.large {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    min-height: 350px;
}

.bento-tile.medium {
    grid-column: auto;
    grid-row: auto;
    min-height: 160px;
}

.bento-tile.small {
    grid-column: auto;
    grid-row: auto;
    min-height: 160px;
}

.bento-video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: var(--terracotta);
}

.bento-video-placeholder svg {
    width: 60px;
    height: 60px;
}

.badge-tile {
    background: linear-gradient(135deg, rgba(226, 125, 96, 0.1), rgba(212, 175, 55, 0.1));
    border: 2px solid rgba(226, 125, 96, 0.2);
}

.badge-icon {
    font-size: 40px;
    color: var(--terracotta);
    margin-bottom: 10px;
}

.badge-tile h3 {
    font-size: 18px;
    color: var(--forest-green);
    margin-bottom: 8px;
}

.badge-tile p {
    font-size: 13px;
    color: var(--text-light);
}

.rating-tile {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(226, 125, 96, 0.1));
}

.rating-stars {
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 8px;
}

.rating-tile strong {
    font-size: 28px;
    color: var(--gold);
    display: block;
    margin-bottom: 8px;
}

.rating-tile p {
    font-size: 12px;
    color: var(--text-light);
    font-style: italic;
}

.tile-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.bento-tile h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--forest-green);
}

.bento-tile p {
    font-size: 13px;
    color: var(--text-light);
}

/* ========================================
   HOW IT WORKS
   ======================================== */

.how-it-works {
    padding: 80px 0;
    background: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: auto auto auto auto auto;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.step-card {
    background: linear-gradient(135deg, var(--sage-grey), #e8eef5);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 30px 25px;
    min-width: 150px;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.step-card:hover {
    border-color: var(--terracotta);
    box-shadow: var(--shadow-md);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--terracotta), #d97d5f);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 15px;
}

.step-icon {
    font-size: 32px;
    margin-top: 12px;
}

.step-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--forest-green);
}

.step-card p {
    font-size: 13px;
    color: var(--text-light);
}

.step-arrow {
    color: var(--terracotta);
    font-size: 24px;
    font-weight: 700;
}

/* ========================================
   PARTNERS SECTION
   ======================================== */

.partners-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--sage-grey) 0%, #e8eef5 100%);
}

.partners-slider {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    padding: 20px 0;
}

.partner-logo {
    background: white;
    padding: 30px;
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: 600;
    color: var(--text-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
}

.partner-logo:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

/* ========================================
   TESTIMONIALS
   ======================================== */

.testimonials-section {
    padding: 80px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: linear-gradient(135deg, var(--sage-grey), #e8eef5);
    border: 1px solid var(--border-light);
    padding: 30px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-card .stars {
    color: var(--gold);
    font-size: 16px;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-card strong {
    color: var(--forest-green);
    font-size: 13px;
}

/* ========================================
   PARTNER CTA SECTION
   ======================================== */

.partner-cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--terracotta), #d97d5f);
}

.partner-cta-card {
    text-align: center;
    color: white;
}

.partner-cta-card h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.partner-cta-card p {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: 30px;
}

.partner-cta-card .btn {
    background: white;
    color: var(--terracotta);
}

.partner-cta-card .btn:hover {
    transform: translateY(-2px);
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: linear-gradient(135deg, var(--forest-green), #0d2f30);
    color: white;
    padding: 20px 0 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-column h4 {
    font-size: 12px;
    margin-bottom: 6px;
}

.footer-column p {
    font-size: 12px;
    opacity: 0.8;
    line-height: 1.5;
}

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

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

.footer-column ul li a {
    color: white;
    text-decoration: none;
    font-size: 13px;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    opacity: 1;
    color: var(--gold);
}

.social-icons {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.social-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--terracotta);
}

.footer-bottom {
    text-align: center;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 11px;
    opacity: 0.7;
}

/* ========================================
   MODALS
   ======================================== */

.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    animation: modalFadeIn 0.3s ease-out;
}

.modal.active {
    display: flex;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    z-index: 1;
    background: white;
    border-radius: var(--radius-lg);
    margin: auto;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    animation: modalSlideUp 0.3s ease-out;
}

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--text-dark);
}

/* PARTNER ONBOARDING MODAL */
.partner-onboarding-modal {
    padding: 40px;
}

.partner-onboarding-modal h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--forest-green);
}

.stepper-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.step-indicator {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--sage-grey);
    border: 2px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-light);
    transition: var(--transition);
}

.step-indicator.active {
    background: var(--terracotta);
    border-color: var(--terracotta);
    color: white;
}

.step-indicator.completed {
    background: var(--gold);
    border-color: var(--gold);
    color: white;
}

.step-line {
    width: 40px;
    height: 2px;
    background: var(--border-light);
    margin: 0 8px;
}

.onboarding-step {
    display: none;
}

.onboarding-step.active {
    display: block;
    animation: stepFadeIn 0.3s ease-out;
}

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

.onboarding-step h3 {
    font-size: 20px;
    margin-bottom: 25px;
    color: var(--forest-green);
}

.onboarding-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

.upload-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.upload-field label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-dark);
}

.onboarding-actions {
    display: flex;
    gap: 12px;
    justify-content: space-between;
}

.onboarding-actions .btn {
    flex: 1;
}

#prevStep:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.verification-status {
    text-align: center;
    padding: 40px 20px;
}

.verification-status h3 {
    font-size: 24px;
    color: var(--forest-green);
    margin-bottom: 15px;
}

.verification-status p {
    color: var(--text-light);
    margin-bottom: 10px;
    font-size: 14px;
}

.verification-status strong {
    color: var(--terracotta);
}

/* AUTH MODAL */
.auth-modal {
    padding: 40px;
    max-width: 450px;
}

.auth-form h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--forest-green);
}

.auth-form form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

.auth-toggle {
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
}

.auth-toggle a {
    color: var(--terracotta);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.auth-toggle a:hover {
    text-decoration: underline;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* TABLET */
@media (max-width: 1024px) {
    .header-content {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .header-center {
        order: 3;
        grid-column: 1 / -1;
    }

    .trip-toggle-header {
        justify-content: flex-start;
    }

    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-tile.large {
        grid-column: 1 / -1;
        grid-row: auto;
        min-height: 250px;
    }

    .steps-grid {
        grid-template-columns: 1fr auto 1fr auto 1fr;
        gap: 10px;
    }

    .step-arrow {
        font-size: 20px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .header {
        padding: 12px 0;
    }

    .header-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .header-right {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .trip-toggle-header {
        justify-content: center;
    }

    .auth-buttons {
        justify-content: center;
    }

    .hero {
        min-height: auto;
        height: auto;
    }

    .booking-widget {
        padding: 25px;
        max-width: 95%;
    }

    .booking-headline {
        font-size: 24px;
    }

    .booking-subtext {
        font-size: 14px;
    }

    .trip-buttons {
        grid-template-columns: 1fr;
    }

    .field-row {
        grid-template-columns: 1fr;
    }

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

    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .bento-tile.large,
    .bento-tile.medium,
    .bento-tile.small {
        grid-column: auto;
        grid-row: auto;
        min-height: auto;
        padding: 20px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .step-arrow {
        transform: rotate(90deg);
        margin: 0;
    }

    .partners-slider {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

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

    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        padding: 12px 16px;
        font-size: 11px;
    }

    .floating-map-widget {
        bottom: 100px;
        left: 20px;
        min-width: auto;
        padding: 12px 16px;
    }

    .map-icon {
        font-size: 24px;
    }

    .map-content strong {
        font-size: 11px;
    }

    .map-content p {
        font-size: 10px;
    }

    .partner-cta-card h2 {
        font-size: 24px;
    }

    .partner-cta-card p {
        font-size: 14px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .modal-content {
        max-width: 90%;
        padding: 25px;
    }

    .partner-onboarding-modal {
        padding: 25px;
    }

    .partner-onboarding-modal h2 {
        font-size: 22px;
    }

    .stepper-header {
        margin-bottom: 25px;
    }

    .step-line {
        width: 20px;
        margin: 0 4px;
    }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
    .header-left .logo {
        gap: 6px;
        font-size: 14px;
    }

    .currency-selector,
    .auth-btn {
        font-size: 11px;
        padding: 6px 10px;
    }

    .booking-headline {
        font-size: 20px;
    }

    .section-title {
        font-size: 22px;
    }

    .bento-tile {
        padding: 15px;
    }

    .step-card {
        padding: 20px 15px;
        min-width: auto;
    }

    .partner-logo {
        padding: 20px;
        font-size: 12px;
    }

    .testimonial-card {
        padding: 20px;
    }

    .partner-cta-card h2 {
        font-size: 20px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 12px;
    }

    .modal-content {
        border-radius: 16px;
    }
}

/* ========================================
   PAGE STYLES - SHARED SECTIONS
   ======================================== */

.page-hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--forest-green) 0%, #111827 100%);
    margin-top: 0;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 61, 62, 0.4) 0%, rgba(226, 125, 96, 0.2) 100%);
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 12px;
}

.page-hero p {
    font-size: 18px;
    font-weight: 300;
    opacity: 0.9;
}

/* ========================================
   VEHICLES PAGE STYLES
   ======================================== */

.vehicles-filters {
    padding: 40px 0;
    background: var(--sage-grey);
    border-bottom: 1px solid var(--border-light);
}

.filter-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.filter-group {
    display: flex;
    flex-direction: column;
}

.filter-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-size: 14px;
}

.filter-group select {
    padding: 12px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-size: 14px;
    background: white;
    cursor: pointer;
    transition: var(--transition);
}

.filter-group select:hover {
    border-color: var(--terracotta);
}

.vehicles-grid-section {
    padding: 60px 0;
}

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.vehicle-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.vehicle-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.vehicle-image {
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #f1f5f9, #e0e0e0);
}

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

.vehicle-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.vehicle-info h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.vehicle-meta {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(226, 125, 96, 0.1);
    color: var(--terracotta);
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
}

.vehicle-description {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.5;
}

.vehicle-specs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
    font-size: 13px;
    color: var(--text-light);
}

.vehicle-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}

.price {
    font-size: 18px;
    font-weight: 700;
    color: var(--forest-green);
}

.btn-book {
    padding: 8px 20px;
    background: var(--forest-green);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-book:hover {
    background: var(--terracotta);
}

/* ========================================
   REVIEWS PAGE STYLES
   ======================================== */

.reviews-stats {
    padding: 60px 0;
    background: var(--sage-grey);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--forest-green);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 12px;
}

.stat-stars {
    font-size: 18px;
    letter-spacing: 2px;
}

.reviews-section {
    padding: 60px 0;
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.reviews-header h2 {
    font-size: 32px;
    font-weight: 700;
}

.reviews-filter {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 16px;
    background: var(--sage-grey);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--forest-green);
    color: white;
    border-color: var(--forest-green);
}

.reviews-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.review-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.review-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.reviewer-info {
    display: flex;
    gap: 12px;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--forest-green), var(--terracotta));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.reviewer-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.reviewer-location {
    font-size: 13px;
    color: var(--text-light);
}

.review-rating {
    font-size: 14px;
    letter-spacing: 2px;
}

.review-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.review-text {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
    font-size: 14px;
}

.review-vehicle {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(226, 125, 96, 0.1);
    color: var(--terracotta);
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.review-date {
    font-size: 12px;
    color: var(--text-light);
}

/* ========================================
   ABOUT PAGE STYLES
   ======================================== */

.about-section {
    padding: 60px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 16px;
}

.about-image {
    height: 400px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.values-section {
    padding: 60px 0;
    background: var(--sage-grey);
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.value-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.company-stats {
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

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

.stat-item .stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--forest-green);
    margin-bottom: 8px;
}

.stat-item .stat-text {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 500;
}

.team-section {
    padding: 60px 0;
    background: var(--sage-grey);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background: white;
    padding: 30px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.member-avatar {
    font-size: 64px;
    margin-bottom: 16px;
}

.team-member h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.member-role {
    font-size: 14px;
    color: var(--terracotta);
    font-weight: 600;
    margin-bottom: 12px;
}

.member-bio {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.why-us-section {
    padding: 60px 0;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--sage-grey);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(226, 125, 96, 0.05);
    transform: translateX(8px);
}

.feature-check {
    flex-shrink: 0;
    font-size: 24px;
    color: var(--terracotta);
    font-weight: 700;
}

.feature-item h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 14px;
    color: var(--text-light);
}

/* ========================================
   CONTACT PAGE STYLES
   ======================================== */

.contact-section {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form-wrapper h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--terracotta);
    box-shadow: 0 0 0 3px rgba(226, 125, 96, 0.1);
}

.form-group.checkbox {
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.form-group.checkbox input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-group.checkbox label {
    margin: 0;
    cursor: pointer;
    font-weight: 500;
}

.btn-full {
    width: 100%;
}

.contact-info {
    background: var(--sage-grey);
    padding: 30px;
    border-radius: var(--radius-md);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.contact-info h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.social-link {
    padding: 8px 16px;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: var(--text-dark);
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--forest-green);
    color: white;
    border-color: var(--forest-green);
}

.map-section {
    padding: 60px 0;
    background: var(--sage-grey);
    text-align: center;
}

.map-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
}

.map-container {
    height: 400px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faq-section {
    padding: 60px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.faq-item {
    background: white;
    padding: 24px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--terracotta);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-item h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.faq-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--forest-green) 0%, #0d2f30 100%);
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
    margin-top: 80px;
}

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

.footer-section h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-section p {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
}

.social-icon {
    display: inline-block;
    font-size: 20px;
    margin-right: 12px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    opacity: 0.7;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

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

    .contact-info {
        position: static;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================================
   MOBILE HAMBURGER MENU
   ======================================== */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    cursor: pointer;
    padding: 8px;
    transition: background 0.2s;
    flex-shrink: 0;
}
.hamburger-btn:hover { background: rgba(255,255,255,0.18); }
.hamburger-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
    transform-origin: center;
}
.hamburger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 10000;
}
.mobile-nav-overlay.open { display: block; }

.mobile-nav-panel {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100%;
    background: #1e293b;
    z-index: 10001;
    padding: 0;
    transition: right 0.32s cubic-bezier(0.4,0,0.2,1);
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 24px rgba(0,0,0,0.3);
}
.mobile-nav-panel.open { right: 0; }

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav-header .logo {
    display: flex; align-items: center; gap: 8px;
    color: #fff; text-decoration: none;
    font-size: 16px; font-weight: 700;
}
.mobile-nav-header .logo img { width: 32px; height: 32px; object-fit: contain; }
.mobile-nav-close {
    width: 44px; height: 44px;
    min-width: 44px; min-height: 44px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    color: #fff; font-size: 20px;
    cursor: pointer; display: flex;
    align-items: center; justify-content: center;
    transition: all 0.2s;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    position: relative;
    z-index: 10002;
}
.mobile-nav-close:hover,
.mobile-nav-close:active { background: rgba(255,255,255,0.25); transform: scale(0.95); }

.mobile-nav-links {
    flex: 1;
    padding: 16px 0;
    overflow-y: auto;
}
.mobile-nav-links a {
    display: flex;
    align-items: center;
    padding: 14px 24px;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
    border-left: 3px solid transparent;
}
.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    background: rgba(59,130,246,0.15);
    color: #60a5fa;
    border-left-color: #3B82F6;
}

.mobile-nav-footer {
    padding: 16px 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav-footer .partner-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px;
    background: #3B82F6;
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s;
}
.mobile-nav-footer .partner-btn:hover { background: #2563eb; }

@media (max-width: 768px) {
    .hamburger-btn { display: flex; }
    .header-center { display: none !important; }
    .header-right .partner-btn { display: none; }
    .header-right .selector-group { display: none; }
    .header-content {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }
    .header-right {
        display: flex !important;
        align-items: center;
        gap: 8px;
        order: 0;
        grid-column: auto;
    }
    .header-left .logo span { display: inline; }

    .page-hero h1 {
        font-size: 32px;
    }

    .reviews-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .reviews-list {
        grid-template-columns: 1fr;
    }

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

    .filter-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .cta-section h2 {
        font-size: 28px;
    }
}

/* ========================================
   WRITE REVIEW SECTION
   ======================================== */
.write-review-section {
    background: #f8fafc;
    padding: 48px 0;
    border-bottom: 1px solid #e2e8f0;
}

.write-review-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    max-width: 680px;
    margin: 0 auto;
}

.write-review-card h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 6px;
}

.write-review-sub {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 24px;
}

.rv-stars-pick {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 16px;
}

.rv-star-btn {
    font-size: 32px;
    color: #d1d5db;
    cursor: pointer;
    transition: color 0.15s, transform 0.15s;
    user-select: none;
    line-height: 1;
}
.rv-star-btn:hover { transform: scale(1.15); }

.rv-input {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 14px;
    color: #1e293b;
    background: #f8fafc;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.2s;
    margin-bottom: 12px;
    font-family: inherit;
}
.rv-input:focus { border-color: #3B82F6; background: #fff; }

.rv-textarea {
    min-height: 100px;
    resize: vertical;
}

.rv-submit-btn {
    width: 100%;
    padding: 13px;
    background: #3B82F6;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}
.rv-submit-btn:hover { background: #2563eb; }
.rv-submit-btn:disabled { background: #93c5fd; cursor: not-allowed; }

/* PRINT STYLES */
@media print {
    .header,
    .floating-whatsapp,
    .floating-map-widget,
    .modal {
        display: none;
    }
}
