* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: #f7f8fa;
    color: #222;
}

/* HERO */
.contact-hero {
    background: linear-gradient(135deg, #1f2937, #111827);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.contact-hero p {
    opacity: 0.9;
}

/* CONTAINER */
.contact-container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* INFO */
.contact-info h2 {
    margin-bottom: 15px;
}

.contact-info p {
    color: #555;
    margin-bottom: 25px;
}

.info-box {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.info-box h3 {
    margin-bottom: 8px;
    font-size: 1rem;
}

/* FORM */
.contact-form {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.contact-form h2 {
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #2563eb;
}

.contact-form button {
    width: 100%;
    padding: 14px;
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background: #1d4ed8;
}

.form-note {
    margin-top: 15px;
    font-size: 0.8rem;
    color: #666;
}

/* MAP */
.map-section {
    margin-top: 50px;
}

.map-section iframe {
    width: 100%;
    height: 350px;
    border: none;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}
