/* ========================================
   Golden Visa Info Banner - PREMIUM v2.0
   Luxury, classy, aesthetically pleasing design
   Navy blue gradient with gold accents
   ======================================== */

/* Golden Visa Property Badge */
.golden-visa-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
    display: flex;
    align-items: center;
    gap: 0.35rem;
    z-index: 2;
    animation: goldenPulse 2s ease-in-out infinite;
}

.golden-visa-badge i {
    font-size: 0.9rem;
}

@keyframes goldenPulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(212, 175, 55, 0.6);
    }
}

/* Golden Visa Banner Section - PREMIUM DESIGN */
.golden-visa-banner {
    padding: 3.5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 15%, #fef9f3 35%, #fff7ed 50%, #fef9f3 65%, #f8f9fa 85%, #ffffff 100%);
    background-size: 200% 200%;
    position: relative;
    overflow: hidden;
    animation: gradientShift 20s ease infinite;
}

/* Premium Gold Separator Line - Top */
.golden-visa-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #d4af37 20%, #f4d03f 50%, #d4af37 80%, transparent 100%);
    background-size: 200% 100%;
    animation: borderShine 3s ease-in-out infinite;
    z-index: 2;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Subtle Background Pattern */
.golden-visa-banner .container {
    position: relative;
}

.golden-visa-banner .container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(244, 208, 63, 0.08) 0%, transparent 50%),
        repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(212, 175, 55, 0.03) 60px, rgba(212, 175, 55, 0.03) 120px);
    opacity: 1;
    pointer-events: none;
    animation: backgroundPulse 15s ease-in-out infinite;
    z-index: 0;
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Premium Gold Border Top */
.golden-visa-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #d4af37 20%, #f4d03f 50%, #d4af37 80%, transparent 100%);
    background-size: 200% 100%;
    animation: borderShine 3s ease-in-out infinite;
}

