.hero-3d-container {
    position: relative;
    width: 100%;
    min-height: 400px;
    padding: 100px 8%;
    background-color: #FF5500;
    overflow: hidden;
    perspective: 1200px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Layered subtle background lines for interactive depth/3D effect */
.hero-3d-grid-layer {
    position: absolute;
    top: -20%;
    left: -20%;
    right: -20%;
    bottom: -20%;
    pointer-events: none;
    transition: transform 0.1s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.hero-3d-grid-back {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 8% 100%;
    transform: translateZ(-100px) scale(1.2);
}

.hero-3d-grid-mid {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 12% 100%;
    transform: translateZ(-50px) scale(1.1);
}

.hero-3d-grid-front {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 20% 100%;
    transform: translateZ(20px) scale(0.95);
}

.hero-3d-inner {
    position: relative;
    z-index: 5;
    width: 100%;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 40px;
    align-items: center;
    transform-style: preserve-3d;
    transition: transform 0.1s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.hero-3d-content {
    transform: translateZ(50px);
}

.hero-3d-title {
    color: #FFFFFF;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin: 0 0 20px 0;
}

.hero-3d-desc {
    color: #FFFFFF;
    font-size: 18px;
    line-height: 1.5;
    opacity: 0.9;
    max-width: 580px;
    margin: 0;
}

.hero-3d-actions {
    display: flex;
    justify-content: flex-end;
    transform: translateZ(80px);
}

.hero-3d-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background-color: #FFFFFF;
    color: #FF5500;
    padding: 22px 36px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.hero-3d-btn:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
    background-color: #fcfcfc;
}

.hero-3d-btn svg {
    width: 16px;
    height: 16px;
    fill: #FF5500;
}

.hero-3d-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive adjustment */
@media (max-width: 991px) {
    .hero-3d-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .hero-3d-actions {
        justify-content: flex-start;
    }
    .hero-3d-title {
        font-size: 32px;
    }
    .hero-3d-desc {
        font-size: 16px;
    }
}
