/* ============================================
   SapCod - About Section V3 Ultra Premium
   ============================================ */

.about-premium-v3 {
    position: relative;
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
    isolation: isolate;
}

[data-theme="dark"] .about-premium-v3 {
    background: #0a0a1a;
}

/* ===== Background ===== */
.about-v3-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.about-v3-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.05;
}

.about-v3-orb-1 {
    width: 450px;
    height: 450px;
    background: #0066ff;
    top: -150px;
    left: -100px;
}

.about-v3-orb-2 {
    width: 350px;
    height: 350px;
    background: #339966;
    bottom: -100px;
    right: -80px;
}

.about-v3-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0,102,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,102,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle at center, black 30%, transparent 70%);
}

/* ===== Container ===== */
.about-premium-v3 .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Section Header ===== */
.about-v3-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-v3-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(0,102,255,0.06);
    border: 1px solid rgba(0,102,255,0.1);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #0066ff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

[data-theme="dark"] .about-v3-chip {
    background: rgba(0,102,255,0.1);
    border-color: rgba(0,102,255,0.2);
}

.about-v3-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
    line-height: 1.2;
}

[data-theme="dark"] .about-v3-title {
    color: #e8e8f0;
}

.text-gradient {
    background: linear-gradient(135deg, #0066ff, #339966, #8b5cf6);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.about-v3-subtitle {
    font-size: 1rem;
    color: #64748b;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.6;
}

[data-theme="dark"] .about-v3-subtitle {
    color: #94a3b8;
}

/* ===== Main Grid ===== */
.about-v3-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

/* ===== Visual Side ===== */
.about-v3-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.about-v3-main-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px 24px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 15px 50px rgba(0,0,0,0.05);
    width: 100%;
    max-width: 420px;
    position: relative;
}

[data-theme="dark"] .about-v3-main-card {
    background: #1a1a30;
    border-color: #2a2a4a;
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
}

.about-v3-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #92400e;
    margin-bottom: 20px;
}

.badge-icon {
    font-size: 1rem;
}

/* Stats Row */
.about-v3-stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.about-v3-stat {
    text-align: center;
    padding: 14px 8px;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s;
}

[data-theme="dark"] .about-v3-stat {
    background: #0f0f23;
}

.about-v3-stat:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.stat-number {
    font-size: 1.4rem;
    font-weight: 800;
    color: #0066ff;
    display: block;
}

.stat-label {
    font-size: 0.65rem;
    color: #94a3b8;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Progress Bar */
.about-v3-progress {
    margin-bottom: 16px;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.72rem;
    color: #64748b;
    margin-bottom: 6px;
    font-weight: 500;
}

.progress-bar {
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    overflow: hidden;
}

[data-theme="dark"] .progress-bar {
    background: #2a2a4a;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #0066ff, #339966);
    border-radius: 3px;
    width: 0;
    transition: width 1.5s ease;
}

.progress-fill.animate {
    width: 98%;
}

/* Clients */
.about-v3-clients {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.about-v3-clients span:first-child {
    font-size: 0.7rem;
    color: #94a3b8;
    font-weight: 500;
}

.client-names {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.client-names span {
    font-size: 0.62rem;
    padding: 3px 8px;
    background: #f1f5f9;
    border-radius: 4px;
    color: #64748b;
    font-weight: 600;
}

[data-theme="dark"] .client-names span {
    background: #0f0f23;
    color: #94a3b8;
}

/* Floating Cards */
.about-v3-float {
    position: absolute;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    z-index: 2;
}

[data-theme="dark"] .about-v3-float {
    background: #1a1a30;
    border-color: #2a2a4a;
}

.about-v3-float.float-top {
    top: -15px;
    right: -15px;
}

.about-v3-float.float-bottom {
    bottom: -15px;
    left: -15px;
}

.float-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.float-icon.blue-icon {
    background: rgba(0,102,255,0.1);
    color: #0066ff;
}

.float-icon.green-icon {
    background: rgba(51,153,102,0.1);
    color: #339966;
}

.float-info strong {
    display: block;
    font-size: 0.8rem;
    color: #0f172a;
}

[data-theme="dark"] .float-info strong {
    color: #e0e0e0;
}

.float-info span {
    font-size: 0.62rem;
    color: #94a3b8;
}

/* ===== Content Side ===== */
.about-v3-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
    line-height: 1.3;
}

[data-theme="dark"] .about-v3-content h3 {
    color: #e0e0e0;
}

.about-v3-content h3 .highlight {
    color: #0066ff;
}

.about-v3-text {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 12px;
}

[data-theme="dark"] .about-v3-text {
    color: #94a3b8;
}

.about-v3-text strong {
    color: #0066ff;
}

/* Core Values */
.about-v3-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 20px 0;
}

.about-v3-value {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s;
}

[data-theme="dark"] .about-v3-value {
    background: #1a1a30;
}

.about-v3-value:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}

