/* --- Banner --- */
.page-banner-clean {
    background:
        radial-gradient(circle at top right, rgba(193, 218, 255, 0.35), transparent 40%),
        linear-gradient(135deg, #eaf4ff, #f6fbff);
    padding: 90px 0;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

body.dark-theme .page-banner-clean {
    background:
        radial-gradient(circle at top right, rgba(193, 218, 255, 0.12), transparent 40%),
        linear-gradient(135deg, #111827, #0f1720);
}

.page-banner-inner {
    max-width: 840px;
    margin: 0 auto;
}

.page-banner-inner h1 {
    font-size: 52px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.15;
}

.page-banner-inner p {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 24px;
}

/* --- Contact Info Grid --- */
.contact-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.info-card {
    text-align: center;
    padding: 36px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.info-card h3 {
    font-size: 20px;
    color: #1e3a8a;
    margin-bottom: 12px;
    font-weight: 800;
}

body.dark-theme .info-card h3 {
    color: var(--primary);
}

.info-card p {
    color: var(--muted);
    font-size: 14px;
    flex-grow: 1; /* Pushes the link to the bottom neatly */
    margin-bottom: 18px;
}

.contact-link, .plain-text {
    font-weight: 700;
    font-size: 15px;
    color: #1e3a8a;
    background: #eaf4ff;
    padding: 8px 16px;
    border-radius: 999px;
    transition: 0.3s ease;
}

body.dark-theme .contact-link,
body.dark-theme .plain-text {
    background: #202b36;
    color: var(--text);
}

.contact-link:hover {
    background: linear-gradient(135deg, #E2F7F6, #C1DAFF);
    color: #0f172a;
    box-shadow: 0 4px 12px rgba(193, 218, 255, 0.4);
}

/* --- Form Styling --- */
.form-card-clean {
    max-width: 860px;
    margin: 0 auto;
    padding: 50px;
}

.clean-contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row-clean {
    display: flex;
    gap: 24px;
}

.form-group-clean {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group-clean.full-width {
    width: 100%;
}

.form-group-clean label {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
}

.form-group-clean input,
.form-group-clean textarea {
    width: 100%;
    padding: 16px 20px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 16px;
    color: var(--text);
    font-family: inherit;
    transition: 0.3s ease;
    outline: none;
}

.form-group-clean input:focus,
.form-group-clean textarea:focus {
    border-color: #C1DAFF;
    box-shadow: 0 0 0 4px rgba(193, 218, 255, 0.25);
    background: var(--card);
}

.form-submit-wrap {
    text-align: right;
    margin-top: 10px;
}

/* --- Social Section --- */
.social-card-wrap {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-clean-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px 40px 16px 16px;
    border-radius: 999px; /* Pill shape */
}

.social-icon-box {
    width: 60px;
    height: 60px;
    background: #eaf4ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

body.dark-theme .social-icon-box {
    background: rgba(193, 218, 255, 0.1);
}

.social-icon-box img {
    width: 32px; /* Much larger icon */
    height: 32px;
    object-fit: contain;
}

.social-clean-card span {
    font-size: 20px; /* Larger text */
    font-weight: 700;
    color: var(--text);
}

.social-clean-card:hover span {
    color: #1e3a8a;
}

body.dark-theme .social-clean-card:hover span {
    color: var(--primary);
}

.social-clean-card:hover .social-icon-box {
    background: linear-gradient(135deg, #E2F7F6, #C1DAFF);
    transform: scale(1.05);
}

/* --- Map Placeholder --- */
.map-clean-section {
    padding-bottom: 120px; /* Extra padding at bottom */
}

.map-clean-placeholder {
    width: 100%;
    height: 450px;
    background: #f0f7ff;
    border: 2px dashed rgba(193, 218, 255, 0.8);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e3a8a;
    font-weight: 700;
    font-size: 18px;
}

body.dark-theme .map-clean-placeholder {
    background: #202b36;
    border-color: #31404f;
    color: var(--primary);
}

/* --- Mobile Responsiveness --- */
@media (max-width: 992px) {
    .contact-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-banner-clean {
        padding: 60px 0;
    }
    
    .page-banner-inner h1 {
        font-size: 36px;
    }

    .contact-card-grid {
        grid-template-columns: 1fr;
    }

    .form-card-clean {
        padding: 30px 20px;
    }

    .form-row-clean {
        flex-direction: column;
        gap: 24px;
    }

    .form-submit-wrap {
        text-align: center;
    }

    .form-submit-wrap .primary-btn {
        width: 100%;
    }

    .social-card-wrap {
        flex-direction: column;
    }

    .map-clean-placeholder {
        height: 300px;
    }
}