/* Contact Page Custom Styling */

.contact-card {
    transition: all 0.3s ease;
    background: #ffffff;
    border: 1px solid #e2e8f0;
}

.contact-card:hover {
    border-color: #10b981;
}

.contact-icon {
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.contact-card:hover .contact-icon {
    transform: scale(1.01);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.form-input {
    transition: all 0.3s ease;
    border: 2px solid #e5e7eb;
    background: #ffffff;
}

.form-input:focus {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
    outline: none;
    background: #f9fafb;
}

.form-input:hover {
    border-color: #d1d5db;
}

.submit-button {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
}

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

.map-container {
    background: #f3f4f6;
    transition: all 0.3s ease;
    border: 2px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

.map-container:hover {
    border-color: #10b981;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 400px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.map-placeholder:hover {
    background: #e5e7eb;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in:nth-child(1) {
    animation-delay: 0.1s;
}

.fade-in:nth-child(2) {
    animation-delay: 0.2s;
}

.fade-in:nth-child(3) {
    animation-delay: 0.3s;
}

.fade-in:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gradient-text {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.business-hours-card {
    background: #ffffff;
    border: 1px solid #d1fae5;
    transition: all 0.3s ease;
}

.business-hours-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.1);
}

/* Mobile-specific styles - plain white backgrounds */
@media (max-width: 768px) {
    .contact-card {
        background: #ffffff;
    }

    .contact-card:hover {
        background: #ffffff;
    }

    .map-placeholder {
        background: #ffffff;
    }

    .map-placeholder:hover {
        background: #ffffff;
    }

    .business-hours-card {
        background: #ffffff;
    }

    .business-hours-card:hover {
        background: #ffffff;
    }
}