/* Hero Section Styles */
.section.landing {
    background: linear-gradient(135deg, #121f3e 0%, #1e3a8a 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0;
    margin-top: 0;
}

.section.landing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/assets/images/bg-landing-img-1920.4e0dc254cdd765c6.webp') center/cover no-repeat;
    opacity: 0.1;
    z-index: 1;
}

.section.landing .section-inner {
    position: relative;
    z-index: 2;
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section.landing .content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    gap: 4rem;
}

.section.landing .text-content {
    flex: 1;
    max-width: 600px;
    z-index: 3;
}

.section.landing .heading-1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section.landing h6 {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #e5e7eb;
    opacity: 0.9;
}

.section.landing .action-btns {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.section.landing .btn-reg {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.section.landing .btn-reg.btn-primary {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #121f3e;
}

.section.landing .btn-reg.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
}

.section.landing .btn-reg.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.section.landing .btn-reg.btn-outline:hover {
    background: #ffffff;
    color: #121f3e;
    transform: translateY(-2px);
}

.section.landing .device-mockups {
    flex: 1;
    max-width: 600px;
    height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.section.landing .desktop-monitor,
.section.landing .tablet,
.section.landing .smartphone,
.section.landing .laptop {
    position: absolute;
    width: 500px;
    height: 350px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s ease;
}

.section.landing .desktop-monitor.active,
.section.landing .tablet.active,
.section.landing .smartphone.active,
.section.landing .laptop.active {
    opacity: 1;
    transform: scale(1);
}

.section.landing .desktop-monitor {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border: 3px solid #d1d5db;
}

.section.landing .tablet {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    border: 2px solid #e5e7eb;
}

.section.landing .smartphone {
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    border: 2px solid #d1d5db;
}

.section.landing .laptop {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border: 2px solid #d1d5db;
}

.section.landing .device-screen {
    width: 90%;
    height: 80%;
    background: linear-gradient(135deg, #121f3e 0%, #1e3a8a 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
}

.section.landing .indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 4;
}

.section.landing .indicator {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.section.landing .indicator.active {
    background: #fbbf24;
    border-color: #ffffff;
    transform: scale(1.2);
}

.section.landing .indicator:hover {
    background: rgba(251, 191, 36, 0.6);
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .section.landing {
        min-height: calc(100vh - var(--header-height-mobile));
        padding-top: var(--header-height-mobile);
    }
    
    .section.landing .section-inner {
        padding: 3rem 0;
        margin-top: 70px;
    }
    
    .section.landing .content-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
        padding: 0 1.5rem;
    }
    
    .section.landing .heading-1 {
        font-size: 2.5rem;
    }
    
    .section.landing h6 {
        font-size: 1.1rem;
    }
    
    .section.landing .device-mockups {
        height: 600px;
        max-width: 100%;
    }
    
    .section.landing .desktop-monitor,
    .section.landing .tablet,
    .section.landing .smartphone,
    .section.landing .laptop {
        width: 400px;
        height: 280px;
    }
    
    .section.landing .action-btns {
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    .section.landing {
        min-height: calc(100vh - var(--header-height-mobile-small));
        padding-top: var(--header-height-mobile-small);
    }
    
    .section.landing .section-inner {
        padding: 2rem 0;
        margin-top: 60px;
    }
    
    .section.landing .heading-1 {
        font-size: 2rem;
    }
    
    .section.landing h6 {
        font-size: 1rem;
    }
    
    .section.landing .btn-reg {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .section.landing .action-btns {
        flex-direction: column;
        align-items: center;
    }
    
    .section.landing .action-btns .btn-reg {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .section.landing .device-mockups {
        height: 550px;
    }
    
    .section.landing .desktop-monitor,
    .section.landing .tablet,
    .section.landing .smartphone,
    .section.landing .laptop {
        width: 350px;
        height: 245px;
    }
    
    .section.landing .indicators {
        bottom: 1rem;
        justify-content: center;
        align-items: center;
    }
    
    .section.landing .indicator {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 575.98px) {
    .section.landing {
        min-height: calc(100vh - var(--header-height-mobile-small));
        padding-top: var(--header-height-mobile-small);
    }
    
    .section.landing .section-inner {
        padding: 1.5rem 0;
        margin-top: 50px;
    }
    
    .section.landing .heading-1 {
        font-size: 1.75rem;
    }
    
    .section.landing .content-wrapper {
        padding: 0 1rem;
        gap: 2rem;
    }
    
    .section.landing .device-mockups {
        height: 500px;
    }
    
    .section.landing .desktop-monitor,
    .section.landing .tablet,
    .section.landing .smartphone,
    .section.landing .laptop {
        width: 300px;
        height: 210px;
    }
    
    .section.landing .indicators {
        bottom: 1rem;
        justify-content: center;
        align-items: center;
    }
    
    .section.landing .indicator {
        width: 10px;
        height: 10px;
    }
}
