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

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

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

/* Header */
header {
    background: linear-gradient(180deg, #4a5c66 0%, #3d4f59 100%);
    color: #fff;
    padding: 1.5rem 0;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    position: relative;
}

header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #f4c430 0%, #ffd54f 50%, #f4c430 100%);
}

/* Car Animation */
.car-animation {
    background: linear-gradient(180deg, #2c3e50 0%, #34495e 100%);
    padding: 3rem 0;
    overflow: hidden;
    position: relative;
}

.road {
    position: relative;
    width: 100%;
    height: 100px;
    background: linear-gradient(180deg, #3a3a3a 0%, #2a2a2a 100%);
    border-top: 3px solid #555;
    border-bottom: 3px solid #555;
}

.car {
    position: absolute;
    width: 120px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    animation: driveCar 8s linear infinite;
    z-index: 2;
}

.car svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.4));
}

@keyframes driveCar {
    0% {
        left: -150px;
    }
    100% {
        left: 100%;
    }
}

.stripes-container {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 100%;
    height: 6px;
    z-index: 1;
    overflow: hidden;
}

.stripes-container::before {
    content: '';
    position: absolute;
    left: -150px;
    right: 0;
    height: 6px;
    background: repeating-linear-gradient(
        to right,
        #f4c430 0px,
        #f4c430 40px,
        transparent 40px,
        transparent 60px
    );
    animation: paintStripes 8s linear infinite;
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
}

@keyframes paintStripes {
    0% {
        clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    }
    100% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.header-text {
    text-align: center;
}

header h1 {
    font-size: 2.8rem;
    margin-bottom: 0.3rem;
    letter-spacing: 3px;
    font-weight: 800;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.tagline {
    font-size: 1rem;
    color: #f4c430;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #4a5c66 0%, #3a4c56 100%);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
    border-bottom: 4px solid #f4c430;
}

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

.hero p {
    font-size: 1.2rem;
    color: #e8e8e8;
}

/* Services Section */
.services-intro {
    padding: 3rem 0 2rem;
    background-color: #fff;
    text-align: center;
}

.services-intro h2 {
    font-size: 2.5rem;
    color: #4a5c66;
    position: relative;
    display: inline-block;
}

.services-intro h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #f4c430;
}

.service-section {
    padding: 4rem 0;
    background-color: #fff;
}

.service-section.service-alt {
    background-color: #f9f9f9;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.service-image {
    width: 100%;
    height: 400px;
    background: #4a5c66;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 3px solid #f4c430;
}

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

.service-text h3 {
    font-size: 2rem;
    color: #4a5c66;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    background: #4a5c66;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.contact-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #e8e8e8;
    margin-bottom: 3rem;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.form-container {
    width: 100%;
}

.contact-form {
    background: #fff;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f4c430;
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: #f4c430;
    color: #333;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background: #e6b82e;
}

.submit-btn:active {
    transform: translateY(0);
}

.form-message {
    margin: 1.5rem 0 0;
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Contact Info */
.contact-info {
    text-align: left;
}

.contact-info h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.25rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.contact-item svg {
    color: #f4c430;
    flex-shrink: 0;
}

.contact-item a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #f4c430;
}

/* Footer */
footer {
    background: #3a4c56;
    color: #fff;
    text-align: center;
    padding: 2rem 0;
    margin-top: 0;
}

footer p {
    margin: 0.5rem 0;
}

.footer-credit {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #b8c5d0;
    line-height: 1.6;
}

.footer-credit a {
    color: #f4c430;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-credit a:hover {
    color: #ffd54f;
    text-decoration: underline;
}

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

    header h1 {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }

    .tagline {
        font-size: 0.9rem;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    .services-intro h2,
    .contact h2 {
        font-size: 2rem;
    }

    .service-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-image {
        height: 300px;
    }

    .service-text h3 {
        font-size: 1.5rem;
    }

    .service-text p {
        font-size: 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .car-animation {
        padding: 2rem 0;
    }

    .road {
        height: 80px;
    }

    .car {
        width: 90px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .tagline {
        font-size: 0.8rem;
    }

    .hero h2 {
        font-size: 1.3rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .service-image {
        height: 250px;
    }

    .service-section {
        padding: 2rem 0;
    }

    .car-animation {
        padding: 1.5rem 0;
    }

    .road {
        height: 60px;
    }

    .car {
        width: 70px;
        height: 35px;
    }
}