:root {
    --primary: #1a4d3e;
    --primary-dark: #0f3b2c;
    --primary-light: #2c7a4d;
    --secondary: #d97706;
    --secondary-dark: #b45309;
    --accent: #f59e0b;
    --light: #f3f4f6;
    --dark: #111827;
    --gray: #6b7280;
    --gray-light: #9ca3af;
    --white: #ffffff;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --radius: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
}

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

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.5;
    color: var(--dark);
    background: var(--light);
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Top Bar Switcher (only currency) */
.top-bar-switcher {
    background: var(--white);
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 101;
}

.switcher-container {
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.currency-switcher {
    display: flex;
    gap: 0.5rem;
}

.currency-btn {
    background: transparent;
    border: 1px solid #e2e8f0;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    color: var(--gray);
    cursor: pointer;
    font-size: 0.75rem;
    transition: all 0.2s ease;
}

.currency-btn:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}

.currency-btn.active {
    background: var(--secondary);
    border-color: var(--secondary);
    color: white;
}

/* Header */
header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 45px;
    z-index: 100;
    padding: 0.75rem 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

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

.logo-area img {
    height: 50px;
    transition: transform 0.3s ease;
}

.logo-area img:hover {
    transform: scale(1.05);
}

.logo-area h1 {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo-area h1 span {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
}

nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
}

nav ul li a {
    text-decoration: none;
    color: var(--gray);
    font-weight: 600;
    padding: 0.5rem 0;
    transition: 0.2s;
    border-bottom: 2px solid transparent;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--primary);
    border-bottom-color: var(--secondary);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: white;
}

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

.btn-block {
    width: 100%;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-tag {
    display: inline-block;
    background: rgba(217, 119, 6, 0.1);
    color: var(--secondary);
    padding: 0.25rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--dark), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-header p {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
    overflow: hidden;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 59, 44, 0.85), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 4rem 0;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
}

.hero h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
}

.stat-label {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Features Section */
.about {
    padding: 5rem 0;
    background: var(--white);
}

.features {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.feature {
    flex: 1;
    min-width: 240px;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.05);
}

.feature:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature h3 {
    margin-bottom: 0.75rem;
    color: var(--primary);
    font-size: 1.2rem;
}

.feature p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Rules Section */
.rules {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    padding: 5rem 0;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.rule-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.05);
}

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

.rule-card i {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.rule-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1rem;
    font-weight: 700;
}

.rule-card p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.5;
}

