.hero-split-modern {
    display: flex;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0B488B 0%, #0d5299 50%, #1565c0 100%);
}

/* Hexagon Background Pattern */
.hero-split-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100' viewBox='0 0 56 100'%3E%3Cpath d='M28 66L0 50L0 16L28 0L56 16L56 50L28 66L28 100' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3Cpath d='M28 0L28 34L0 50L0 84L28 100L56 84L56 50L28 34' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 56px 100px;
    z-index: 0;
}

/* Secondary Pattern Overlay with Radial Gradients */
.hero-split-modern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255,255,255,0.03) 0%, transparent 30%);
    z-index: 0;
}


/* ==================
   LEFT SIDE
   ================== */
.hero-split-modern .hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 40px 60px 60px;
    position: relative;
    z-index: 2;
}

.hero-split-modern .hero-left-content {
    max-width: 550px;
    width: 100%;
}

/* Header with Logo */
.hero-split-modern .hero-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.hero-split-modern .hero-logo {
    width: 58px;
    height: 70px;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.2));
}

.hero-split-modern .badge-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.hero-split-modern .badge {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

.hero-split-modern .badge-primary {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-split-modern .badge-success {
    background: rgba(16, 185, 129, 0.2);
    color: #4ade80;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

/* Title */
.hero-split-modern .hero-title {
    font-size: 50px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero-split-modern .hero-title .text-primary {
    color: #fff;
    display: block;
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Description */
.hero-split-modern .hero-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Search Box */
.hero-split-modern .hero-search-form {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin-bottom: 20px;
    width: 100%;
}

.hero-split-modern .search-box-hero {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    align-items: center;
    background: #fff;
    border-radius: 14px;
    padding: 8px 8px 8px 20px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    width: 100%;
    min-height: 60px;
}

.hero-split-modern .search-box-hero:focus-within {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
    transform: translateY(-2px);
}

.hero-split-modern .search-box-hero > i {
    display: block !important;
    color: #0B488B;
    font-size: 18px;
    margin-right: 15px;
    flex-shrink: 0;
}

.hero-split-modern .search-box-hero input,
.hero-split-modern .search-box-hero input[type="text"] {
    display: block !important;
    visibility: visible !important;
    flex: 1;
    border: none !important;
    background: transparent !important;
    font-size: 15px;
    color: #1a1a2e;
    padding: 14px 0;
    outline: none;
    min-width: 200px;
    height: auto;
}

.hero-split-modern .search-box-hero input::placeholder {
    color: #94a3b8;
}

.hero-split-modern .search-box-hero button,
.hero-split-modern .search-box-hero button[type="submit"] {
    display: flex !important;
    visibility: visible !important;
    align-items: center;
    gap: 8px;
    background: #0B488B !important;
    color: #fff !important;
    border: none !important;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.hero-split-modern .search-box-hero button:hover {
    background: #063056 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Quick Links */
.hero-split-modern .quick-links {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.hero-split-modern .quick-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.hero-split-modern .quick-links a {
    font-size: 13px;
    color: #fff;
    text-decoration: none;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    transition: all 0.2s ease;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-split-modern .quick-links a:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
}

/* Stats Row */
.hero-split-modern .hero-stats {
    display: flex;
    gap: 15px;
}

.hero-split-modern .stat-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.hero-split-modern .stat-item:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    text-decoration: none;
}

.hero-split-modern .stat-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-split-modern .stat-icon i {
    color: #fff;
    font-size: 18px;
}

.hero-split-modern .stat-info {
    display: flex;
    flex-direction: column;
}

.hero-split-modern .stat-number {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.hero-split-modern .stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
    font-weight: 500;
}


/* ===================
   RIGHT SIDE
   =================== */
.hero-split-modern .hero-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 60px 60px 40px;
    position: relative;
    z-index: 2;
}

/* Decorative Circles */
.hero-split-modern .deco-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.hero-split-modern .circle-1 {
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    top: -100px;
    right: -100px;
}

.hero-split-modern .circle-2 {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    bottom: -80px;
    left: -80px;
}

.hero-split-modern .circle-3 {
    width: 150px;
    height: 150px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    top: 20%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

/* Connected Lines Pattern - Satu Data Network */
.hero-split-modern .connected-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.hero-split-modern .connected-lines svg {
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

.hero-split-modern .connected-lines .node {
    fill: rgba(255, 255, 255, 0.15);
}

.hero-split-modern .connected-lines .line {
    stroke: rgba(255, 255, 255, 0.08);
    stroke-width: 1;
}

.hero-split-modern .connected-lines .line-glow {
    stroke: rgba(255, 255, 255, 0.12);
    stroke-width: 1.5;
    stroke-dasharray: 5, 5;
    animation: dashMove 15s linear infinite;
}

/* Node Pulse Animation */
.hero-split-modern .connected-lines .node-pulse {
    fill: rgba(255, 255, 255, 0.2);
    animation: nodePulse 3s ease-in-out infinite;
}

.hero-split-modern .connected-lines .node-pulse:nth-child(2) { animation-delay: 0.5s; }
.hero-split-modern .connected-lines .node-pulse:nth-child(3) { animation-delay: 1s; }
.hero-split-modern .connected-lines .node-pulse:nth-child(4) { animation-delay: 1.5s; }
.hero-split-modern .connected-lines .node-pulse:nth-child(5) { animation-delay: 2s; }


@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Pattern - Hidden as we use global pattern */
.hero-split-modern .hero-pattern {
    display: none;
}

/* Visual Content */
.hero-split-modern .hero-visual {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 520px;
}

/* Image Container */
.hero-split-modern .image-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.hero-split-modern .main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.hero-split-modern .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(11, 72, 139, 0.8) 100%);
}

/* Floating Cards */
.hero-split-modern .float-card {
    position: absolute;
    background: #fff;
    border-radius: 14px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    z-index: 3;
    animation: floatCard 4s ease-in-out infinite;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
}

.hero-split-modern .card-location {
    top: 30px;
    right: -30px;
    animation-delay: 0s;
}

.hero-split-modern .card-location i {
    font-size: 24px;
    color: #0B488B;
}

.hero-split-modern .card-title {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
}

.hero-split-modern .card-subtitle {
    display: block;
    font-size: 12px;
    color: #64748b;
}



.hero-split-modern .card-verified {
    top: -15px;
    left: 20px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    padding: 10px 16px;
    animation-delay: 2s;
}

.hero-split-modern .card-verified i {
    font-size: 14px;
}

.hero-split-modern .card-verified span {
    font-size: 12px;
    font-weight: 600;
}

/* Card Info Slider - Inside Image */
.hero-split-modern .card-info-slider {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 16px 20px;
    z-index: 10;
    animation: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    overflow: hidden;
}

.hero-split-modern .card-info-content {
    flex: 1;
    overflow: hidden;
}

.hero-split-modern .card-info-wrapper {
    position: relative;
    min-height: 60px;
    overflow: hidden;
}

.hero-split-modern .card-info-slide {
    display: none;
    align-items: flex-start;
    gap: 12px;
    opacity: 0;
}

.hero-split-modern .card-info-slide.active {
    display: flex;
    animation: slideFromRight 0.4s ease forwards;
}

.hero-split-modern .card-info-slide.active.slide-left {
    animation: slideFromLeft 0.4s ease forwards;
}

.hero-split-modern .card-info-slide.exiting {
    display: flex;
    animation: slideToLeft 0.4s ease forwards;
}

.hero-split-modern .card-info-slide.exiting.slide-left {
    animation: slideToRight 0.4s ease forwards;
}

@keyframes slideFromRight {
    0% {
        opacity: 0;
        transform: translateX(30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideToLeft {
    0% {
        opacity: 1;
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-30px);
    }
}

@keyframes slideToRight {
    0% {
        opacity: 1;
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        transform: translateX(30px);
    }
}

.hero-split-modern .card-info-slide .card-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hero-split-modern .card-info-text {
    display: block;
    font-size: 13px;
    color: #1a1a2e;
    line-height: 1.6;
    font-weight: 400;
}

.hero-split-modern .card-info-quote {
    display: block;
    font-size: 11px;
    color: #0B488B;
    font-weight: 600;
    text-align: right;
}

/* Card Info Navigation - Side Arrows */
.hero-split-modern .card-nav-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
    flex-shrink: 0;
}

.hero-split-modern .card-nav-btn:hover {
    background: #0B488B;
    border-color: #0B488B;
    color: #fff;
}

.hero-split-modern .card-nav-btn i {
    font-size: 12px;
}

/* Features */
.hero-split-modern .hero-features {
    display: flex;
    gap: 25px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.hero-split-modern .feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 500;
}

.hero-split-modern .feature i {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}


/* ===================
   RESPONSIVE
   =================== */
@media (max-width: 1200px) {
    .hero-split-modern .hero-left {
        padding: 100px 30px 60px 40px;
    }
    
    .hero-split-modern .hero-right {
        padding: 100px 40px 60px 30px;
    }
    
    .hero-split-modern .hero-title {
        font-size: 42px;
    }
}

@media (max-width: 991px) {
    .hero-split-modern {
        flex-direction: column;
    }
    
    .hero-split-modern .hero-left {
        padding: 100px 30px 50px;
    }
    
    .hero-split-modern .hero-left-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-split-modern .hero-header {
        justify-content: center;
        flex-direction: column;
    }
    
    .hero-split-modern .badge-group {
        justify-content: center;
    }
    
    .hero-split-modern .hero-title {
        font-size: 38px;
    }
    
    .hero-split-modern .quick-links {
        justify-content: center;
    }
    
    .hero-split-modern .hero-stats {
        flex-direction: column;
    }
    
    .hero-split-modern .stat-item {
        justify-content: center;
    }
    
    .hero-split-modern .hero-right {
        padding: 30px 30px 50px;
        min-height: auto;
    }
    
    .hero-split-modern .hero-features {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-split-modern .card-location {
        right: 10px;
    }
}

@media (max-width: 576px) {
    .hero-split-modern .hero-left {
        padding: 90px 20px 40px;
    }
    
    .hero-split-modern .hero-title {
        font-size: 32px;
    }
    
    .hero-split-modern .hero-description {
        font-size: 15px;
    }
    
    .hero-split-modern .search-box-hero {
        flex-direction: column;
        padding: 15px;
        gap: 10px;
    }
    
    .hero-split-modern .search-box-hero i {
        display: none;
    }
    
    .hero-split-modern .search-box-hero input {
        text-align: center;
        padding: 10px 0;
    }
    
    .hero-split-modern .search-box-hero button {
        width: 100%;
        justify-content: center;
    }
    
    .hero-split-modern .hero-right {
        padding: 20px 20px 40px;
    }
    
    .hero-split-modern .hero-visual {
        max-width: 320px;
    }
    
    .hero-split-modern .main-image {
        height: 280px;
    }
    
    .hero-split-modern .float-card {
        padding: 10px 14px;
    }
    
    .hero-split-modern .card-location {
        top: 20px;
        right: -10px;
    }
    
    .hero-split-modern .card-info-slider {
        bottom: 15px;
        left: 15px;
        right: 15px;
        padding: 12px 10px;
        gap: 8px;
    }
    
    .hero-split-modern .card-info-text {
        font-size: 11px;
    }
    
    .hero-split-modern .card-info-quote {
        font-size: 10px;
    }
    
    .hero-split-modern .card-nav-btn {
        width: 26px;
        height: 26px;
    }
    
    .hero-split-modern .card-nav-btn i {
        font-size: 10px;
    }
    
    .hero-split-modern .card-info-wrapper {
        min-height: 55px;
    }
    
    .hero-split-modern .card-verified {
        top: -10px;
        left: 10px;
    }
    
    .hero-split-modern .hero-features {
        flex-direction: column;
        gap: 15px;
        margin-top: 30px;
    }
    
    .hero-split-modern .feature {
        justify-content: center;
    }
}
