/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Site Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    padding: 20px 0;
    transition: background-color 0.3s ease;
}

.site-header.scrolled {
    background-color: #000000;
    border-bottom: 2px solid #f59e0b;
}

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

.logo {
    display: inline-block;
    text-decoration: none;
}

.logo-text {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #f59e0b;
    padding: 4px 12px;
    letter-spacing: 1px;
    display: inline-block;
    position: relative;
    overflow: visible;
    animation: breathe 3s ease-in-out infinite;
}

.logo-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid #f59e0b;
    border-radius: 6px;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
    z-index: -1;
}

@keyframes breathe {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    transition: color 0.3s;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.menu-toggle:hover {
    color: #f59e0b;
}

.menu-toggle ion-icon {
    width: 32px;
    height: 32px;
    display: block;
}

.main-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.menu-link {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: opacity 0.3s;
}

.menu-link:hover {
    opacity: 0.8;
}

.menu-link.active {
    color: #f59e0b;
    opacity: 1;
}

section.active-section {
    position: relative;
}

section.active-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #f59e0b;
    z-index: 1;
}

/* Footer */
.site-footer {
    background: #000000;
    padding: 30px 0;
    border-top: 2px solid #f59e0b;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: #ffffff;
    font-size: 14px;
    margin: 0;
}

