/* ========================================
   LIMO BOOKING - Main Stylesheet
   ======================================== */

/* CSS Variables */
:root {
    /* Colors */
    --color-bg-primary: #0a0a0a;
    --color-bg-secondary: #1a1a1a;
    --color-bg-widget: rgba(20, 20, 25, 0.95);
    --color-accent-marsala: #8B2942;
    --color-accent-green: #2E8B57;
    --color-accent-green-hover: #3CB371;
    --color-text-primary: #FFFFFF;
    --color-text-secondary: #B0B0B0;
    --color-text-muted: #666666;
    --color-border: rgba(139, 41, 66, 0.3);
    --color-input-bg: #2a2a2a;
    --color-overlay: rgba(0, 0, 0, 0.65);

    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-display-weight: 500;
    --font-body: 'Montserrat', 'Helvetica Neue', sans-serif;
    --font-body-weight: 300;

    /* Font Sizes */
    --text-hero: clamp(2.5rem, 5vw, 4rem);
    --text-section-title: clamp(1.75rem, 3vw, 2.5rem);
    --text-card-title: 1.125rem;
    --text-body: 0.9375rem;
    --text-small: 0.8125rem;

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 80px;
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: var(--font-body-weight);
    font-size: var(--text-body);
    line-height: 1.6;
    color: var(--color-text-secondary);
    background-color: var(--color-bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

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

/* Container */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: var(--font-display-weight);
    color: var(--color-text-primary);
    line-height: 1.2;
}

em {
    font-style: italic;
    color: var(--color-accent-marsala);
font-weight: bold;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: var(--text-small);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-header {
    background-color: var(--color-accent-marsala);
    color: var(--color-text-primary);
}

.btn-header:hover {
    background-color: #a63350;
}

.btn-cta {
    background-color: var(--color-accent-green);
    color: var(--color-text-primary);
    width: 100%;
    max-width: max-content;
    padding: 12px 28px;
    margin-top: 15px;
}

.btn-cta:hover {
    background-color: var(--color-accent-green-hover);
}

.btn-card {
    background-color: var(--color-accent-green);
    color: var(--color-text-primary);
    padding: 10px 24px;
    font-size: 0.75rem;
}

.btn-card:hover {
    background-color: var(--color-accent-green-hover);
}

.btn-fixed-quote {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--color-accent-marsala);
    color: var(--color-text-primary);
    padding: 14px 24px;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(139, 41, 66, 0.4);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.btn-fixed-quote.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.btn-fixed-quote:hover {
    background-color: #a63350;
    transform: translateY(-2px);
}

/* ========================================
   HEADER
   ======================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    z-index: 1000;
    background: rgba(10, 10, 10, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.header.scrolled {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    border-bottom-color: transparent;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

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

.logo-img {
    height: 30px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s ease;
}

.logo-img:hover {
    opacity: 0.8;
}

.nav-list {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-size: var(--text-small);
    font-weight: 400;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-accent-marsala);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--color-text-primary);
}

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

/* Burger Menu */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
}

.burger-line {
    width: 25px;
    height: 2px;
    background-color: var(--color-text-primary);
    transition: all 0.3s ease;
}

.burger.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

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

.hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--header-height) + 40px) 20px 60px;
    overflow: hidden;
}

.hero-bg-picture {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(10, 10, 10, 0.95) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    text-align: center;
}

.hero-header {
    margin-bottom: 30px;
}

.hero-title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    color: var(--color-text-primary);
    margin-bottom: 12px;
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 4px 20px rgba(0, 0, 0, 0.6),
        0 8px 40px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    color: var(--color-text-primary);
    font-weight: 400;
    letter-spacing: 0.5px;
    text-shadow:
        0 1px 3px rgba(0, 0, 0, 0.9),
        0 4px 15px rgba(0, 0, 0, 0.5);
}

/* ========================================
   BOOKING WIDGET
   ======================================== */

.booking-widget {
    background: var(--color-bg-widget);
    border-radius: 8px;
    padding: 20px 25px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-border);
}

/* Progress Indicator */
.progress-indicator {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    gap: 0;
}

