/* ============================================
   ABOUT PAGE — PREMIUM DESIGN
   Dedicated CSS for the About Us page
   ============================================ */

/* ---------- Variables ---------- */
.ap-page {
    --ap-primary: #A52673;
    --ap-primary-dark: #8a1f5f;
    --ap-primary-light: #c74a96;
    --ap-primary-rgb: 165, 38, 115;
    --ap-accent: #667eea;
    --ap-accent-rgb: 102, 126, 234;
    --ap-dark: #0f172a;
    --ap-heading: #1e293b;
    --ap-body: #475569;
    --ap-muted: #94a3b8;
    --ap-border: #e2e8f0;
    --ap-bg: #f8fafc;
    --ap-bg-alt: #f1f5f9;
    --ap-white: #ffffff;
    --ap-radius: 20px;
    --ap-radius-sm: 12px;
    --ap-shadow: 0 1px 3px rgba(0,0,0,.04), 0 8px 24px rgba(0,0,0,.06);
    --ap-shadow-lg: 0 8px 16px rgba(0,0,0,.06), 0 24px 56px rgba(0,0,0,.1);
    --ap-transition: .4s cubic-bezier(.4,0,.2,1);
}

/* ========================================
   HERO
   ======================================== */
.ap-hero {
    position: relative;
    padding: 150px 0 0;
    background: linear-gradient(160deg, var(--ap-primary-dark) 0%, var(--ap-primary) 50%, var(--ap-primary-light) 100%);
    overflow: hidden;
    color: var(--ap-white);
}

/* Soft radial overlays */
.ap-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 50%, rgba(255,255,255,.08) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 25%, rgba(255,255,255,.06) 0%, transparent 45%),
        radial-gradient(ellipse at 50% 100%, rgba(0,0,0,.1) 0%, transparent 50%);
    z-index: 0;
}

/* Floating gradient blobs */
.ap-hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}
.ap-hero-blob--1 { width: 550px; height: 550px; background: rgba(255,255,255,.06); top: -200px; right: -120px; animation: apBlobDrift 18s ease-in-out infinite; }
.ap-hero-blob--2 { width: 400px; height: 400px; background: rgba(var(--ap-primary-rgb),.3); bottom: -150px; left: -100px; animation: apBlobDrift 22s ease-in-out infinite 3s; }
.ap-hero-blob--3 { width: 220px; height: 220px; background: rgba(255,255,255,.04); top: 40%; left: 10%; animation: apBlobDrift 15s ease-in-out infinite 6s; }
.ap-hero-blob--4 { width: 180px; height: 180px; background: rgba(var(--ap-accent-rgb),.07); top: 20%; right: 18%; animation: apBlobDrift 20s ease-in-out infinite 2s; }

@keyframes apBlobDrift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(15px, -10px) scale(1.03); }
    66% { transform: translate(-10px, 8px) scale(0.97); }
}

/* Floating geometric shapes */
.ap-shape {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    opacity: .1;
}
.ap-shape--circle {
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.5);
}
.ap-shape--ring {
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.35);
}
.ap-shape--dot {
    border-radius: 50%;
    background: rgba(255,255,255,.45);
}
.ap-shape--diamond {
    background: rgba(255,255,255,.3);
    transform: rotate(45deg);
}

.ap-s1 { width: 28px; height: 28px; top: 15%; left: 5%; animation: apFloat 8s ease-in-out infinite; }
.ap-s2 { width: 44px; height: 44px; bottom: 22%; right: 7%; animation: apFloat 10s ease-in-out infinite 1s; }
.ap-s3 { width: 12px; height: 12px; top: 20%; right: 16%; animation: apPulse 4s ease-in-out infinite; }
.ap-s4 { width: 22px; height: 22px; bottom: 30%; left: 12%; animation: apFloat 7s ease-in-out infinite 2s; }
.ap-s5 { width: 36px; height: 36px; top: 55%; left: 3%; animation: apSpin 25s linear infinite; }
.ap-s6 { width: 16px; height: 16px; top: 10%; right: 32%; animation: apPulse 5s ease-in-out infinite 1s; }
.ap-s7 { width: 30px; height: 30px; bottom: 15%; right: 22%; animation: apFloat 9s ease-in-out infinite 3s; }
.ap-s8 { width: 10px; height: 10px; top: 60%; right: 5%; animation: apPulse 3s ease-in-out infinite 0.5s; }
.ap-s9 { width: 18px; height: 18px; top: 35%; left: 20%; animation: apFloat 11s ease-in-out infinite 4s; }
.ap-s10 { width: 8px; height: 8px; bottom: 40%; right: 30%; animation: apPulse 6s ease-in-out infinite 2s; }

