.choose-us-section {
    position: relative;
    padding: 4rem 0;
    overflow: hidden;
    perspective: 1000px;
}

.chrome-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        45deg,
        #2a2e35 0%,
        #3d434b 25%,
        #535a65 50%,
        #3d434b 75%,
        #2a2e35 100%
    );
    animation: backgroundShine 8s infinite linear;
}

@keyframes backgroundShine {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.choose-us-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
}

.image-container {
    transform-style: preserve-3d;
    animation: float 4s ease-in-out infinite;
}

.metallic-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    border: 3px solid rgba(255,255,255,0.1);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3),
                inset 0 0 20px rgba(255,255,255,0.2);
    transform: rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.content-container {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(12px);
    padding: 2rem;
    border-radius: 15px;
    transform-style: preserve-3d;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 30px 60px rgba(0,0,0,0.3),
                inset 0 0 30px rgba(255,255,255,0.1);
}

.section-title {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    transform: translateZ(30px);
}

.features-list {
    display: grid;
    gap: 1.5rem;
}

.feature-card {
    padding: 1.5rem;
    background: rgba(0,0,0,0.2);
    border-radius: 10px;
    transition: all 0.5s ease;
    transform-style: preserve-3d;
    position: relative;
}

.feature-card:hover {
    transform: translateZ(20px) rotateX(5deg) rotateY(5deg);
    background: rgba(255,255,255,0.05);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    transform: translateZ(40px);
}

.feature-card h3 {
    color: #fff;
    margin-bottom: 0.5rem;
    transform: translateZ(30px);
}

.feature-card p {
    color: rgba(255,255,255,0.8);
    transform: translateZ(20px);
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotateY(-5deg) rotateX(5deg); }
    50% { transform: translateY(-20px) rotateY(-8deg) rotateX(8deg); }
}

@media (max-width: 768px) {
    .choose-us-container {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    
    .image-container {
        max-width: 80%;
        margin: 0 auto;
    }
    
    .section-title {
        font-size: 2rem;
    }
}