.footer-link {
    color: #f59e0b;
    text-decoration: underline;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

.footer-link:hover {
    opacity: 0.8;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slideshow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px, 50px 50px, 10px 10px, 10px 10px;
    background-position: 0 0, 0 0, 0 0, 0 0;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    padding: 20px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.btn-hero {
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    background: #f59e0b;
    color: #000000;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 30px;
}

.btn-hero:hover {
    background: #d97706;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

/* Section Styles */
section {
    padding: 0;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
}

.cars-section .section-title {
    color: #333333;
    position: relative;
    display: inline-block;
    padding: 12px 24px;
    margin: 0;
}

.cars-section .container {
    text-align: center;
}

.cars-section .section-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid #f59e0b;
    border-radius: 8px;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.cars-section .section-title-first-word {
    color: #f59e0b;
    position: relative;
    z-index: 1;
}

.reservation-section .section-title {
    color: #333333;
    position: relative;
    display: inline-block;
    padding: 12px 24px;
    margin: 0;
}

.reservation-section .section-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid #f59e0b;
    border-radius: 8px;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.reservation-section .section-title-first-word {
    color: #f59e0b;
    position: relative;
    z-index: 1;
}

.faq-section .section-title {
    color: #333333;
    position: relative;
    display: inline-block;
    padding: 12px 24px;
    margin: 0;
}

.faq-section .section-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid #f59e0b;
    border-radius: 8px;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.faq-section .section-title-first-word {
    color: #f59e0b;
    position: relative;
    z-index: 1;
}

.contact-section .section-title {
    color: #333333;
    position: relative;
    display: inline-block;
    padding: 12px 24px;
    margin: 0;
}

.contact-section .section-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid #f59e0b;
    border-radius: 8px;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.contact-section .section-title-first-word {
    color: #f59e0b;
    position: relative;
    z-index: 1;
}

.section-description {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

/* Cars Section */
.cars-section {
    background: #1a1a1a;
}

.section-title-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 0;
    background: #ffebcd;
    position: relative;
    z-index: 1;
    isolation: isolate;
    overflow: hidden;
}

.section-title-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: repeating-linear-gradient(
        -45deg,
        #000000 0px,
        #000000 10px,
        #f59e0b 10px,
        #f59e0b 20px
    );
    z-index: 2;
}

.section-title-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: repeating-linear-gradient(
        -45deg,
        #000000 0px,
        #000000 10px,
        #f59e0b 10px,
        #f59e0b 20px
    );
}

.section-block-wrapper {
    width: 100%;
    padding: 60px;
    background: #000000;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

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

.car-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.car-card-image {
    width: 100%;
    overflow: hidden;
    border-radius: 0;
    aspect-ratio: 16 / 9;
}

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

.car-card-image:hover img {
    transform: scale(1.1) rotate(2deg);
}

.car-card-title {
    background-color: #f59e0b;
    color: #000000;
    padding: 15px 20px;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.car-card-actions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background-color: #f59e0b;
}

.btn-car-card {
    padding: 15px 20px;
    font-size: 12px;
    font-weight: 600;
    background-color: #f59e0b;
    color: #000000;
    border: none;
    border-right: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-car-card:last-child {
    border-right: none;
}

.btn-text {
    display: block;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.btn-icon {
    width: 20px;
    height: 20px;
    position: absolute;
    opacity: 0;
    transform: translateY(-100%);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.btn-car-card:hover {
    background-color: #000000;
    color: #f59e0b;
}

.btn-car-card:hover .btn-text {
    opacity: 0;
    transform: translateY(-100%);
}

.btn-car-card:hover .btn-icon {
    opacity: 1;
    transform: translateY(0);
}

.cars-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.car-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.car-item-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    align-items: start;
}

.car-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.car-info-wrapper {
    background-color: transparent;
    border-radius: 0;
    padding: 0;
    height: 100%;
    display: flex;
    align-items: flex-start;
}

.car-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 1px;
    width: 100%;
    background-color: rgba(255,255,255,0.05);
    margin: 20px;
}

.car-spec-tile {
    padding: 20px;
    border-radius: 0;
    background-color: #000000;
    color: #ffffff;
    border: none;
}

.car-spec-tile-white {
    background-color: #000000;
    color: #ffffff;
}

.section-block-wrapper .car-spec-tile-white {
    border-right: 1px solid rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.section-block-wrapper .car-spec-tile-white:nth-child(4n) {
    border-right: none;
}

.section-block-wrapper .car-spec-tile-white:nth-child(n+5) {
    border-bottom: none;
}

.car-spec-content {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.car-spec-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.car-spec-tile-black {
    background-color: #000000;
    color: white;
}

.car-spec-tile-white {
    background-color: #000000;
    color: #ffffff;
    border: none;
}

.car-spec-text .car-spec-label {
    font-size: 12px;
    font-weight: 500;
    opacity: 0.8;
}

.car-spec-tile-black .car-spec-text .car-spec-label {
    color: white;
    opacity: 0.9;
}

.car-spec-tile-white .car-spec-text .car-spec-label {
    color: #ffffff;
}

.car-spec-text .car-spec-value {
    font-size: 14px;
    font-weight: 600;
}

.car-spec-tile-black .car-spec-text .car-spec-value {
    color: white;
}

.car-spec-tile-white .car-spec-text .car-spec-value {
    color: #ffffff;
}



.car-info-container {
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.car-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}


.car-price {
    margin-bottom: 25px;
    text-align: center;
}

.car-price-label {
    display: block;
    font-size: 12px;
    opacity: 0.9;
    margin-bottom: 6px;
}

.car-price-value {
    font-size: 32px;
    font-weight: 700;
    display: block;
}

.car-price-currency {
    font-size: 18px;
    font-weight: 500;
    margin-left: 4px;
}

.car-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-car-action {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid white;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    background: white;
    color: #000000;
}

.btn-car-action:hover {
    background: transparent;
    color: white;
}

.btn-car-action.btn-secondary {
    background: transparent;
    color: white;
}

.btn-car-action.btn-secondary:hover {
    background: white;
    color: #000000;
}

.car-item:last-child .btn-car-action {
    color: #dc2626;
}

.car-item:last-child .btn-car-action:hover {
    color: white;
}

.car-item:last-child .btn-car-action.btn-secondary:hover {
    color: #dc2626;
}

/* Reservation Section */
.reservation-section {
    background: #1a1a1a;
    text-align: center;
}

.reservation-section .section-description {
    color: #e0e0e0;
}

/* Reservation Steps */
.reservation-steps {
    display: grid;
    grid-template-columns: repeat(7, auto);
    justify-content: space-evenly;
    align-items: start;
    gap: 30px;
    margin: 0 auto 30px;
    width: 100%;
    max-width: 800px;
}

.reservation-step {
    display: grid;
    grid-template-rows: auto auto;
    justify-items: center;
    gap: 15px;
}

.step-icon-wrapper {
    width: 100px;
    height: 100px;
    background: #f59e0b;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    grid-row: 1;
}

.step-icon-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.step-icon {
    color: #000000;
    width: 40px;
    height: 40px;
}

.step-title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    text-align: center;
    max-width: 150px;
    grid-row: 2;
}

.step-arrow {
    color: #f59e0b;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
}

.arrow-icon {
    width: 32px;
    height: 32px;
    color: #f59e0b;
}

@media (max-width: 767px) {
    .reservation-steps {
        grid-template-columns: auto;
        grid-template-rows: auto auto auto auto auto;
        gap: 15px;
    }
    
    .reservation-step {
        grid-column: 1;
    }
    
    .reservation-step:nth-child(1) {
        grid-row: 1;
    }
    
    .reservation-step:nth-child(3) {
        grid-row: 3;
    }
    
    .reservation-step:nth-child(5) {
        grid-row: 5;
    }
    
    .step-arrow {
        grid-column: 1;
        height: auto;
    }
    
    .step-arrow:nth-child(2) {
        grid-row: 2;
    }
    
    .step-arrow:nth-child(4) {
        grid-row: 4;
    }
    
    .arrow-icon {
        transform: rotate(90deg);
    }
    
    .step-icon-wrapper {
        width: 80px;
        height: 80px;
    }
    
    .step-icon {
        width: 32px;
        height: 32px;
    }
    
    .step-title {
        font-size: 14px;
        max-width: 120px;
    }
}

.btn-primary {
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #5568d3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* FAQ Section */
.faq-section {
    background: #1a1a1a;
}

.faq-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
}

.faq-item {
    margin-bottom: 0;
    overflow: hidden;
}

.faq-question {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    padding: 15px 20px;
    background: #f59e0b;
    color: #000000;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #d97706;
}

.faq-question-text {
    flex: 1;
}

.faq-chevron {
    width: 24px;
    height: 24px;
    color: #000000;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-item.active .faq-chevron {
    transform: rotate(90deg);
}

.faq-item.active .faq-question {
    border-radius: 12px 12px 0 0;
}

.faq-answer-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #ffebcd;
    border-radius: 0 0 12px 12px;
}

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

.faq-answer {
    font-size: 16px;
    color: #000000;
    line-height: 1.8;
    padding: 20px;
    margin: 0;
}

/* Contact Section */
.contact-section {
    background: #1a1a1a;
}

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

.contact-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

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

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-icon-wrapper {
    width: 50px;
    height: 50px;
    background: #f59e0b;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon {
    width: 24px;
    height: 24px;
    color: #000000;
}

.contact-text {
    font-size: 16px;
    color: #ffffff;
    line-height: 1.6;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-main-text {
    line-height: 1.4;
}

.contact-sub-text {
    font-size: 14px;
    color: #b0b0b0;
    line-height: 1.4;
}

.contact-text strong {
    color: #f59e0b;
    font-weight: 600;
}

.business-hours h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hours-day {
    font-size: 16px;
    font-weight: 600;
    color: #f59e0b;
    flex: 1;
}

.hours-time {
    font-size: 16px;
    color: #ffffff;
    text-align: right;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

.modal {
    background: #1a1a1a;
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid #f59e0b;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.modal::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.modal-large {
    max-width: 900px;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 2px solid #f59e0b;
    background: #000000;
    border-radius: 12px 12px 0 0;
}

.modal-header h2 {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    color: #f59e0b;
}

/* Modal Summary Section */
.modal-summary {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: #1a1a1a;
    border-bottom: 2px solid #f59e0b;
    padding: 0;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-right: 1px solid rgba(245, 158, 11, 0.2);
    transition: background 0.3s;
}

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

.summary-item.active {
    background: rgba(245, 158, 11, 0.1);
}

.summary-icon-wrapper {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f59e0b;
    border-radius: 8px;
    flex-shrink: 0;
}

.summary-icon {
    font-size: 24px;
    color: #000000;
}

.summary-content {
    flex: 1;
    min-width: 0;
}

.summary-label {
    font-size: 12px;
    color: #999;
    margin-bottom: 4px;
    font-weight: 500;
}

.summary-value {
    font-size: 14px;
    color: #ffffff;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.summary-value.empty {
    color: #666;
    font-style: italic;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #ffffff;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s;
}

.modal-close:hover {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

.modal-body {
    padding: 24px;
    background: #1a1a1a;
    position: relative;
    overflow: hidden;
    transition: height 0.5s ease;
    min-height: 200px;
}

.terms-content {
    line-height: 1.8;
    color: #e0e0e0;
}

.terms-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #f59e0b;
    margin-top: 24px;
    margin-bottom: 12px;
}

.terms-content h3:first-of-type {
    margin-top: 0;
}

.terms-content p {
    color: #e0e0e0;
}

.terms-content ul {
    margin-bottom: 20px;
    padding-left: 24px;
    color: #e0e0e0;
}

.terms-content ul ul {
    margin-top: 8px;
    margin-bottom: 8px;
}

.terms-content li {
    margin-bottom: 8px;
}

.terms-content strong {
    color: #f59e0b;
    font-weight: 600;
}

.terms-contact {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 2px solid #f59e0b;
}

/* Technical Specs Styling */

.technical-specs {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.technical-specs .spec-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(245, 158, 11, 0.2);
    color: #e0e0e0;
    line-height: 1.6;
    align-items: center;
}

.technical-specs .spec-item:last-child {
    border-bottom: none;
}

.technical-specs .spec-item .spec-label {
    color: #f59e0b;
    font-weight: 600;
    min-width: 140px;
}

.technical-specs .spec-item .spec-value {
    color: #e0e0e0;
}

/* Technical Modal - same as Terms Modal */
#technicalModal .modal {
    display: flex;
    flex-direction: column;
    max-height: 90vh;
    min-height: 0vh;
    overflow: hidden;
}

#technicalModal .modal-header {
    flex-shrink: 0;
}

#technicalModal .modal-body {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    min-height: 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

#technicalModal .modal-body::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

#technicalModal .modal-actions {
    flex-shrink: 0;
}

/* Pricing Modal Styling */
.pricing-group {
    margin-bottom: 24px;
    min-height: 0;
}

.pricing-group:last-child {
    margin-bottom: 0;
}

.pricing-group-title {
    font-size: 16px;
    font-weight: 600;
    color: #f59e0b;
    margin-bottom: 12px;
    margin-top: 20px;
    text-transform: uppercase;
}

.pricing-group-title:first-child {
    margin-top: 0;
}

.pricing-items {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-height: 0;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(245, 158, 11, 0.2);
    color: #e0e0e0;
    line-height: 1.6;
}

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

.pricing-item-name {
    color: #333;
    font-size: 13px;
    flex: 1;
}

.pricing-item-price {
    color: #f59e0b;
    font-weight: 600;
    font-size: 13px;
    white-space: nowrap;
    margin-left: 16px;
    text-shadow: 1px 0px 1px rgba(0, 0, 0, 0.5);
}

/* Pricing Modal - same as Terms Modal */
#pricingModal .modal {
    display: flex;
    flex-direction: column;
    max-height: 90vh;
    min-height: 0vh;
    overflow: hidden;
}

#pricingModal .modal-header {
    flex-shrink: 0;
}

