/* Base styles */
body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

.toast {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: #22c55e; /* Modern green shade */
    color: #fff;
    text-align: center;
    border-radius: 8px; /* Rounded corners */
    padding: 2px 6px; /* Added padding for better spacing */
    position: fixed;
    z-index: 1000; /* Higher z-index to ensure visibility */
    left: 50%;
    bottom: 30px;
    font-size: 17px;
    white-space: nowrap;
}

.toast.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}


.toastt {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: red; /* Modern green shade */
    color: #fff;
    text-align: center;
    border-radius: 8px; /* Rounded corners */
    padding: 2px 6px; /* Added padding for better spacing */
    position: fixed;
    z-index: 1000; /* Higher z-index to ensure visibility */
    left: 50%;
    bottom: 30px;
    font-size: 17px;
    white-space: nowrap;
}

.toastt.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}


@-webkit-keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
}

@keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
}

/* Header & Navigation */
header {
    background: white;
    padding: 16px 32px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.nav-links a.active {
    color: #4285f4;
    border-bottom: 2px solid #4285f4;
}

/* Hero Section */
.hero {
    background-image: url('./header.jpg');
    background-size: cover;
    background-position: right;
    height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
}

.hero-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px;
    color: white;
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.hero h1 {
    font-size: 32px;
    margin-bottom: 8px;
}

.hero h2 {
    font-size: 48px;
    margin-bottom: 32px;
    text-align: center;
}

/* Form Section */
.form-section {
    padding: 4rem 2rem;
    max-width: 800px; /* Reduced from 1000px for better containment */
    margin: 0 auto;
}

.form-section h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2rem;
    color: #1e293b;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    margin: 0 auto 3rem;
    position: relative;
    max-width: 500px; /* Reduced for better proportion */
    padding: 0 1rem;
}

.progress-steps::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 15%;
    right: 15%;
    height: 2px;
    background: #e2e8f0;
    transform: translateY(-50%);
    z-index: 1;
}

.step {
    position: relative;
    z-index: 2;
    background-color: white;
    padding: 0 0.5rem;
}

.step-number {
    width: 35px;
    height: 35px;
    background: #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    color: #64748b;
    font-weight: 600;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background: #2563eb;
    color: white;
}

.step-label {
    color: #64748b;
    font-size: 0.875rem;
    font-weight: 500;
}

.form-step {
    display: none;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    max-width: 100%;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

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


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

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #1e293b;
}

/* Input Styles */
input, select, textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 0.95rem;
    background: #f8fafc;
    transition: all 0.3s ease;
}

input:focus, select:focus, textarea:focus {
    border-color: #2563eb;
    background: white;
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.radio_price_type {
    width: auto;
    margin-right: 0.5rem;
}

/* Form Group Spacing */
.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #1e293b;
    font-size: 0.95rem;
}

/* Price Options */
.price-options {
    max-width: 500px;
    margin: 0 auto 1.5rem;
}

.price-option {
    background: #f8fafc;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.price-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.price-input {
    max-width: 500px;
}

/* Form Navigation */
.form-nav {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
    padding: 0 1rem;
}

.next-btn, .back-btn, .submit-btn {
    min-width: 120px;
    text-align: center;
}

.next-btn, .back-btn, .submit-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.next-btn, .submit-btn {
    background: #2563eb;
    color: white;
}

.back-btn {
    background: #e2e8f0;
    color: #1e293b;
}

.next-btn:hover, .submit-btn:hover {
    background: #1d4ed8;
}

.back-btn:hover {
    background: #cbd5e1;
}

.hidden {
    display: none;
}

/* Success Page Styles */
.success-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.success-message {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #22c55e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 2rem;
}

.success-message h1 {
    color: #22c55e;
    margin-bottom: 1rem;
}

/* Add these new styles to your existing style.css file */

/* Page Header */
.page-header {
    background-color:white;
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin: 0;
}

