@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: #f3f4f6;
    color: #1f2937;
}

header {
    background: #4f46e5;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 50;
    transition: transform 0.3s ease-in-out;
}

.header-hidden {
    transform: translateY(-100%);
}

.contact-main {
    padding: 20px;
    max-width: 1200px;
    margin: 20px auto;
}

.contact-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 768px) {
    .contact-container {
        flex-direction: row;
    }
}

.contact-form {
    flex: 2;
    min-width: 300px;
    background: #fff;
    padding: 40px;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-info {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 40px;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 5px;
    font-weight: 500;
}

input[type="text"],
input[type="email"],
textarea {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 0.5rem;
    border: 1px solid #d1d5db;
    transition: border-color 0.3s, box-shadow 0.3s;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    outline: none;
    border-color: #4f46e5;
    box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.25);
}

button {
    background: #4f46e5;
    color: #fff;
    padding: 15px 20px;
    border: 0;
    border-radius: 9999px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

button:hover {
    background: #4338ca;
}

.contact-info h3 {
    margin-top: 0;
    font-size: 24px;
    margin-bottom: 20px;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-info .fas, .contact-info .fab {
    color: #4f46e5;
    font-size: 20px;
}

.social-media {
    margin-top: 30px;
    display: flex;
    gap: 20px;
}

.social-media a {
    color: #1f2937;
    font-size: 28px;
    transition: color 0.3s;
}

.social-media a:hover {
    color: #4f46e5;
}

.map-placeholder {
    margin-top: 30px;
    width: 100%;
    height: 250px;
    background: #e5e7eb;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 1rem;
}