#pricingModal .modal-body {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    min-height: 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

#pricingModal .modal-body::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

#pricingModal .modal-actions {
    flex-shrink: 0;
}

.terms-contact h3 {
    margin-top: 0;
    color: #f59e0b;
}

.terms-contact p {
    margin-bottom: 8px;
    color: #e0e0e0;
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding: 24px;
    border-top: 2px solid #f59e0b;
    background: #000000;
    border-radius: 0 0 12px 12px;
}

.btn-secondary {
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    background: #f0f0f0;
    color: #333;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #e0e0e0;
}

/* Secondary button in modals - yellow theme */
.modal-actions .btn-secondary {
    background: #f59e0b;
    color: #000000;
    font-weight: 600;
}

.modal-actions .btn-secondary:hover {
    background: #fbbf24;
    color: #000000;
}

#termsModal .btn-secondary {
    background: #f59e0b;
    color: #000000;
    font-weight: 600;
}

#termsModal .btn-secondary:hover {
    background: #fbbf24;
    color: #000000;
}

/* Terms Modal - Fixed header and footer with scrollable body */
#termsModal .modal {
    display: flex;
    flex-direction: column;
    max-height: 90vh;
    height: 90vh;
    overflow: hidden;
}

#termsModal .modal-header {
    flex-shrink: 0;
}

