/* ==========================================================================
   PRIDENS — ABOUT US PAGE
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary:        #2db7cc;
    --primary-dark:   #1a9ab0;
    --primary-light:  #e6f8fb;
    --text-dark:      #0f172a;
    --text-mid:       #334155;
    --text-muted:     #64748b;
    --bg-page:        #f8fafc;
    --bg-white:       #ffffff;
    --border:         #e2e8f0;
    --shadow-sm:      0 2px 8px rgba(0,0,0,0.06);
    --shadow-md:      0 8px 30px rgba(0,0,0,0.08);
    --shadow-lg:      0 20px 50px rgba(0,0,0,0.10);
    --shadow-primary: 0 8px 30px rgba(45,183,204,0.25);
}

body {
    background: var(--bg-page) !important;
    font-family: 'Poppins', sans-serif !important;
    overflow-x: hidden;
}

/* ─── FULL-WIDTH BREAKOUT ─────────────────────────────────────────────── */
.au-hero {
    width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    margin-left: -50vw !important;
    box-sizing: border-box !important;
}
/* au-stats-bar full-width breakout removed — now using card style */
.au-cta-section {
    width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    margin-left: -50vw !important;
    box-sizing: border-box !important;
}

/* ─── SCROLL ANIMATION ────────────────────────────────────────────────── */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── SHARED ──────────────────────────────────────────────────────────── */
.au-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    background: var(--primary-light);
    border: 1px solid rgba(45,183,204,0.25);
    padding: 5px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.au-section {
    max-width: 1160px;
    margin: 0 auto;
    padding: 90px 24px;
}

.au-section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
}

.au-section-header h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.18;
    letter-spacing: -0.5px;
    margin: 0 0 16px;
}

.au-section-header p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin: 0;
}


/* ═══════════════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════════════ */
.au-hero {
    background: linear-gradient(160deg, #0f172a 0%, #1e293b 55%, #083344 100%);
    padding: 100px 24px 110px;
    position: relative;
    overflow: hidden;
}

/* Grid pattern */
.au-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(45,183,204,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(45,183,204,0.06) 1px, transparent 1px);
    background-size: 52px 52px;
    pointer-events: none;
}

/* Teal glow blob */
.au-hero::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(45,183,204,0.14) 0%, transparent 65%);
    bottom: -200px;
    right: -100px;
    pointer-events: none;
}

.au-hero-inner {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.au-hero .au-badge {
    background: rgba(45,183,204,0.15);
    border-color: rgba(45,183,204,0.3);
}

.au-hero-tagline {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.45);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.au-hero-inner h1 {
    font-size: 3.8rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.05;
    letter-spacing: -1.5px;
    margin: 0 0 28px;
}

.au-hero-inner h1 span {
    background: linear-gradient(90deg, var(--primary), #67e8f9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.au-hero-inner > p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    max-width: 680px;
    margin: 0 auto 44px;
}

.au-hero-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.au-hero-pill {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 50px;
    padding: 9px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    gap: 8px;
}

.au-hero-pill span.pill-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary);
    flex-shrink: 0;
}


/* ═══════════════════════════════════════════════════════════════════════
   STATS CARD (white, front-page style)
═══════════════════════════════════════════════════════════════════════ */
.au-stats-card-wrap {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
    /* Pull up to overlap the hero bottom slightly */
    position: relative;
    z-index: 10;
    margin-top: -36px;
}

.au-stats-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.10);
    display: flex;
    align-items: center;
    padding: 36px 48px;
    gap: 0;
    flex-wrap: wrap;
}

.au-stat-card-item {
    flex: 1;
    min-width: 160px;
    text-align: center;
    padding: 8px 16px;
}

.au-stat-card-divider {
    width: 1px;
    height: 52px;
    background: var(--border);
    flex-shrink: 0;
}

.au-stat-card-num {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.au-stat-card-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    line-height: 1.5;
}


/* ═══════════════════════════════════════════════════════════════════════
   STORY SECTION
═══════════════════════════════════════════════════════════════════════ */
.au-story-section {
    border-bottom: 1px solid var(--border);
}

.au-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.au-story-text h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin: 16px 0 22px;
}

.au-story-text p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 18px;
}

.au-story-text p:last-of-type { margin-bottom: 0; }

.au-story-text strong { color: var(--text-dark); }

.au-story-visual {
    position: relative;
}

.au-story-img-main {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
    background: #e2e8f0;
}

.au-story-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.au-story-img-badge {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 16px 22px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 200px;
}

.au-badge-icon {
    width: 44px;
    height: 44px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.au-badge-icon svg {
    width: 22px;
    height: 22px;
    color: var(--primary);
}

.au-badge-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}

.au-badge-value {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-dark);
}


/* ═══════════════════════════════════════════════════════════════════════
   MISSION / VISION
═══════════════════════════════════════════════════════════════════════ */
.au-mv-section {
    background: var(--bg-page);
}

.au-mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.au-mv-card {
    border-radius: 28px;
    padding: 48px;
    position: relative;
    overflow: hidden;
}

