/* =============================================
   PROFESSIONAL CONTACT PAGE STYLES
   ============================================= */

/* Page Header */
.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    font-family: var(--font-display, "Michroma", sans-serif);
}

.page-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

/* Contact Form */
.contact-form-wrapper {
    background: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    height: 100%;
}

.contact-form .form-group label {
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-form .form-control {
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    outline: none;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.btn-corxor {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    border: none;
    color: #ffffff;
    padding: 0.75rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-corxor:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    color: #ffffff;
}

.btn-corxor i {
    margin-right: 0.5rem;
}

/* Contact Info Cards */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #ffffff;
    padding: 1.25rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
    transform: translateX(4px);
}

.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.125rem;
    box-shadow: 0 4px 8px rgba(59, 130, 246, 0.25);
}

.contact-details {
    flex: 1;
}

.contact-details h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.contact-details p {
    color: #64748b;
    margin-bottom: 0.25rem;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.contact-details a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.contact-details a:hover {
    color: #06b6d4;
    text-decoration: underline;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 0.625rem;
    flex-wrap: wrap;
}

.social-links a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    color: #64748b;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1rem;
}

.social-links a:hover {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    border-color: transparent;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

/* Sub Banner */
.sub-banner {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 2rem 0;
    margin-bottom: 3rem;
}

.sub-banner .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.sub-banner .breadcrumb-item {
    color: #cbd5e1;
}

.sub-banner .breadcrumb-item a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sub-banner .breadcrumb-item a:hover {
    color: #06b6d4;
}

.sub-banner .breadcrumb-item.active {
    color: #06b6d4;
}

.sub-banner .breadcrumb-item + .breadcrumb-item::before {
    color: #cbd5e1;
}

/* Page Content */
.page-content {
    padding: 3rem 0;
    background: #f8fafc;
}

/* Responsive */
@media (max-width: 991px) {
    .page-title {
        font-size: 2rem;
    }

    .contact-form-wrapper,
    .contact-info-wrapper {
        margin-bottom: 2rem;
    }

    .contact-info-card {
        padding: 1.25rem;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 1.125rem;
    }
}

@media (max-width: 767px) {
    .page-title {
        font-size: 1.75rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .contact-info-card {
        padding: 1rem;
        gap: 1rem;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1rem;
    }

    .contact-details h4 {
        font-size: 1rem;
    }

    .btn-corxor {
        width: 100%;
    }
}

/* reCAPTCHA responsive */
@media (max-width: 575px) {
    .g-recaptcha {
        transform: scale(0.85);
        transform-origin: 0 0;
    }
}
