/* ============================
CONTACT PAGE — about style
============================ */

/* HERO */
.contact-hero {
    height: 60vh;
    min-height: 380px;
    background: url('../../assets/images/contact.png') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.50) 0%,
        rgba(0,0,0,0.68) 100%
    );
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 700px;
}

.contact-hero-badge {
    display: inline-block;
    background: rgba(255,122,0,0.90);
    color: white;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.8px;
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.contact-hero h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 14px;
}

.contact-hero p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255,255,255,0.90);
    margin: 0;
}

/* GLOBAL */
.contact-page section {
    padding: 70px 20px;
}

.contact-page .container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ff7a00;
    background: rgba(255,122,0,0.09);
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.section-heading {
    font-size: 34px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.25;
    position: relative;
    display: inline-block;
}

.section-heading::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #ff7a00, #ff9800);
    border-radius: 10px;
    margin: 12px auto 0;
}

.section-sub {
    font-size: 16px;
    color: #666;
    line-height: 1.75;
    max-width: 680px;
    margin: 0 auto 40px;
}

/* INTRO */
.contact-intro {
    background: #fff;
}

.contact-intro .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-intro-text {
    max-width: 820px;
    width: 100%;
}

.contact-intro-text p {
    font-size: 17px;
    line-height: 1.85;
    color: #444;
    margin-bottom: 16px;
    text-align: center;
}

/* DETAILS */
.contact-details {
    background: #fffaf5;
}

.contact-details .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-detail-box {
    width: 100%;
    max-width: 860px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.09);
    border: 1.5px solid #f0e8de;
    background: #fff;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 26px;
    background: #fff;
    border-bottom: 1px solid #f0e8de;
    text-align: left;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-item:hover {
    background: #fffdf9;
}

.detail-icon {
    font-size: 22px;
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    background: rgba(255,122,0,0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-content {
    flex: 1;
    min-width: 0;
}

.detail-label {
    font-size: 11px;
    color: #aaa;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.detail-value {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.8;
    word-break: break-word;
}

.contact-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.btn-call,
.btn-whatsapp,
.btn-donate-big {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-call {
    background: linear-gradient(135deg, #ff7a00, #ff9800);
    color: #fff;
    box-shadow: 0 4px 18px rgba(255,122,0,0.28);
}

.btn-call:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(255,122,0,0.36);
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 18px rgba(37,211,102,0.28);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(37,211,102,0.36);
}

/* BUTTON ICONS */
.btn-call,
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-call::before,
.btn-whatsapp::before {
    content: "";
    width: 18px;
    height: 18px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}

.btn-call::before {
    background-image: url('../../assets/icons/phone.png');
}

.btn-whatsapp::before {
    background-image: url('../../assets/icons/whatsapp.png');
}

/* MAP */
.contact-map {
    background: #fff;
}

.contact-map .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.map-box {
    width: 100%;
    max-width: 960px;
    border-radius: 22px;
    overflow: hidden;
    border: 1.5px solid #f0e8de;
    box-shadow: 0 8px 40px rgba(0,0,0,0.09);
    background: #fff;
}

.map-box iframe {
    display: block;
    width: 100%;
    height: 420px;
}

/* DONATION */
.contact-donation {
    background: linear-gradient(135deg, #ff7a00, #ff9800);
    color: white;
    padding: 70px 20px;
}

.contact-donation .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-donation h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
    line-height: 1.3;
}

.contact-donation p {
    font-size: 17px;
    line-height: 1.9;
    color: rgba(255,255,255,0.93);
    max-width: 700px;
    margin: 0 auto 8px;
}

.btn-donate-big {
    margin-top: 28px;
    padding: 15px 40px;
    background: white;
    color: #ff7a00;
    font-size: 17px;
    letter-spacing: 0.3px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.15);
}

.btn-donate-big:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.22);
}

/* STRIP */
.contact-strip {
    background: #222;
    color: white;
    text-align: center;
    padding: 18px 20px;
}

.contact-strip p {
    margin: 0;
    font-size: 17px;
    color: white;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .contact-hero {
        height: auto;
        min-height: auto;
        padding: 100px 20px 70px;
    }

    .contact-hero h1 {
        font-size: 30px;
    }

    .contact-hero p {
        font-size: 16px;
    }

    .contact-hero-badge {
        font-size: 11px;
    }

    .section-heading {
        font-size: 26px;
    }

    .section-sub {
        font-size: 15px;
    }

    .contact-intro-text p {
        font-size: 15px;
    }

    .detail-item {
        padding: 18px 16px;
        gap: 12px;
    }

    .detail-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
        border-radius: 10px;
    }

    .detail-value {
        font-size: 14px;
    }

    .contact-actions {
        flex-direction: column;
        align-items: center;
    }

    .map-box {
        border-radius: 18px;
    }

    .map-box iframe {
        height: 320px;
    }

    .contact-donation {
        padding: 55px 20px;
    }

    .contact-donation h2 {
        font-size: 26px;
    }

    .contact-donation p {
        font-size: 15px;
    }

    .btn-donate-big {
        display: block;
        width: 100%;
        max-width: 280px;
        text-align: center;
        padding: 15px 20px;
        font-size: 16px;
    }

    .contact-strip p {
        font-size: 15px;
    }
}