#termsModal .modal-body {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    min-height: 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

#termsModal .modal-body::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

#termsModal .modal-actions {
    flex-shrink: 0;
}

/* Calendar Availability Modal */
#calendarModal .modal {
    display: flex;
    flex-direction: column;
    max-height: 90vh;
    min-height: 0vh;
    overflow: hidden;
    width: fit-content;
    max-width: 90vw;
}

#calendarModal .modal-header {
    flex-shrink: 0;
}

#calendarModal .modal-body {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    min-height: 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

#calendarModal .modal-body::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

#calendarModal .modal-actions {
    flex-shrink: 0;
}

.calendar-availability-container {
    width: fit-content;
}

.calendar-service-selector {
    margin-bottom: 24px;
}

.calendar-service-selector label {
    display: block;
    margin-bottom: 8px;
    color: #f59e0b;
    font-weight: 600;
    font-size: 14px;
}

.calendar-service-select {
    width: 100%;
    padding: 12px 40px 12px 12px;
    border: 2px solid #f59e0b;
    border-radius: 8px;
    background: #1a1a1a;
    color: #e0e0e0;
    font-size: 14px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23f59e0b' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 12px;
}

.calendar-service-select:focus {
    outline: none;
    border-color: #fbbf24;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}

.availability-calendar-wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.availability-month-calendar {
    width: 100%;
}

.availability-month-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    gap: 16px;
}

