/* ============================
   CONTACT PAGE — contact.css
   ============================ */

section { padding: 80px 20px; }

.container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.section-label {
    display: inline-block;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #F21414;
    background: rgba(242,20,20,0.08);
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.section-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 38px;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 14px;
    line-height: 1.22;
    display: inline-block;
    position: relative;
}

.section-heading::after {
    content: '';
    display: block;
    width: 56px;
    height: 4px;
    background: linear-gradient(135deg, #F21414, #D89A1D);
    border-radius: 10px;
    margin: 12px auto 0;
}

.section-sub {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    max-width: 680px;
    margin: 0 auto 44px;
}

/* HERO */
.contact-hero {
    min-height: 62vh;
    background: url('../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(20,4,4,0.60) 0%, rgba(0,0,0,0.72) 100%);
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 720px;
}

.contact-hero-badge {
    display: inline-block;
    background: rgba(216,154,29,0.92);
    color: #1a0a00;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 6px 20px;
    border-radius: 30px;
    margin-bottom: 22px;
    text-transform: uppercase;
}

.contact-hero h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 52px;
    font-weight: 900;
    line-height: 1.14;
    margin-bottom: 16px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.30);
}

.contact-hero p {
    font-size: 18px;
    line-height: 1.75;
    color: rgba(255,255,255,0.90);
    margin: 0;
}

/* INTRO */
.contact-intro { background: #fff; }

.contact-intro .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-intro-text { max-width: 840px; width: 100%; }

.contact-intro-text p {
    font-size: 17px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 16px;
    text-align: center;
}

/* DETAILS */
.contact-details { background: #FFF9F0; }

.contact-details .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-detail-box {
    width: 100%;
    max-width: 880px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 48px rgba(0,0,0,0.09);
    border: 1.5px solid #f0e0e0;
    background: #fff;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px 28px;
    background: #fff;
    border-bottom: 1px solid #f5e8e8;
    text-align: left;
    transition: background 0.2s;
}

.detail-item:last-child { border-bottom: none; }
.detail-item:hover { background: #FFF9F0; }

.detail-icon {
    font-size: 20px;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(242,20,20,0.07);
    border-radius: 13px;
    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.7px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.detail-value {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.7;
    word-break: break-word;
}

.detail-value a {
    color: #F21414;
    text-decoration: none;
    font-weight: 700;
}

.detail-value a:hover { text-decoration: underline; }

.contact-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn-call,
.btn-whatsapp,
.btn-donate-big {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15.5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-call {
    background: linear-gradient(135deg, #F21414, #C90E0E);
    color: #fff;
    box-shadow: 0 6px 20px rgba(242,20,20,0.32);
}

.btn-call:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(242,20,20,0.44);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #1ebe5d);
    color: #fff;
    box-shadow: 0 6px 20px rgba(37,211,102,0.28);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(37,211,102,0.40);
}

/* MAP */
.contact-map { background: #fff; }

.contact-map .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.map-box {
    width: 100%;
    max-width: 980px;
    border-radius: 24px;
    overflow: hidden;
    border: 1.5px solid #f0e0e0;
    box-shadow: 0 10px 48px rgba(0,0,0,0.09);
    background: #fff;
}

.map-box iframe {
    display: block;
    width: 100%;
    height: 440px;
}

/* HOURS */
.contact-hours { background: #FFF9F0; }

.contact-hours .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hours-card {
    background: white;
    border-radius: 22px;
    padding: 40px 50px;
    box-shadow: 0 8px 36px rgba(0,0,0,0.08);
    border: 1.5px solid #f5d9b2;
    max-width: 580px;
    width: 100%;
    text-align: center;
}

.hours-icon { font-size: 48px; margin-bottom: 18px; }

.hours-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.hours-time {
    font-size: 28px;
    font-weight: 900;
    color: #F21414;
    font-family: 'Playfair Display', serif;
    margin-bottom: 6px;
}

.hours-days {
    font-size: 15px;
    font-weight: 700;
    color: #666;
    margin-bottom: 20px;
}

.hours-note {
    font-size: 14px;
    color: #999;
    line-height: 1.7;
    border-top: 1px solid #f5e8e8;
    padding-top: 16px;
    margin: 0;
}

/* DONATION */
.contact-donation {
    background: linear-gradient(135deg, #1a0505, #3d0f0f);
    position: relative;
    overflow: hidden;
    padding: 80px 20px;
}

.contact-donation::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/hero.png') center/cover no-repeat;
    opacity: 0.07;
}

.contact-donation .container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-donation h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 900;
    color: white;
    margin-bottom: 16px;
    line-height: 1.28;
}

.contact-donation p {
    font-size: 17px;
    color: rgba(255,255,255,0.85);
    max-width: 640px;
    line-height: 1.85;
    margin-bottom: 6px;
}

.btn-donate-big {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
    padding: 16px 44px;
    background: linear-gradient(135deg, #F21414, #C90E0E);
    color: white;
    border-radius: 32px;
    font-weight: 800;
    font-size: 17px;
    text-decoration: none;
    box-shadow: 0 8px 28px rgba(242,20,20,0.42);
    transition: all 0.3s ease;
}

.btn-donate-big:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(242,20,20,0.55); }

/* STRIP */
.contact-strip {
    background: linear-gradient(135deg, #D89A1D, #F2C14E);
    text-align: center;
    padding: 18px 20px;
}

.contact-strip p {
    margin: 0;
    font-size: 16.5px;
    font-weight: 700;
    color: #1a0a00;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .contact-hero { min-height: auto; padding: 100px 20px 70px; }
    .contact-hero h1 { font-size: 32px; }
    .contact-hero p { font-size: 16px; }
    .section-heading { font-size: 28px; }
    .detail-item { padding: 18px 18px; gap: 14px; }
    .detail-value { font-size: 14px; }
    .contact-actions { flex-direction: column; align-items: center; }
    .btn-call, .btn-whatsapp, .btn-donate-big { width: 100%; max-width: 280px; justify-content: center; }
    .map-box iframe { height: 320px; }
    .hours-card { padding: 30px 24px; }
    .hours-time { font-size: 22px; }
    .contact-donation h2 { font-size: 28px; }
    section { padding: 60px 20px; }
}
