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

body {
    font-family: 'Lato', sans-serif;
    color: #1f2937;
    background-color: #ffffff;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    z-index: 50;
}

nav .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1e3a8a;
}

nav .phone-btn {
    background: none;
    border: none;
    color: #1e3a8a;
    cursor: pointer;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Hero Section */
.hero {
    margin-top: 60px;
    position: relative;
    height: 600px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://d2xsxph8kpxj0f.cloudfront.net/310519663405596501/YYgAoGP46bnQwg6izWpTaW/hero-wallpaper-installation-Z9MBjkAvpGhNjVDGyteA8H.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #f0f0f0;
    max-width: 800px;
}

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

button {
    padding: 0.75rem 2rem;
    font-size: 1rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

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

.btn-primary:hover {
    background-color: #1e3a8a;
}

.btn-secondary {
    background-color: white;
    color: #1e3a8a;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: #f0f0f0;
}

/* Services Section */
.services {
    padding: 5rem 2rem;
    background-color: #f9fafb;
}

.services .container {
    max-width: 1280px;
    margin: 0 auto;
}

.services h2 {
    text-align: center;
    font-size: 2.25rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.services-intro {
    text-align: center;
    color: #6b7280;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-card {
    background: white;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card-content {
    padding: 1.5rem;
}

.service-card h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.service-card p {
    color: #6b7280;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.btn-outline {
    background-color: white;
    color: #1e3a8a;
    border: 1px solid #e5e7eb;
    width: 100%;
    padding: 0.6rem 1rem;
}

.btn-outline:hover {
    background-color: #f9fafb;
}

/* Map Section */
.map-section {
    padding: 5rem 2rem;
    background-color: white;
}

.map-section .container {
    max-width: 1280px;
    margin: 0 auto;
}

.map-section h2 {
    text-align: center;
    font-size: 2.25rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.map-subtitle {
    text-align: center;
    color: #6b7280;
    margin-bottom: 3rem;
}

.map-container {
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    height: 400px;
}

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

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

.contact-info-item {
    padding: 1.5rem;
}

.contact-info-item h3 {
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.contact-info-item p {
    color: #6b7280;
}

/* Contact Form Section */
.contact-section {
    padding: 5rem 2rem;
    background-color: #1e3a8a;
    color: white;
}

.contact-section .container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-section h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.contact-section-intro {
    text-align: center;
    color: #bfdbfe;
    margin-bottom: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border-radius: 0.5rem;
    background-color: #1e40af;
    border: 1px solid #1e3a8a;
    color: white;
    font-family: 'Lato', sans-serif;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #93c5fd;
}

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

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

.submit-btn {
    width: 100%;
    background-color: white;
    color: #1e3a8a;
    font-weight: 600;
    padding: 0.75rem;
    margin-top: 1rem;
}

.submit-btn:hover {
    background-color: #f0f0f0;
}

.error-message {
    color: #ff6b6b;
    margin-top: 0.3rem;
    font-size: 0.85rem;
}

#form-success {
    display: none;
    text-align: center;
    padding: 2rem;
}

#form-success .checkmark {
    font-size: 3rem;
    margin-bottom: 1rem;
}

#form-success h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    background-color: #0f172a;
    color: white;
    padding: 2rem;
    text-align: center;
}

footer p {
    color: #93c5fd;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

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

    .services h2,
    .map-section h2,
    .contact-section h2 {
        font-size: 1.75rem;
    }

    nav .container {
        padding: 0.75rem 1rem;
    }

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

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

    button {
        width: 100%;
    }
}
