/* ===================================
   CONTACT PAGE - MODERN & PROFESSIONAL
   =================================== */

/* Page Hero - Modern (Reused Concept) */
.page-hero-modern {
    position: relative;
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    overflow: hidden;
    text-align: center;
    color: white;
}

.page-hero-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 102, 204, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 163, 224, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.page-hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.page-hero-lead {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Wrapper */
.contact-section-modern {
    padding: 4rem 0;
    background: #f8fbff;
}

.contact-layout-split {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
}

/* Contact Left: Info Cards */
.contact-info-stack {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.c-info-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.c-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.08);
    border-color: rgba(0, 102, 204, 0.1);
}

.c-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(0, 163, 224, 0.1) 100%);
    color: #0066CC;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.c-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.c-content p,
.c-content a {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 0.25rem;
    display: block;
    text-decoration: none;
    line-height: 1.5;
}

.c-content a:hover {
    color: #0066CC;
}

/* Contact Right: Form */
.modern-form-container {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.modern-form-container h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2rem;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.input-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.modern-input,
.modern-textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.95rem;
    color: #334155;
    transition: all 0.3s ease;
}

.modern-input:focus,
.modern-textarea:focus {
    background: white;
    border-color: #0066CC;
    box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.05);
    outline: none;
}

.modern-textarea {
    min-height: 150px;
    resize: vertical;
}

.modern-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.btn-modern-submit {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #0066CC 0%, #004d99 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.btn-modern-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 102, 204, 0.2);
}

/* Manager Section */
.manager-section {
    padding: 4rem 0;
    background: white;
}

.manager-card-horizontal {
    display: flex;
    background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.manager-image {
    width: 35%;
    position: relative;
}

.manager-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.manager-info {
    padding: 3rem;
    width: 65%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-layout-split {
        grid-template-columns: 1fr;
    }

    .manager-card-horizontal {
        flex-direction: column;
    }

    .manager-image {
        width: 100%;
        height: 300px;
    }

    .manager-info {
        width: 100%;
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .page-hero-modern {
        padding: 120px 0 60px;
    }

    .modern-form-container {
        padding: 2rem;
    }

    .form-grid-2 {
        grid-template-columns: 1fr;
    }
}