/* T10X Page - 360 Hero */

.t10x-page {
    background: #fff;
}

/* Hero 360 Section */
.hero-360 {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    background: #f5f5f5;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 120px 40px 80px;
    height: 100%;
    align-items: center;
}

/* Left Side */
.hero-left {
    position: relative;
    min-height: 400px;
}

.hero-state {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s;
}

.hero-state.active {
    opacity: 1;
    visibility: visible;
}

.hero-title {
    font-size: 5rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 20px;
    line-height: 1;
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
}

.hero-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.hero-title-alt {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-subtitle-alt {
    font-size: 2rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
}

/* Stats */
.stat-item {
    margin-bottom: 40px;
    border-left: 3px solid #e0e0e0;
    padding-left: 30px;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-number {
    font-size: 5rem;
    font-weight: 700;
    color: #00d4ff;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-unit {
    font-size: 1.8rem;
    color: #333;
    font-weight: 500;
    margin-bottom: 15px;
}

.stat-info {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 10px;
}

.stat-sub {
    font-size: 0.9rem;
    color: #999;
    line-height: 1.5;
}

/* Right Side - Canvas */
.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.canvas-360 {
    max-width: 100%;
    max-height: 70vh;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
}

/* Bottom Buttons */
.hero-buttons {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.hero-btn {
    padding: 12px 30px;
    background: #fff;
    border: none;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.3;
}

.hero-btn span {
    color: #00d4ff;
    font-weight: 600;
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.hero-btn-alt {
    background: #d4a574;
    color: #fff;
}

.hero-btn-alt span {
    color: #fff;
}

/* Scroll Hint */
.scroll-hint {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
    transition: opacity 0.3s;
}

.mouse-icon {
    width: 26px;
    height: 40px;
    border: 2px solid #999;
    border-radius: 13px;
    margin: 0 auto 10px;
    position: relative;
}

.mouse-wheel {
    width: 4px;
    height: 8px;
    background: #999;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0% {
        opacity: 1;
        top: 8px;
    }
    100% {
        opacity: 0;
        top: 24px;
    }
}

.scroll-hint p {
    font-size: 0.85rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Content Section */
.content-section {
    padding: 100px 0;
    background: #fff;
}

.section-text {
    font-size: 1.1rem;
    color: #666;
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 100px 20px 60px;
    }
    
    .hero-left {
        min-height: 300px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .stat-number {
        font-size: 3.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 90%;
    }
    
    .hero-btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-360 {
        height: auto;
        min-height: 100vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .scroll-hint {
        bottom: 80px;
    }
}
