/* Contact Form Styles */
.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 123, 255, 0.1), rgba(0, 123, 255, 0.05));
    z-index: 0;
}

.contact-form-container h3 {
    color: #007bff;
    margin-bottom: 2rem;
    text-align: center;
}

.form-group {
    /* margin-bottom: 2rem; */
    position: relative;
    z-index: 1;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px; /* 1rem; */
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.form-group label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: #666;
    transition: all 0.3s ease;
    pointer-events: none;
    background: white;
    padding: 0 5px;
}

.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -1rem;
    left: 1rem;
    font-size: 0.8rem;
    color: #007bff;
    background: white;
    padding: 0 8px;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.form-checkbox input[type="checkbox"] {
    width: 1.2rem;
    height: 1.2rem;
}

.form-checkbox label {
    color: #333;
    font-size: 0.9rem;
}

/* Submit Button */
.form-group button {
    width: 100%;
    padding: 1rem;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-group button:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

.form-group button i {
    transition: transform 0.3s ease;
}

.form-group button:hover i {
    transform: translateX(5px);
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.form-checkbox input[type="checkbox"] {
    width: 1.2rem;
    height: 1.2rem;
}

/* Contact Info Styles */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.info-box {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.info-icon {
    font-size: 2rem;
    color: #ff4e08;
    margin-bottom: 1rem;
}

.info-content h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.info-content p {
    color: #666;
    line-height: 1.5;
}

.map-container {
    border-radius: 5px;
    overflow: hidden;
    margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .info-box {
        margin-bottom: 1.5rem;
    }
}