.availability-month-header h3 {
    color: #f59e0b;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    flex: 1;
    text-align: center;
}

.calendar-nav-btn {
    background: #f59e0b;
    color: #000;
    border: none;
    border-radius: 6px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.calendar-nav-btn:hover:not(:disabled) {
    background: #fbbf24;
}

.calendar-nav-btn:disabled {
    background: #666;
    color: #999;
    cursor: not-allowed;
    opacity: 0.5;
}

.calendar-nav-btn ion-icon {
    font-size: 20px;
}

.availability-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 8px;
}

.availability-weekday {
    text-align: center;
    font-weight: 600;
    font-size: 12px;
    color: #f59e0b;
    padding: 8px 0;
}

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

.availability-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: default;
    width: 100%;
    height: 44px;
}

.availability-day.outside-month {
    background: transparent;
    color: #333;
    border-color: #333;
}

.availability-day.unavailable {
    background: #f59e0b;
    color: #333;
    border-color: #333;
}

.availability-day.available {
    background: #fff;
    color: #333;
    border-color: #333;
}

.availability-day.today {
    border-color: #f59e0b !important;
    color: #f59e0b !important;
    font-weight: 600;
    background: #fff !important; /* White background always for today */
}

.availability-day.today.available {
    background: #fff !important;
}

.availability-day.today.unavailable {
    background: #fff !important; /* White background even if unavailable */
}

.calendar-legend {
    display: flex;
    gap: 24px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 2px solid rgba(245, 158, 11, 0.2);
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.legend-color {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    border: 2px solid #e0e0e0;
}

.legend-color.legend-available {
    background: #fff;
    border-color: #333;
}

.legend-color.legend-unavailable {
    background: #f59e0b;
    border-color: #333;
}

.legend-item span {
    color: #e0e0e0;
    font-size: 13px;
}

/* Calendar Availability Modal - Mobile Styles */
@media (max-width: 500px) {
    .technical-specs .spec-item {
        grid-template-columns: 1fr;
    }
    
    #calendarModal .modal {
        max-height: 100%;
    }
    
    #calendarModal .modal-header {
        padding-top: 16px;
        padding-bottom: 16px;
    }
    
    #calendarModal .modal-header h2 {
        font-size: 20px;
    }
    
    #calendarModal .modal-actions {
        display: none;
    }
    
    .calendar-service-select {
        font-size: 10px;
    }
    
    .availability-day {
        height: unset;
    }
    
    .availability-weekdays {
        grid-template-columns: repeat(7, 1fr);
        margin-bottom: 0px;
    }
    
    .calendar-legend {
        flex-wrap: unset;
    }
    
    .calendar-legend .legend-item span {
        font-size: 10px;
    }
    
    .legend-item {
        width: 100%;
    }
}