.progress-step {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background-color: var(--color-input-bg);
    font-size: 0.75rem;
    color: var(--color-text-muted);
    position: relative;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%, 12px 50%);
    margin-left: -8px;
}

.progress-step:first-child {
    margin-left: 0;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%);
    border-radius: 4px 0 0 4px;
}

.progress-step:last-child {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 12px 50%);
    border-radius: 0 4px 4px 0;
}

.progress-step.active {
    background-color: var(--color-accent-marsala);
    color: var(--color-text-primary);
}

.progress-step.completed {
    background-color: var(--color-accent-green);
    color: var(--color-text-primary);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    font-weight: 500;
    font-size: 0.7rem;
}

.step-text {
    text-transform: lowercase;
}

/* Widget Tabs */
.widget-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 18px;
    border-bottom: 1px solid var(--color-border);
}

.tab-btn {
    padding: 10px 24px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    color: var(--color-text-secondary);
}

.tab-btn.active {
    color: var(--color-text-primary);
    border-bottom-color: var(--color-accent-marsala);
}

.tab-btn.disabled,
.tab-btn:disabled {
    color: var(--color-text-muted);
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Tab Content */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Booking Form */
.booking-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    width: 100%;
    margin-bottom: 12px;
}

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

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

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

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

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

.form-group > label {
    font-size: 0.75rem;
    color: var(--color-text-secondary);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

/* Inline checkbox in label */
.checkbox-inline {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    font-size: 0.7rem;
    color: var(--color-text-muted);
}

/* Checkbox wrapper */
.checkbox-wrapper {
    margin: 15px 0;
}

/* Privacy Policy checkbox - Custom styled */
.checkbox-policy {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.8rem;
    color: var(--color-text-secondary);
    line-height: 1.4;
}

.checkbox-policy input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-policy .checkmark {
    width: 20px;
    height: 20px;
    min-width: 20px;
    background-color: var(--color-input-bg);
    border: 2px solid var(--color-text-muted);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.checkbox-policy .checkmark svg {
    width: 12px;
    height: 12px;
    stroke: #fff;
    stroke-width: 3;
    opacity: 0;
    transform: scale(0);
    transition: all 0.2s ease;
}

.checkbox-policy input[type="checkbox"]:checked + .checkmark {
    background-color: var(--color-accent-green);
    border-color: var(--color-accent-green);
}

.checkbox-policy input[type="checkbox"]:checked + .checkmark svg {
    opacity: 1;
    transform: scale(1);
}

.checkbox-policy:hover .checkmark {
    border-color: var(--color-accent-green);
}

.checkbox-policy .checkbox-text {
    flex: 1;
}

.checkbox-policy a {
    color: var(--color-accent-marsala);
    text-decoration: underline;
}

.checkbox-policy a:hover {
    color: var(--color-text-primary);
}

/* Error state for checkbox */
.checkbox-policy.error .checkmark {
    border-color: #e74c3c;
    background-color: rgba(231, 76, 60, 0.1);
}

/* Coming Soon Notice */
.coming-soon-notice {
    padding: 40px 20px;
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.checkbox-inline input[type="checkbox"] {
    width: 14px;
    height: 14px;
    accent-color: var(--color-accent-green);
    cursor: pointer;
}

.checkbox-inline .checkbox-text {
    white-space: nowrap;
}

.input-wrapper {
    position: relative;
}

.input-wrapper input,
.input-wrapper select {
    width: 100%;
    padding: 10px 36px 10px 12px;
    background-color: var(--color-input-bg);
    border: 1px solid transparent;
    border-radius: 4px;
    color: var(--color-text-primary);
    font-size: 0.875rem;
    transition: border-color 0.3s ease;
}

.input-wrapper input:focus,
.input-wrapper select:focus {
    outline: none;
    border-color: var(--color-accent-marsala);
}

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

.input-wrapper select {
    appearance: none;
    cursor: pointer;
}

.input-wrapper select option {
    background-color: var(--color-bg-secondary);
}

.input-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--color-text-muted);
    pointer-events: none;
}

/* Textarea */
textarea {
    width: 100%;
    padding: 14px;
    background-color: var(--color-input-bg);
    border: 1px solid transparent;
    border-radius: 4px;
    color: var(--color-text-primary);
    resize: vertical;
    min-height: 100px;
    transition: border-color 0.3s ease;
}

textarea:focus {
    outline: none;
    border-color: var(--color-accent-marsala);
}

textarea::placeholder {
    color: var(--color-text-muted);
}

/* ========================================
   FORM VALIDATION STYLES
   ======================================== */

/* Error state for inputs */
input.error,
select.error,
textarea.error {
    border-color: #e74c3c !important;
    background-color: rgba(231, 76, 60, 0.1) !important;
}

/* Error state for form group */
.form-group.has-error label {
    color: #e74c3c;
}

/* Error state for checkbox label */
label.checkbox-policy.error {
    color: #e74c3c;
}

label.checkbox-policy.error a {
    color: #ff6b6b;
}

/* Shake animation */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.shake {
    animation: shake 0.5s ease-in-out;
}

/* Pulse glow animation for error */
@keyframes errorPulse {
    0% { box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.4); }
    70% { box-shadow: 0 0 0 8px rgba(231, 76, 60, 0); }
    100% { box-shadow: 0 0 0 0 rgba(231, 76, 60, 0); }
}

