/* TransferGet - Main Stylesheet */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --bg-primary: #ffffff;
    --bg-secondary: #ffffff;
    --accent-blue: #2563eb;
    --accent-blue-light: #3b82f6;
    --accent-blue-dark: #1d4ed8;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
}

.gradient-text {
    color: var(--accent-blue);
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: var(--accent-blue);
    background-clip: unset;
}

.glass-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    border-radius: 12px;
}

.primary-btn {
    background: var(--accent-blue);
    color: #ffffff;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 10px;
}

.primary-btn:hover {
    background: var(--accent-blue-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.primary-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.input-field {
    background: #ffffff;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    transition: all 0.3s;
    outline: none;
}

.input-field:focus {
    border-color: var(--accent-blue);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.input-field::placeholder {
    color: var(--text-secondary);
}

/* Header */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0.25rem 1.5rem;
    background: #ffffff;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.header-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.header-logo {
    height: 158px;
    width: auto;
    object-fit: contain;
    margin-left: 15%;
    margin-top: -15px;
    margin-bottom: -55px;
}

.footer-logo {
    height: 120px;
    width: auto;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--accent-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    overflow: hidden;
    padding: 6px;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-text {
    font-family: 'Syne', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
}

nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

nav a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--accent-blue);
}

.header-controls {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.control-dropdown {
    position: relative;
}

.control-dropdown select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    border: 1.5px solid rgba(79, 70, 229, 0.12);
    color: var(--text-primary);
    padding: 0.5rem 1.8rem 0.5rem 0.75rem;
    border-radius: 10px;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    font-family: 'Outfit', sans-serif;
    transition: all 0.25s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%234f46e5' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.6rem center;
}

.control-dropdown select:hover {
    border-color: var(--accent-purple);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.12);
}

.control-dropdown select:focus {
    outline: none;
    border-color: var(--accent-purple);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.08);
}

.control-dropdown select option {
    background: #ffffff;
    color: var(--text-primary);
    padding: 10px 14px;
    font-size: 0.875rem;
}

#language {
    min-width: 125px;
}

#currency {
    min-width: 85px;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 2rem 1.5rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: transparent;
}

.hero-glow-1 {
    position: absolute;
    top: 5rem;
    left: 25%;
    width: 24rem;
    height: 24rem;
    background: rgba(37, 99, 235, 0.03);
    border-radius: 50%;
    filter: blur(100px);
}

.hero-glow-2 {
    position: absolute;
    bottom: 0;
    right: 25%;
    width: 24rem;
    height: 24rem;
    background: rgba(37, 99, 235, 0.03);
    border-radius: 50%;
    filter: blur(100px);
}

.hero-content {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
}

.hero-title {
    text-align: center;
    margin-bottom: 1.5rem;
}

.hero-title h1 {
    font-family: 'Syne', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero-title p {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

/* Service Tabs */
.service-tabs {
    display: flex;
    max-width: 550px;
    margin: 0 auto 1rem;
    background: #ffffff;
    border-radius: 50px;
    padding: 5px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.service-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.5rem;
    border: none;
    background: transparent;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: all 0.3s;
}

.service-tab:hover {
    color: var(--accent-blue);
}

.service-tab.active {
    background: var(--accent-blue);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.service-tab .tab-icon {
    font-size: 1.1rem;
}

/* Search Card */
.search-card {
    border-radius: 1rem;
    padding: 1.25rem;
    max-width: 750px;
    margin: 0 auto;
}

.search-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 0.35rem;
}

.input-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 0.75rem;
    border-radius: 10px;
}

.input-wrapper .icon {
    font-size: 1.1rem;
}

.input-wrapper input {
    flex: 1;
    background: transparent;
    border: none;
    font-size: 0.9rem;
    width: 100%;
}

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

.select-styled {
    flex: 1;
    background: transparent;
    border: none;
    font-size: 0.9rem;
    width: 100%;
    color: var(--text-primary);
    cursor: pointer;
    outline: none;
}

.select-styled option {
    background: #ffffff;
    color: var(--text-primary);
}

/* Custom SVG Icons */
.icon-svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent-blue);
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.icon-svg.icon-sm {
    width: 16px;
    height: 16px;
}

