/* =========================================
   TOP BANNER / HERO SECTION
   ========================================= */
 
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--header-offset) 40px 100px;
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    min-height: 80vh;
}
 
/* ── Left Content ── */
.content-side {
    flex: 1.2;
    z-index: 2;
}
 
.content-side h1 {
    font-family: var(--font-main);
    font-size: clamp(2.25rem, 5vw, 64px);
    line-height: 1.05;
    margin-bottom: 32px;
    color: var(--white);
    font-weight: 500;
    letter-spacing: -0.03em;
}
 
.content-side h2 {
    font-family: var(--font-main);
    font-size: clamp(1.75rem, 4vw, 55px);
    line-height: 1.05;
    margin-bottom: 32px;
    color: var(--white);
    font-weight: 500;
    letter-spacing: -0.03em;
}
 
.description {
    color: var(--text-light);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 48px;
    max-width: 540px;
}
 
/* Features List */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
 
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
 
.icon-box {
    background-color: var(--primary-color);
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 8px 20px var(--shadow-primary);
}
 
.feature-text h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--white);
}
 
.feature-text p {
    font-size: 15px;
    color: var(--text-light-50);
    line-height: 1.5;
}
 
/* ── Right Image ── */
.image-side {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 1s cubic-bezier(0.165, 0.84, 0.44, 1) both;
    animation-delay: 0.2s;
}
 
.main-img-container {
    width: 100%;
    height: 650px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
    position: relative;
}
 
.main-img-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.4));
}
 
.main-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
 
.image-side:hover .main-img-container img {
    transform: scale(1.05);
}
 
/* Glassmorphism Labels */
.glass-label {
    position: absolute;
    left: -40px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 24px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 260px;
    color: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    z-index: 3;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
 
.label-1 {
    bottom: 120px;
}
 
.label-2 {
    bottom: 50px;
}
 
.glass-label span {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 500;
}
 
.check-circle {
    background-color: var(--primary-color);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(0, 71, 255, 0.5);
}
 
/* ── Animations ── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
 
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
 
.content-side .portfolio-eyebrow-white-left {
    animation: fadeInUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) both;
    animation-delay: 0.1s;
}
 
.content-side h1,
.content-side h2 {
    animation: fadeInUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) both;
    animation-delay: 0.2s;
}
 
.content-side .description {
    animation: fadeInUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) both;
    animation-delay: 0.3s;
}
 
.content-side .feature-list {
    animation: fadeInUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) both;
    animation-delay: 0.4s;
}
 
/* ── Responsive ── */
@media (max-width: 1200px) {
    .section-container {
        gap: 40px;
        padding: var(--header-offset) 32px 80px;
    }
 
    .glass-label {
        left: 20px;
        width: 220px;
    }
}
 
@media (max-width: 992px) {
    .section-container {
        flex-direction: column;
        padding: 120px 24px 60px;
        text-align: center;
        min-height: auto;
    }
 
    .content-side {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
 
    .description {
        margin-left: auto;
        margin-right: auto;
    }
 
    .feature-list {
        align-items: flex-start;
        text-align: left;
        max-width: 500px;
        margin-bottom: 60px;
    }
 
    .main-img-container {
        height: 500px;
    }
}
 
@media (max-width: 480px) {
    .glass-label {
        left: 10px;
        width: 180px;
        padding: 12px 16px;
        font-size: 14px;
    }
 
    .main-img-container {
        height: 400px;
    }
}