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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #4a4a4a;
    background-color: #f0f8ff;
}

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

/* Header */
.header {
    background: linear-gradient(135deg, #e0f2f1 0%, #b2dfdb 100%);
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(178, 223, 219, 0.4);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

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

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

.logo-icon {
    transition: transform 0.3s ease;
}

.logo-icon:hover {
    transform: rotate(360deg);
}

.logo-text h1 {
    color: #00695c;
    font-size: 2rem;
    font-weight: 400;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 105, 92, 0.1);
}

.logo-text span {
    color: #00796b;
    font-size: 0.9rem;
    font-style: italic;
    opacity: 0.8;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #00695c;
    font-weight: 500;
    padding: 12px 20px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(0, 172, 193, 0.2);
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 172, 193, 0.2);
}

.nav-icon {
    font-size: 1.1rem;
}

.phone-link {
    background: linear-gradient(135deg, #00acc1 0%, #00838f 100%);
    color: white;
    border: none;
}

.phone-link:hover {
    background: linear-gradient(135deg, #00838f 0%, #00695c 100%);
    color: white;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f0f8ff 0%, #e0f2f1 100%);
    padding: 80px 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h2 {
    font-size: 3rem;
    color: #00695c;
    margin-bottom: 20px;
    font-weight: 300;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    color: #6b6b6b;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #00acc1;
    margin-bottom: 5px;
}

.stat-text {
    font-size: 0.9rem;
    color: #8b8b8b;
}

.cta-button {
    background: linear-gradient(135deg, #00acc1 0%, #00838f 100%);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 172, 193, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 172, 193, 0.4);
}

.hero-image {
    text-align: center;
}

.car-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 172, 193, 0.2);
    transition: transform 0.3s ease;
}

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

/* Services Section */
.services {
    padding: 80px 0;
    background: white;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #00695c;
    margin-bottom: 60px;
    font-weight: 300;
}

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

.service-card {
    background: linear-gradient(135deg, #f0f8ff 0%, #e0f2f1 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 172, 193, 0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 172, 193, 0.15);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    color: #00695c;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.service-card p {
    color: #6b6b6b;
    line-height: 1.6;
}

/* Process Section */
.process {
    padding: 80px 0;
    background: linear-gradient(135deg, #e0f2f1 0%, #b2dfdb 100%);
}

.process h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #00695c;
    margin-bottom: 60px;
    font-weight: 300;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
}

.step-number {
    background: linear-gradient(135deg, #00acc1 0%, #00838f 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step h3 {
    color: #00695c;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.step p {
    color: #6b6b6b;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

.about h2 {
    font-size: 2.5rem;
    color: #00695c;
    margin-bottom: 40px;
    font-weight: 300;
}

.about p {
    font-size: 1.1rem;
    color: #6b6b6b;
    margin-bottom: 40px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: linear-gradient(135deg, #f0f8ff 0%, #e0f2f1 100%);
    border-radius: 10px;
}

.feature-icon {
    color: #00acc1;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Calculator Section */
.calculator {
    padding: 80px 0;
    background: linear-gradient(135deg, #e0f2f1 0%, #b2dfdb 100%);
}

.calculator h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #00695c;
    margin-bottom: 60px;
    font-weight: 300;
}

.calculator-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 10px 25px rgba(0, 172, 193, 0.1);
}

.calc-input-group {
    margin-bottom: 30px;
}

.calc-input-group label {
    display: block;
    margin-bottom: 10px;
    color: #00695c;
    font-weight: 500;
}

.calc-input-group input,
.calc-input-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(0, 172, 193, 0.2);
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.calc-input-group input:focus,
.calc-input-group select:focus {
    outline: none;
    border-color: #00acc1;
}

.calc-input-group input[type="range"] {
    height: 6px;
    background: linear-gradient(135deg, #00acc1 0%, #00838f 100%);
    border-radius: 3px;
}

#initialPaymentValue {
    color: #00acc1;
    font-weight: bold;
    margin-left: 10px;
}

.calc-result {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #f0f8ff 0%, #e0f2f1 100%);
    border-radius: 15px;
}

.calc-result h3 {
    color: #00695c;
    margin-bottom: 15px;
}

.monthly-payment {
    font-size: 2.5rem;
    font-weight: bold;
    color: #00acc1;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: white;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #00695c;
    margin-bottom: 60px;
    font-weight: 300;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, #f0f8ff 0%, #e0f2f1 100%);
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 172, 193, 0.1);
}

.faq-question {
    padding: 25px 30px;
    color: #00695c;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(0, 172, 193, 0.1);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #00acc1;
}

.faq-answer {
    padding: 0 30px 25px;
    color: #6b6b6b;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #e0f2f1 0%, #b2dfdb 100%);
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #00695c;
    margin-bottom: 60px;
    font-weight: 300;
}

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

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 172, 193, 0.1);
}

.contact-form h3 {
    color: #00695c;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 2px solid rgba(0, 172, 193, 0.2);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #00acc1;
}

.contact-form textarea {
    height: 120px;
    resize: vertical;
}

.contact-form button {
    background: linear-gradient(135deg, #00acc1 0%, #00838f 100%);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 172, 193, 0.3);
}

.contact-info {
    padding: 40px 0;
}

.contact-info h3 {
    color: #00695c;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: #6b6b6b;
}

.contact-icon {
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #00695c 0%, #004d40 100%);
    color: white;
    padding: 40px 0;
    text-align: center;
}

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

.footer-logo h3 {
    margin-bottom: 10px;
    font-weight: 300;
}

.footer-logo p {
    opacity: 0.8;
    font-style: italic;
}

.footer-info p {
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .logo-text h1 {
        font-size: 1.8rem;
    }

    .header-nav {
        gap: 15px;
    }

    .nav-link {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-stats {
        justify-content: center;
    }

    .car-image {
        max-width: 80%;
        margin: 0 auto;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h2 {
        font-size: 1.8rem;
    }

    .logo h1 {
        font-size: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }

    .calculator-form,
    .contact-form {
        padding: 20px;
    }
}