/* Contact Section */
.contact-section {
    padding: 4rem 2rem;
    background: white;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2,
.contact-form h2 {
    margin-bottom: 2rem;
    font-size: 1.8rem;
    color: var(--text-color);
}

.contact-details {
    display: grid;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.contact-form form {
    display: grid;
    gap: 1.5rem;
}

/* About Section */
.about-section {
    padding: 4rem 2rem;
    background: white;
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
}

.about-content h2 {
    margin-bottom: 2rem;
    font-size: 1.8rem;
    color: var(--text-color);
}

.about-values {
    margin: 3rem 0;
}

.about-values h3,
.about-experience h3 {
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    color: var(--text-color);
}

.about-values ul {
    display: grid;
    gap: 1rem;
    list-style: none;
}

.about-values li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.about-values i {
    color: var(--primary-color);
}

/* Team Section */
.team-section {
    padding: 4rem 2rem;
    background: var(--light-bg);
}

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

.team-container h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.8rem;
}

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

.team-member {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.member-info {
    padding: 1.5rem;
}

.member-info h3 {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.member-role {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 500;
}

/* Legal Section */
.legal-section {
    padding: 4rem 2rem;
    background: white;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.legal-content h2 {
    margin: 2rem 0 1rem;
    font-size: 1.8rem;
    color: var(--text-color);
}

.legal-content h3 {
    margin: 1.5rem 0 1rem;
    font-size: 1.4rem;
    color: black;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.success-message p {
    color: #666;
    margin-bottom: 0.5rem;
}

.back-button {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.75rem 1.5rem;
    background-color: #2563eb;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.back-button:hover {
    background-color: #1d4ed8;
}

/* Car Form */
.car-form {
    background: white;
    padding: 32px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    max-width: 800px;
    position: absolute;
    margin-top: 25vh;
    min-width: 115vh;
}

.form-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 32px;
    position: relative;
}

.form-steps::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #eee;
    z-index: 1;
}

.step {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: white;
    border: 2px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.step.active {
    background: #4285f4;
    border-color: #4285f4;
    color: white;
}

.form-fields {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

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

.form-group label {
    margin-bottom: 8px;
    color: #333;
}

.form-group select,
.form-group input {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

/* Process Section */
.process {
    padding: 64px 32px;
    background: #f8f9fa;
}

.process h2 {
    text-align: center;
    margin-bottom: 48px;
    font-size: 32px;
    margin-top: 20vh;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(300px, 1fr)); /* Increased from 250px */
    gap: 32px;
    max-width: 1400px; /* Increased from 1200px to allow wider items */
    margin: 0 auto;
    padding: 0 20px; /* Added padding to prevent touching screen edges */
}

.process-item {
    background: white;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.process-item .icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.process-item h3 {
    margin-bottom: 16px;
    /* color: #4285f4; */
}

/* Benefits Section */
.benefits {
    padding: 64px 32px;
    background: white;
}

.benefits-content {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 64px;
    align-items: center;
}

.benefits-text {
    flex: 1;
}

.benefits-text h2 {
    font-size: 32px;
    margin-bottom: 32px;
}

.benefits-text ul {
    list-style: none;
    margin-bottom: 32px;
}

.benefits-text li {
    margin-bottom: 16px;
    font-size: 19.2px;
}

.benefits-image {
    flex: 1;
}

.benefits-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Buttons */
.btn-primary {
    background: #4285f4;
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
    grid-column: 1 / -1;
}

.btn-primary:hover {
    background: #3367d6;
}

.btn-secondary {
    background: transparent;
    color: #4285f4;
    border: 2px solid #4285f4;
    padding: 12px 32px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #4285f4;
    color: white;
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 2rem;
    background: white;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.8rem;
}

.testimonials-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    height: 200px;
}

.testimonial {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    text-align: center;
    padding: 2rem;
}

.testimonial.active {
    opacity: 1;
    visibility: visible;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stars {
    color: #fbbf24;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e2e8f0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: black;
    transform: scale(1.2);
}

/* Location Section */
.location {
    padding: 4rem 2rem;
    background: var(--light-bg);
}

.location h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.8rem;
}

.location-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
}

.location-info {
    display: grid;
    gap: 1rem;
}

.address-card,
.hours-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.location-icon,
.hours-icon {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.location-info h3 {
    color: black;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.location-info p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.9rem;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 400px;
}

/* Footer */
footer {
    background-color: #f8fafc; /* Very light blue-gray */
    color: #1e293b; /* Dark text for contrast */

    padding: 4rem 2rem 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(2, minmax(250px, 350px)); /* Fixed width range */
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center; /* Centers the grid columns */
}

.footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

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

.social-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.social-links a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* FAQ Section */
.faq {
    padding: 6rem 2rem;
    background: #f8fafc;
}

.faq h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.5rem;
    color: #1e293b;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
}

.faq-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-item summary {
    padding: 1.5rem;
    cursor: pointer;
    position: relative;
    font-weight: 500;
    list-style: none;
    color: #1e293b;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #2563eb;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-item p {
    padding: 0 1.5rem 1.5rem;
    color: #64748b;
    line-height: 1.6;
}

.page-header-logo {
    transform: scale(3);
    width: 100%;    /* Fill container width */
    max-width: 250px;  /* Don't get larger than this */
    height: auto;
    object-fit: contain;
    object-position: center;
}

.logo-image {
    transform: scale(3);
    width: 100%;    /* Fill container width */
    max-width: 40px;  /* Don't get larger than this */
    height: auto;
    object-fit: contain;
    object-position: center;
    margin-left: 5vh;
}

.icon i {
    color: #4285f4;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}

/* Cookie Consent Styles */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 9999;
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem;
}

.cookie-content h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: #1e293b;
}

.cookie-content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: #64748b;
}

.cookie-content a {
    color: #4285f4;
    text-decoration: none;
}

.cookie-content a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.g-recaptcha {
    margin: 20px 0;
}

@media (max-width: 768px) {
    .faq-item summary::after {
        margin-left: 2px;
    }
    .fq-item summary {
        padding: 1.8rem;
    }
    .page-header-logo {
        max-width: 130px;
    }
    .process {
        padding-top: 30vh;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        align-items: center; /* Center the nav links */
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        z-index: 1000;
        opacity: 0; /* Start with opacity 0 */
        transition: opacity 0.3s ease; /* Add transition for fade effect */
    }

    .page-header {
        padding: 2rem 1rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .about-container {
        padding: 1rem;
    }

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

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

    .nav-links.active {
        display: flex;
        opacity: 1;
        padding-bottom: 2vh;
    }

    .hamburger {
        display: block;
    }

    .hero {
        height: 40vh;
    display: flex;
    align-items: center;
    position: relative;
    background-position: 7% center;
    }

    .hero::before {
        background-size: cover;
    }

    .hero h1 {
        font-size: 24px;
    }

    .hero h2 {
        font-size: 32px;
        text-align: center;
    }

    .car-form {
        padding: 20px;
        margin: 27vh auto;
        min-width: auto;
        width: 90%;
    }

    .form-steps {
        padding: 0 5%;
    }

    .form-steps::before {
        left: 5%;
        right: 5%;
    }

    .form-nav {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .form-fields {
        grid-template-columns: 1fr;
    }

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

    .benefits-content {
        flex-direction: column;
    }

    .location-container {
        grid-template-columns: 1fr;
    }

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

    .contact-container {
        display: flex;
        flex-direction: column;
        padding: 1rem;
    }

    .contact-info,
    .contact-form {
        width: 100%;
        margin-bottom: 2rem;
    }

    .contact-details {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .map-container {
        margin-top: 2rem;
    }

    .about-values ul,
    .contact-details {
        padding-left: 0; /* Remove default padding */
    }

    .about-values li,
    .contact-item {
        display: flex;
        align-items: center; /* Align items vertically */
        gap: 1rem; /* Space between icon and text */
    }

    .about-values li i,
    .contact-item i {
        flex-shrink: 0; /* Prevent icon from shrinking */
    }

    .about-values li strong,
    .contact-item p {
        flex-grow: 1; /* Allow text to take up remaining space */
        text-align: left; /* Align text to the left */
    }

    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-content {
        padding: 1rem;
    }

    .form-group input[type="number"] {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .car-form {
        margin-top: 32vh;
    }

    .process h2 {
        margin-top: 32vh;
    }

    .contact-info h2,
    .contact-form h2 {
        font-size: 1.5rem;
    }

    .form-group label {
        font-size: 1rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: 0.9rem;
    }

    .about-values li,
    .contact-item {
        flex-direction: row; /* Stack icon and text vertically */
        align-items: flex-start; /* Align items to the start */
    }

    .about-values li i,
    .contact-item i {
        margin-bottom: 0.5rem; /* Space between icon and text */
    }

    .hero {
        height: 60vh;
       
    display: flex;
    align-items: center;
    position: relative;
    background-position: 7% center;
}

    .hero::before {
        background-size: cover;
    }

   
}

@media screen and (max-width: 400px) {
    .g-recaptcha {
        transform: scale(0.85);
        transform-origin: left center;
    }
}

.form-group input[type="number"] {
    width: 100px;
}

@media (max-width: 768px) {
    .form-group input[type="number"] {
        width: 100%;
    }
}

.error-message {
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

/* Remove these styles */
.form-group input:invalid,
.form-group textarea:invalid,
.form-group input:valid,
.form-group textarea:valid,
.form-group input:placeholder-shown,
.form-group textarea:placeholder-shown {
    border-color: #e2e8f0;
}

/* Add these new styles */
.form-group input.validated:invalid,
.form-group textarea.validated:invalid {
    border-color: #dc2626;
}

.form-group input.validated:valid,
.form-group textarea.validated:valid {
    border-color: #22c55e;
}

/* Admin Dashboard Styles */
.admin-dashboard {
    background-color: #f3f4f6;
    min-height: 100vh;
}

.admin-header {
    background: white;
    padding: 1.5rem 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.admin-header h1 {
    color: #1e293b;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.back-link {
    color: #4f46e5;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.back-link:hover {
    color: #4338ca;
}

.admin-filters {
    max-width: 1400px;
    margin: 2rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-button {
    padding: 0.75rem 1.5rem;
    border: 1px solid #e5e7eb;
    background: white;
    border-radius: 0.5rem;
    color: #4b5563;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-button:hover {
    background: #f9fafb;
    border-color: #d1d5db;
}

.filter-button.active {
    background: #4f46e5;
    border-color: #4f46e5;
    color: white;
}

.admin-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 2rem;
}

.car-requests {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 400px), 1fr));
}

.car-request-card {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.car-details h3 {
    color: #1e293b;
    font-size: 1.25rem;
    margin: 0 0 1rem;
}

.status {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.status.pending {
    background: #fef3c7;
    color: #92400e;
}

.status.approved {
    background: #dcfce7;
    color: #166534;
}

.status.rejected {
    background: #fee2e2;
    color: #991b1b;
}

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

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.detail-item .label {
    color: #6b7280;
    font-size: 0.875rem;
}

.detail-item .value {
    color: #1e293b;
    font-weight: 500;
}

.description {
    color: #4b5563;
    font-size: 0.875rem;
    line-height: 1.5;
}

.owner-info {
    border-top: 1px solid #e5e7eb;
    padding-top: 1.5rem;
}

.owner-info h4 {
    color: #1e293b;
    font-size: 1rem;
    margin: 0 0 1rem;
}

.owner-info p {
    color: #4b5563;
    margin: 0.25rem 0;
    font-size: 0.875rem;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.approve-button,
.reject-button {
    flex: 1;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

.approve-button {
    background: #4f46e5;
    color: white;
}

.approve-button:hover {
    background: #4338ca;
}

.reject-button {
    background: #fee2e2;
    color: #991b1b;
}

.reject-button:hover {
    background: #fecaca;
}

@media (max-width: 768px) {
    .admin-header {
        padding: 1rem;
    }

    .admin-filters {
        padding: 0 1rem;
        margin: 1rem auto;
    }

    .admin-main {
        padding: 0 1rem 1rem;
    }

    .car-requests {
        grid-template-columns: 1fr;
    }

    .filter-button {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }

    .action-buttons {
        flex-direction: column;
    }
}

/* CMS and Admin Styles */
:root {
    --primary-color: #4a6fdc;
    --primary-dark: #3d5cb8;
    --secondary-color: #34a853;
    --accent-color: #f6b026;
    --danger-color: #ea4335;
    --text-color: #333333;
    --light-text: #666666;
    --border-color: #dddddd;
    --light-bg: #f5f5f5;
    --white: #ffffff;
    --success-bg: #d4edda;
    --success-color: #155724;
    --error-bg: #f8d7da;
    --error-color: #721c24;
  }
  
  /* General Styles */
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: var(--light-bg);
  }
  
  a {
    color: var(--primary-color);
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  /* Admin Dashboard */
  .admin-dashboard-cms {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  
  .admin-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
  }
  
  .admin-header h1 {
    margin: 0;
    font-weight: 600;
    font-size: 1.5rem;
  }
  
  .admin-nav {
    display: flex;
    gap: 1rem;
  }
  
  /* Buttons */
  .btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--white);
    color: var(--primary-color);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s ease;
  }
  
  .btn:hover {
    background-color: var(--light-bg);
    text-decoration: none;
  }
  
  .btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-dark);
  }
  
  .btn-primary:hover {
    background-color: var(--primary-dark);
  }
  
  .btn-delete {
    background-color: var(--danger-color);
    color: var(--white);
    border-color: var(--danger-color);
  }
  
  .btn-delete:hover {
    background-color: #c62828;
  }
  
  .btn-edit {
    background-color: var(--accent-color);
    color: var(--text-color);
    border-color: var(--accent-color);
  }
  
  .btn-edit:hover {
    background-color: #e29900;
  }
  
  .btn-small {
    padding: 0.25rem 0.5rem;
    font-size: 0.8rem;
  }
  
  /* CMS Container */
  .cms-container {
    max-width: 1400px;
    margin: 1.5rem auto;
    background-color: var(--white);
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
  }
  
  /* Messages */
  .message {
    padding: 0.75rem 1rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
    border-left: 4px solid;
  }
  
  .success {
    background-color: var(--success-bg);
    color: var(--success-color);
    border-left-color: var(--secondary-color);
  }
  
  .error {
    background-color: var(--error-bg);
    color: var(--error-color);
    border-left-color: var(--danger-color);
  }
  
  /* Breadcrumbs */
  .breadcrumbs {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--light-text);
  }
  
  .breadcrumb-item {
    color: var(--primary-color);
  }
  
  .breadcrumb-separator {
    margin: 0 0.5rem;
    color: var(--light-text);
  }
  
  /* CMS Controls */
  .cms-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
  }
  
  .cms-actions {
    display: flex;
    gap: 0.5rem;
  }
  
  /* File Browser */
  .file-browser {
    overflow-x: auto;
  }
  
  .file-table {
    width: 100%;
    border-collapse: collapse;
  }
  
  .file-table th {
    text-align: left;
    padding: 0.75rem;
    background-color: var(--light-bg);
    border-bottom: 2px solid var(--border-color);
    font-weight: 600;
  }
  
  .file-table td {
    padding: 0.75rem;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
  }
  
  .file-row:hover, .directory-row:hover {
    background-color: var(--light-bg);
  }
  
  .directory-link, .file-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .dir-icon, .file-icon {
    font-size: 1.2rem;
  }
  
  .empty-dir {
    text-align: center;
    color: var(--light-text);
    padding: 2rem 0;
  }
  
  /* Modal Forms */
  .modal-form {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 6px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    z-index: 100;
    width: 90%;
    max-width: 500px;
  }
  
  .modal-form h3 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-weight: 600;
  }
  
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
  }
  
  .form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
  }
  
  .form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
  }
  
  /* File Editor */
  .file-editor {
    margin-bottom: 1.5rem;
  }
  
  .file-editor h2 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
  }
  
  .editor-actions {
    margin-top: 1rem;
    display: flex;
    gap: 0.75rem;
  }
  
  /* CodeMirror Customization */
  .CodeMirror {
    border: 1px solid var(--border-color);
    border-radius: 4px;
    height: 500px;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 14px;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .admin-header-content {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }
    
    .cms-controls {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }
    
    .actions {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    
    .file-table {
      font-size: 0.9rem;
    }
  }