/* Contact Page Specific Styles */
.contact-page {
    min-height: 100vh;
}

/* Contact Card */
.contact-page .contact-card {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.contact-page .contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0066cc, #00a3ff);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.contact-page .contact-card:hover::before {
    transform: scaleX(1);
}

/* Card Header */
.contact-page .card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-page .card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.contact-page .card-icon.bg-primary {
    background: linear-gradient(135deg, #0066cc 0%, #00a3ff 100%);
}

.contact-page .card-title {
    font-size: 1rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0;
    user-select: none;
}

/* Form Elements */
.contact-page .form-group {
    margin-bottom: 0.875rem;
}

.contact-page .form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 0.375rem;
    user-select: none;
}

.contact-page .form-input {
    width: 100%;
    padding: 0.625rem 0.875rem;
    font-size: 0.95rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    background-color: #ffffff;
    color: #2d3748;
    transition: all 0.2s ease;
}

.contact-page .form-input:disabled {
    background-color: #f7fafc;
    cursor: not-allowed;
    opacity: 0.7;
}

.contact-page .form-input:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.contact-page .form-input::placeholder {
    color: #a0aec0;
}

.contact-page .form-select {
    width: 100%;
    padding: 0.625rem 0.875rem;
    font-size: 0.95rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    background-color: #ffffff;
    color: #2d3748;
    transition: all 0.2s ease;
    cursor: pointer;
}

.contact-page .form-select:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.contact-page .form-textarea {
    width: 100%;
    min-height: 160px;
    padding: 0.625rem 0.875rem;
    font-size: 0.95rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    background-color: #ffffff;
    color: #2d3748;
    transition: all 0.2s ease;
    resize: vertical;
    font-family: inherit;
}

.contact-page .form-textarea:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.contact-page .form-textarea::placeholder {
    color: #a0aec0;
}

/* Checkbox */
.contact-page .checkbox-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0.875rem 0;
    padding: 0.75rem;
    background-color: #f7fafc;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.contact-page .checkbox-container:hover {
    background-color: #edf2f7;
}

.contact-page .form-checkbox {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 2px solid #cbd5e0;
    cursor: pointer;
    transition: all 0.2s ease;
}

.contact-page .form-checkbox:checked {
    background-color: #0066cc;
    border-color: #0066cc;
}

.contact-page .checkbox-label {
    font-size: 0.9rem;
    color: #4a5568;
    user-select: none;
    cursor: pointer;
    margin: 0;
}

/* Submit Button */
.contact-page .submit-button-container {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-page .btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    user-select: none;
    background: linear-gradient(135deg, #0066cc 0%, #00a3ff 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.contact-page .btn-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 102, 204, 0.4);
}

.contact-page .btn-submit:active:not(:disabled) {
    transform: translateY(0);
}

.contact-page .btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Alert */
.contact-page .alert-warning {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1rem 0;
}

.contact-page .alert-warning p {
    color: #d97706;
    font-weight: 600;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-page .contact-card {
        padding: 1.25rem;
    }

    .contact-page .form-input,
    .contact-page .form-select,
    .contact-page .form-textarea {
        font-size: 0.875rem;
        padding: 0.625rem 0.875rem;
    }

    .contact-page .btn-submit {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .contact-page .card-header {
        gap: 0.5rem;
    }

    .contact-page .card-icon {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
}
