/* Premium Modern Styles for Contact Page */
:root {
    --primary-gradient: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    --dark-gradient: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --soft-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.04);
    --hover-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.08);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Subtitle Badges */
.section-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.1);
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 16px;
}

/* Hero Banner Redesign */
.hero-contact-bg {
    background: var(--dark-gradient) !important;
    position: relative;
    overflow: hidden;
    padding: 100px 0 80px 0 !important;
}

.hero-contact-bg::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, rgba(0,0,0,0) 70%);
    top: -50px;
    left: -50px;
    z-index: 1;
    pointer-events: none;
}

/* Connect Info Side Column Styles */
.info-container {
    padding-right: 2rem;
}

.info-title {
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.contact-item-icon {
    width: 44px;
    height: 44px;
    background: rgba(59, 130, 246, 0.06);
    color: #3b82f6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.contact-list-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.contact-list-item:hover .contact-item-icon {
    background: #3b82f6;
    color: #ffffff;
    transform: scale(1.05);
}

.contact-item-text {
    color: #475569;
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
    padding-top: 10px;
}

/* Premium Modern Form Wrapper Card */
.contact-form-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--soft-shadow);
    transition: var(--transition-smooth);
}

.contact-form-card:hover {
    box-shadow: var(--hover-shadow);
    border-color: rgba(15, 23, 42, 0.09);
}

/* Custom Form Field Design */
.form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control {
    background-color: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 0.95rem;
    color: #0f172a;
    font-weight: 400;
    transition: var(--transition-smooth);
}

.form-control:focus {
    background-color: #ffffff;
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
    outline: none;
}

.form-control::placeholder {
    color: #94a3b8;
}

/* Premium Action Button styling */
.btn-contact-submit {
    background: var(--primary-gradient);
    border: none;
    color: #ffffff;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.btn-contact-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.btn-contact-submit:disabled {
    background: #94a3b8 !important;
    color: #e2e8f0 !important;
    box-shadow: none !important;
    cursor: not-allowed;
}

/* Soft Accent Tip Container */
.tip-box {
    background: rgba(15, 23, 42, 0.02);
    border-left: 3px solid #64748b;
    padding: 16px 20px;
    border-radius: 0 12px 12px 0;
    margin-top: 32px;
}

/* Polished Notifications alerts */
.alert {
    border: none;
    border-radius: 14px;
    padding: 16px 20px;
    font-weight: 500;
    font-size: 0.92rem;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
}

.alert-success {
    background-color: #ecfdf5;
    color: #065f46;
    border: 1px solid rgba(16, 185, 129, 0.15);
}

.alert-danger {
    background-color: #fef2f2;
    color: #991b1b;
    border: 1px solid rgba(239, 68, 68, 0.15);
}