.value-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.v-blue { background: rgba(0,102,255,0.08); color: #0066ff; }
.v-green { background: rgba(51,153,102,0.08); color: #339966; }
.v-purple { background: rgba(139,92,246,0.08); color: #8b5cf6; }
.v-orange { background: rgba(245,158,11,0.08); color: #f59e0b; }

.value-content h5 {
    font-size: 0.85rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 2px;
}

[data-theme="dark"] .value-content h5 {
    color: #e0e0e0;
}

.value-content p {
    font-size: 0.72rem;
    color: #94a3b8;
    margin: 0;
}

/* CTA */
.about-v3-cta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.btn-about-primary {
    padding: 12px 24px;
    background: #0066ff;
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,102,255,0.2);
}

.btn-about-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,102,255,0.35);
}

.btn-about-outline {
    padding: 12px 24px;
    background: #fff;
    color: #0066ff;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
}

[data-theme="dark"] .btn-about-outline {
    background: transparent;
    color: #60a5fa;
    border-color: #2a2a4a;
}

.btn-about-outline:hover {
    border-color: #0066ff;
    transform: translateY(-2px);
}

/* ===== Mission & Vision ===== */
.about-v3-mv-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.about-v3-mv-card {
    padding: 30px 24px;
    border-radius: 18px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
}

[data-theme="dark"] .about-v3-mv-card {
    border-color: #2a2a4a;
}

.about-v3-mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.05);
}

.mission-card {
    background: linear-gradient(135deg, rgba(0,102,255,0.03), rgba(0,102,255,0.01));
    border-left: 4px solid #0066ff;
}

.vision-card {
    background: linear-gradient(135deg, rgba(51,153,102,0.03), rgba(51,153,102,0.01));
    border-left: 4px solid #339966;
}

.mv-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 14px;
}

.mission-card .mv-icon-wrap {
    background: rgba(0,102,255,0.08);
    color: #0066ff;
}

.vision-card .mv-icon-wrap {
    background: rgba(51,153,102,0.08);
    color: #339966;
}

.about-v3-mv-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

[data-theme="dark"] .about-v3-mv-card h4 {
    color: #e0e0e0;
}

.about-v3-mv-card p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

[data-theme="dark"] .about-v3-mv-card p {
    color: #94a3b8;
}

/* ============================================ */
/*           MOBILE RESPONSIVE                   */
/* ============================================ */

@media (max-width: 1024px) {
    .about-v3-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-v3-visual {
        order: -1;
        max-width: 380px;
        margin: 0 auto;
    }
    
    .about-v3-float {
        display: none;
    }
}

@media (max-width: 768px) {
    .about-premium-v3 {
        padding: 70px 0;
    }
    
    .about-v3-header {
        margin-bottom: 40px;
    }
    
    .about-v3-main {
        gap: 30px;
    }
    
    .about-v3-mv-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .about-v3-values {
        grid-template-columns: 1fr;
    }
    
    .about-v3-cta {
        flex-direction: column;
    }
    
    .btn-about-primary,
    .btn-about-outline {
        width: 100%;
        justify-content: center;
    }
    
    .about-v3-main-card {
        padding: 20px 16px;
    }
    
    .about-v3-stat-row {
        gap: 8px;
    }
    
    .about-v3-stat {
        padding: 10px 6px;
    }
}

@media (max-width: 480px) {
    .about-premium-v3 {
        padding: 60px 0;
    }
    
    .about-v3-content h3 {
        font-size: 1.3rem;
    }
    
    .about-v3-text {
        font-size: 0.85rem;
    }
    
    .about-v3-stat-row {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
    
    .stat-label {
        font-size: 0.58rem;
    }
}