.contract-note {
    margin-top: 2rem;
    background: rgba(217, 119, 6, 0.1);
    padding: 1rem;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contract-note i {
    color: var(--secondary);
    font-size: 1.2rem;
}

.contract-note p {
    font-size: 0.8rem;
    color: var(--gray);
}

/* Steps Section */
.reservation-info {
    background: var(--white);
    padding: 5rem 0;
}

.steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.step {
    flex: 1;
    min-width: 220px;
    text-align: center;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1rem;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: rgba(26, 77, 62, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.step-icon i {
    font-size: 1.8rem;
    color: var(--primary);
}

.step h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.step p {
    font-size: 0.85rem;
    color: var(--gray);
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 5rem 0;
    color: white;
}

.testimonials .section-header h2 {
    color: white;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
}

.testimonials .section-tag {
    background: rgba(255,255,255,0.2);
    color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
}

.testimonial-stars {
    color: var(--secondary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    font-size: 0.85rem;
    opacity: 0.9;
}

.testimonial-date {
    font-size: 0.7rem;
    opacity: 0.6;
    margin-top: 0.5rem;
}

/* Add Review Form */
.add-review {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: var(--radius-xl);
    max-width: 600px;
    margin: 0 auto;
}

.add-review h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.add-review .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.add-review input,
.add-review select,
.add-review textarea {
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-radius: var(--radius);
    background: rgba(255,255,255,0.9);
    font-family: inherit;
    font-size: 0.9rem;
}

.add-review textarea {
    resize: vertical;
    margin-bottom: 1rem;
}

.add-review input:focus,
.add-review select:focus,
.add-review textarea:focus {
    outline: none;
    background: white;
    box-shadow: 0 0 0 2px var(--secondary);
}

.add-review .btn {
    width: 100%;
}

/* Cars Grid */
.cars {
    padding: 5rem 0;
    background: var(--light);
}

.cars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.car-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

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

.car-images {
    position: relative;
    height: 220px;
    background: var(--light);
    overflow: hidden;
}

.car-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
    transition: transform 0.3s ease;
}

.car-images img.active {
    display: block;
}

.car-card:hover .car-images img.active {
    transform: scale(1.05);
}

.car-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
    z-index: 2;
}

.car-nav:hover {
    background: var(--secondary);
}

.car-nav.prev { left: 10px; }
.car-nav.next { right: 10px; }

.car-info {
    padding: 1.5rem;
}

.car-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
    color: var(--dark);
    font-weight: 700;
}

.car-info .brand {
    color: var(--gray);
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.car-info .price {
    font-weight: 700;
    color: var(--secondary);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.select-car-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    padding: 0.7rem;
    width: 100%;
    border-radius: 2rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

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

/* Form Wrapper */
.form-wrapper {
    max-width: 650px;
    margin: 0 auto;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.form-wrapper h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

/* Forms */
.reservation-form, .transfer-form {
    padding: 5rem 0;
    background: var(--light);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: var(--radius);
    font-size: 0.9rem;
    transition: 0.2s;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
}

.info-text {
    display: block;
    font-size: 0.7rem;
    color: var(--gray);
    margin-top: 0.25rem;
}

.info-box {
    background: var(--light);
    padding: 0.75rem;
    border-radius: var(--radius);
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
}

/* Description Card */
.car-description-card {
    margin-bottom: 1.5rem;
}

.description-card {
    background: #fef9e8;
    border-left: 4px solid var(--secondary);
    padding: 1rem;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.description-card i {
    color: var(--secondary);
    font-size: 1.2rem;
}

/* Price Breakdown */
.price-breakdown {
    background: var(--light);
    padding: 1rem;
    border-radius: var(--radius);
    margin-top: 0.5rem;
}

.price-line {
    font-size: 0.85rem;
    padding: 0.25rem 0;
    color: var(--gray);
}

.price-line.total {
    font-weight: bold;
    color: var(--primary);
    font-size: 1rem;
    border-top: 1px solid #e5e7eb;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
}

/* Flatpickr Customization */
.flatpickr-day.disabled,
.flatpickr-day.disabled:hover {
    background: #fee2e2 !important;
    color: #dc2626 !important;
    text-decoration: line-through;
    opacity: 0.7;
}

.flatpickr-day.inRange,
.flatpickr-day.prevMonthDay.inRange,
.flatpickr-day.nextMonthDay.inRange {
    background: #fef3c7 !important;
    border-color: #fef3c7 !important;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 5rem 0;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-content p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer - Light Version */
footer {
    background: #f8fafc;
    color: var(--dark);
    padding: 3rem 0 1rem;
    border-top: 1px solid #e2e8f0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 40px;
}

.footer-logo h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
}

.footer-col p {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: var(--gray);
}

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
}

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

.social-links a {
    color: var(--gray);
    font-size: 1.2rem;
    transition: 0.2s;
    width: 36px;
    height: 36px;
    background: #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.footer-bottom p {
    font-size: 0.7rem;
    opacity: 0.6;
    color: var(--gray);
}

/* Loading & Messages */
.loading-reviews, .no-cars, .error-msg {
    text-align: center;
    padding: 2rem;
    color: var(--gray);
}

/* Responsive */
@media (max-width: 992px) {
    .hero h2 {
        font-size: 2.2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .top-bar-switcher {
        position: relative;
        top: 0;
    }
    
    header {
        top: 0;
    }
    
    .menu-toggle {
        display: block;
    }
    
    nav {
        display: none;
        width: 100%;
        margin-top: 1rem;
    }
    
    nav.active {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .cars-grid {
        grid-template-columns: 1fr;
    }
    
    .steps {
        flex-direction: column;
        align-items: center;
    }
    
    .step {
        max-width: 280px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .add-review .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-wrapper {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 1.4rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 200px;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .feature {
        min-width: 100%;
    }
    
    .rule-card {
        min-width: 100%;
    }
}
/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 0.5rem;
}

.lang-btn {
    background: transparent;
    border: 1px solid #e2e8f0;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    color: var(--gray);
    cursor: pointer;
    font-size: 0.75rem;
    transition: all 0.2s ease;
}

.lang-btn:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}

.lang-btn.active {
    background: var(--secondary);
    border-color: var(--secondary);
    color: white;
}
/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 0.5rem;
}

.lang-btn {
    background: transparent;
    border: 1px solid #e2e8f0;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    color: var(--gray);
    cursor: pointer;
    font-size: 0.75rem;
    transition: all 0.2s ease;
}

.lang-btn:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}

.lang-btn.active {
    background: var(--secondary);
    border-color: var(--secondary);
    color: white;
}

/* Stili për të gjitha ditët e çaktivizuara (p.sh. datat e kaluara) */
.flatpickr-day.disabled,
.flatpickr-day.disabled:hover {
    background: #e5e7eb !important;
    color: #9ca3af !important;
    text-decoration: none;
    opacity: 0.6;
}

/* Stili specifik për ditët e zëna (rezervimet) - e kuqe */
.flatpickr-day.booked-day,
.flatpickr-day.booked-day:hover {
    background: #fee2e2 !important;
    color: #dc2626 !important;
    text-decoration: line-through;
    opacity: 1;
}