.icon-svg.icon-lg {
    width: 24px;
    height: 24px;
}

.icon-svg.icon-xl {
    width: 32px;
    height: 32px;
}

.icon-svg.icon-white {
    stroke: #ffffff;
}

.icon-svg.icon-gray {
    stroke: var(--text-secondary);
}

.icon-svg.icon-social {
    width: 18px;
    height: 18px;
    stroke: #ffffff;
}

.social-link:hover .icon-svg.icon-social {
    stroke: var(--accent-blue);
}

.clear-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 1rem;
    padding: 0.25rem;
}

.clear-btn:hover {
    color: var(--accent-blue);
}

/* Dropdown */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 0.5rem;
    border-radius: 10px;
    padding: 0.5rem 0;
    max-height: 220px;
    overflow-y: auto;
    z-index: 50;
    display: none;
    background: #ffffff;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.dropdown.show {
    display: block;
}

/* Dropdown Scrollbar */
.dropdown::-webkit-scrollbar {
    width: 6px;
}

.dropdown::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 3px;
}

.dropdown::-webkit-scrollbar-thumb {
    background: var(--accent-blue-light);
    border-radius: 3px;
    opacity: 0.5;
}

.dropdown::-webkit-scrollbar-thumb:hover {
    background: var(--accent-blue);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 0.85rem;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 0.9rem;
}

.dropdown-item:hover {
    background: rgba(37, 99, 235, 0.08);
}

.dropdown-item .icon {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

/* Dropdown Sections */
.dropdown-section {
    padding: 0.5rem 0.85rem 0.35rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--accent-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 0.25rem;
}

.dropdown-section:not(:first-child) {
    margin-top: 0.5rem;
    border-top: 1px solid var(--border-color);
    padding-top: 0.75rem;
}

/* Airport Items */
.airport-item {
    background: rgba(37, 99, 235, 0.04);
}

.airport-item .item-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
}

.airport-item .item-code {
    background: var(--accent-blue);
    color: #ffffff;
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.airport-item .item-name {
    color: var(--text-primary);
    font-size: 0.85rem;
}

.airport-item:hover {
    background: rgba(37, 99, 235, 0.1);
}

/* Google Places Items */
.google-item .item-name {
    color: var(--text-primary);
    font-size: 0.85rem;
    flex: 1;
}

/* No Results */
.no-results {
    color: var(--text-secondary);
    cursor: default;
    font-style: italic;
}

.no-results:hover {
    background: transparent;
}

/* Date/Time Grid */
.datetime-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.datetime-grid input[type="date"] {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid var(--border-color);
    background: #ffffff;
    border-radius: 12px;
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
}

.datetime-grid input[type="date"]:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Time Select Dropdown */
.time-select-wrapper {
    position: relative;
    width: 100%;
}

.time-select-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid var(--border-color);
    background: #ffffff;
    border-radius: 12px;
    font-size: 0.95rem;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
}

.time-select-btn:hover {
    border-color: var(--accent-blue);
    background: #fafafa;
}

.time-select-btn:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.time-select-btn.active {
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.time-select-value {
    font-weight: 500;
}

.time-select-icon {
    width: 16px;
    height: 16px;
    color: var(--text-secondary);
    transition: transform 0.2s;
}

.time-select-btn.active .time-select-icon {
    transform: rotate(180deg);
}

.time-select-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    max-height: 240px;
    overflow-y: auto;
    z-index: 1000;
}

.time-select-dropdown.show {
    display: block;
}

.time-select-option {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    color: var(--text-primary);
    cursor: pointer;
    transition: background 0.15s;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    font-family: 'Outfit', sans-serif;
}

.time-select-option:hover {
    background: rgba(37, 99, 235, 0.08);
}

.time-select-option.selected {
    background: var(--accent-blue);
    color: #ffffff;
    font-weight: 500;
}

