/*--------------------------------------------------------------
# Contact Form Section - Professional Design
--------------------------------------------------------------*/
.contact-form-section {
    position: relative;
    overflow: hidden;
}

/* Form Card Container */
.contact-form-card {
    background: rgba(34, 34, 34, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 147, 60, 0.2);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.2),
        0 10px 20px -2px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color) 0%, rgba(0, 147, 60, 0.3) 100%);
    border-radius: 16px 16px 0 0;
}

/* Form Groups */
.contact-form-group {
    margin-bottom: 0;
}

.contact-form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-form-label i {
    color: var(--accent-color);
    font-size: 1rem;
}

/* Input Styles */
.contact-form-input,
.contact-form-select,
.contact-form-textarea {
    width: 100%;
    background: rgba(26, 26, 26, 0.9);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form-input:hover,
.contact-form-select:hover,
.contact-form-textarea:hover {
    border-color: rgba(0, 147, 60, 0.4);
}

.contact-form-input:focus,
.contact-form-select:focus,
.contact-form-textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(0, 147, 60, 0.15);
    background: rgba(26, 26, 26, 1);
}

.contact-form-input::placeholder,
.contact-form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* Select Styles */
.contact-form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%2300933c' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px 12px;
    padding-right: 2.5rem;
}

.contact-form-select option {
    background: #1a1a1a;
    color: #fff;
    padding: 0.5rem;
}

/* Textarea */
.contact-form-textarea {
    min-height: 150px;
    resize: vertical;
}

/* File Upload */
.contact-form-file-wrapper {
    position: relative;
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(26, 26, 26, 0.5);
    transition: all 0.3s ease;
    overflow: hidden;
}

.contact-form-file-wrapper:hover {
    border-color: rgba(0, 147, 60, 0.5);
    background: rgba(0, 147, 60, 0.05);
}

.contact-form-file {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.contact-form-file-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.contact-form-file-info i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.contact-form-file-info span {
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.contact-form-file-info small {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Submit Button */
.contact-form-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, #007d32 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 147, 60, 0.3);
}

.contact-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 147, 60, 0.4);
    background: linear-gradient(135deg, #00a745 0%, var(--accent-color) 100%);
}

.contact-form-submit:active {
    transform: translateY(0);
}

.contact-form-submit i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.contact-form-submit:hover i {
    transform: translateX(4px);
}

/* Alerts */
.contact-form-alert {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-form-alert-success {
    background: rgba(0, 147, 60, 0.15);
    border: 1px solid rgba(0, 147, 60, 0.3);
}

.contact-form-alert-error {
    background: rgba(220, 53, 69, 0.15);
    border: 1px solid rgba(220, 53, 69, 0.3);
}

.contact-form-alert-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-form-alert-success .contact-form-alert-icon {
    color: var(--accent-color);
}

.contact-form-alert-error .contact-form-alert-icon {
    color: #dc3545;
}

.contact-form-alert-content {
    flex: 1;
}

.contact-form-alert-content strong {
    display: block;
    margin-bottom: 0.25rem;
    color: #fff;
}

.contact-form-alert-content p,
.contact-form-alert-content ul {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.contact-form-alert-content ul {
    padding-left: 1rem;
}

.contact-form-alert-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    padding: 0.25rem;
    transition: color 0.2s ease;
}

.contact-form-alert-close:hover {
    color: #fff;
}

/* Footer Info Items */
.contact-form-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(34, 34, 34, 0.5);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.contact-form-info-item:hover {
    background: rgba(34, 34, 34, 0.8);
    border-color: rgba(0, 147, 60, 0.2);
}

.contact-form-info-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    background: rgba(0, 147, 60, 0.1);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    flex-shrink: 0;
}

.contact-form-info-item h4 {
    font-size: 0.875rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
    color: #fff;
}

.contact-form-info-item p {
    font-size: 0.8rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-form-card {
        padding: 1.5rem;
    }
    
    .contact-form-submit {
        margin-top: 1rem;
    }
    
    .contact-form-info-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-form-footer {
        margin-top: 2rem;
    }
}

@media (max-width: 576px) {
    .contact-form-card {
        padding: 1.25rem;
    }
    
    .contact-form-label {
        font-size: 0.8rem;
    }
    
    .contact-form-input,
    .contact-form-select,
    .contact-form-textarea {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
}

