.contact-wrapper {
    font-family: 'Segoe UI', sans-serif;
    color: #1f2937;
}

.contact-hero {
    height: 24rem;
    position: relative;
    background-image: url('/photos/hero-image/contact.jpg');
}

.contact-hero .overlay {
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    inset: 0;
}

.contact-hero .hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 1rem;
}

.contact-section {
    background: #fff;
    padding: 4rem 1rem;
}

.container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .container {
        grid-template-columns: 1fr 1fr;
        padding: 0 5rem;
    }
}

.section-title {
    font-size: 1.75rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.form-input {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    padding: 0.5rem 0.75rem;
    font-size: 1rem;
    color: #111827;
    background: #fff;
    outline: none;
}

.form-input:focus {
    border-color: #f472b6;
    box-shadow: 0 0 0 3px rgba(244, 114, 182, 0.4);
}

.submit-btn {
    background: #ec4899;
    color: #fff;
    padding: 0.75rem 1.25rem;
    font-weight: 600;
    border-radius: 0.375rem;
    transition: 0.3s ease;
}

.submit-btn:hover {
    background: #db2777;
}

.contact-map {
    height: 24rem;
}

.contact-cta {
    background-color: #ec4899;
    color: #fff;
    text-align: center;
    padding: 4rem 1rem;
}

.cta-btn {
    background: #facc15;
    color: #1f2937;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    transition: background 0.3s ease;
}

.cta-btn:hover {
    background: #fde047;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}
