/* ========== ABOUT PAGE - PREMIUM STYLES ========== */

/* AP Hero */
.ap-hero {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 75px 20px 60px;
}
.ap-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    animation: apHeroZoom 12s ease-in-out infinite alternate;
}
@keyframes apHeroZoom { from { transform: scale(1.05); } to { transform: scale(1.12); } }
.ap-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(10,61,145,0.85) 0%, rgba(6,19,37,0.92) 60%, rgba(243,105,32,0.4) 100%);
}
.ap-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    max-width: 1000px;
}
.ap-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(247,186,0,0.18);
    border: 1px solid rgba(247,186,0,0.55);
    color: #f7ba00;
    padding: 7px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 22px;
    backdrop-filter: blur(8px);
}
.ap-hero-content h1 {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 18px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.ap-highlight { color: var(--primary-orange); }
.ap-hero-content p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.85);
    max-width: 850px;
    margin: 0 auto 0;
    line-height: 1.7;
}
.ap-hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 20px;
    padding: 22px 30px;
    flex-wrap: wrap;
    gap: 0;
}
.ap-hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 30px;
}
.ap-hero-num {
    font-size: 2rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
}
.ap-hero-lbl {
    font-size: 11px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    font-weight: 600;
    margin-top: 5px;
    letter-spacing: 0.5px;
}
.ap-hero-divider {
    width: 1px;
    height: 45px;
    background: rgba(255,255,255,0.2);
}
.ap-hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255,255,255,0.6);
    font-size: 20px;
    animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* AP Story Section */
.ap-story-section {
    padding: 100px 5%;
    background: #ffffff;
}
.ap-container { max-width: 1200px; margin: 0 auto; }
.ap-story-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}
.ap-story-img-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: visible;
}
.ap-story-img {
    width: 100%;
    border-radius: 30px;
    object-fit: cover;
    box-shadow: 0 30px 70px rgba(10,61,145,0.15);
}
.ap-img-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--primary-orange), #ff7a33);
    color: #ffffff;
    padding: 18px 22px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 15px 30px rgba(243,105,32,0.35);
    line-height: 1.4;
}
.ap-img-badge i { font-size: 24px; flex-shrink: 0; }
.ap-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(243,105,32,0.08);
    color: var(--primary-orange);
    border: 1px solid rgba(243,105,32,0.2);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
}
.ap-section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.25;
    margin-bottom: 18px;
}
.ap-title-line {
    width: 55px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-yellow));
    border-radius: 2px;
    margin-bottom: 22px;
}
.ap-desc {
    font-size: 15px;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 15px;
}
.ap-values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 28px 0 32px;
}
.ap-value-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--bg-light);
    border-radius: 16px;
    padding: 16px;
    border: 1px solid #f0f4f9;
    transition: all 0.3s ease;
}
.ap-value-card:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(10,61,145,0.07); }
.ap-value-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-blue), #174baf);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
}
.ap-value-card h4 { font-size: 13.5px; font-weight: 700; color: var(--text-dark); margin-bottom: 2px; }
.ap-value-card p { font-size: 12px; color: #888888; }
.ap-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-orange), #ff7a33);
    color: #ffffff;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 22px rgba(243,105,32,0.3);
}
.ap-cta-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(243,105,32,0.45); color: #ffffff; }