.au-mv-card.mission {
    background: linear-gradient(145deg, #0f172a, #1e3a4a);
    color: #fff;
}

.au-mv-card.vision {
    background: var(--bg-white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

/* Decorative circle */
.au-mv-card::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    bottom: -80px;
    right: -80px;
    pointer-events: none;
}

.au-mv-card.mission::after {
    background: radial-gradient(circle, rgba(45,183,204,0.15) 0%, transparent 70%);
}

.au-mv-card.vision::after {
    background: radial-gradient(circle, rgba(45,183,204,0.08) 0%, transparent 70%);
}

.au-mv-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.au-mv-card.mission .au-mv-icon {
    background: rgba(45,183,204,0.2);
    border: 1px solid rgba(45,183,204,0.3);
}

.au-mv-card.vision .au-mv-icon {
    background: var(--primary-light);
}

.au-mv-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
}

.au-mv-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.au-mv-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.25;
    margin: 0 0 18px;
    position: relative;
    z-index: 1;
}

.au-mv-card.mission h3 { color: #fff; }
.au-mv-card.vision  h3 { color: var(--text-dark); }

.au-mv-card p {
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0;
    position: relative;
    z-index: 1;
}

.au-mv-card.mission p { color: rgba(255,255,255,0.65); }
.au-mv-card.vision  p { color: var(--text-muted); }


/* ═══════════════════════════════════════════════════════════════════════
   VALUES
═══════════════════════════════════════════════════════════════════════ */
.au-values-section {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.au-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.au-value-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.au-value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(45,183,204,0.2);
}

.au-value-num {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    opacity: 0.15;
    line-height: 1;
}

.au-value-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -8px;
}

.au-value-icon svg {
    width: 24px;
    height: 24px;
}

.au-value-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.au-value-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}


/* ═══════════════════════════════════════════════════════════════════════
   LOCATION / CONTACT
═══════════════════════════════════════════════════════════════════════ */
.au-contact-section {
    padding-bottom: 100px;
}

.au-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: stretch;
}

.au-contact-map {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    min-height: 360px;
    background: #e2e8f0;
    position: relative;
}

.au-contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    min-height: 360px;
}

.au-contact-info-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 48px;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.au-contact-info-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #67e8f9);
    border-radius: 4px 4px 0 0;
}

.au-contact-info-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 16px 0 8px;
}

.au-contact-info-card > p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 32px;
}

.au-contact-rows {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.au-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.au-ci-icon {
    width: 42px;
    height: 42px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.au-ci-icon svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.au-ci-label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 3px;
}

.au-ci-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

.au-social-row {
    display: flex;
    gap: 12px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.au-social-link {
    width: 44px;
    height: 44px;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-muted);
    transition: all 0.2s;
    background: #f8fafc;
}

.au-social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.au-social-link svg {
    width: 18px;
    height: 18px;
}


/* ═══════════════════════════════════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════════════════════════════════ */
.au-cta-section {
    background: linear-gradient(135deg, #0f172a 0%, #083344 60%, #0f2d3d 100%);
    padding: 90px 24px;
    position: relative;
    overflow: hidden;
}

.au-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(45,183,204,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(45,183,204,0.06) 1px, transparent 1px);
    background-size: 52px 52px;
    pointer-events: none;
}

.au-cta-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.au-cta-section .au-badge {
    background: rgba(45,183,204,0.15);
    border-color: rgba(45,183,204,0.3);
}

.au-cta-inner h2 {
    font-size: 2.6rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin: 16px 0 18px;
}

.au-cta-inner p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.75;
    margin-bottom: 40px;
}

.au-cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.au-btn-primary {
    background: var(--primary);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    padding: 15px 32px;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: var(--shadow-primary);
}

.au-btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(45,183,204,0.4);
}

.au-btn-ghost {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.85);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 15px 32px;
    border-radius: 14px;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.2s;
}

.au-btn-ghost:hover {
    background: rgba(255,255,255,0.14);
    transform: translateY(-2px);
}


/* ─── RESPONSIVE ─────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .au-hero-inner h1  { font-size: 2.8rem; }
    .au-story-grid     { grid-template-columns: 1fr; gap: 48px; }
    .au-story-visual   { order: -1; }
    .au-story-img-badge { left: auto; right: 16px; bottom: -20px; }
    .au-mv-grid        { grid-template-columns: 1fr; }
    .au-contact-grid   { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .au-hero-inner h1   { font-size: 2.2rem; }
    .au-values-grid     { grid-template-columns: 1fr 1fr; }
    .au-stat-item       { padding: 12px 24px; }
    .au-stats-bar-inner { gap: 0; }
    .au-cta-inner h2    { font-size: 1.9rem; }
}

@media (max-width: 480px) {
    .au-values-grid { grid-template-columns: 1fr; }
    .au-mv-card     { padding: 32px 24px; }
    .au-contact-info-card { padding: 32px 24px; }
    .au-cta-inner h2 { font-size: 1.6rem; }
}
