/* Parking Elementor Widget Styles */

.pew-wrapper {
    background: #1B3A57;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Header Section */
.pew-header {
    background: linear-gradient(135deg, #1B3A57 0%, #253d5e 100%);
    padding: 50px 30px;
    text-align: center;
    color: white;
}

.pew-header h2 {
    font-size: 40px;
    font-weight: 600;
    margin: 0 0 15px 0;
    color: white;
    line-height: 1.2;
}

.pew-header p {
    font-size: 18px;
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.3px;
    line-height: 1.5;
}

/* Selector Section */
.pew-selector-section {
    padding: 30px;
    background: #1B3A57;
}

.pew-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.pew-selector {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background-color: white;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.pew-selector:hover {
    border-color: rgba(255, 255, 255, 0.4);
}

.pew-selector:focus {
    outline: none;
    border-color: white;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

/* Results Section */
.pew-results {
    display: none;
    background: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.pew-results.visible {
    display: block;
    max-height: 2000px;
}

/* Map Section */
.pew-map-section {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pew-map-section.hidden {
    display: none;
}

.pew-featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Content Section */
.pew-content-section {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    padding: 40px;
}

.pew-location-title {
    grid-column: 1;
    padding-right: 30px;
    border-right: 3px solid #f0f0f0;
}

.pew-location-title h3 {
    font-size: 36px;
    font-weight: 600;
    color: #1B3A57;
    margin: 0;
    line-height: 1.2;
}

.pew-location-details {
    grid-column: 2;
}

.pew-content {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

.pew-content p {
    margin: 0 0 15px 0;
}

.pew-content p:last-child {
    margin-bottom: 0;
}

/* Empty State */
.pew-no-selection {
    text-align: center;
    padding: 60px 30px;
    color: #999;
    font-size: 16px;
    background: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pew-header {
        padding: 40px 20px;
    }

    .pew-header h2 {
        font-size: 28px;
    }

    .pew-header p {
        font-size: 16px;
    }

    .pew-content-section {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 20px;
    }

    .pew-location-title {
        grid-column: 1;
        padding-right: 0;
        border-right: none;
        border-bottom: 3px solid #f0f0f0;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .pew-location-details {
        grid-column: 1;
    }

    .pew-location-title h3 {
        font-size: 28px;
    }

    .pew-selector-section {
        padding: 20px;
    }

    .pew-map-section {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .pew-header h2 {
        font-size: 24px;
    }

    .pew-header p {
        font-size: 14px;
    }

    .pew-content-section {
        padding: 20px 15px;
    }

    .pew-location-title h3 {
        font-size: 22px;
    }

    .pew-map-section {
        height: 200px;
    }

    .pew-content {
        font-size: 14px;
    }
}