@keyframes apFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-18px) rotate(5deg); }
}
@keyframes apPulse {
    0%, 100% { transform: scale(1); opacity: .1; }
    50% { transform: scale(1.4); opacity: .18; }
}
@keyframes apSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Hero content */
.ap-hero > .container { position: relative; z-index: 5; }

.ap-hero-inner {
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
    padding-bottom: 60px;
}

.ap-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 24px;
    border-radius: 40px;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,.15);
    margin-bottom: 32px;
    color: rgba(255,255,255,.85);
    transition: var(--ap-transition);
}
.ap-hero-badge:hover {
    background: rgba(255,255,255,.14);
    transform: translateY(-2px);
}
.ap-hero-badge i {
    font-size: .8rem;
    color: #fbbf24;
}

.ap-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: -1.5px;
}
.ap-hero-title span {
    color: #fff;
}

.ap-hero-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: rgba(255,255,255,.7);
    margin-bottom: 28px;
    letter-spacing: 0.5px;
}

/* Thin divider between subtitle and description */
.ap-hero-divider {
    width: 60px;
    height: 3px;
    background: rgba(255,255,255,.25);
    border-radius: 3px;
    margin: 0 auto 28px;
}

/* Hero description — single centered block */
.ap-hero-desc {
    font-size: 1.05rem;
    line-height: 1.9;
    color: rgba(255,255,255,.78);
    max-width: 720px;
    margin: 0 auto 16px;
    text-align: center;
}
.ap-hero-desc:last-of-type {
    margin-bottom: 40px;
}

/* Hero buttons */
.ap-hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Stats bar at the bottom of hero */
.ap-hero-stats {
    position: relative;
    z-index: 5;
    background: rgba(0,0,0,.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255,255,255,.08);
    margin-top: 0;
}

.ap-hero-stats-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 960px;
    margin: 0 auto;
}

.ap-hero-stat-item {
    text-align: center;
    padding: 32px 16px;
    position: relative;
    transition: background .3s ease;
}
.ap-hero-stat-item:hover {
    background: rgba(255,255,255,.04);
}
.ap-hero-stat-item + .ap-hero-stat-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 44px;
    background: rgba(255,255,255,.1);
}

.ap-hero-stat-num {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
}

.ap-hero-stat-label {
    font-size: .72rem;
    color: rgba(255,255,255,.5);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.ap-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 34px;
    border-radius: 50px;
    font-weight: 600;
    font-size: .95rem;
    text-decoration: none;
    transition: var(--ap-transition);
    border: 2px solid transparent;
    cursor: pointer;
    letter-spacing: 0.3px;
}
.ap-btn--white {
    background: var(--ap-white);
    color: var(--ap-primary);
    border-color: var(--ap-white);
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
}
.ap-btn--white:hover {
    background: transparent;
    color: var(--ap-white);
    border-color: var(--ap-white);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,.15);
}
.ap-btn--outline {
    background: transparent;
    color: var(--ap-white);
    border-color: rgba(255,255,255,.35);
}
.ap-btn--outline:hover {
    background: var(--ap-white);
    color: var(--ap-primary);
    border-color: var(--ap-white);
    transform: translateY(-3px);
}

/* ========================================
   SECTIONS COMMON
   ======================================== */
