/* Premium Car Features Section */
.premium-car-features {
    margin: 20px 0;
    padding: 0;
}

.features-glass-container {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(72, 187, 82, 0.2);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(72, 187, 82, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.features-glass-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #48bb52, rgba(72, 187, 82, 0.6), #48bb52);
    border-radius: 12px 12px 0 0;
}

/* Features section styling */
.premium-features-section {
    margin-bottom: 25px;
}

.premium-features-section:last-child {
    margin-bottom: 0;
}

/* Category title styling */
.premium-features-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(72, 187, 82, 0.15);
}

.premium-category-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(72, 187, 82, 0.3));
}

.premium-category-name {
    font-size: 1rem;
    font-weight: 600;
    color: #0D0C1B;
    margin: 0;
}

.premium-category-count {
    background: rgba(72, 187, 82, 0.1);
    color: #48bb52;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 12px;
    margin-left: auto;
}

/* Features grid layout */
.premium-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    width: 100%;
}

/* Individual feature chip styling */
.premium-feature-chip {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(72, 187, 82, 0.2);
    border-radius: 20px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: default;
    font-size: 0.85rem;
    font-weight: 500;
    color: #0D0C1B;
    white-space: nowrap;
    text-overflow: ellipsis;
    min-width: 0;
}

.premium-feature-chip::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(72, 187, 82, 0.1), transparent);
    transition: left 0.5s ease;
}

.premium-feature-chip:hover::before {
    left: 100%;
}

.premium-feature-chip:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(72, 187, 82, 0.15);
    border-color: rgba(72, 187, 82, 0.4);
    background: rgba(255, 255, 255, 1);
}

/* Feature check icon */
.premium-feature-check {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    fill: #48bb52;
    filter: drop-shadow(0 1px 2px rgba(72, 187, 82, 0.3));
}

/* No features message */
.premium-no-features {
    text-align: center;
    padding: 40px 20px;
    color: #7A7575;
    font-style: italic;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    border: 1px dashed rgba(72, 187, 82, 0.3);
}

/* Responsive design */
@media (max-width: 768px) {
    .features-glass-container {
        padding: 15px;
        margin: 15px 0;
    }
    
    .premium-features-title {
        gap: 8px;
        margin-bottom: 12px;
    }
    
    .premium-category-icon {
        width: 18px;
        height: 18px;
    }
    
    .premium-category-name {
        font-size: 0.9rem;
    }
    
    .premium-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .premium-feature-chip {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .premium-feature-check {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 768px) {
    .premium-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .premium-features-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .premium-category-count {
        margin-left: 0;
        align-self: flex-start;
    }
    
    .premium-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }
    
    .premium-feature-chip {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
}

/* Premium Description Section */
.premium-description {
    margin: 20px 0;
    padding: 0;
}

.description-glass-container {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(33, 150, 243, 0.2);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(33, 150, 243, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.description-glass-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2196f3, rgba(33, 150, 243, 0.6), #2196f3);
    border-radius: 12px 12px 0 0;
}

.premium-description-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(33, 150, 243, 0.15);
}

.premium-description-icon {
    width: 24px;
    height: 24px;
    color: #2196f3;
    flex-shrink: 0;
}

.premium-description-title h4 {
    margin: 0;
    color: #2c3e50;
    font-weight: 600;
    font-size: 18px;
}

.premium-description-content {
    color: #555;
    line-height: 1.7;
    font-size: 15px;
}

.premium-description-content p {
    margin-bottom: 15px;
}

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

/* Premium Location Section */
.premium-location {
    margin: 20px 0;
    padding: 0;
}

.location-glass-container {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 152, 0, 0.2);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(255, 152, 0, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.location-glass-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff9800, rgba(255, 152, 0, 0.6), #ff9800);
    border-radius: 12px 12px 0 0;
}

.premium-location-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 152, 0, 0.15);
}

.premium-location-icon {
    width: 24px;
    height: 24px;
    color: #ff9800;
    flex-shrink: 0;
}

.premium-location-title h4 {
    margin: 0;
    color: #2c3e50;
    font-weight: 600;
    font-size: 18px;
}

.premium-location-address {
    color: #555;
    font-size: 15px;
    margin-bottom: 20px;
    padding: 12px 16px;
    background: rgba(255, 152, 0, 0.05);
    border-radius: 8px;
    border-left: 3px solid #ff9800;
}

.premium-map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.premium-map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 8px;
}

/* Responsive design for new sections */
@media (max-width: 1200px) {
    .premium-description-icon,
    .premium-location-icon {
        width: 20px;
        height: 20px;
    }
    
    .premium-description-title h4,
    .premium-location-title h4 {
        font-size: 17px;
    }
}

@media (max-width: 1000px) {
    .premium-description-icon,
    .premium-location-icon {
        width: 18px;
        height: 18px;
    }
    
    .premium-description-title h4,
    .premium-location-title h4 {
        font-size: 16px;
    }
    
    .description-glass-container,
    .location-glass-container {
        padding: 22px;
    }
}

@media (max-width: 768px) {
    .description-glass-container,
    .location-glass-container {
        padding: 20px;
    }
    
    .premium-description-title,
    .premium-location-title {
        gap: 10px;
    }
    
    .premium-description-icon,
    .premium-location-icon {
        width: 20px;
        height: 20px;
    }
    
    .premium-description-title h4,
    .premium-location-title h4 {
        font-size: 16px;
    }
    
    .premium-description-content,
    .premium-location-address {
        font-size: 14px;
    }
    
    .premium-map-container iframe {
        height: 300px;
    }
}

@media (max-width: 600px) {
    .description-glass-container,
    .location-glass-container {
        padding: 18px;
    }
    
    .premium-description-icon,
    .premium-location-icon {
        width: 18px;
        height: 18px;
    }
    
    .premium-description-title h4,
    .premium-location-title h4 {
        font-size: 15px;
    }
    
    .premium-description-content,
    .premium-location-address {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .description-glass-container,
    .location-glass-container {
        padding: 15px;
    }
    
    .premium-description-icon,
    .premium-location-icon {
        width: 22px;
        height: 22px;
    }
    
    .premium-description-title h4,
    .premium-location-title h4 {
        font-size: 16px;
    }
    
    .premium-description-content,
    .premium-location-address {
        font-size: 14px;
    }
    
    .premium-map-container iframe {
        height: 250px;
    }
}