@keyframes borderShine {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Main Content Container - Glassmorphism */
.visa-banner-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2.5rem;
    align-items: center;
    padding: 2.5rem 3rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    box-shadow: 
        0 15px 45px rgba(212, 175, 55, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.visa-banner-content:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 20px 60px rgba(212, 175, 55, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(212, 175, 55, 0.4);
}

/* Elegant Inner Glow */
.visa-banner-content::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), transparent 40%, transparent 60%, rgba(244, 208, 63, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.visa-banner-content:hover::before {
    opacity: 1;
}

/* Premium Trophy Icon with Glow */
.visa-banner-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
    background-size: 200% 200%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 
        0 6px 24px rgba(212, 175, 55, 0.35),
        0 0 0 6px rgba(212, 175, 55, 0.1),
        0 0 0 12px rgba(212, 175, 55, 0.05);
    position: relative;
    animation: iconGlow 3s ease-in-out infinite, iconRotate 20s linear infinite;
    flex-shrink: 0;
}

@keyframes iconGlow {
    0%, 100% {
        box-shadow: 
            0 6px 24px rgba(212, 175, 55, 0.35),
            0 0 0 6px rgba(212, 175, 55, 0.1),
            0 0 0 12px rgba(212, 175, 55, 0.05);
    }
    50% {
        box-shadow: 
            0 6px 30px rgba(212, 175, 55, 0.5),
            0 0 0 9px rgba(212, 175, 55, 0.15),
            0 0 0 18px rgba(212, 175, 55, 0.08);
    }
}

@keyframes iconRotate {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.visa-banner-icon i {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Text Content - Premium Typography */
.visa-banner-text {
    flex: 1;
}

.visa-banner-text h3 {
    margin: 0 0 0.75rem 0;
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #1a3c6d 0%, #d4af37 50%, #1a3c6d 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShimmer 4s ease-in-out infinite;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

@keyframes textShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.visa-banner-text h3 i {
    color: #f4d03f;
    font-size: 1.5rem;
    filter: drop-shadow(0 0 8px rgba(244, 208, 63, 0.6));
    -webkit-text-fill-color: #f4d03f;
}

.visa-banner-text p {
    margin: 0;
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.6;
    letter-spacing: 0.2px;
    font-weight: 400;
}

.visa-banner-text strong {
    color: #d4af37;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 2px rgba(212, 175, 55, 0.2);
}

/* Premium CTA Button */
.visa-banner-action {
    display: flex;
    align-items: center;
}

.btn-filter-golden-visa {
    padding: 1rem 1.75rem;
    background: linear-gradient(135deg, #1a3c6d 0%, #2d5a8f 100%);
    color: white;
    border: 2px solid #1a3c6d;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 4px 16px rgba(26, 60, 109, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-filter-golden-visa::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #2d5a8f 0%, #1a3c6d 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-filter-golden-visa:hover::before {
    opacity: 1;
}

.btn-filter-golden-visa:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 8px 24px rgba(26, 60, 109, 0.5),
        0 0 0 4px rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
}

.btn-filter-golden-visa span,
.btn-filter-golden-visa i {
    position: relative;
    z-index: 1;
}

.btn-filter-golden-visa i {
    font-size: 1.2rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-filter-golden-visa:hover i {
    transform: translateX(4px);
}

/* Premium Benefits Grid */
.visa-banner-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem;
}

/* Individual Benefit Card - Glassmorphism */
.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1.25rem 1rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 14px;
    box-shadow: 0 3px 12px rgba(212, 175, 55, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.benefit-item:hover::before {
    opacity: 1;
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.4);
    background: rgba(255, 255, 255, 0.8);
}

.benefit-item i {
    font-size: 1.5rem;
    color: #4ade80;
    flex-shrink: 0;
    filter: drop-shadow(0 0 6px rgba(74, 222, 128, 0.4));
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-item:hover i {
    transform: scale(1.1) rotate(5deg);
}

.benefit-item span {
    font-size: 0.95rem;
    color: #4a5568;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.2px;
}

/* Responsive Design - Tablet */
@media (max-width: 1024px) {
    .golden-visa-banner {
        padding: 3rem 0;
    }

    .visa-banner-content {
        grid-template-columns: auto 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .visa-banner-action {
        grid-column: 1 / -1;
        justify-content: center;
    }
    
    .visa-banner-icon {
        width: 70px;
        height: 70px;
        font-size: 2.25rem;
    }

    .visa-banner-text h3 {
        font-size: 1.5rem;
    }

    .visa-banner-text p {
        font-size: 0.95rem;
    }
    
    .visa-banner-benefits {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-top: 2rem;
    }
}

/* Responsive Design - Mobile */
@media (max-width: 768px) {
    .golden-visa-banner {
        padding: 2.2rem 0;
    }
    
    .golden-visa-banner::before,
    .golden-visa-banner::after {
        height: 2px;
    }
    
    .visa-banner-content {
        grid-template-columns: 1fr;
        gap: 1.4rem;
        padding: 1.6rem 1.2rem;
        text-align: center;
        border-radius: 18px;
    }
    
    .visa-banner-icon {
        width: 62px;
        height: 62px;
        font-size: 1.9rem;
        margin: 0 auto;
        box-shadow: 
            0 5px 20px rgba(212, 175, 55, 0.3),
            0 0 0 5px rgba(212, 175, 55, 0.08),
            0 0 0 10px rgba(212, 175, 55, 0.04);
    }
    
    .visa-banner-text h3 {
        font-size: 1.3rem;
        justify-content: center;
        line-height: 1.3;
        margin-bottom: 0.65rem;
        gap: 0.5rem;
    }

    .visa-banner-text h3 i {
        font-size: 1.25rem;
    }
    
    .visa-banner-text p {
        font-size: 0.92rem;
        line-height: 1.55;
    }

    .visa-banner-text strong {
        font-size: 1.05rem;
    }
    
    .btn-filter-golden-visa {
        width: 100%;
        justify-content: center;
        padding: 0.95rem 1.4rem;
        font-size: 0.92rem;
        border-radius: 9px;
        gap: 0.5rem;
    }

    .btn-filter-golden-visa i {
        font-size: 1.1rem;
    }
    
    .visa-banner-benefits {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        margin-top: 1.65rem;
    }
    
    .benefit-item {
        padding: 0.95rem 0.8rem;
        border-radius: 12px;
    }

    .benefit-item i {
        font-size: 1.4rem;
    }

    .benefit-item span {
        font-size: 0.9rem;
    }
    
    /* Badge Mobile */
    .golden-visa-badge {
        padding: 0.45rem 0.7rem;
        font-size: 0.7rem;
        gap: 0.3rem;
    }

    .golden-visa-badge i {
        font-size: 0.85rem;
    }
}

/* Responsive Design - Small Mobile */
@media (max-width: 480px) {
    .golden-visa-banner {
        padding: 2rem 0;
    }

    .visa-banner-content {
        padding: 1.5rem 1rem;
        border-radius: 16px;
    }

    .visa-banner-icon {
        width: 60px;
        height: 60px;
        font-size: 1.85rem;
    }
    
    .visa-banner-text h3 {
        font-size: 1.2rem;
    }

    .visa-banner-text h3 i {
        font-size: 1.2rem;
    }
    
    .visa-banner-text p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .visa-banner-text strong {
        font-size: 1rem;
    }

    .btn-filter-golden-visa {
        padding: 0.9rem 1.35rem;
        font-size: 0.9rem;
    }
    
    .benefit-item {
        padding: 0.9rem 0.75rem;
        gap: 0.7rem;
    }

    .benefit-item i {
        font-size: 1.35rem;
    }
    
    .benefit-item span {
        font-size: 0.85rem;
    }
}