.ap-section {
    padding: 100px 0;
    position: relative;
}
.ap-section--gray {
    background: var(--ap-bg);
}
.ap-section--dark {
    background: linear-gradient(160deg, var(--ap-dark) 0%, #1e293b 100%);
    color: var(--ap-white);
}
.ap-section--gradient {
    background: linear-gradient(160deg, var(--ap-primary-dark) 0%, var(--ap-primary) 60%, var(--ap-primary-light) 100%);
    color: var(--ap-white);
    position: relative;
    overflow: hidden;
}
.ap-section--gradient::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,.05);
    border-radius: 50%;
    filter: blur(100px);
    top: -150px;
    right: -100px;
    pointer-events: none;
}

.ap-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.ap-label {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--ap-primary);
    margin-bottom: 14px;
    padding: 5px 16px;
    border-radius: 20px;
    background: rgba(var(--ap-primary-rgb),.07);
}
.ap-section--dark .ap-label,
.ap-section--gradient .ap-label {
    color: rgba(255,255,255,.85);
    background: rgba(255,255,255,.12);
}

.ap-section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--ap-heading);
    line-height: 1.25;
    margin-bottom: 16px;
}
.ap-section--dark .ap-section-title,
.ap-section--gradient .ap-section-title {
    color: #fff;
}

.ap-section-desc {
    font-size: 1.05rem;
    color: var(--ap-body);
    line-height: 1.8;
}
.ap-section--dark .ap-section-desc,
.ap-section--gradient .ap-section-desc {
    color: rgba(255,255,255,.75);
}

/* Decorative underline for section titles */
.ap-section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background: var(--ap-primary);
    border-radius: 4px;
    margin: 18px auto 0;
}
.ap-section--dark .ap-section-title::after,
.ap-section--gradient .ap-section-title::after {
    background: rgba(255,255,255,.3);
}

/* ========================================
   VISION & MISSION CARDS
   ======================================== */
.ap-vm-card {
    background: var(--ap-white);
    border-radius: var(--ap-radius);
    padding: 44px 38px;
    height: 100%;
    border: 1px solid var(--ap-border);
    transition: var(--ap-transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.ap-vm-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--ap-primary), var(--ap-primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .5s ease;
}
.ap-vm-card:hover {
    border-color: transparent;
    box-shadow: var(--ap-shadow-lg);
    transform: translateY(-8px);
}
.ap-vm-card:hover::before {
    transform: scaleX(1);
}

.ap-vm-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: rgba(var(--ap-primary-rgb),.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: var(--ap-transition);
}
.ap-vm-card:hover .ap-vm-icon {
    background: var(--ap-primary);
    transform: scale(1.05) rotate(3deg);
}
.ap-vm-icon i {
    font-size: 1.8rem;
    color: var(--ap-primary);
    transition: var(--ap-transition);
}
.ap-vm-card:hover .ap-vm-icon i {
    color: var(--ap-white);
}

.ap-vm-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ap-heading);
    margin-bottom: 16px;
}

.ap-vm-text {
    font-size: .95rem;
    color: var(--ap-body);
    line-height: 1.8;
    margin-bottom: 0;
}

.ap-vm-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
}
.ap-vm-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    font-size: .95rem;
    color: var(--ap-body);
    line-height: 1.6;
}
.ap-vm-list li i {
    color: var(--ap-primary);
    margin-top: 4px;
    flex-shrink: 0;
    font-size: .85rem;
}

/* ========================================
   STATS COUNTER
   ======================================== */
.ap-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.ap-stat {
    text-align: center;
    padding: 48px 24px;
    position: relative;
    transition: var(--ap-transition);
}
.ap-stat:hover {
    background: rgba(255,255,255,.04);
}
.ap-stat + .ap-stat::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,.12);
}

.ap-stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 10px;
}
.ap-stat-number span {
    color: rgba(255,255,255,.5);
}

.ap-stat-label {
    font-size: .82rem;
    color: rgba(255,255,255,.55);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.ap-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.2rem;
    color: rgba(255,255,255,.6);
}

/* ========================================
   SERVICE CARDS
   ======================================== */
