@import url('./fonts.css');

body {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Header Styles */
.page-header {
    background: white;
    margin-top: 3rem;
    padding: 4rem 0;
    margin-bottom: 3rem;
    box-shadow: var(--card-shadow);
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    font-family: Lora-bold;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Cards */
.contact-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border: none;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-card h4 {
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.75rem;
}

.contact-card p {
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
}

/* Form Styles */
.form-container {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--box-shadow);
    border: none;
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.75rem;
}

.form-subtitle {
    color: #6c757d;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.form-label {
    font-weight: 500;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.form-control,
.form-select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: var(--transition);
    background: #fafafa;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(22, 110, 34, 0.15);
    background: white;
}

.form-control.is-invalid,
.form-select.is-invalid {
    border-color: #dc3545;
    background: #fff5f5;
}

.invalid-feedback {
    display: block;
    font-size: 0.875rem;
    color: #dc3545;
    margin-top: 0.25rem;
}

/* Character Counter */
.char-counter {
    font-size: 0.875rem;
    color: #6c757d;
    text-align: right;
    margin-top: 0.25rem;
}

/* Submit Button */
.btn-submit {
    background: var(--primary-color);
    border: none;
    border-radius: 10px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    transition: var(--transition);
    width: 100%;
    margin-top: 1rem;
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(22, 110, 34, 0.3);
}

.btn-submit:disabled {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Success Message */
.success-container {
    background: white;
    border-radius: 20px;
    padding: 4rem 3rem;
    text-align: center;
    box-shadow: var(--box-shadow);
    border: none;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #d4edda;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.success-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.success-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.success-message {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.reference-box {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    border-left: 4px solid var(--primary-color);
}

.reference-id {
    font-family: 'Courier New', monospace;
    font-weight: 600;
    color: var(--primary-color);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}


/* Responsive Design */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }

    .form-container {
        padding: 2rem;
    }
}
