/* ========================================
   SPLIT-SCREEN HERO SECTION
   50/50 Layout - Unique Design
   ======================================== */

:root {
    --gradient-teal: linear-gradient(135deg, #006b7d 0%, #5b2c6f 100%);
    --bg-white: #ffffff;
    --bg-dark: #1a1a1a;
    --primary-color: #006b7d;
    --accent-color: #ffd700;
    --text-dark: #333333;
}

.split-hero-section {
    min-height: 90vh;
    display: flex;
    align-items: stretch;
    position: relative;
    overflow: hidden;
    background: var(--bg-white);
}

/* Left Content Area */
.hero-left-content {
    flex: 1;
    padding: 4rem 3rem;
    background: var(--gradient-teal);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    color: #fff;
}

.hero-left-content::after {
    content: "";
    position: absolute;
    top: 0;
    right: -50px;
    width: 100px;
    height: 100%;
    background: inherit;
    transform: skewX(-5deg);
    z-index: 1;
}

/* Right Visual Area */
.hero-right-visual {
    flex: 1;
    position: relative;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-video-container img,
.hero-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 107, 125, 0.3),
        rgba(91, 44, 111, 0.3)
    );
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.play-button:hover {
    transform: scale(1.1);
    background: #fff;
}

.play-button i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-left: 5px;
}

/* Content Typography */
.split-hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.split-hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.split-hero-title .highlight {
    color: var(--accent-color);
    position: relative;
    display: inline-block;
}

.split-hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Inline Stats */
.hero-inline-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.inline-stat {
    display: flex;
    flex-direction: column;
}

.inline-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.inline-stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* CTAs */
.hero-cta-group {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn-hero-primary {
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--text-dark);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.4);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.6);
    color: var(--text-dark);
}

.btn-hero-secondary {
    padding: 1rem 2rem;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}

/* Floating Elements */
.floating-element {
    position: absolute;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.floating-element-1 {
    top: 10%;
    right: 15%;
    font-size: 3rem;
    animation-delay: 0s;
}

.floating-element-2 {
    bottom: 20%;
    right: 10%;
    font-size: 2.5rem;
    animation-delay: 2s;
}

.floating-element-3 {
    top: 50%;
    right: 5%;
    font-size: 2rem;
    animation-delay: 4s;
}

/* Tour Button */
.tour-360-btn {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    padding: 0.9rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 10;
}

.tour-360-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 992px) {
    .split-hero-section {
        flex-direction: column;
        min-height: auto;
    }

    .hero-left-content {
        padding: 3rem 2rem;
    }

    .hero-left-content::after {
        display: none;
    }

    .hero-right-visual {
        min-height: 50vh;
    }

    .split-hero-title {
        font-size: 2.2rem;
    }

    .inline-stat-number {
        font-size: 2rem;
    }

    .hero-inline-stats {
        gap: 1.5rem;
    }

    .tour-360-btn {
        bottom: 1rem;
        right: 1rem;
        font-size: 0.85rem;
        padding: 0.75rem 1.2rem;
    }
}

@media (max-width: 576px) {
    .hero-left-content {
        padding: 2rem 1.5rem;
    }

    .split-hero-title {
        font-size: 1.8rem;
    }

    .split-hero-subtitle {
        font-size: 1rem;
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-inline-stats {
        gap: 1rem;
    }

    .inline-stat-number {
        font-size: 1.75rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .floating-element {
        animation: none;
    }
}