.ap-service-card {
    background: var(--ap-white);
    border-radius: var(--ap-radius);
    padding: 36px 30px;
    height: 100%;
    border: 1px solid var(--ap-border);
    transition: var(--ap-transition);
    position: relative;
    overflow: hidden;
}
.ap-service-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--ap-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
}
.ap-service-card:hover {
    border-color: transparent;
    box-shadow: var(--ap-shadow-lg);
    transform: translateY(-8px);
}
.ap-service-card:hover::after {
    transform: scaleX(1);
}

.ap-service-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(var(--ap-primary-rgb),.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--ap-transition);
}
.ap-service-card:hover .ap-service-icon {
    background: var(--ap-primary);
}
.ap-service-icon i {
    font-size: 1.5rem;
    color: var(--ap-primary);
    transition: var(--ap-transition);
}
.ap-service-card:hover .ap-service-icon i {
    color: var(--ap-white);
}

.ap-service-num {
    font-size: .72rem;
    font-weight: 700;
    color: var(--ap-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: block;
}

.ap-service-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.18rem;
    font-weight: 700;
    color: var(--ap-heading);
    margin-bottom: 12px;
}

.ap-service-text {
    font-size: .9rem;
    color: var(--ap-body);
    line-height: 1.7;
    margin-bottom: 20px;
}

.ap-service-link {
    font-size: .88rem;
    font-weight: 600;
    color: var(--ap-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--ap-transition);
}
.ap-service-link:hover {
    gap: 12px;
    color: var(--ap-primary-dark);
}
.ap-service-link i {
    font-size: .75rem;
    transition: var(--ap-transition);
}

/* ========================================
   WHY CHOOSE US
   ======================================== */
.ap-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.ap-choose-card {
    background: var(--ap-white);
    padding: 32px 28px;
    border-radius: var(--ap-radius);
    border: 1px solid var(--ap-border);
    border-left: 5px solid var(--ap-primary);
    transition: var(--ap-transition);
    position: relative;
    overflow: hidden;
}
.ap-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(var(--ap-primary-rgb),.02) 0%, transparent 100%);
    opacity: 0;
    transition: opacity .3s ease;
}
.ap-choose-card:hover {
    transform: translateX(8px);
    box-shadow: var(--ap-shadow);
    border-color: transparent;
    border-left-color: var(--ap-primary);
}
.ap-choose-card:hover::before {
    opacity: 1;
}

.ap-choose-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.12rem;
    font-weight: 700;
    color: var(--ap-heading);
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.ap-choose-text {
    font-size: .9rem;
    color: var(--ap-body);
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* ========================================
   EXPERIENCE & PARTNERS
   ======================================== */
.ap-exp-label {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--ap-primary);
    margin-bottom: 14px;
    display: block;
}

.ap-exp-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--ap-heading);
    margin-bottom: 20px;
    line-height: 1.3;
}

.ap-exp-text {
    font-size: 1rem;
    color: var(--ap-body);
    line-height: 1.85;
    margin-bottom: 20px;
}

.ap-stat-box {
    text-align: center;
    padding: 32px 20px;
    background: var(--ap-white);
    border-radius: var(--ap-radius);
    border: 1px solid var(--ap-border);
    transition: var(--ap-transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.ap-stat-box:hover {
    transform: translateY(-6px);
    box-shadow: var(--ap-shadow-lg);
    border-color: rgba(var(--ap-primary-rgb),.15);
}

.ap-stat-box-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(var(--ap-primary-rgb),.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 1.2rem;
    color: var(--ap-primary);
}

.ap-stat-box-num {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--ap-primary);
    line-height: 1;
    margin-bottom: 8px;
}

.ap-stat-box-label {
    font-size: .85rem;
    color: var(--ap-muted);
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ========================================
   TEAM
   ======================================== */
.ap-team-card {
    text-align: center;
    background: var(--ap-white);
    border-radius: var(--ap-radius);
    padding: 36px 24px;
    border: 1px solid var(--ap-border);
    transition: var(--ap-transition);
    height: 100%;
}
.ap-team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--ap-shadow-lg);
    border-color: transparent;
}