/* Form Styles */
.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 14px;
}

.modal-body .form-group label {
    color: #f59e0b;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
    background: #ffffff;
    color: #000000;
}

.form-control:focus {
    outline: none;
    border-color: #667eea;
}

.modal-body .form-control {
    background: #1a1a1a;
    border-color: #f59e0b;
    color: #ffffff;
}

.modal-body .form-control:focus {
    border-color: #fbbf24;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}

/* Modal Car Selection Cards */
.modal-cars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 16px;
}

.modal-car-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    background: #000000;
}

.modal-car-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
    border-color: #f59e0b;
}

.modal-car-card.selected {
    border-color: #f59e0b;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.3);
}

.modal-car-card-image {
    width: 100%;
    overflow: hidden;
    border-radius: 0;
    aspect-ratio: 16 / 9;
}

.modal-car-card-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.modal-car-card:hover .modal-car-card-image img {
    transform: scale(1.05);
}

.modal-car-card-title {
    background-color: #f59e0b;
    color: #000000;
    padding: 15px 20px;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
}

.modal-car-card.selected .modal-car-card-title {
    background-color: #000000;
    color: #f59e0b;
}

/* Selected Car Indicator */
.step-label-with-selection {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.selected-car-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    background: #f59e0b;
    border-radius: 8px;
    color: #000000;
    font-weight: 600;
    font-size: 14px;
}

.selected-car-image {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
}

.selected-car-name {
    white-space: nowrap;
}

/* Form Step Transitions - Carousel Effect */
.form-step {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px;
    box-sizing: border-box;
    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 0;
    transform: translateX(100%);
    pointer-events: none;
    visibility: hidden;
}

.form-step.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    position: relative;
    visibility: visible;
}

.form-step.slide-out {
    transform: translateX(-100%);
    opacity: 0;
    pointer-events: none;
}

.modal-cars-grid {
    transition: transform 0.5s ease, opacity 0.5s ease;
}

/* Availability Calendar */
.availability-calendar {
    background: #000000;
    border-radius: 8px;
    padding: 20px;
    margin-top: 16px;
}

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

.calendar-header h3 {
    margin: 0;
    color: #f59e0b;
    font-size: 18px;
    font-weight: 600;
}

.calendar-nav-btn {
    background: #f59e0b;
    color: #000000;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.calendar-grid {
    width: 100%;
}

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

.calendar-weekday {
    text-align: center;
    font-weight: 600;
    color: #f59e0b;
    font-size: 12px;
    padding: 8px;
}

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

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a1a;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    color: #ffffff;
    font-weight: 500;
    transition: all 0.2s;
    font-size: 14px;
}

.calendar-day.empty {
    background: transparent;
    cursor: default;
}

.calendar-day.past {
    opacity: 0.3;
    cursor: not-allowed;
}

.calendar-day.available {
    border-color: #f59e0b;
}

.calendar-day.available:hover {
    background: #f59e0b;
    color: #000000;
    transform: scale(1.1);
}

.calendar-day.occupied {
    background: #e74c3c;
    border-color: #c0392b;
    cursor: not-allowed;
    opacity: 0.6;
}

.calendar-day.selected {
    background: #f59e0b;
    color: #000000;
    border-color: #fbbf24;
    font-weight: 700;
    transform: scale(1.1);
}

/* Time Slots */
.time-slots-container {
    margin-top: 16px;
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 12px;
    margin-top: 12px;
}

.time-slot-btn {
    padding: 12px 16px;
    background: #1a1a1a;
    border: 2px solid #f59e0b;
    border-radius: 8px;
    color: #f59e0b;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
}

.time-slot-btn:hover {
    background: #f59e0b;
    color: #000000;
    transform: translateY(-2px);
}

.time-slot-btn.selected {
    background: #f59e0b;
    color: #000000;
    border-color: #fbbf24;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.3);
}

