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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #ffffff;
    color: #000000;
    line-height: 1.6;
}

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

/* Header */
header {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e5e5;
    padding: 1rem 0;
}

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

.logo img {
    height: 80px;
    width: auto;
}

nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: #000000;
    font-weight: 500;
    font-size: 0.875rem;
    position: relative;
    transition: color 0.3s ease;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #dc143c;
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

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

.btn-primary {
    background-color: #dc143c;
    color: white;
}

.btn-primary:hover {
    background-color: #b30a2d;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(220, 20, 60, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: #dc143c;
    border: 2px solid #dc143c;
}

.btn-outline:hover {
    background-color: #dc143c;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(220, 20, 60, 0.3);
}

/* Watermark */
.watermark {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
}

.watermark img {
    height: 400px;
    width: auto;
}

.content {
    position: relative;
    z-index: 10;
}

/* Car Animation */
.car-animation {
    height: 300px;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.car {
    font-size: 4rem;
    animation: carMove 4s ease-in-out infinite;
    position: absolute;
}

@keyframes carMove {
    0% {
        left: -100px;
        opacity: 1;
    }
    70% {
        left: 100%;
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

.welcome-text {
    font-size: 3rem;
    font-weight: 800;
    font-family: 'Syne', sans-serif;
    color: #dc143c;
    text-align: center;
    animation: fadeInBounce 1s ease-out 3s both;
}

@keyframes fadeInBounce {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    50% {
        opacity: 1;
        transform: translateY(-5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background: linear-gradient(to bottom, #f9f9f9, #ffffff);
}

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

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: 'Syne', sans-serif;
    color: #000000;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.125rem;
    color: #666666;
    margin-bottom: 2rem;
}

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

.hero img {
    width: 100%;
    border-radius: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Sections */
section {
    padding: 4rem 0;
}

section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Syne', sans-serif;
    margin-bottom: 3rem;
    color: #000000;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 0.5rem;
    padding: 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.15);
    transform: translateY(-5px);
    border-color: #dc143c;
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #000000;
}

.service-card p {
    color: #666666;
    font-size: 0.95rem;
}

/* Gallery */
.gallery-section {
    background-color: #f9f9f9;
}

.gallery-image {
    width: 100%;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    border-left: 4px solid #dc143c;
}

.benefit-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #000000;
}

.benefit-card p {
    color: #666666;
    font-size: 0.95rem;
}

/* Packages */
.packages-section {
    background-color: #f9f9f9;
}

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

.package-card {
    background: white;
    border: 2px solid #e5e5e5;
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.package-card.featured {
    border-color: #dc143c;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.2);
}

.package-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #000000;
}

.package-card .price {
    font-size: 1.25rem;
    color: #dc143c;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.package-card ul {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.package-card li {
    padding: 0.5rem 0;
    color: #666666;
    font-size: 0.95rem;
    border-bottom: 1px solid #e5e5e5;
}

.package-card li:last-child {
    border-bottom: none;
}

/* Why Choose Us */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.why-us-card {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    border: 1px solid #e5e5e5;
    text-align: center;
    transition: all 0.3s ease;
}

.why-us-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.why-us-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #dc143c;
}

.why-us-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000000;
}

/* Contact Section */
.contact-section {
    background-color: #f9f9f9;
}

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

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    border: 1px solid #e5e5e5;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #000000;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item .icon {
    font-size: 1.5rem;
    color: #dc143c;
    min-width: 30px;
}

.contact-item p {
    color: #666666;
}

.contact-item a {
    color: #dc143c;
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

.map-container {
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* Footer */
footer {
    background-color: #ffffff;
    border-top: 1px solid #e5e5e5;
    padding: 2rem 0;
    text-align: center;
    color: #666666;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

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

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    background-color: #dc143c;
    color: white;
    padding: 1rem;
    margin: -2rem -2rem 1.5rem -2rem;
    border-radius: 0.5rem 0.5rem 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.2s;
}

.close-btn:hover {
    transform: scale(1.2);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e5e5e5;
    border-radius: 0.25rem;
    font-family: inherit;
    font-size: 1rem;
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #dc143c;
    box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        display: none;
    }

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

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

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

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

    .btn {
        width: 100%;
        text-align: center;
    }

    section h2 {
        font-size: 2rem;
    }

    .welcome-text {
        font-size: 1.5rem;
    }
}
