/**
 * Contact Page — Agency Light
 */

.contact-form-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 20px;
    padding: 2.75rem;
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.08);
    position: relative;
    overflow: hidden;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1d4ed8, #2563eb, #0ea5e9);
    z-index: 1;
}

.contact-form-header {
    text-align: center;
    margin-bottom: 2.25rem;
}

.contact-form-header i {
    color: var(--primary-color);
}

.contact-form-header h3 {
    font-size: 1.85rem;
    font-weight: 700;
    color: #0f172a;
    margin: 1rem 0 0.5rem;
}

.contact-form-header p {
    color: #64748b;
    font-size: 1.05rem;
}

.contact-form-card .form-label {
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.65rem;
    font-size: 0.95rem;
}

.contact-form-card .form-label i {
    color: var(--primary-color);
}

.contact-form-card .form-control {
    background: #f8fafc;
    border: 1.5px solid rgba(15, 23, 42, 0.1);
    border-radius: 12px;
    padding: 0.9rem 1.15rem;
    color: #0f172a;
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form-card .form-control::placeholder {
    color: #94a3b8;
}

.contact-form-card .form-control:focus {
    background: #ffffff;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.15);
    color: #0f172a;
}

.contact-form-card textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.btn-send-message {
    background: linear-gradient(135deg, #1d4ed8, #2563eb, #0284c7);
    border: none;
    color: #ffffff;
    padding: 1.1rem 2.5rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: 0 10px 28px rgba(37, 99, 235, 0.28);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    min-width: 260px;
}

.btn-send-message::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.btn-send-message:hover::before {
    width: 360px;
    height: 360px;
}

.btn-send-message:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(37, 99, 235, 0.35);
    color: #ffffff;
}

.btn-send-message i {
    position: relative;
    z-index: 1;
}

.contact-info-box {
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 20px;
    padding: 2.25rem;
}

.contact-info-item {
    color: #0f172a;
}

.contact-info-item i {
    color: var(--primary-color);
}

.contact-info-item h5 {
    color: #0f172a;
    font-weight: 650;
}

.contact-info-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

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

.contact-info-item p {
    color: #64748b;
}

@media (max-width: 768px) {
    .contact-form-card {
        padding: 1.75rem;
    }

    .btn-send-message {
        min-width: 100%;
    }
}