.time-select-option:first-child {
    border-radius: 11px 11px 0 0;
}

.time-select-option:last-child {
    border-radius: 0 0 11px 11px;
}

/* Dropdown Scrollbar */
.time-select-dropdown::-webkit-scrollbar {
    width: 6px;
}

.time-select-dropdown::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 3px;
}

.time-select-dropdown::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

.time-select-dropdown::-webkit-scrollbar-thumb:hover {
    background: var(--accent-blue-light);
}


/* Passenger Counter */
.counter {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.6rem;
    border-radius: 10px;
}

.counter-btn {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: #f1f5f9;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
}

.counter-btn:hover {
    background: var(--accent-blue);
    color: #ffffff;
    border-color: var(--accent-blue);
}

.counter-value {
    flex: 1;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Toggle Switch */
.toggle-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.85rem;
}

.toggle {
    width: 44px;
    height: 24px;
    border-radius: 12px;
    background: #cbd5e1;
    position: relative;
    cursor: pointer;
    transition: background 0.3s;
}

.toggle.active {
    background: var(--accent-blue);
}

.toggle-knob {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: white;
    transition: transform 0.3s;
}

.toggle.active .toggle-knob {
    transform: translateX(20px);
}

/* Return Fields */
.return-fields {
    display: none;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    animation: fadeIn 0.3s ease;
}

.return-fields.show {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.return-fields .form-group {
    margin-bottom: 0;
}

.return-fields .input-field,
.return-fields input[type="date"] {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid var(--border-color);
    background: #ffffff;
    border-radius: 12px;
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
}

.return-fields .input-field:focus,
.return-fields input[type="date"]:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.return-fields .time-select-wrapper {
    width: 100%;
}

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


/* Search Button */
.search-btn {
    width: 100%;
    margin-top: 1rem;
    padding: 0.85rem;
    border-radius: 10px;
    font-size: 1rem;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.85rem;
    border-radius: 0.75rem;
    background: rgba(37, 99, 235, 0.05);
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.trust-badge .icon {
    font-size: 1.1rem;
}

.trust-badge .title {
    font-weight: 600;
    font-size: 0.8rem;
}

.trust-badge .desc {
    font-size: 0.7rem;
    color: var(--text-secondary);
}

/* Services Section */
.services-section {
    padding: 2.5rem 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

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

.service-card {
    padding: 1.25rem;
    border-radius: 0.75rem;
    transition: transform 0.3s, border-color 0.3s;
}

.service-card:hover {
    transform: translateY(-3px);
    border-color: var(--accent-blue);
    box-shadow: var(--shadow-md);
}

.service-icon {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.service-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.service-card p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Info Sections (Transfer, Tour, Delivery) */
.info-section {
    padding: 3rem 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.info-section-alt {
    background: #f8fafc;
}

.info-content {
    margin-top: 2rem;
}

.info-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.info-step {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.info-step:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-blue);
}

.step-number {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--accent-blue);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.step-content h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.step-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.info-features {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
}

.info-section-alt .info-features {
    background: #ffffff;
}

.info-features h3 {
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: #f8fafc;
    border-radius: 10px;
    transition: background 0.3s;
}

.info-section-alt .feature-item {
    background: #f1f5f9;
}

.feature-item:hover {
    background: rgba(37, 99, 235, 0.08);
}

.feature-item span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
}

/* Reviews Carousel Section */
.reviews-carousel-section {
    padding: 3rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.reviews-carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.reviews-carousel {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 1rem 0.5rem;
    cursor: grab;
}

.reviews-carousel::-webkit-scrollbar {
    display: none;
}

.reviews-carousel:active {
    cursor: grabbing;
}

.review-slide {
    min-width: 320px;
    max-width: 320px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
    flex-shrink: 0;
}

.review-slide:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-blue);
}

.review-slide .review-stars {
    color: #fbbf24;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    letter-spacing: 2px;
}

.review-slide .review-stars .star-half {
    opacity: 0.4;
}

.review-slide .review-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
    min-height: 72px;
}

.review-slide .review-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.review-slide .review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-blue);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
}

