      /* Stiluri de bază îmbunătățite */
      .map-section {
        position: relative;
        width: 100%;
        height: 600px;
        margin-top: 2rem;
        z-index: 1;
    }

    .map-container {
        position: absolute;
        left: 0;
        right: 0;
        height: 100%;
        overflow: hidden;
        filter: saturate(1.5) contrast(1.1);
        transition: all 0.5s ease-in-out;
    }

    /* Efect de sticlă de lux */
    .glass-card {
        backdrop-filter: blur(20px) saturate(180%);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .glass-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1), 0 10px 20px -10px rgba(183, 156, 80, 0.2);
    }

    .glass-card.light {
        background-color: rgba(255, 255, 255, 0.85);
        border: 1px solid rgba(209, 213, 219, 0.3);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.03), inset 0 1px 1px rgba(255, 255, 255, 0.7);
    }

    .glass-card.dark {
        background-color: rgba(17, 24, 39, 0.85);
        border: 1px solid rgba(55, 65, 81, 0.3);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 1px 3px rgba(0, 0, 0, 0.15), inset 0 1px 1px rgba(255, 255, 255, 0.05);
    }

    /* Animații elegante */
    .animate-fade-up {
        opacity: 0;
        transform: translateY(30px);
        animation: fadeUp 0.7s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    }

    @keyframes fadeUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .animate-delay-1 { animation-delay: 0.2s; }
    .animate-delay-2 { animation-delay: 0.4s; }
    .animate-delay-3 { animation-delay: 0.6s; }

    /* Card-uri feature îmbunătățite */
    .feature-card {
        transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
        border: 1px solid rgba(183, 156, 80, 0.05);
        box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
    }

    .feature-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 30px -5px rgba(183, 156, 80, 0.15), 0 10px 15px -5px rgba(0, 0, 0, 0.05);
        border-color: rgba(183, 156, 80, 0.2);
    }

    .feature-icon {
        transition: all 0.3s ease-out;
        filter: drop-shadow(0 2px 3px rgba(183, 156, 80, 0.2));
    }

    .feature-card:hover .feature-icon {
        transform: scale(1.1) translateY(-3px);
        filter: drop-shadow(0 4px 6px rgba(183, 156, 80, 0.4));
    }

    /* Stiluri pentru elemente de intrare */
    input[type="text"], 
    input[type="email"], 
    input[type="tel"], 
    textarea {
        transition: all 0.3s ease;
    }

    input[type="text"]:focus, 
    input[type="email"]:focus, 
    input[type="tel"]:focus, 
    textarea:focus {
        box-shadow: 0 0 0 3px rgba(183, 156, 80, 0.15);
        transform: translateY(-1px);
    }
    
    /* Checkbox personalizat de lux */
    input[type="checkbox"] {
        position: relative;
        cursor: pointer;
        transition: all 0.2s ease;
    }

    input[type="checkbox"]:checked {
        border-color: #b79c50;
        background-color: #b79c50;
    }

    input[type="checkbox"]:checked:hover {
        background-color: #caad5a;
    }

    /* Stiluri pentru iconițele de input - centrate cu dimensiune fixă */
    .input-icon-container {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 2.5rem;
        transition: color 0.2s ease;
    }
    
    input.border-red-500 ~ .input-icon-container svg,
    textarea.border-red-500 ~ .input-icon-container svg {
        color: rgb(239, 68, 68);
    }
    
    input.border-green-500 ~ .input-icon-container svg,
    textarea.border-green-500 ~ .input-icon-container svg {
        color: rgb(34, 197, 94);
    }
    
    /* Tranziție pentru iconițe */
    .input-icon-container svg {
        transition: color 0.3s ease;
    }

    button[type="submit"] {
        transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
        position: relative;
        overflow: hidden;
    }

    button[type="submit"]:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px -5px rgba(183, 156, 80, 0.4), 0 8px 10px -6px rgba(183, 156, 80, 0.2);
    }

    button[type="submit"]::after {
        content: "";
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(45deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0) 100%);
        transform: rotate(45deg);
        transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
        z-index: 1;
        opacity: 0;
    }

    button[type="submit"]:hover::after {
        animation: buttonShine 1.5s ease forwards;
    }

    @keyframes buttonShine {
        0% {
            opacity: 0;
            left: -50%;
        }
        30% {
            opacity: 1;
        }
        100% {
            opacity: 0;
            left: 150%;
        }
    }

    /* Optimizări pentru mobil */
    @media (max-width: 768px) {
        .map-section {
            height: 450px;
        }
    }

    /* Adăugăm stilizare pentru popup-ul Leaflet */
    .leaflet-popup-content {
        margin: 0 !important;
        width: auto !important;
        min-width: 200px;
    }

    .leaflet-popup-content-wrapper {
        padding: 0 !important;
        border-radius: 1rem !important;
        overflow: hidden;
    }

    /* Stilizare modernă și compactă pentru popup */
    .leaflet-popup {
        margin: 0;
    }

    .leaflet-popup-content-wrapper {
        padding: 0 !important;
        border-radius: 12px !important;
        overflow: hidden;
        box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1) !important;
    }

    .leaflet-popup-tip {
        display: none; /* Ascundem vârful popup-ului pentru un design mai curat */
    }

    .map-popup-modern .leaflet-popup-content-wrapper {
        background: rgba(10, 10, 10, 0.6) !important;
        backdrop-filter: blur(24px) !important;
        -webkit-backdrop-filter: blur(24px) !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
        border-radius: 1rem !important;
        color: white !important;
    }

    .dark .map-popup-modern .leaflet-popup-content-wrapper {
        background: rgba(10, 10, 10, 0.6) !important;
        border-color: rgba(255, 255, 255, 0.08) !important;
        color: white !important;
    }

    .map-popup-modern .leaflet-popup-tip {
        display: none;
    }

    .map-popup-modern .leaflet-popup-content {
        margin: 0;
        width: 280px !important;
        padding: 2px;
    }

    .leaflet-popup-shadow {
        display: none !important;
    }

    .custom-popup {
        width: 260px;
        max-width: 100%;
        background: white;
        display: flex;
        flex-direction: column;
        border-radius: 12px;
        overflow: hidden;
    }

    .dark .custom-popup {
        background: #1f2937;
    }

    .custom-popup-image-container {
        width: 100%;
        height: 120px;
        position: relative;
        overflow: hidden;
        background: #f3f4f6;
    }

    .dark .custom-popup-image-container {
        background: #374151;
    }

    .custom-popup-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .custom-popup-image:hover {
        transform: scale(1.05);
    }

    .custom-popup-content {
        width: 100%;
        padding: 0.75rem;
    }

    .custom-popup-title {
        font-size: 0.875rem;
        font-weight: 700;
        margin-bottom: 0.25rem;
        line-height: 1.25;
    }


    .custom-popup-address {
        color: #6b7280;
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
        padding-bottom: 0.5rem;
        border-bottom: 1px solid #e5e7eb;
    }

    .dark .custom-popup-address {
        color: #9ca3af;
        border-bottom-color: #374151;
    }

    .custom-popup-features {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.375rem;
        margin-bottom: 0.75rem;
    }

    .feature-item {
        display: flex;
        align-items: center;
        gap: 0.375rem;
        padding: 0.375rem 0.5rem;
        background: rgba(183, 156, 80, 0.1);
        border-radius: 6px;
    }

    .dark .feature-item {
        background: rgba(183, 156, 80, 0.15);
    }

    .feature-item svg {
        width: 0.875rem;
        height: 0.875rem;
        color: #b79c50;
        flex-shrink: 0;
    }

    .feature-item span {
        font-size: 0.75rem;
        color: #4b5563;
        font-weight: 500;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .dark .feature-item span {
        color: #d1d5db;
    }

    .map-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.25rem;
        width: auto;
        margin-left: auto;
        padding: 0.375rem 0.5rem;
        background: #b79c50;
        color: white !important;
        border-radius: 4px;
        font-weight: 500;
        font-size: 0.7rem;
        text-decoration: none;
        transition: background-color 0.2s ease;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    }

    .dark .map-link {
        background: #8a6c2b;
        color: white !important;
    }

    .map-link:hover {
        background: #d4b45f;
        color: white !important;
    }

    .map-link svg {
        width: 0.75rem;
        height: 0.75rem;
        color: white;
    }

    @media (min-width: 768px) {
        .map-link {
            font-size: 0.75rem;
            padding: 0.375rem 0.625rem;
        }
        
        .map-link svg {
            width: 0.875rem;
            height: 0.875rem;
        }
    }

    /* Stiluri pentru progresul notificării */
    #notification-progress {
        transition: transform 5s linear;
    }
    
    /* Culori pentru progresul notificării bazate pe tip */
    #notification-progress.success {
        background-color: rgb(34, 197, 94);
    }
    
    #notification-progress.error {
        background-color: rgb(239, 68, 68);
    }
    
    #notification-progress.warning {
        background-color: rgb(234, 179, 8);
    }
    
    #notification-progress.info {
        background-color: rgb(59, 130, 246);
    }
    
    /* Animație pentru notificări */
    @keyframes notificationSlideIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes notificationSlideOut {
        from {
            opacity: 1;
            transform: translateY(0);
        }
        to {
            opacity: 0;
            transform: translateY(20px);
        }
    }
    
    .notification-animate-in {
        animation: notificationSlideIn 0.3s ease forwards;
    }
    
    .notification-animate-out {
        animation: notificationSlideOut 0.3s ease forwards;
    }
