/* ===== PREMIUM BUSINESSES WE SERVE SECTION ===== */
/* World-class businesses section with modern design and premium interactions */

.premium-businesses-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
    color: #ffffff;
}

/* Background Effects */
.businesses-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.businesses-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
    animation: businesses-particles-float 25s ease-in-out infinite;
}

.businesses-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(16, 185, 129, 0.03) 0%,
        rgba(59, 130, 246, 0.03) 50%,
        rgba(139, 92, 246, 0.03) 100%
    );
}

@keyframes businesses-particles-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-15px) rotate(0.5deg); }
    66% { transform: translateY(8px) rotate(-0.5deg); }
}

/* Header Section */
.businesses-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.businesses-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 50px;
    padding: 12px 24px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.businesses-badge:hover {
    background: rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.5);
    transform: translateY(-2px);
}

.businesses-badge-icon {
    width: 20px;
    height: 20px;
    color: #10b981;
    animation: businesses-pulse 2s ease-in-out infinite;
}

.businesses-badge-text {
    font-size: 14px;
    font-weight: 600;
    color: #10b981;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.businesses-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.businesses-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #3b82f6);
    border-radius: 2px;
}

.businesses-subtitle {
    font-size: 1.25rem;
    color: #94a3b8;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Businesses Grid */
.businesses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

/* Business Cards */
.business-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px 32px;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    cursor: pointer;
    height: 100%;
    min-height: 400px;
}

.business-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.business-card:hover {
    transform: translateY(-12px);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(16, 185, 129, 0.2);
}

.business-card:hover::before {
    opacity: 1;
}

.business-card-inner {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Business Icons */
.business-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #10b981, #3b82f6);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.business-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 16px;
}

.business-icon svg {
    width: 32px;
    height: 32px;
    color: #ffffff;
    z-index: 2;
    position: relative;
}

/* Business Numbers */
.business-number {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 1.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
}

/* Business Content */
.business-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.business-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.3;
}

.business-description {
    font-size: 1rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 24px;
    flex: 1;
}

/* Business Features */
.business-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.business-feature {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 0.85rem;
    color: #10b981;
    font-weight: 500;
    transition: all 0.3s ease;
}

.business-feature:hover {
    background: rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.4);
    transform: translateY(-1px);
}

/* Hover Overlay */
.business-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.95), rgba(59, 130, 246, 0.95));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.business-card:hover .business-hover-overlay {
    opacity: 1;
}

.business-hover-content {
    text-align: center;
    padding: 20px;
}

.business-hover-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.business-hover-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}


/* Dark Mode Support */
html[data-theme="dark"] .premium-businesses-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a2a2a 100%);
}

html[data-theme="dark"] .business-card {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .businesses-cta {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
}

/* RTL Support */
html.rtl .businesses-badge {
    direction: rtl;
}


/* Responsive Design */
@media (max-width: 768px) {
    .premium-businesses-section {
        padding: 80px 0;
    }
    
    .businesses-header {
        margin-bottom: 60px;
    }
    
    .businesses-title {
        font-size: 2.5rem;
    }
    
    .businesses-subtitle {
        font-size: 1.1rem;
    }
    
    .businesses-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        margin-bottom: 60px;
    }
    
    .business-card {
        padding: 32px 24px;
        min-height: 350px;
    }
    
    .business-icon {
        width: 56px;
        height: 56px;
    }
    
    .business-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .business-title {
        font-size: 1.3rem;
    }
    
}

@media (max-width: 480px) {
    .premium-businesses-section {
        padding: 60px 0;
    }
    
    .businesses-header {
        margin-bottom: 40px;
    }
    
    .businesses-title {
        font-size: 2rem;
    }
    
    .businesses-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .business-card {
        padding: 24px 20px;
        min-height: 320px;
    }
    
    .business-icon {
        width: 48px;
        height: 48px;
    }
    
    .business-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .business-title {
        font-size: 1.2rem;
    }
    
    .business-description {
        font-size: 0.95rem;
    }
    
}

/* Animation Classes */
@keyframes businesses-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.business-card[data-aos="fade-up"] {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Intersection Observer Animation */
.business-card.animate-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Hover Effects for Features */
.business-feature {
    cursor: pointer;
}

.business-feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}
