/* ===========================
   About Section — Modern Redesign
   Premium Layout + Glassmorphism
   =========================== */

/* ---- Section ---- */
.about-section-v2 {
    background: var(--dark-secondary);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

/* Ambient glow */
.about-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(140px);
    opacity: 0.05;
    background: #FFB800;
    top: -20%;
    right: -10%;
}

/* ---- Header ---- */
.about-header-v2 {
    text-align: center;
    margin-bottom: 50px;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 50px;
    background: rgba(255, 184, 0, 0.08);
    border: 1px solid rgba(255, 184, 0, 0.18);
    color: #FFB800;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.about-badge i {
    font-size: 0.75rem;
}

.about-title-v2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.15;
}

.about-subtitle-v2 {
    font-size: 1.05rem;
    color: #777;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ---- Content Grid (Image + Text) ---- */
.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

/* Image side */
.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.about-image-accent {
    position: absolute;
    bottom: -15px;
    left: -15px;
    width: 120px;
    height: 120px;
    border-radius: 20px;
    border: 3px solid rgba(255, 184, 0, 0.2);
    z-index: -1;
}

/* Text side */
.about-text-v2 {
    max-width: 520px;
}

.about-text-v2 p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 18px;
}

.about-text-v2 p:last-child {
    margin-bottom: 0;
}

.about-highlight {
    display: inline;
    color: #FFB800;
    font-weight: 600;
}

/* ---- Values Grid ---- */
.about-values-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.value-card-v2 {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 32px 28px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.value-card-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #FFB800, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.value-card-v2:hover {
    background: rgba(255, 184, 0, 0.04);
    border-color: rgba(255, 184, 0, 0.15);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.value-card-v2:hover::before {
    opacity: 1;
}

.value-icon-v2 {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(255, 184, 0, 0.08);
    border: 1px solid rgba(255, 184, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.value-icon-v2 i {
    font-size: 1.4rem;
    color: #FFB800;
}

.value-card-v2:hover .value-icon-v2 {
    background: rgba(255, 184, 0, 0.15);
    transform: scale(1.1);
}

.value-title-v2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.value-desc-v2 {
    font-size: 0.88rem;
    color: #777;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ---- CTA ---- */
.about-cta-v2 {
    text-align: center;
}

.about-cta-v2 .btn {
    padding: 16px 36px;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* ---- Mobile ---- */
@media (max-width: 992px) {
    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .about-image-wrapper {
        display: flex;
        justify-content: center;
    }

    .about-image-wrapper img {
        max-width: 400px;
    }

    .about-image-accent {
        display: none;
    }

    .about-text-v2 {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .about-section-v2 {
        padding: 60px 0 40px;
    }

    .about-title-v2 {
        font-size: 2rem;
    }

    .about-values-v2 {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .about-content-grid {
        gap: 30px;
    }

    .value-card-v2 {
        padding: 24px 20px;
    }
}