input.error,
select.error,
textarea.error {
    animation: shake 0.5s ease-in-out, errorPulse 0.5s ease-in-out;
}

/* Remove default browser validation styles */
input:invalid,
select:invalid,
textarea:invalid {
    box-shadow: none;
}

/* Checkbox label error state */
label.checkbox-label.error,
label.checkbox-label.error span {
    color: #e74c3c;
}

/* Form error message */
.form-error-message {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid #e74c3c;
    border-radius: 8px;
    color: #e74c3c;
    margin-bottom: 15px;
    animation: fadeInUp 0.3s ease-out;
}

.form-error-message svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* ========================================
   THANK YOU PAGE
   ======================================== */
.thank-you-page {
    text-align: center;
    padding: 40px 20px;
    animation: fadeInUp 0.6s ease-out;
}

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

.thank-you-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--color-accent-green), #3CB371);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.5s ease-out 0.2s both, pulse 2s ease-in-out 1s infinite;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(46, 139, 87, 0.4);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(46, 139, 87, 0);
    }
}

.thank-you-icon svg {
    width: 40px;
    height: 40px;
    stroke: #fff;
    stroke-width: 2.5;
}

.thank-you-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 500;
    color: var(--color-text-primary);
    margin-bottom: 8px;
    animation: fadeInUp 0.5s ease-out 0.3s both;
}

.thank-you-subtitle {
    font-size: 1rem;
    color: var(--color-accent-green);
    margin-bottom: 25px;
    animation: fadeInUp 0.5s ease-out 0.4s both;
}

.thank-you-message {
    background: rgba(46, 139, 87, 0.1);
    border: 1px solid rgba(46, 139, 87, 0.2);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
    animation: fadeInUp 0.5s ease-out 0.5s both;
}

.thank-you-message p {
    color: var(--color-text-secondary);
    margin: 0;
    line-height: 1.6;
}

.thank-you-message p + p {
    margin-top: 10px;
}

.thank-you-message strong {
    color: var(--color-text-primary);
}

.thank-you-contact {
    margin-bottom: 25px;
    animation: fadeInUp 0.5s ease-out 0.6s both;
}

.thank-you-contact p {
    color: var(--color-text-muted);
    font-size: 0.875rem;
    margin-bottom: 12px;
}

.thank-you-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    border: 2px solid var(--color-accent-marsala);
    border-radius: 4px;
    color: var(--color-accent-marsala);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.thank-you-phone:hover {
    background: var(--color-accent-marsala);
    color: #fff;
}

.thank-you-phone svg {
    width: 18px;
    height: 18px;
}

.thank-you-btn {
    animation: fadeInUp 0.5s ease-out 0.7s both;
    margin-top: 10px;
}

/* Direct inputs without wrapper */
.form-group > input:not([type="checkbox"]) {
    width: 100%;
    padding: 12px 14px;
    background-color: var(--color-input-bg);
    border: 1px solid transparent;
    border-radius: 4px;
    color: var(--color-text-primary);
    font-size: var(--text-body);
    transition: border-color 0.3s ease;
}

