/* ============================================
   CONTACT PAGE - INTEX CAPITAL GROUP STYLE
   ============================================ */

/* Hero Section */
.contact-hero-section {
    background: linear-gradient(135deg, #0a1628 0%, #1a2744 100%);
    padding: 100px 0 60px 0;
    text-align: center;
    margin-top: 64px;
}

.contact-hero-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.contact-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

/* Contact Info Cards Section */
.contact-info-section {
    padding: 80px 0;
    background: #ffffff;
}

.contact-info-card {
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact-card-dark {
    background: #003d7a;
    color: #ffffff;
}

.contact-card-white {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    color: #1f2937;
}

.contact-card-cyan {
    background: #0891b2;
    color: #ffffff;
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.contact-icon-blue {
    background: var(--sn-primary, #1a73e8);
}

.contact-card-icon i {
    font-size: 28px;
    color: #ffffff;
}

.contact-card-label {
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: #ffffff;
}

.contact-card-email {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 20px;
}

.contact-card-link {
    display: inline-block;
    padding: 10px 30px;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.contact-card-link:hover {
    background: rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.contact-link-blue {
    background: var(--sn-primary, #1a73e8);
}

.contact-link-blue:hover {
    background: #1557b0;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: #ffffff;
}

.contact-image-section {
    background: #ffffff;
}

.contact-image-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0a1628;
    margin-bottom: 15px;
    line-height: 1.3;
}

.contact-image-text {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 30px;
}

.contact-image-wrapper {
    text-align: center;
    background: #ffffff;
}

.contact-image-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.contact-form-wrapper {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0a1628;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.contact-form-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--sn-primary, #1a73e8);
    margin: 15px auto 0 auto;
}

.contact-form-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    display: block;
}

.contact-form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
    margin-bottom: 20px;
}

.contact-form-input:focus {
    outline: none;
    border-color: var(--sn-primary, #1a73e8);
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
}

.contact-form-input::placeholder {
    color: #9ca3af;
}

.btn-contact-submit {
    display: inline-block;
    padding: 14px 40px;
    background: var(--sn-primary, #1a73e8);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-contact-submit:hover {
    background: #1557b0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 115, 232, 0.3);
}

/* Form Messages */
#form-message {
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    display: none;
}

#form-message.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
    display: block;
}

#form-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
    display: block;
}

/* Responsive */
@media (max-width: 991px) {
    .contact-hero-title {
        font-size: 2.5rem;
    }
    
    .contact-info-section {
        padding: 60px 0;
    }
    
    .contact-form-section {
        padding: 60px 0;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
}

@media (max-width: 767px) {
    .contact-hero-section {
        padding: 80px 0 50px 0;
    }
    
    .contact-hero-title {
        font-size: 2rem;
    }
    
    .contact-info-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .contact-form-title {
        font-size: 1.5rem;
    }
}