.ap-team-avatar {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(var(--ap-primary-rgb),.08) 0%, rgba(var(--ap-primary-rgb),.15) 100%);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--ap-primary);
    transition: var(--ap-transition);
    position: relative;
}
.ap-team-avatar::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px dashed rgba(var(--ap-primary-rgb),.15);
    transition: var(--ap-transition);
}
.ap-team-card:hover .ap-team-avatar {
    background: var(--ap-primary);
    color: var(--ap-white);
    transform: scale(1.05);
}
.ap-team-card:hover .ap-team-avatar::after {
    border-color: var(--ap-primary);
    transform: rotate(180deg);
}

.ap-team-role {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ap-heading);
    margin-bottom: 8px;
}

.ap-team-desc {
    font-size: .88rem;
    color: var(--ap-body);
    line-height: 1.65;
    margin: 0;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.ap-testimonial {
    background: var(--ap-white);
    border-radius: var(--ap-radius);
    padding: 36px 30px;
    height: 100%;
    border: 1px solid var(--ap-border);
    transition: var(--ap-transition);
    position: relative;
    overflow: hidden;
}
.ap-testimonial::before {
    content: '\201C';
    font-size: 5rem;
    color: rgba(var(--ap-primary-rgb),.08);
    position: absolute;
    top: 8px;
    left: 24px;
    font-family: Georgia, serif;
    line-height: 1;
}
.ap-testimonial::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--ap-primary), var(--ap-primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
}
.ap-testimonial:hover {
    box-shadow: var(--ap-shadow-lg);
    border-color: transparent;
    transform: translateY(-6px);
}
.ap-testimonial:hover::after {
    transform: scaleX(1);
}

.ap-testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}
.ap-testimonial-stars i {
    color: #f59e0b;
    font-size: .85rem;
}

.ap-testimonial-text {
    font-size: .95rem;
    color: var(--ap-body);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}

.ap-testimonial-author {
    font-size: .92rem;
    font-weight: 700;
    color: var(--ap-primary);
    margin: 0;
    position: relative;
    z-index: 1;
}

/* ========================================
   FAQ
   ======================================== */
.ap-faq-wrap {
    max-width: 800px;
    margin: 0 auto;
}

.ap-faq {
    border: 1px solid var(--ap-border);
    border-radius: var(--ap-radius-sm);
    margin-bottom: 14px;
    background: var(--ap-white);
    overflow: hidden;
    transition: var(--ap-transition);
}
.ap-faq.active {
    border-color: rgba(var(--ap-primary-rgb),.2);
    box-shadow: 0 4px 20px rgba(var(--ap-primary-rgb),.08);
}

.ap-faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 26px;
    cursor: pointer;
    gap: 16px;
    user-select: none;
    transition: background .2s ease;
}
.ap-faq-header:hover {
    background: var(--ap-bg);
}

.ap-faq-q {
    font-size: 1rem;
    font-weight: 600;
    color: var(--ap-heading);
    margin: 0;
}

.ap-faq-toggle {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(var(--ap-primary-rgb),.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ap-primary);
    font-size: .75rem;
    transition: var(--ap-transition);
}
.ap-faq.active .ap-faq-toggle {
    background: var(--ap-primary);
    color: var(--ap-white);
    transform: rotate(45deg);
}

.ap-faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
}
.ap-faq-body-inner {
    padding: 0 26px 22px;
    font-size: .92rem;
    color: var(--ap-body);
    line-height: 1.8;
}

/* ========================================
   CTA
   ======================================== */
.ap-cta {
    background: linear-gradient(160deg, var(--ap-primary-dark) 0%, var(--ap-primary) 60%, var(--ap-primary-light) 100%);
    border-radius: 28px;
    padding: 80px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: var(--ap-white);
}
.ap-cta::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,.07);
    border-radius: 50%;
    filter: blur(80px);
    top: -120px;
    right: -80px;
}
.ap-cta::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,.05);
    border-radius: 50%;
    filter: blur(80px);
    bottom: -80px;
    left: -60px;
}
.ap-cta > * { position: relative; z-index: 2; }

.ap-cta-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
}

.ap-cta-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,.8);
    margin-bottom: 12px;
    font-weight: 500;
}