.form-group > input:focus {
    outline: none;
    border-color: var(--color-accent-marsala);
}

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

/* Disabled state */
input:disabled,
select:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Booking Steps */
.booking-step {
    display: none;
}

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

/* Step Header (Back button + Title) */
.step-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--color-border);
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 12px;
    background: var(--color-input-bg);
    border-radius: 4px;
    color: var(--color-text-secondary);
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background: var(--color-accent-marsala);
    color: var(--color-text-primary);
}

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

.step-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--color-text-primary);
    font-weight: 500;
}

/* Car Selection Grid (Step 2) */
.car-selection-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.car-option {
    display: flex;
    flex-direction: column;
    background: var(--color-input-bg);
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.car-option:hover {
    border-color: var(--color-accent-marsala);
    transform: translateY(-2px);
}

.car-option-image {
    position: relative;
    height: 80px;
    overflow: hidden;
}

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

.car-option-info {
    padding: 10px;
    flex: 1;
    text-align: center;
}

.car-option-info .car-category {
    display: block;
    font-size: 0.6rem;
    color: var(--color-accent-marsala);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.car-option-info .car-name {
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--color-text-primary);
    font-weight: 500;
    margin-bottom: 6px;
}

.car-specs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 6px;
}

.car-specs span {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 0.7rem;
    color: var(--color-text-secondary);
}

.car-specs svg {
    width: 12px;
    height: 12px;
    color: var(--color-text-muted);
}

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

.car-price strong {
    color: var(--color-accent-green);
    font-size: 0.85rem;
}

.btn-select-car {
    display: block;
    width: calc(100% - 16px);
    margin: 0 8px 8px;
    padding: 7px;
    background: var(--color-accent-green);
    color: var(--color-text-primary);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-select-car:hover {
    background: var(--color-accent-green-hover);
}

/* Confirmation Content (Step 3) */
.confirmation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.booking-summary,
.selected-vehicle {
    background: var(--color-input-bg);
    border-radius: 6px;
    padding: 15px;
}

.booking-summary h4,
.selected-vehicle h4,
.confirmation-form h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--color-text-primary);
    font-weight: 500;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--color-border);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 0.8rem;
}

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

.summary-value {
    color: var(--color-text-primary);
    font-weight: 500;
}

/* Selected Vehicle Card */
.selected-vehicle-card {
    display: flex;
    gap: 12px;
    align-items: center;
}

.selected-vehicle-card img {
    width: 100px;
    height: 65px;
    object-fit: cover;
    border-radius: 4px;
}

.selected-vehicle-info .car-category {
    display: block;
    font-size: 0.65rem;
    color: var(--color-accent-marsala);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.selected-vehicle-info h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--color-text-primary);
    font-weight: 500;
    margin: 0;
    padding: 0;
    border: none;
}

/* Confirmation Form */
.confirmation-form {
    grid-column: 1 / -1;
    background: var(--color-input-bg);
    border-radius: 6px;
    padding: 15px;
}

.confirmation-form .form-row {
    margin-bottom: 12px;
}

.confirmation-form .form-group > label {
    font-size: 0.75rem;
    color: var(--color-text-secondary);
    margin-bottom: 4px;
}

.confirmation-form input,
.confirmation-form textarea {
    width: 100%;
    padding: 10px 12px;
    background-color: var(--color-bg-secondary);
    border: 1px solid transparent;
    border-radius: 4px;
    color: var(--color-text-primary);
    font-size: 0.875rem;
    transition: border-color 0.3s ease;
}

.confirmation-form input:focus,
.confirmation-form textarea:focus {
    outline: none;
    border-color: var(--color-accent-marsala);
}

.confirmation-form input::placeholder,
.confirmation-form textarea::placeholder {
    color: var(--color-text-muted);
}

.btn-large {
    width: 100%;
    padding: 14px;
    font-size: 0.9rem;
}

/* Booking Success Screen */
.booking-success {
    text-align: center;
    padding: 40px 20px;
}

.booking-success .success-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--color-accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-success .success-icon svg {
    width: 36px;
    height: 36px;
    color: var(--color-text-primary);
}