.review-slide .review-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.review-slide .review-location {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.carousel-arrow {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: var(--text-primary);
    z-index: 10;
}

.carousel-arrow:hover {
    background: var(--accent-blue);
    color: #ffffff;
    border-color: var(--accent-blue);
    box-shadow: var(--shadow-md);
}

.carousel-arrow svg {
    width: 20px;
    height: 20px;
}

/* Responsive Reviews Carousel */
@media (max-width: 768px) {
    .carousel-arrow {
        display: none;
    }

    .review-slide {
        min-width: 280px;
        max-width: 280px;
    }

    .reviews-carousel-container {
        padding: 0;
    }
}

/* Responsive Info Sections */
@media (max-width: 768px) {
    .info-steps {
        grid-template-columns: 1fr;
    }

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

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

    .info-step {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin: 0 auto;
    }
}

/* About Section */
.about-section {
    padding: 2.5rem 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

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

.about-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.about-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

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

.about-stat .stat-number {
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    font-weight: 700;
}

.about-stat .stat-text {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

/* Contact Section */
.contact-section {
    padding: 2.5rem 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

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

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem;
    border-radius: 0.75rem;
}

.contact-icon {
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item h4 {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.15rem;
}

.contact-item p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.contact-form-section {
    padding: 1.25rem;
    border-radius: 0.75rem;
}

.contact-form-section h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-form-section .form-field {
    margin-bottom: 0.75rem;
}

.contact-form-section input,
.contact-form-section textarea {
    width: 100%;
    padding: 0.7rem;
    border-radius: 8px;
    font-size: 0.85rem;
}

.contact-form-section textarea {
    resize: none;
}

/* Fleet Section */
.fleet-section {
    padding: 2.5rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.fleet-underline {
    width: 50px;
    height: 3px;
    background: var(--accent-blue);
    margin: 0.75rem auto 1rem;
    border-radius: 2px;
}

.section-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: 0;
}

.section-subtitle {
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.9rem;
}

.fleet-grid-new {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 0.75rem;
    flex-wrap: wrap;
    padding: 1rem 0;
}

.fleet-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.fleet-item:hover {
    transform: translateY(-3px);
}

.fleet-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s;
}

.fleet-item:hover .fleet-img {
    transform: scale(1.1);
}

.fleet-icon {
    font-size: 2.5rem;
    filter: grayscale(100%) brightness(0.9);
    transition: filter 0.3s, transform 0.3s;
}

.fleet-item:hover .fleet-icon {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.1);
}

.fleet-name {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.fleet-item:hover .fleet-name {
    color: var(--accent-blue);
}

/* Reviews Section */
.reviews-section {
    padding: 2.5rem 1.5rem;
    background: #f8fafc;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 1.5rem;
}

.review-card {
    border-radius: 0.75rem;
    padding: 1rem;
}

.review-stars {
    color: #fbbf24;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
}

.review-text {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 0.85rem;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.review-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: #ffffff;
}

.review-name {
    font-weight: 600;
    font-size: 0.85rem;
}

.review-location {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* Results Page */
.results-page {
    display: none;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    height: calc(100vh - 80px);
    overflow: hidden;
}

.results-page.show {
    display: block;
}

.back-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    background: none;
    border: none;
    cursor: pointer;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.back-btn:hover {
    color: var(--accent-blue);
}

.results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    height: calc(100% - 40px);
}

/* Trip Summary */
.trip-summary {
    border-radius: 0.75rem;
    padding: 1rem;
    margin-bottom: 0.75rem;
}

.trip-route {
    display: flex;
    gap: 0.75rem;
}

.route-line {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.route-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.route-dot.from {
    background: var(--accent-blue);
}

.route-dot.to {
    background: var(--accent-blue-dark);
}

.route-connector {
    width: 2px;
    height: 40px;
    background: var(--accent-blue);
}

.route-details {
    flex: 1;
}

.route-point {
    margin-bottom: 0.75rem;
}

.route-point:last-child {
    margin-bottom: 0;
}

.route-label {
    font-size: 0.7rem;
    color: var(--text-secondary);
}

.route-value {
    font-size: 0.9rem;
    font-weight: 600;
}

.trip-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-color);
}

.meta-label {
    font-size: 0.7rem;
    color: var(--text-secondary);
}

.meta-value {
    font-weight: 600;
    font-size: 0.85rem;
}

/* Vehicle List */
.vehicles-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.results-left {
    overflow-y: auto;
    padding-right: 0.5rem;
}

.vehicle-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.vehicle-card {
    border-radius: 0.75rem;
    padding: 0.75rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.vehicle-card:hover {
    background: rgba(37, 99, 235, 0.03);
    border-color: rgba(37, 99, 235, 0.2);
}

.vehicle-card.selected {
    border-color: var(--accent-blue);
    background: rgba(37, 99, 235, 0.05);
}

.vehicle-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.vehicle-img {
    width: 90px;
    height: 55px;
    object-fit: contain;
}

.vehicle-icon-large {
    font-size: 2rem;
    width: 50px;
    text-align: center;
    filter: grayscale(80%);
    transition: filter 0.3s;
}

.vehicle-card:hover .vehicle-icon-large,
.vehicle-card.selected .vehicle-icon-large {
    filter: grayscale(0%);
}

.vehicle-info {
    flex: 1;
    min-width: 0;
}

.vehicle-name {
    font-size: 0.9rem;
    font-weight: 600;
}

.vehicle-desc {
    display: none;
}

.vehicle-specs {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.25rem;
    color: var(--text-secondary);
    font-size: 0.75rem;
}

.vehicle-specs span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.vehicle-specs .icon-svg {
    stroke: var(--text-secondary);
}

.vehicle-price {
    text-align: right;
}

.price-label {
    display: none;
}

.price-value {
    font-size: 1.1rem;
    font-weight: 700;
}

.price-note {
    font-size: 0.65rem;
    color: var(--text-secondary);
}

/* Map Container */
.map-container {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.map-box {
    border-radius: 0.75rem;
    flex: 1;
    min-height: 300px;
    background: #f8fafc;
    border: 1px solid var(--border-color);
}

.map-stats-bar {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    margin-top: 0.75rem;
}

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

.stat-value {
    font-size: 1.25rem;
    font-weight: 700;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.stat-divider {
    width: 1px;
    background: var(--border-color);
}

/* Price Guarantee */
.price-guarantee {
    border-radius: 0.75rem;
    padding: 0.75rem;
    margin-top: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.guarantee-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(37, 99, 235, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.guarantee-title {
    font-weight: 600;
    color: var(--accent-blue);
    font-size: 0.85rem;
}

.guarantee-text {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* Additional Options */
.additional-options {
    border-radius: 0.75rem;
    padding: 1rem;
    margin-top: 0.75rem;
}

.options-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.option-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.option-row:last-child {
    border-bottom: none;
}

.option-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.option-icon {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.option-name {
    font-weight: 500;
    font-size: 0.85rem;
}

.option-desc {
    font-size: 0.7rem;
    color: var(--text-secondary);
}

.option-input {
    margin-top: 0.75rem;
}

.option-input input,
.option-input textarea {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-family: inherit;
}

.option-input textarea {
    height: 50px;
    resize: none;
}

.option-input .hint {
    font-size: 0.65rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

.book-btn {
    width: 100%;
    margin-top: 0.75rem;
    padding: 0.85rem;
    border-radius: 10px;
    font-size: 1rem;
}

/* Booking Page */
.booking-page {
    display: none;
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.booking-page.show {
    display: block;
}

.booking-title {
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.booking-summary {
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.summary-title {
    font-weight: 600;
    margin-bottom: 1rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
}

.summary-label {
    color: var(--text-secondary);
}

.summary-total {
    border-top: 1px solid var(--border-color);
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
}

/* Price Breakdown */
.price-breakdown {
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.price-breakdown .section-title {
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.price-row:last-child {
    border-bottom: none;
}

.price-row.total {
    border-top: 2px solid var(--border-color);
    border-bottom: none;
    margin-top: 0.5rem;
    padding-top: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
}

/* Contact Form */
.contact-form {
    border-radius: 1rem;
    padding: 1.5rem;
}

.form-title {
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.form-field {
    margin-bottom: 1rem;
}

.form-field label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.form-field input {
    width: 100%;
    padding: 1rem;
    border-radius: 12px;
    font-size: 1rem;
}

.submit-btn {
    width: 100%;
    margin-top: 2rem;
    padding: 1.25rem;
    border-radius: 12px;
    font-size: 1.25rem;
}

.form-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 1rem;
}

/* Footer */
footer {
    margin-top: 2rem;
    padding: 2rem 1.5rem;
    background: var(--accent-blue);
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

footer .logo-text {
    color: #ffffff;
}

footer .logo-icon {
    background: #ffffff;
}

footer .gradient-text {
    color: rgba(255, 255, 255, 0.85);
    -webkit-text-fill-color: rgba(255, 255, 255, 0.85);
}

.footer-links h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

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

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

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

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

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

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: #ffffff;
    color: var(--accent-blue);
    border-color: #ffffff;
}

/* Hide sections */
.home-page.hidden,
.results-page.hidden,
.booking-page.hidden {
    display: none;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.show {
    display: flex;
}

.modal-content {
    max-width: 550px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 1.5rem;
    border-radius: 1rem;
    position: relative;
    background: #ffffff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.25rem;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--accent-blue);
}

.modal-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-right: 2rem;
}

.modal-body {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.modal-body h4 {
    color: var(--text-primary);
    margin: 1rem 0 0.5rem;
    font-size: 0.95rem;
}

.modal-body ul {
    margin-left: 1.25rem;
    margin-bottom: 1rem;
}

.modal-body li {
    margin-bottom: 0.35rem;
}

.modal-body p {
    margin-bottom: 0.75rem;
}

.modal-body strong {
    color: var(--accent-blue);
}

/* Google Places Autocomplete */
.pac-container {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    margin-top: 5px;
    font-family: 'Outfit', sans-serif;
}

.pac-item {
    padding: 10px 15px;
    color: var(--text-primary);
    border-top: 1px solid var(--border-color);
    cursor: pointer;
}

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

.pac-item:hover {
    background-color: rgba(37, 99, 235, 0.05);
}

.pac-item-selected {
    background-color: rgba(37, 99, 235, 0.08);
}

.pac-icon {
    filter: none;
}

.pac-item-query {
    color: var(--text-primary);
    font-size: 0.9rem;
}

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

/* Responsive */
@media (max-width: 1024px) {
    .fleet-grid-new {
        gap: 1.5rem;
    }

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

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

    .map-container {
        position: static;
    }
}

@media (max-width: 768px) {
    .hero-title h1 {
        font-size: 1.75rem;
    }

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

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

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

    .about-stats {
        gap: 1rem;
    }

    .about-stat .stat-number {
        font-size: 1.5rem;
    }

    .fleet-grid-new {
        gap: 1rem;
    }

    .fleet-img {
        height: 40px;
    }

    .fleet-name {
        font-size: 0.75rem;
    }

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

    nav {
        display: none;
    }

    .header-controls {
        gap: 0.4rem;
    }

    .control-dropdown select {
        padding: 0.4rem 1.5rem 0.4rem 0.6rem;
        font-size: 0.8rem;
        border-radius: 8px;
    }

    #language {
        min-width: 105px;
    }

    #currency {
        min-width: 75px;
    }

    .trust-badges {
        flex-direction: column;
        align-items: center;
    }

    .vehicle-img {
        width: 80px;
        height: 45px;
    }

    .vehicle-content {
        gap: 1rem;
    }
}

/* Floating Review Button */
.floating-review-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: var(--accent-blue);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
    transition: all 0.3s;
    z-index: 1000;
}

.floating-review-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(37, 99, 235, 0.5);
    background: var(--accent-blue-dark);
}

/* Review Panel Overlay */
.review-panel-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 1001;
}

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

/* Review Panel */
.review-panel {
    position: fixed;
    top: 0;
    right: -450px;
    width: 420px;
    max-width: 100%;
    height: 100%;
    background: #ffffff;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
    z-index: 1002;
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease-in-out;
}

.review-panel.active {
    right: 0;
}

.review-panel-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--accent-blue);
    color: #ffffff;
}

.review-panel-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.review-panel-close {
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: background 0.3s;
}

.review-panel-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.review-panel-close svg {
    width: 20px;
    height: 20px;
}

.review-panel-content {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.review-form-group {
    margin-bottom: 1.25rem;
}

.review-form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.review-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 0.9rem;
    color: var(--text-primary);
    background: #ffffff;
    transition: all 0.3s;
    font-family: inherit;
}

.review-input:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.review-hint {
    display: block;
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 0.35rem;
}

/* Star Rating */
.star-rating {
    display: flex;
    gap: 8px;
}

.star-rating .star {
    font-size: 2rem;
    color: #e2e8f0;
    cursor: pointer;
    transition: all 0.2s;
}

.star-rating .star:hover,
.star-rating .star.active {
    color: #fbbf24;
    transform: scale(1.1);
}

.star-rating .star.hover {
    color: #fbbf24;
}

/* Review Checkbox */
.review-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.review-checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--accent-blue);
}

.review-checkbox-group label {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Review Submit Button */
.review-submit-btn {
    width: 100%;
    padding: 0.9rem;
    background: var(--accent-blue);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.review-submit-btn:hover {
    background: var(--accent-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

/* Review Panel Footer */
.review-panel-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border-color);
    background: #f8fafc;
}

.review-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

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

.review-stat-item .stat-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-blue);
}

.review-stat-item .stat-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* Responsive Review Panel */
@media (max-width: 480px) {
    .floating-review-btn {
        right: 15px;
        bottom: 15px;
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .floating-review-btn span {
        display: none;
    }

    .floating-review-btn {
        border-radius: 50%;
        padding: 14px;
    }

    .review-panel {
        width: 100%;
        right: -100%;
    }
}

/* RTL Support for Arabic */
body.rtl {
    direction: rtl;
    text-align: right;
}

body.rtl header nav {
    flex-direction: row-reverse;
}

body.rtl .header-content {
    flex-direction: row-reverse;
}

body.rtl .header-controls {
    flex-direction: row-reverse;
}

body.rtl .input-wrapper {
    flex-direction: row-reverse;
}

body.rtl .input-wrapper svg {
    margin-left: 0.75rem;
    margin-right: 0;
}

body.rtl .input-wrapper input,
body.rtl .input-wrapper select {
    text-align: right;
}

body.rtl .trust-badges {
    flex-direction: row-reverse;
}

body.rtl .trust-badge {
    flex-direction: row-reverse;
    text-align: right;
}

body.rtl .info-step {
    flex-direction: row-reverse;
}

body.rtl .step-content {
    text-align: right;
}

body.rtl .feature-item {
    flex-direction: row-reverse;
}

body.rtl .contact-item {
    flex-direction: row-reverse;
    text-align: right;
}

body.rtl .footer-grid {
    direction: rtl;
}

body.rtl .back-btn {
    direction: ltr;
}

body.rtl .route-details {
    text-align: right;
}

body.rtl .trip-meta {
    flex-direction: row-reverse;
}

body.rtl .option-row {
    flex-direction: row-reverse;
}

body.rtl .option-info {
    flex-direction: row-reverse;
    text-align: right;
}

body.rtl .summary-row {
    flex-direction: row-reverse;
}

body.rtl .review-panel {
    right: auto;
    left: -400px;
}

body.rtl .review-panel.active {
    left: 0;
}

body.rtl .floating-review-btn {
    right: auto;
    left: 25px;
}

body.rtl .review-form-group {
    text-align: right;
}

body.rtl .review-checkbox-group {
    flex-direction: row-reverse;
}

body.rtl .star-rating {
    direction: ltr;
}