.ap-cta-list {
    list-style: none;
    padding: 0;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 10px 32px;
    margin-bottom: 40px;
    justify-content: center;
    text-align: left;
}
.ap-cta-list li {
    font-size: .92rem;
    color: rgba(255,255,255,.9);
    display: flex;
    align-items: center;
    gap: 10px;
}
.ap-cta-list li i {
    color: #fbbf24;
    font-size: .8rem;
}

.ap-cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   "EXPLORE ALL" BUTTON
   ======================================== */
.ap-explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: .92rem;
    text-decoration: none;
    color: var(--ap-white);
    background: var(--ap-primary);
    border: 2px solid var(--ap-primary);
    transition: var(--ap-transition);
    box-shadow: 0 6px 20px rgba(var(--ap-primary-rgb),.2);
}
.ap-explore-btn:hover {
    background: var(--ap-primary-dark);
    border-color: var(--ap-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(var(--ap-primary-rgb),.3);
    color: var(--ap-white);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 991px) {
    .ap-hero { padding: 130px 0 0; }
    .ap-hero-title { font-size: 2.8rem; }
    .ap-hero-subtitle { font-size: 1.05rem; }
    .ap-hero-inner { padding-bottom: 48px; }
    .ap-hero-desc { font-size: .98rem; }
    .ap-hero-stats-inner { grid-template-columns: repeat(4, 1fr); }
    .ap-hero-stat-num { font-size: 1.8rem; }
    .ap-section { padding: 80px 0; }
    .ap-section-title { font-size: 2rem; }
    .ap-stats { grid-template-columns: repeat(2, 1fr); }
    .ap-stat + .ap-stat:nth-child(3)::before { display: none; }
    .ap-choose-grid { grid-template-columns: 1fr; }
    .ap-shape { opacity: .06; }
}

@media (max-width: 767px) {
    .ap-hero { padding: 120px 0 0; }
    .ap-hero-title { font-size: 2.2rem; letter-spacing: -.5px; }
    .ap-hero-subtitle { font-size: .92rem; margin-bottom: 22px; }
    .ap-hero-divider { margin-bottom: 22px; }
    .ap-hero-desc { font-size: .92rem; line-height: 1.8; }
    .ap-hero-inner { padding-bottom: 36px; }
    .ap-hero-actions { flex-direction: column; align-items: center; }
    .ap-btn { width: 100%; justify-content: center; }
    .ap-hero-stats-inner { grid-template-columns: repeat(2, 1fr); }
    .ap-hero-stat-item { padding: 22px 12px; }
    .ap-hero-stat-num { font-size: 1.5rem; }
    .ap-hero-stat-item + .ap-hero-stat-item:nth-child(3)::before { display: none; }
    .ap-section { padding: 60px 0; }
    .ap-section-title { font-size: 1.7rem; }
    .ap-section-header { margin-bottom: 40px; }
    .ap-stats { grid-template-columns: repeat(2, 1fr); gap: 0; }
    .ap-stat { padding: 32px 16px; }
    .ap-stat-number { font-size: 2.4rem; }
    .ap-vm-card { padding: 32px 24px; }
    .ap-cta { padding: 56px 24px; border-radius: 20px; }
    .ap-cta-title { font-size: 1.8rem; }
    .ap-cta-actions { flex-direction: column; align-items: center; }
    .ap-cta-actions .ap-btn { width: 100%; }
}

@media (max-width: 575px) {
    .ap-hero-title { font-size: 1.85rem; }
    .ap-hero-badge { font-size: .68rem; padding: 7px 14px; }
    .ap-hero-stat-num { font-size: 1.3rem; }
    .ap-hero-stat-label { font-size: .62rem; letter-spacing: 1px; }
    .ap-section-title { font-size: 1.5rem; }
    .ap-stat-number { font-size: 2rem; }
    .ap-stat-label { font-size: .7rem; letter-spacing: 1px; }
    .ap-service-card { padding: 28px 22px; }
    .ap-team-card { padding: 28px 18px; }
    .ap-cta { padding: 44px 18px; }
    .ap-cta-title { font-size: 1.5rem; }
}

