* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f4f6fb;
    overflow-x: hidden;
}

/* ===== CONTACT SECTION ===== */
.contact { padding: 60px 20px; }

.contact h1 {
    text-align: center;
    margin-bottom: 36px;
    font-size: 32px;
    line-height: 1.2;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

/* ===== CONTACT INFO ===== */
.contact-info {
    flex: 1;
    min-width: 260px;
}

.contact-info h2 {
    margin-bottom: 12px;
    font-size: 20px;
}

.address {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
    font-size: 14px;
}

/* ===== ACTION BUTTONS ===== */
.buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.btn {
    display: block;
    text-decoration: none;
    padding: 14px 16px;
    border-radius: 8px;
    color: white;
    text-align: center;
    font-weight: bold;
    font-size: 15px;
    transition: opacity 0.2s;
    width: 100%;
}

.btn:hover { opacity: 0.88; }

.call  { background: #16a34a; }
.email { background: #2563eb; }
.line  { background: #06c755; }
.map   { background: #f97316; }

/* ===== SOCIAL ===== */
.social { margin-top: 20px; }
.social h3 { margin-bottom: 12px; font-size: 16px; }

.social-btn {
    display: inline-block;
    margin: 0 8px 10px 0;
    padding: 10px 18px;
    border-radius: 6px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.2s;
}

.social-btn:hover { opacity: 0.85; }
.fb { background: #1877f2; }
.li { background: #0a66c2; }
.yt { background: #ff0000; }

/* ===== MAP IFRAME COLUMN ===== */
/* .map class is also used by the orange btn — handle specificity */
.contact-container > div.map {
    flex: 1;
    min-width: 260px;
    background: transparent;
    padding: 0;
    border-radius: 0;
    color: inherit;
    font-weight: normal;
    text-align: left;
    width: 100%;
}

iframe {
    width: 100%;
    height: 380px;
    border: 0;
    border-radius: 10px;
    display: block;
}

/* ===== CONTACT FORM CARD ===== */
.card {
    max-width: 620px;
    margin: 0 auto 48px;
    background: white;
    padding: 32px;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.09);
}

form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

input,
textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    transition: border-color 0.2s;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: #0d6efd;
}

textarea {
    min-height: 120px;
    resize: vertical;
}

button[type="submit"] {
    background: #0d6efd;
    color: white;
    padding: 14px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background 0.2s;
}

button[type="submit"]:hover { background: #0b5ed7; }

/* =========================================
   RESPONSIVE — Mobile
   ========================================= */
@media (max-width: 768px) {

    .contact { padding: 40px 16px; }

    .contact h1 {
        font-size: 24px;
        margin-bottom: 24px;
    }

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

    .contact-info,
    .contact-container > div.map {
        min-width: 100%;
        width: 100%;
    }

    iframe { height: 280px; }

    .card {
        padding: 20px 16px;
        margin: 0 0 36px;
    }
}