.booking-success h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-text-primary);
    margin-bottom: 10px;
}

.booking-success p {
    color: var(--color-text-secondary);
    margin-bottom: 10px;
}

.booking-success .btn {
    margin-top: 20px;
}

/* ========================================
   SECTIONS
   ======================================== */

.section {
    padding: var(--section-padding) 0;
}

.section-title {
    font-size: var(--text-section-title);
    text-align: center;
    margin-bottom: 15px;
}

.section-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-accent-marsala), transparent);
    margin: 0 auto 50px;
}

/* ========================================
   FLEET SECTION
   ======================================== */

.fleet {
    background-color: var(--color-bg-primary);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.fleet-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: linear-gradient(145deg, var(--color-bg-secondary) 0%, rgba(20, 20, 20, 1) 100%);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s ease;
}

.fleet-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(139, 41, 66, 0.3);
}

.fleet-card-image {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.fleet-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(26, 26, 26, 1) 0%, transparent 100%);
    pointer-events: none;
}

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

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

.fleet-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    margin-top: -30px;
    position: relative;
    z-index: 1;
}

.fleet-card-category {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-accent-marsala);
    margin-bottom: 6px;
}

.fleet-card-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 12px;
    line-height: 1.3;
    color: var(--color-text-primary);
}

.fleet-card-specs {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.spec {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--color-text-secondary);
}

.spec svg {
    width: 16px;
    height: 16px;
    color: var(--color-accent-marsala);
    opacity: 0.8;
}

.btn-card {
    align-self: flex-start;
    padding: 10px 24px;
    font-size: 0.75rem;
    margin-top: auto;
}

/* ========================================
   BANNER SECTION
   ======================================== */

.banner {
    background-color: var(--color-accent-marsala);
    padding: 60px 20px;
    text-align: center;
}

.banner .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.banner-text {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 400;
    font-style: italic;
    color: var(--color-text-primary);
    text-align: center;
    line-height: 1.5;
}

.banner-text em {
    color: var(--color-text-primary);
    font-weight: 500;
}

.banner .btn {
    margin-top: 20px;
}

/* ========================================
   BENEFITS SECTION
   ======================================== */

.benefits {
    background-color: var(--color-bg-secondary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px;
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.6) 0%, rgba(20, 20, 20, 0.4) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: rgba(139, 41, 66, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border: 2px solid var(--color-accent-marsala);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.benefit-icon svg {
    width: 26px;
    height: 26px;
    color: var(--color-accent-marsala);
    transition: color 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background-color: var(--color-accent-marsala);
}

.benefit-card:hover .benefit-icon svg {
    color: var(--color-text-primary);
}

.benefit-content {
    flex: 1;
}

.benefit-title {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--color-text-primary);
}

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

/* ========================================
   DESTINATIONS SECTION
   ======================================== */

.destinations {
    background-color: var(--color-bg-primary);
}

/* ========================================
   ABOUT HOME SECTION
   ======================================== */

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

.about-home-content .section-title {
    text-align: left;
}

.section-divider-left {
    margin: 0 0 30px 0;
}

.about-home-content p {
    font-size: var(--text-body);
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: 20px;
}

.about-home-content .btn {
    margin-top: 10px;
}

.about-home-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.stat-item {
    background: var(--color-bg-secondary);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--color-border);
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-accent-marsala);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: var(--text-small);
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   FAQ HOME SECTION
   ======================================== */

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-bg-primary);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    color: var(--color-text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(139, 41, 66, 0.1);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
        padding: 10px 0px 0px;
    font-size: var(--text-small);
    line-height: 1.7;
    color: var(--color-text-secondary);
}

.faq-more {
    text-align: center;
    margin-top: 40px;
}

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

