/* HERO */
.contact-hero {
    padding: 160px 8% 100px;
    text-align: center;
    background: #f4f4f4;
}

.contact-hero h1 {
    font-size: 42px;
    font-weight: 700;
    color: #111;
}

.contact-hero p {
    margin-top: 12px;
    font-size: 18px;
    max-width: 750px;
    margin: auto;
    color: #444;
}


/* CONTACT CARD WRAPPER */
.contact-wrapper {
    padding: 80px 8%;
    display: flex;
    justify-content: center;
}

.contact-card {
    display: flex;
    gap: 60px;
    max-width: 1100px;
    background: #fff;
    padding: 60px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.09);
}


/* LEFT INFO */
.contact-info {
    width: 45%;
}

.contact-info h2 {
    font-size: 28px;
    font-weight: 700;
}

.c-sub {
    color: #555;
    margin: 10px 0 25px;
}

.c-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.c-icon {
    font-size: 30px;
    line-height: 1;
}

.c-item h4 {
    font-size: 16px;
    font-weight: 600;
}

.c-item a {
    font-size: 15px;
    color: #222;
    text-decoration: none;
    border-bottom: 1px solid #ddd;
}

.c-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 28px;
    background: #25D366;
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
}


/* RIGHT FORM */
.contact-form {
    width: 55%;
}

.contact-form h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-top: 15px;
    font-size: 15px;
    font-weight: 500;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #ccc;
    margin-top: 5px;
    font-size: 15px;
}

.contact-form textarea {
    height: 140px;
    resize: none;
}

.send-btn {
    margin-top: 25px;
    padding: 14px 30px;
    background: #111;
    color: #fff;
    border-radius: 10px;
    cursor: pointer;
    border: none;
    font-size: 15px;
    font-weight: 600;
}

.send-btn:hover {
    opacity: 0.85;
}


/* MAP */
.contact-map iframe {
    width: 100%;
    height: 420px;
    border: none;
    margin-top: 40px;
}


/* ANIMATION */
.fade-section {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.9s ease;
}

.fade-section.visible {
    opacity: 1;
    transform: translateY(0);
}


/* RESPONSIVE */
@media(max-width: 950px) {
    .contact-card {
        flex-direction: column;
        padding: 40px;
    }

    .contact-info, .contact-form {
        width: 100%;
    }
}

.form-success {
    background: #d1ffd1;
    color: #0a6b0a;
    padding: 12px 15px;
    border-radius: 8px;
    font-weight: 600;
    margin-bottom: 20px;
}


