/* ========================================
   Modern Intro Section Styles (About Style)
   ======================================== */

.intro-section {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    overflow: hidden;
}

.intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(245, 131, 69, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(245, 131, 69, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Image Wrapper */
.intro-image-wrapper {
    position: relative;
    z-index: 2;
}

.intro-main-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.intro-main-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.intro-main-image:hover img {
    transform: scale(1.05);
}

/* Image Overlay */
.intro-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(245, 131, 69, 0.85), rgba(217, 107, 58, 0.85));
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-main-image:hover .intro-image-overlay {
    opacity: 1;
}

.intro-overlay-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    transition: transform 0.5s ease 0.2s;
}

.intro-main-image:hover .intro-overlay-icon {
    transform: scale(1);
}

.intro-overlay-icon i {
    font-size: 50px;
    color: var(--white-color);
}

/* Floating Stats Cards */
.intro-stats-card {
    position: absolute;
    background: var(--white-color);
    border-radius: 16px;
    padding: 20px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 3;
    animation: float 3s ease-in-out infinite;
}

.intro-stats-1 {
    bottom: 40px;
    left: -30px;
    animation-delay: 0s;
}

.intro-stats-2 {
    top: 40px;
    right: -30px;
    animation-delay: 1.5s;
}

.intro-stats-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--theme-color), #d96b3a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.intro-stats-icon i {
    font-size: 28px;
    color: var(--white-color);
}

.intro-stats-content {
    flex: 1;
}

.intro-stats-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--title-color);
    font-family: var(--title-font);
    margin: 0;
    line-height: 1;
}

.intro-stats-label {
    font-size: 14px;
    color: var(--body-color);
    font-family: var(--body-font);
    margin: 5px 0 0 0;
    line-height: 1;
}

/* Content Wrapper */
.intro-content-modern {
    padding-right: 40px;
}

/* Badge */
.intro-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(245, 131, 69, 0.1), rgba(245, 131, 69, 0.05));
    border: 1px solid rgba(245, 131, 69, 0.2);
    border-radius: 50px;
    padding: 10px 20px;
    margin-bottom: 20px;
}

.intro-badge-modern i {
    font-size: 20px;
    color: var(--theme-color);
}

.intro-badge-modern span {
    font-size: 14px;
    font-weight: 600;
    color: var(--theme-color);
    font-family: var(--title-font);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Title */
.intro-main-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--title-color);
    font-family: var(--title-font);
    margin-bottom: 24px;
    line-height: 1.2;
}

/* Description */
.intro-description-modern {
    font-size: 16px;
    line-height: 1.8;
    color: var(--body-color);
    font-family: var(--body-font);
    margin-bottom: 20px;
}

.intro-description-modern strong {
    color: var(--theme-color);
    font-weight: 600;
}

/* Features List - Horizontal */
.intro-features-modern {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.intro-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--white-color);
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.intro-feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.intro-feature-check {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--theme-color), #d96b3a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.intro-feature-check i {
    font-size: 24px;
    color: var(--white-color);
}

.intro-feature-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--title-color);
    font-family: var(--title-font);
    margin: 0 0 6px 0;
}

.intro-feature-content p {
    font-size: 14px;
    color: var(--body-color);
    font-family: var(--body-font);
    margin: 0;
    line-height: 1.5;
}

/* Responsive Design */

/* Tablet */
@media (max-width: 992px) {
    .intro-content-modern {
        padding-right: 0;
        margin-top: 40px;
    }

    .intro-main-image img {
        height: 450px;
    }

    .intro-main-title {
        font-size: 36px;
    }

    .intro-stats-1 {
        left: 20px;
        bottom: 20px;
    }

    .intro-stats-2 {
        right: 20px;
        top: 20px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .intro-main-image {
        border-radius: 20px;
    }

    .intro-main-image img {
        height: 400px;
    }

    .intro-stats-card {
        padding: 15px 20px;
        gap: 12px;
    }

    .intro-stats-1 {
        left: 10px;
        bottom: 10px;
    }

    .intro-stats-2 {
        right: 10px;
        top: 10px;
    }

    .intro-stats-icon {
        width: 50px;
        height: 50px;
    }

    .intro-stats-icon i {
        font-size: 24px;
    }

    .intro-stats-number {
        font-size: 26px;
    }

    .intro-stats-label {
        font-size: 12px;
    }

    .intro-badge-modern {
        padding: 8px 16px;
    }

    .intro-badge-modern i {
        font-size: 18px;
    }

    .intro-badge-modern span {
        font-size: 13px;
    }

    .intro-main-title {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .intro-description-modern {
        font-size: 15px;
        line-height: 1.7;
    }

    .intro-features-modern {
        gap: 16px;
        margin-top: 25px;
    }

    .intro-feature-item {
        padding: 16px;
    }

    .intro-feature-check {
        width: 45px;
        height: 45px;
    }

    .intro-feature-check i {
        font-size: 20px;
    }

    .intro-feature-content h4 {
        font-size: 16px;
    }

    .intro-feature-content p {
        font-size: 13px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .intro-main-image {
        border-radius: 16px;
    }

    .intro-main-image img {
        height: 350px;
    }

    .intro-stats-card {
        padding: 12px 16px;
        border-radius: 12px;
    }

    .intro-stats-1,
    .intro-stats-2 {
        position: static;
        margin-top: 15px;
    }

    .intro-stats-icon {
        width: 45px;
        height: 45px;
    }

    .intro-stats-icon i {
        font-size: 20px;
    }

    .intro-stats-number {
        font-size: 24px;
    }

    .intro-main-title {
        font-size: 26px;
    }

    .intro-description-modern {
        font-size: 14px;
    }

    .intro-feature-item {
        padding: 14px;
    }
}