.footer {
    background-color: #0d0d0d;
    padding: 80px 0 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr 2fr 1.2fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Footer Links Row (Quick Links + Company) */
.footer-links-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* Footer Brand */
.footer-brand {
    padding-right: 20px;
}

.footer-logo {
    display: inline-block;
}

.footer-logo-img {
    height: 36px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-logo-img:hover {
    opacity: 1;
}

.footer-tagline {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-top: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

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

.social-link svg {
    width: 18px;
    height: 18px;
    color: var(--color-text-secondary);
    transition: color 0.3s ease;
}

.social-link:hover {
    background-color: var(--color-accent-marsala);
    border-color: var(--color-accent-marsala);
    transform: translateY(-2px);
}

.social-link:hover svg {
    color: var(--color-text-primary);
}

/* Footer Column */
.footer-column {
    min-width: 0;
}

.footer-title {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    color: var(--color-text-primary);
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-accent-marsala);
}

/* Footer Destinations Grid */
.footer-destinations {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 30px;
}

.footer-country {
    min-width: 0;
}

.country-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-accent-marsala);
    margin-bottom: 10px;
}

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

.footer-list a {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    transition: all 0.3s ease;
}

.footer-list a:hover {
    color: var(--color-text-primary);
    padding-left: 5px;
}

/* Footer Contact List with Icons */
.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-contact-list svg {
    width: 18px;
    height: 18px;
    color: var(--color-accent-marsala);
    flex-shrink: 0;
}

.footer-contact-list a,
.footer-contact-list span {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    transition: color 0.3s ease;
}

.footer-contact-list a:hover {
    color: var(--color-text-primary);
    padding-left: 0;
}

/* Footer CTA Button */
.btn-footer-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    margin-top: 20px;
    background-color: var(--color-accent-green);
    color: var(--color-text-primary);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-footer-cta:hover {
    background-color: var(--color-accent-green-hover);
    transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0;
    gap: 20px;
}

.footer-bottom-left,
.footer-bottom-right {
    flex: 1;
}

.footer-bottom-center {
    flex: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-bottom-right {
    text-align: right;
}

.footer-copyright {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.footer-made {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

/* Payment Icons */
.payment-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
}

.payment-icon {
    width: 44px;
    height: 28px;
    border-radius: 3px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.payment-icon:hover {
    opacity: 1;
}

.payment-security {
    font-size: 0.6875rem;
    color: var(--color-text-muted);
    text-align: center;
}

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

.picker-modal {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.picker-modal.active {
    opacity: 1;
    visibility: visible;
}

.picker-container {
    background-color: var(--color-bg-secondary);
    border-radius: 8px;
    padding: 25px;
    border: 1px solid var(--color-border);
    max-width: 95vw;
}

/* Date Picker */
.datepicker-container {
    width: 600px;
}

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

.picker-nav {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-input-bg);
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.picker-nav svg {
    width: 20px;
    height: 20px;
    color: var(--color-text-secondary);
}

.picker-nav:hover {
    background-color: var(--color-accent-marsala);
}

.picker-nav:hover svg {
    color: var(--color-text-primary);
}

.datepicker-months {
    display: flex;
    gap: 80px;
}

.month-title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    color: var(--color-text-primary);
}

.datepicker-calendars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.calendar {
    width: 100%;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-bottom: 10px;
}

.weekday {
    text-align: center;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    padding: 5px;
}

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

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-small);
    color: var(--color-text-secondary);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.calendar-day:hover:not(.disabled):not(.selected) {
    background-color: var(--color-accent-marsala);
    color: var(--color-text-primary);
}

.calendar-day.disabled {
    color: var(--color-text-muted);
    opacity: 0.4;
    cursor: not-allowed;
}

.calendar-day.selected {
    background-color: var(--color-accent-green);
    color: var(--color-text-primary);
}

.calendar-day.today {
    border: 1px solid var(--color-accent-marsala);
}

/* Time Picker */
.timepicker-container {
    width: 320px;
}

.timepicker-columns {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.timepicker-title {
    font-family: var(--font-body);
    font-size: var(--text-small);
    font-weight: 500;
    color: var(--color-text-secondary);
    margin-bottom: 12px;
    text-align: center;
}

.timepicker-grid {
    display: grid;
    gap: 6px;
}

.hours-grid {
    grid-template-columns: repeat(4, 1fr);
}

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

.time-option {
    padding: 10px 8px;
    text-align: center;
    font-size: var(--text-small);
    color: var(--color-text-secondary);
    background-color: var(--color-input-bg);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.time-option:hover:not(.selected) {
    background-color: var(--color-border);
}

.hours-grid .time-option.selected {
    border: 2px solid var(--color-accent-marsala);
    color: var(--color-text-primary);
}

.minutes-grid .time-option.selected {
    background-color: var(--color-accent-green);
    color: var(--color-text-primary);
}

.btn-picker-ok {
    width: 100%;
    padding: 12px;
    background-color: var(--color-accent-green);
    color: var(--color-text-primary);
    font-weight: 500;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-picker-ok:hover {
    background-color: var(--color-accent-green-hover);
}

/* ========================================
   UTILITIES
   ======================================== */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ========================================
   PRIVACY POLICY MODAL
   ======================================== */

.privacy-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

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

.privacy-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

.privacy-modal-container {
    position: relative;
    background: var(--color-bg-secondary);
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    max-height: 85vh;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--color-border);
}

.privacy-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(139, 41, 66, 0.3);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.privacy-modal-close svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-text-primary);
}

.privacy-modal-close:hover {
    background: var(--color-accent-marsala);
    transform: rotate(90deg);
}

.privacy-modal-content {
    padding: 40px;
    overflow-y: auto;
    max-height: 85vh;
}

.privacy-modal-content h1 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-text-primary);
    margin-bottom: 10px;
    text-align: center;
}

