/* Smooth transitions for sections */
.section-container {
    transition: all 0.4s ease-in-out;
    opacity: 1;
    max-height: 2000px;
    overflow: hidden;
    transform: translateY(0);
}
/* Hidden state for conditional sections */
.section-container.hidden-custom {
    opacity: 0;
    max-height: 0;
    margin: 0;
    padding: 0;
    pointer-events: none;
    transform: translateY(-10px);
}
/* Step transition animations */
.step-transition {
    transition: opacity 0.3s ease-in-out;
}
.hidden-step {
    display: none;
}

/* Google Maps Autocomplete Custom Styling */
.pac-container {
    border-radius: 0.5rem;
    margin-top: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    font-family: inherit;
    z-index: 9999; /* Ensure it appears above other elements */
}
.pac-item {
    padding: 10px 15px;
    font-size: 14px;
    cursor: pointer;
}
.pac-item:hover {
    background-color: #f3f4f6;
}
.pac-icon {
    display: none; /* Cleaner look without default icons */
}
