.contact-header {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 3rem;
    color: #fff;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: #f9f9f9;
    font-family: 'Open Sans', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.contact-card {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

.contact-details {
    text-align: left;
}

.contact-subtitle {
    font-size: 2.5rem;
    color: #e83e8c;
    margin-bottom: 30px;
    font-weight: 700;
}

.contact-details p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-details a {
    color: #e83e8c;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #c81e6c;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    text-align: left;
}

.form-group label {
    font-size: 1.1rem;
    color: #333;
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    box-sizing: border-box;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.submit-btn {
    padding: 12px 30px;
    background: #e83e8c;
    color: #fff;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    align-self: center;
    width: auto;
}

.submit-btn:hover {
    background: #c81e6c;
}

.contact-map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.contact-map iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-header {
        height: 200px;
    }

    .contact-title {
        font-size: 2rem;
    }

    .contact-section {
        padding: 50px 0;
    }

    .contact-card {
        grid-template-columns: 1fr;
        padding: 30px;
        gap: 30px;
    }

    .contact-subtitle {
        font-size: 2rem;
    }

    .contact-details p {
        font-size 1rem;
    }

    .form-group label {
        font-size 1rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: 0.95rem;
    }

    .submit-btn {
        padding: 10px 25px;
        font-size: 1rem;
    }

    .contact-map iframe {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .contact-title {
        font-size: 1.6rem;
    }

    .contact-subtitle {
        font-size: 1.5rem;
    }

    .contact-details p {
        font-size: 0.95rem;
    }

    .form-group label {
        font-size: 0.95rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: 0.9rem;
    }

    .submit-btn {
        padding: 8px 20px;
        font-size: 0.95rem;
    }

    .contact-map iframe {
        height: 250px;
    }
}