.privacy-modal-content h1 em {
    color: var(--color-accent-marsala);
    font-style: italic;
}

.privacy-modal-content h2 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--color-text-primary);
    margin-top: 25px;
    margin-bottom: 12px;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 8px;
}

.privacy-modal-content h3 {
    font-size: 1rem;
    color: var(--color-accent-marsala);
    margin-top: 15px;
    margin-bottom: 8px;
}

.privacy-modal-content p {
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.privacy-modal-content ul {
    color: var(--color-text-secondary);
    margin-left: 20px;
    margin-bottom: 15px;
}

.privacy-modal-content ul li {
    margin-bottom: 6px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.privacy-modal-content strong {
    color: var(--color-text-primary);
}

.privacy-modal-loading {
    text-align: center;
    color: var(--color-text-secondary);
    padding: 60px 20px;
    font-size: 1rem;
}

.privacy-modal-error {
    text-align: center;
    color: var(--color-accent-marsala);
    padding: 60px 20px;
    font-size: 1rem;
}

.privacy-modal-error a {
    color: var(--color-accent-green);
    text-decoration: underline;
}

.privacy-modal-link {
    color: var(--color-accent-marsala) !important;
    text-decoration: underline;
}

.privacy-modal-link:hover {
    color: var(--color-accent-green) !important;
}

/* Modal responsive */
@media (max-width: 768px) {
    .privacy-modal-container {
        width: 95%;
        max-height: 90vh;
        border-radius: 8px;
    }

    .privacy-modal-content {
        padding: 25px 20px;
        max-height: 90vh;
    }

    .privacy-modal-content h1 {
        font-size: 1.5rem;
    }

    .privacy-modal-content h2 {
        font-size: 1.1rem;
    }

    .privacy-modal-close {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
    }
}

/* ========================================
   COOKIE CONSENT BAR
======================================== */

.cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-bg-primary);
    border-top: 1px solid var(--color-border);
    padding: 15px 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-bar.visible {
    transform: translateY(0);
}

.cookie-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-bar-text {
    color: var(--color-text-secondary);
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-bar-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.cookie-bar-link {
    color: var(--color-accent-marsala);
    font-size: 0.875rem;
    text-decoration: underline;
    white-space: nowrap;
}

.cookie-bar-link:hover {
    color: var(--color-accent-green);
}

.cookie-bar-btn {
    background: var(--color-accent-marsala);
    color: var(--color-text-primary);
    border: none;
    padding: 10px 25px;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.cookie-bar-btn:hover {
    background: var(--color-accent-green);
}

@media (max-width: 768px) {
    .cookie-bar {
        padding: 12px 15px;
    }

    .cookie-bar-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .cookie-bar-text {
        font-size: 0.8rem;
    }

    .cookie-bar-actions {
        gap: 12px;
    }

    .cookie-bar-btn {
        padding: 8px 20px;
    }
}
