/* Variables and Setup */
.as-wrapper-ba80fa4c {
    --as-primary: #06505E;
    --as-accent: #6CCAE3;
    --as-highlight: #F59B1F;
    --as-bg: #FAFBFC;
    --as-card-bg: #FFFFFF;
    --as-radius-lg: 32px;
    --as-radius-md: 20px;
    --as-shadow: 0 10px 40px rgba(6, 80, 94, 0.08);
    
    position: relative;
    background: linear-gradient(135deg, var(--as-bg) 0%, #FFFFFF 100%);
    padding: 60px 40px;
    border-radius: var(--as-radius-lg);
    overflow: hidden;
    font-family: 'Fredoka', sans-serif;
    color: var(--as-primary);
    direction: rtl;
}

.as-bg-overlay-ba80fa4c {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

/* Floating Icons */
.as-floating-icons-ba80fa4c {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.1;
    color: var(--as-accent);
    font-size: 40px;
}
.as-float-1-ba80fa4c { position: absolute; top: 10%; right: 10%; animation: float-ba80fa4c 6s ease-in-out infinite; }
.as-float-2-ba80fa4c { position: absolute; bottom: 20%; left: 15%; animation: float-ba80fa4c 8s ease-in-out infinite alternate; font-size: 30px; }
.as-float-3-ba80fa4c { position: absolute; top: 40%; left: 5%; animation: float-ba80fa4c 7s ease-in-out infinite; color: var(--as-highlight); font-size: 24px; }

@keyframes float-ba80fa4c {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(10deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

/* Grid Layout */
.as-grid-ba80fa4c {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
}

.as-col-right-ba80fa4c, .as-col-left-ba80fa4c {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Cards & Images */
.as-card-ba80fa4c {
    background: var(--as-card-bg);
    padding: 40px;
    border-radius: var(--as-radius-lg);
    box-shadow: var(--as-shadow);
}

.as-title-ba80fa4c {
    font-size: 32px;
    font-weight: 700;
    font-family: 'Fredoka', sans-serif;
    color: var(--as-primary);
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.as-desc-ba80fa4c {
    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
    font-family: 'Fredoka', sans-serif;
    color: #4A6B72;
    margin: 0;
}

.as-main-image-wrapper-ba80fa4c, .as-sec-image-wrapper-ba80fa4c {
    border-radius: var(--as-radius-lg);
    overflow: hidden;
    box-shadow: var(--as-shadow);
    display: flex;
}

.as-main-image-wrapper-ba80fa4c {
    height: 400px;
}
.as-sec-image-wrapper-ba80fa4c {
    height: 250px;
}

.as-image-ba80fa4c {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Highlights Row */
.as-highlights-ba80fa4c {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--as-card-bg);
    padding: 30px 40px;
    border-radius: var(--as-radius-lg);
    box-shadow: var(--as-shadow);
    position: relative;
    z-index: 1;
    gap: 20px;
}

.as-highlight-item-ba80fa4c {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    justify-content: center;
    min-width: max-content; /* Prevents text squeezing on mobile scroll */
}

.as-highlight-icon-ba80fa4c {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(245, 155, 31, 0.1);
    color: var(--as-highlight);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.as-highlight-icon-ba80fa4c svg {
    width: 18px; height: 18px; fill: currentColor;
}

.as-highlight-text-ba80fa4c {
    font-size: 15px;
    font-weight: 600;
    font-family: 'Fredoka', sans-serif;
    color: var(--as-primary);
    white-space: nowrap;
}

.as-highlight-divider-ba80fa4c {
    width: 1px;
    height: 30px;
    background: rgba(6, 80, 94, 0.1);
    flex-shrink: 0;
}

/* Responsive Rules */
@media (max-width: 1024px) {
    .as-wrapper-ba80fa4c {
        padding: 40px 20px;
    }
}

@media (max-width: 767px) {
    .as-grid-ba80fa4c {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    
    /* Mobile Custom Order */
    .as-col-left-ba80fa4c .as-main-image-wrapper-ba80fa4c { order: 1; }
    .as-col-right-ba80fa4c .as-main-text-ba80fa4c { order: 2; }
    .as-col-left-ba80fa4c .as-sec-text-ba80fa4c { order: 3; }
    .as-col-right-ba80fa4c .as-sec-image-wrapper-ba80fa4c { order: 4; }
    
    /* Make right and left columns flex so we can order their children together */
    .as-col-right-ba80fa4c, .as-col-left-ba80fa4c { display: contents; }
    
    .as-main-image-wrapper-ba80fa4c { height: 300px; }
    .as-title-ba80fa4c { font-size: 26px; }
    .as-card-ba80fa4c { padding: 30px; }

    /* Horizontal Highlights on Mobile */
    .as-highlights-ba80fa4c {
        padding: 20px;
        gap: 15px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start; /* Align left/right for scroll */
        scrollbar-width: none; /* Firefox */
    }
    .as-highlights-ba80fa4c::-webkit-scrollbar { 
        display: none; /* Safari and Chrome */
    }
    
    .as-highlight-item-ba80fa4c {
        flex: 0 0 auto;
        justify-content: flex-start;
    }
}