* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.client-partners-section {
    background: linear-gradient(135deg, #f8f6ed 0%, #e9e4d0 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Animated background pattern */
.bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    background-image: 
        radial-gradient(circle at 20% 20%, #B18857 2px, transparent 2px),
        radial-gradient(circle at 80% 80%, #956935 2px, transparent 2px),
        radial-gradient(circle at 40% 60%, #C4976A 1px, transparent 1px);
    background-size: 100px 100px, 150px 150px, 80px 80px;
    animation: pattern-move 20s linear infinite;
}

@keyframes pattern-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Section Header with enhanced styling */
.section-header {
    text-align: center;
    margin-bottom: 100px;
    position: relative;
}


.section-title {
    font-size: 5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #71594b 0%, #4c3b31 50%, #6b574b 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 30px;
    line-height: 1.1;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #B18857, #956935);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.3rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 400;
}

/* Enhanced Partnership Hub */
.partnership-hub {
    display: flex;
    justify-content: center;
    margin-bottom: 100px;
    position: relative;
}

.central-icon {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, #B18857, #956935);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 25px 80px rgba(177, 136, 87, 0.4),
        0 0 0 20px rgba(177, 136, 87, 0.1),
        0 0 0 40px rgba(177, 136, 87, 0.05);
    position: relative;
    z-index: 10;
    animation: central-pulse 4s ease-in-out infinite;
    border: 4px solid rgba(255, 255, 255, 0.2);
}

.central-icon i {
    font-size: 56px;
    color: white;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

/* Enhanced pulse rings */
.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(177, 136, 87, 0.4);
    border-radius: 50%;
    animation: pulse-ring 4s ease-out infinite;
}

.pulse-ring:nth-child(1) {
    width: 200px;
    height: 200px;
    animation-delay: 0s;
}

.pulse-ring:nth-child(2) {
    width: 280px;
    height: 280px;
    animation-delay: 1.3s;
}

.pulse-ring:nth-child(3) {
    width: 360px;
    height: 360px;
    animation-delay: 2.6s;
}

/* Modern Clients Grid */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 100px;
    perspective: 1000px;
}

.client-card {
    background: white;
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.08),
        0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(177, 136, 87, 0.1);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.client-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #B18857, #956935, #C4976A);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.client-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(177, 136, 87, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.client-card:hover::before {
    transform: scaleX(1);
}

.client-card:hover::after {
    opacity: 1;
}

.client-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 
        0 30px 80px rgba(177, 136, 87, 0.25),
        0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(177, 136, 87, 0.3);
}

/* Enhanced client icon */
.client-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #B18857, #956935);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    box-shadow: 0 10px 30px rgba(177, 136, 87, 0.3);
}

.client-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #B18857, #956935, #C4976A);
    border-radius: 26px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.client-card:hover .client-icon::before {
    opacity: 1;
}

.client-card:hover .client-icon {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 15px 40px rgba(177, 136, 87, 0.5);
}

.client-icon i {
    font-size: 36px;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Enhanced client name */
.client-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 12px;
    line-height: 1.4;
    letter-spacing: 0.3px;
}

/* Enhanced Statistics Section */
.stats-section {
    background: linear-gradient(135deg, #71594b 0%, #4c3b31 50%, #6b574b 100%);
    border-radius: 40px;
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 60px;
    box-shadow: 
        0 30px 100px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(177, 136, 87, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(177, 136, 87, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.02) 50%, transparent 70%);
}

.stats-content {
    position: relative;
    z-index: 2;
}

.stats-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #B18857, #956935);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
    box-shadow: 
        0 20px 60px rgba(177, 136, 87, 0.5),
        0 0 0 20px rgba(177, 136, 87, 0.1);
    animation: stats-pulse 3s ease-in-out infinite;
}

.stats-icon i {
    font-size: 48px;
    color: white;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.stats-title {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 30px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
}

.stats-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

/* Enhanced Animations */
@keyframes central-pulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 
            0 25px 80px rgba(177, 136, 87, 0.4),
            0 0 0 20px rgba(177, 136, 87, 0.1),
            0 0 0 40px rgba(177, 136, 87, 0.05);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 
            0 30px 100px rgba(177, 136, 87, 0.5),
            0 0 0 25px rgba(177, 136, 87, 0.15),
            0 0 0 50px rgba(177, 136, 87, 0.08);
    }
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.4;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0;
    }
}

@keyframes stats-pulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 
            0 20px 60px rgba(177, 136, 87, 0.5),
            0 0 0 20px rgba(177, 136, 87, 0.1);
    }
    50% { 
        transform: scale(1.08);
        box-shadow: 
            0 25px 80px rgba(177, 136, 87, 0.6),
            0 0 0 25px rgba(177, 136, 87, 0.15);
    }
}

@keyframes pattern-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Enhanced Responsive Design */
@media (max-width: 1024px) {
    .clients-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 3rem;
    }

    .clients-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .stats-section {
        padding: 60px 40px;
    }

    .stats-title {
        font-size: 2.5rem;
    }

    .central-icon {
        width: 120px;
        height: 120px;
    }

    .central-icon i {
        font-size: 48px;
    }
}

@media (max-width: 480px) {
    .client-partners-section {
        padding: 80px 0;
    }

    .section-header {
        margin-bottom: 60px;
    }

    .partnership-hub {
        margin-bottom: 60px;
    }

    .central-icon {
        width: 100px;
        height: 100px;
    }

    .central-icon i {
        font-size: 40px;
    }

    .client-card {
        padding: 30px 20px;
    }

    .stats-section {
        padding: 50px 30px;
    }

    .stats-title {
        font-size: 2rem;
    }
}