/* ── Page Header ── */
.page-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: white;
    padding: 50px 0 40px;
}
.page-header h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
}
.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 14px;
}
.page-header .breadcrumb-item.active { color: white; }

/* ── Section ── */
.section-pad { padding: 80px 0; }
.title-line {
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
    margin-bottom: 12px;
}
.section-title {
    font-size: clamp(1.6rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.body-text {
    font-size: 15px;
    color: #444;
    line-height: 1.9;
}

/* ── Contact Info ── */
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.contact-icon {
    width: 48px;
    height: 48px;
    background: #FFF0E6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
    flex-shrink: 0;
}
.contact-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}
.contact-value {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
}

/* ── Social Buttons ── */
.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}
.social-btn.facebook {
    background: #1877F2;
    color: white;
}
.social-btn.facebook:hover {
    background: #0d65d8;
    color: white;
}
.social-btn.youtube {
    background: #FF0000;
    color: white;
}
.social-btn.youtube:hover {
    background: #cc0000;
    color: white;
}

/* ── Contact Form ── */
.contact-form-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}
.form-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #F5EDE3;
}
.form-control,
.form-select {
    border: 1.5px solid #e8e0d8;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(196,94,0,0.1);
    outline: none;
}
.form-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 6px;
}
.btn-send {
    padding: 12px 32px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 8px;
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transition: all 0.2s;
}
.btn-send:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

/* ── Map ── */
.map-section {
    padding: 0 0 80px;
}
.map-header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    font-size: 15px;
}
.map-embed-wrap {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.10);
}

/* ── Admission CTA ── */
.admission-cta {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    border-radius: 16px;
    padding: 48px;
    color: white;
}
.admission-cta h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}
.admission-cta p {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    margin: 0;
}
.admission-btn {
    background: white;
    color: var(--primary-dark);
    font-weight: 600;
    border-radius: 8px;
    padding: 12px 28px;
    transition: all 0.2s;
}
.admission-btn:hover {
    background: var(--accent);
    color: var(--primary-dark);
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .section-pad { padding: 50px 0; }
    .contact-form-card { padding: 24px 18px; }
    .admission-cta { padding: 32px 20px; }
    .admission-cta .text-lg-end { text-align: left !important; }
}