/* AP Why Section */
.ap-why-section {
    padding: 90px 5%;
    background: linear-gradient(135deg, #f8faff 0%, var(--bg-light) 100%);
}
.ap-section-header { text-align: center; margin-bottom: 55px; }
.ap-section-desc { font-size: 15.5px; color: #666666; max-width: 560px; margin: 0 auto; line-height: 1.7; }
.ap-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.ap-why-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 35px 25px;
    text-align: center;
    border: 1px solid #f0f4f9;
    box-shadow: 0 8px 25px rgba(10,61,145,0.04);
    transition: all 0.4s ease;
}
.ap-why-card:hover { transform: translateY(-8px); box-shadow: 0 20px 45px rgba(10,61,145,0.1); }
.ap-why-icon {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #ffffff;
    margin: 0 auto 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}
.ap-why-card h3 { font-size: 16.5px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.ap-why-card p { font-size: 13.5px; color: #777777; line-height: 1.7; }

/* AP Team Section */
.ap-team-section {
    padding: 100px 5%;
    background: #ffffff;
}
.ap-team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}
.ap-team-img {
    width: 100%;
    border-radius: 30px;
    object-fit: cover;
    box-shadow: 0 30px 70px rgba(10,61,145,0.12);
}
.ap-team-stats {
    display: flex;
    gap: 30px;
    margin-top: 35px;
}
.ap-team-stat span {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-orange);
    display: block;
    line-height: 1;
}
.ap-team-stat p { font-size: 13px; color: #888888; font-weight: 600; margin-top: 5px; }

/* AP CTA Section */
.ap-cta-section {
    position: relative;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0c2a6b 100%);
    padding: 100px 5%;
    text-align: center;
    overflow: hidden;
}
.ap-cta-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(243,105,32,0.12);
}
.ap-cta-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(247,186,0,0.08);
}
.ap-cta-content { position: relative; z-index: 2; }
.ap-cta-content h2 { font-size: clamp(2rem,4vw,2.8rem); font-weight: 800; color: #ffffff; margin-bottom: 15px; }
.ap-cta-content p { font-size: 16px; color: rgba(255,255,255,0.8); margin-bottom: 38px; }
.ap-cta-buttons { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; }
.ap-cta-btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #25d366, #1da851);
    color: #ffffff;
    padding: 15px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    box-shadow: 0 8px 22px rgba(37,211,102,0.35);
    transition: all 0.3s ease;
}
.ap-cta-btn-wa:hover { transform: translateY(-3px); color: #ffffff; box-shadow: 0 12px 28px rgba(37,211,102,0.5); }
.ap-cta-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid rgba(255,255,255,0.6);
    color: #ffffff;
    padding: 15px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.ap-cta-btn-outline:hover { background: rgba(255,255,255,0.12); color: #ffffff; }

/* Mobile Responsive */
@media (max-width: 992px) {
    .ap-why-grid { grid-template-columns: repeat(2, 1fr); }
    .ap-story-grid, .ap-team-grid { grid-template-columns: 1fr; gap: 40px; }
    .ap-hero-stat { padding: 0 18px; }
}
@media (max-width: 768px) {
    .ap-hero {
        min-height: auto !important;
        padding: 35px 10% 15px !important;
    }
    .ap-hero-content {
        padding: 0;
        max-width: 100%;
        width: 100%;
    }
    .ap-hero-content h1 {
        font-size: 1.7rem;
        margin-bottom: 8px;
    }
    .ap-hero-content p {
        font-size: 13px;
        margin-bottom: 0;
        max-width: 100%;
    }
    .ap-hero-badge {
        font-size: 10px;
        padding: 4px 12px;
        margin-bottom: 10px;
    }
    .ap-hero-scroll { display: none; }
    .ap-story-section, .ap-why-section, .ap-team-section { padding: 35px 5%; }
    .ap-story-grid, .ap-team-grid { grid-template-columns: 1fr; gap: 25px; }
    .ap-values-grid { grid-template-columns: 1fr; gap: 10px; }
    .ap-section-title { font-size: 1.4rem; margin-bottom: 10px; }
    .ap-desc { font-size: 13.5px; line-height: 1.6; margin-bottom: 10px; }
    .ap-title-line { margin-bottom: 14px; }
    .ap-badge-pill { margin-bottom: 10px; font-size: 11px; }
    .ap-value-card { padding: 12px; gap: 10px; }
    .ap-value-icon { width: 36px; height: 36px; font-size: 14px; }
    .ap-value-card h4 { font-size: 12.5px; }
    .ap-value-card p { font-size: 11px; }
    .ap-img-badge { right: 0; bottom: -15px; font-size: 11px; padding: 10px 12px; gap: 8px; }
    .ap-img-badge i { font-size: 18px; }
    .ap-cta-btn { padding: 11px 22px; font-size: 14px; margin-top: 10px; }
    .ap-section-header { text-align: left; margin-bottom: 30px; }
    .ap-section-desc { margin: 0; }
    .ap-why-grid { grid-template-columns: 1fr; gap: 12px; }
    .ap-why-card { padding: 20px 15px; }
    .ap-why-icon { width: 50px; height: 50px; font-size: 20px; margin-bottom: 14px; }
    .ap-why-card h3 { font-size: 15px; }
    .ap-why-card p { font-size: 13px; }
    .ap-team-stats { gap: 12px; margin-top: 20px; }
    .ap-team-stats span { font-size: 1.4rem; }
    .ap-cta-section { padding: 40px 5%; }
    .ap-cta-content h2 { font-size: 1.4rem; margin-bottom: 10px; }
    .ap-cta-content p { font-size: 13.5px; margin-bottom: 24px; }
    .ap-cta-buttons { flex-direction: column; align-items: center; gap: 10px; }
    .ap-cta-btn-wa, .ap-cta-btn-outline { width: 100%; justify-content: center; padding: 13px; font-size: 14px; }
    .ap-story-img-wrapper { margin-bottom: 10px; }
}

/* ========== AP HERO ENHANCED STYLES ========== */
.ap-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.65);
}
.ap-breadcrumb a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.3s;
}
.ap-breadcrumb a:hover { color: var(--primary-yellow); }
.ap-breadcrumb .fa-chevron-right { font-size: 10px; }
.ap-breadcrumb span:last-child { color: var(--primary-yellow); }

.ap-hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}
.ap-hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: linear-gradient(135deg, var(--primary-orange), #ff7a33);
    color: #ffffff;
    padding: 13px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 8px 22px rgba(243,105,32,0.45);
    transition: all 0.3s ease;
}
.ap-hero-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(243,105,32,0.55); color: #ffffff; }
.ap-hero-btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    color: #ffffff;
    border: 1.5px solid rgba(255,255,255,0.4);
    padding: 13px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.ap-hero-btn-wa:hover { background: rgba(255,255,255,0.22); color: #ffffff; }

/* Decorative floating circles */
.ap-hero-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}
.ap-circle-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(243,105,32,0.12) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation: floatCircle 8s ease-in-out infinite alternate;
}
.ap-circle-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(247,186,0,0.1) 0%, transparent 70%);
    bottom: 50px;
    left: -60px;
    animation: floatCircle 10s ease-in-out infinite alternate-reverse;
}
@keyframes floatCircle { from { transform: translate(0, 0); } to { transform: translate(20px, 20px); } }

/* Wave separator */
.ap-hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 3;
}
.ap-hero-wave svg { display: block; width: 100%; height: 70px; }

/* Ensure hero content is above wave */
.ap-hero-content { position: relative; z-index: 2; }

@media (max-width: 768px) {
    .ap-hero-actions { gap: 12px; }
    .ap-hero-btn-primary, .ap-hero-btn-wa { padding: 11px 20px; font-size: 13px; }
    .ap-circle-1, .ap-circle-2 { display: none; }
    .ap-hero-wave svg { height: 40px; }
}