@media (max-width: 767px) {
    .modal-summary {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .summary-item:nth-child(2) {
        border-right: none;
    }
    
    .summary-item {
        padding: 12px 16px;
    }
    
    .summary-icon-wrapper {
        width: 32px;
        height: 32px;
    }
    
    .summary-icon {
        font-size: 20px;
    }
    
    .summary-label {
        font-size: 11px;
    }
    
    .summary-value {
        font-size: 12px;
    }
    
    .modal-cars-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .modal-car-card-title {
        font-size: 14px;
        padding: 12px 16px;
    }
    
    .calendar-day {
        font-size: 12px;
    }
    
    .time-slots-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 8px;
    }
    
    .time-slot-btn {
        padding: 10px 12px;
        font-size: 12px;
    }
}

.select-wrapper {
    position: relative;
}

/* Pricing Styles */
.pricing-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pricing-item {
    padding: 6px 12px;
    background: #ffebcd;
    border-radius: 8px;
    border-left: 4px solid #f59e0b;
    margin-bottom: 6px;
}

.pricing-item h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
}

.pricing-item p {
    font-size: 16px;
    color: #666;
    margin-bottom: 8px;
}

.pricing-price {
    font-size: 24px;
    font-weight: 700;
    color: #667eea;
    margin-top: 12px;
}

/* Mobile Menu Overlay */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 767px) {
    .site-header {
        padding: 20px;
    }
    
    .site-footer {
        padding: 20px;
    }
    
    .hero-section {
        height: 100vh;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .main-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #000000;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 24px 24px;
        gap: 0;
        transition: right 0.3s ease;
        z-index: 1000;
        border-left: 2px solid #f59e0b;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
    }
    
    .main-menu.active {
        right: 0;
    }
    
    .menu-link {
        width: 100%;
        padding: 16px 0;
        font-size: 16px;
        border-bottom: 1px solid rgba(245, 158, 11, 0.2);
    }
    
    .menu-link:last-child {
        border-bottom: none;
    }
    
    .menu-link:hover {
        color: #f59e0b;
        opacity: 1;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .cars-grid {
        grid-template-columns: 1fr;
    }
    
    .cars-list {
        grid-template-columns: 1fr;
    }
    
    .car-item {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .car-image-container {
        order: 1;
        min-height: 300px;
    }
    
    .car-info-container {
        order: 2;
        padding: 40px 24px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-item {
        align-items: flex-start;
        gap: 15px;
    }
    
    .contact-icon-wrapper {
        width: 45px;
        height: 45px;
    }
    
    .contact-icon {
        width: 20px;
        height: 20px;
    }
    
    .car-actions {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 18px;
    }
    
    .container {
        padding: 0;
    }
    

    
    .section-title-wrapper {
        padding: 30px 0;
    }
    
    .section-block-wrapper {
        padding: 30px 20px;
    }
    
    .faq-list {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .section-description {
        font-size: 14px;
    }
    
    .car-card-title {
        font-size: 14px;
    }
    
    .btn-car-card {
        padding: 8px 16px;
        font-size: 8px;
    }
    
    .btn-hero {
        margin-top: 0;
    }
    
    .faq-question-text {
        font-size: 12px;
    }
    
    .faq-answer {
        font-size: 12px;
    }
}

/* Tablet View (768px - 1199px) */
@media (min-width: 768px) and (max-width: 1199px) {
    .hero-section {
        height: 100vh;
    }
    
    .container {
        padding: 0;
    }
    
    .site-header {
        padding: 20px;
    }
    
    .site-footer {
        padding: 20px;
    }
    
    .section-block-wrapper {
        padding: 60px 20px;
    }
    
    .car-card-title {
        font-size: 14px;
    }
    
    .btn-car-card {
        padding: 12px 16px;
        font-size: 10px;
    }
    
    .btn-hero {
        margin-top: 0;
    }
    
    .faq-question-text {
        font-size: 10px;
    }
    
    .faq-answer {
        font-size: 10px;
    }
}

/* Desktop View (1200px and above) */
@media (min-width: 1200px) {
    .btn-hero {
        margin-top: 0;
    }
}

