/* ==========================================
   CONTACT PAGE
========================================== */

.page-main {
    padding-top: 0;
}

.contact-hero {
    position: relative;
    min-height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 150px 20px 100px;
    margin-top: -80px;
    overflow: hidden;
    background: #111;
}

.contact-hero-bg {
    position: absolute;
    inset: 0;
    background: url("../images/hero/santosh-bhartiya-with-former-prime-minister-v-p-singh.jpg") center center / cover no-repeat;
    transform: scale(1.06);
}

.contact-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.88) 0%, rgba(139, 30, 63, 0.72) 100%);
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: 0 10px;
}

.contact-hero-content h1 {
    font-size: clamp(40px, 5vw, 56px);
    color: #fff;
    margin-bottom: 18px;
}

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

/* Main Contact Section */

.contact-main {
    padding: 90px 0;
    background: #f8f8f8;
}

.contact-main-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: start;
}

/* Form */

.contact-form-card {
    background: #fff;
    padding: 48px;
    border-radius: 18px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
}

.contact-form-card h2 {
    font-size: 30px;
    color: #111;
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: var(--body);
    font-size: 15px;
    color: #333;
    background: #fafafa;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(139, 30, 63, 0.1);
}

.form-group textarea {
    min-height: 160px;
    resize: vertical;
}

.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.contact-submit-btn:hover {
    background: #6d1732;
    transform: translateY(-2px);
}

/* Info Card */

.contact-info-card {
    background: #fff;
    padding: 48px 40px;
    border-radius: 18px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
}

.contact-info-card h2 {
    font-size: 28px;
    color: #111;
    margin-bottom: 32px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 28px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.contact-info-text h3 {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    margin-bottom: 4px;
    font-family: var(--body);
}

.contact-info-text p,
.contact-info-text a {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.contact-info-text a:hover {
    color: var(--primary);
}

/* Social Connect */

.contact-social {
    padding: 70px 0;
    background: #fff;
    text-align: center;
}

.contact-social h2 {
    font-size: 32px;
    color: #111;
    margin-bottom: 12px;
}

.contact-social > p {
    font-size: 16px;
    color: #666;
    margin-bottom: 36px;
}

.contact-social-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.contact-social-icons a {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 20px;
    transition: var(--transition);
}

.contact-social-icons a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-4px);
}

/* Responsive */

@media (max-width: 992px) {
    .contact-main-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-form-card,
    .contact-info-card {
        padding: 36px 28px;
    }
}

@media (max-width: 767px) {
    .contact-hero {
        min-height: 380px;
        padding: 130px 20px 80px;
    }

    .contact-main {
        padding: 60px 0;
    }

    .contact-social {
        padding: 50px 0;
    }

    .contact-submit-btn {
        width: 100%;
        justify-content: center;
    }
}
