/* ============================================================
   about-uniwisp.css – World-Class About Page
   Premium design with cinematic animations & luxury feel
   Scoped under #aboutPageContent – zero conflicts
   ============================================================ */

/* ---------- IMPORTS & RESET ---------- */
#aboutPageContent *,
#aboutPageContent *::before,
#aboutPageContent *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

#aboutPageContent {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #0f172a;
    line-height: 1.7;
    background: #f8fafc;
}

#aboutPageContent h1,
#aboutPageContent h2,
#aboutPageContent h3,
#aboutPageContent h4,
#aboutPageContent .font-serif {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

/* ---------- HERO – Cinematic Masterpiece ---------- */
#aboutPageContent .about-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a1a12 0%, #1a4d2e 25%, #4a1a1a 60%, #0f172a 100%);
    background-size: 400% 400%;
    animation: heroFlow 18s ease-in-out infinite;
    overflow: hidden;
    isolation: isolate;
    border-radius: 0 0 5rem 5rem;
    padding: 6rem 0 5rem;
}

@keyframes heroFlow {
    0% { background-position: 0% 50%; }
    25% { background-position: 50% 25%; }
    50% { background-position: 100% 50%; }
    75% { background-position: 50% 75%; }
    100% { background-position: 0% 50%; }
}

/* Hero background orbs */
#aboutPageContent .about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: 
        radial-gradient(ellipse at 10% 20%, rgba(76, 175, 80, 0.30) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 80%, rgba(139, 0, 0, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(251, 191, 36, 0.08) 0%, transparent 70%);
}

/* Animated grid overlay */
#aboutPageContent .about-hero .grid-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(80px, 80px); }
}

/* Hero floating icons – elegant & subtle */
#aboutPageContent .about-hero .floating-icons {
    position: absolute;
    z-index: 1;
    font-size: 3.5rem;
    opacity: 0.08;
    color: #fff;
    pointer-events: none;
    animation: floatIcon 10s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(76, 175, 80, 0.1));
}
#aboutPageContent .about-hero .floating-icons:nth-child(2) { top: 12%; left: 5%; animation-delay: 0s; }
#aboutPageContent .about-hero .floating-icons:nth-child(3) { top: 18%; right: 8%; animation-delay: 2s; }
#aboutPageContent .about-hero .floating-icons:nth-child(4) { bottom: 25%; left: 6%; animation-delay: 4s; }
#aboutPageContent .about-hero .floating-icons:nth-child(5) { bottom: 15%; right: 5%; animation-delay: 6s; }
#aboutPageContent .about-hero .floating-icons:nth-child(6) { top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 8rem; opacity: 0.04; animation: none; }

@keyframes floatIcon {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    25% { transform: translateY(-25px) rotate(5deg) scale(1.05); }
    50% { transform: translateY(0) rotate(0deg) scale(1); }
    75% { transform: translateY(15px) rotate(-3deg) scale(0.95); }
}

/* Hero glowing particles */
#aboutPageContent .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    animation: particleFloat 12s ease-in-out infinite;
    box-shadow: 0 0 12px rgba(76, 175, 80, 0.3);
}
#aboutPageContent .particle:nth-child(7) { top: 10%; left: 20%; animation-delay: 0s; width: 6px; height: 6px; }
#aboutPageContent .particle:nth-child(8) { top: 30%; right: 15%; animation-delay: 3s; }
#aboutPageContent .particle:nth-child(9) { bottom: 20%; left: 25%; animation-delay: 6s; width: 8px; height: 8px; }
#aboutPageContent .particle:nth-child(10) { bottom: 40%; right: 25%; animation-delay: 9s; }
#aboutPageContent .particle:nth-child(11) { top: 60%; left: 10%; animation-delay: 2s; width: 5px; height: 5px; }
#aboutPageContent .particle:nth-child(12) { top: 50%; right: 5%; animation-delay: 7s; }

@keyframes particleFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
    50% { transform: translateY(-60px) scale(1.5); opacity: 0.8; }
}

/* ---------- HOME BUTTON – Premium Glass ---------- */
#aboutPageContent .about-home-btn {
    position: absolute;
    top: 2rem;
    left: 2rem;
    z-index: 20;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 60px;
    color: #fff;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    letter-spacing: 0.3px;
}
#aboutPageContent .about-home-btn i {
    font-size: 1rem;
    transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.2);
}
#aboutPageContent .about-home-btn:hover {
    background: rgba(255, 255, 255, 0.20);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    border-color: rgba(255, 255, 255, 0.25);
}
#aboutPageContent .about-home-btn:hover i {
    transform: translateX(-5px) scale(1.1);
}
#aboutPageContent .about-home-btn:active {
    transform: scale(0.96);
    transition-duration: 0.1s;
}

/* ---------- HERO CONTENT ---------- */
#aboutPageContent .about-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

#aboutPageContent .about-hero-content .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.5rem 1.8rem;
    border-radius: 60px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}
#aboutPageContent .about-hero-content .hero-badge i {
    color: #4caf50;
    font-size: 0.8rem;
}

#aboutPageContent .about-hero-content h1 {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.2);
}
#aboutPageContent .about-hero-content h1 .gradient-text {
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 25%, #fbbf24 60%, #b91c1c 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shimmerText 6s ease-in-out infinite;
}
@keyframes shimmerText {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

#aboutPageContent .about-hero-content .hero-subtitle {
    font-size: clamp(1.1rem, 1.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.75);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 300;
    letter-spacing: 0.2px;
}
#aboutPageContent .about-hero-content .hero-subtitle strong {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

/* Hero scroll indicator */
#aboutPageContent .scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    animation: bounceDown 2.5s ease-in-out infinite;
}
#aboutPageContent .scroll-indicator .mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    position: relative;
    display: flex;
    justify-content: center;
}
#aboutPageContent .scroll-indicator .mouse::after {
    content: '';
    width: 3px;
    height: 8px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 3px;
    position: absolute;
    top: 6px;
    animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(16px); opacity: 1; }
}
@keyframes bounceDown {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ---------- HERO WAVE ---------- */
#aboutPageContent .hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 4;
    line-height: 0;
}
#aboutPageContent .hero-wave svg {
    display: block;
    width: 100%;
    height: 100px;
}

/* ---------- SECTION HEADERS ---------- */
#aboutPageContent .section-header {
    text-align: center;
    margin-bottom: 4rem;
}
#aboutPageContent .section-header .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #1a4d2e;
    background: rgba(26, 77, 46, 0.08);
    padding: 0.4rem 1.4rem;
    border-radius: 40px;
    margin-bottom: 0.75rem;
}
#aboutPageContent .section-header .section-tag i {
    color: #4caf50;
}
#aboutPageContent .section-header h2 {
    font-size: clamp(2.2rem, 3.8vw, 3.6rem);
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.15;
    margin-bottom: 0.5rem;
}
#aboutPageContent .section-header h2 .gradient-text {
    background: linear-gradient(135deg, #1a4d2e, #8b0000, #4caf50);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
#aboutPageContent .section-header p {
    color: #64748b;
    max-width: 580px;
    margin: 0 auto;
    font-size: 1.05rem;
    font-weight: 300;
}

/* ---------- STORY SECTION – Premium Layout ---------- */
#aboutPageContent .story-section {
    padding: 5rem 0 3rem;
    position: relative;
}
#aboutPageContent .story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(26, 77, 46, 0.1), transparent);
}

#aboutPageContent .story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.5rem;
    align-items: center;
}
@media (min-width: 1024px) {
    #aboutPageContent .story-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

/* Story Image – premium frame */
#aboutPageContent .story-image-wrapper {
    position: relative;
    border-radius: 2.5rem;
    overflow: hidden;
    box-shadow: 0 40px 80px -25px rgba(0, 0, 0, 0.25);
    transition: transform 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
#aboutPageContent .story-image-wrapper:hover {
    transform: scale(1.01) rotate(0.5deg);
}
#aboutPageContent .story-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: none;
}
#aboutPageContent .story-image-wrapper img {
    width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
#aboutPageContent .story-image-wrapper:hover img {
    transform: scale(1.06);
}

/* Image overlay badge – premium */
#aboutPageContent .story-image-wrapper .image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 2.5rem 1.8rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    color: #fff;
}
#aboutPageContent .story-image-wrapper .image-overlay .badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(76, 175, 80, 0.25);
    backdrop-filter: blur(12px);
    padding: 0.35rem 1.2rem;
    border-radius: 40px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
#aboutPageContent .story-image-wrapper .image-overlay .badge i {
    color: #4caf50;
}

/* ---------- STATS CARDS – Glassmorphism Premium ---------- */
#aboutPageContent .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 1.5rem;
}
@media (min-width: 640px) {
    #aboutPageContent .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

#aboutPageContent .stat-card {
    position: relative;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 1.5rem;
    padding: 1.75rem 1.25rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.2);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}
#aboutPageContent .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1a4d2e, #4caf50, #8b0000);
    opacity: 0;
    transition: opacity 0.4s ease;
}
#aboutPageContent .stat-card:hover::before {
    opacity: 1;
}
#aboutPageContent .stat-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 30px 60px -15px rgba(26, 77, 46, 0.2);
    border-color: rgba(26, 77, 46, 0.15);
}

#aboutPageContent .stat-card .stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    font-size: 1.4rem;
    color: #fff;
    transition: transform 0.4s ease;
}
#aboutPageContent .stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(-5deg);
}
#aboutPageContent .stat-card .stat-icon.green { background: linear-gradient(135deg, #1a4d2e, #2e7d54); }
#aboutPageContent .stat-card .stat-icon.red { background: linear-gradient(135deg, #8b0000, #b91c1c); }
#aboutPageContent .stat-card .stat-icon.accent { background: linear-gradient(135deg, #4caf50, #059669); }
#aboutPageContent .stat-card .stat-icon.dark { background: linear-gradient(135deg, #0f172a, #1e293b); }

#aboutPageContent .stat-card .stat-number {
    font-size: 2.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1a4d2e, #8b0000);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.1;
}
#aboutPageContent .stat-card .stat-label {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
    margin-top: 0.15rem;
}

/* ---------- TEAM SECTION – Premium ---------- */
#aboutPageContent .team-section {
    padding: 5rem 0;
    position: relative;
    background: linear-gradient(160deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
}
#aboutPageContent .team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(26, 77, 46, 0.08), transparent);
}

#aboutPageContent .team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}
@media (min-width: 1024px) {
    #aboutPageContent .team-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

/* Team cards grid – 2x2 */
#aboutPageContent .team-grid .team-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
@media (max-width: 640px) {
    #aboutPageContent .team-grid .team-cards {
        grid-template-columns: 1fr;
    }
}

/* Individual team card – premium */
#aboutPageContent .team-card {
    background: #fff;
    border-radius: 1.5rem;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
}
#aboutPageContent .team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1a4d2e, #8b0000, #4caf50);
    opacity: 0;
    transition: opacity 0.5s ease;
}
#aboutPageContent .team-card:hover::before {
    opacity: 1;
}
#aboutPageContent .team-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 35px 70px -20px rgba(0, 0, 0, 0.15);
    border-color: rgba(26, 77, 46, 0.06);
}

#aboutPageContent .team-card .team-avatar {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2.2rem;
    color: #fff;
    transition: all 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
#aboutPageContent .team-card:hover .team-avatar {
    transform: scale(1.12) rotate(-6deg);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}
#aboutPageContent .team-card .team-avatar.g1 { background: linear-gradient(135deg, #1a4d2e, #2e7d54); }
#aboutPageContent .team-card .team-avatar.g2 { background: linear-gradient(135deg, #4caf50, #059669); }
#aboutPageContent .team-card .team-avatar.g3 { background: linear-gradient(135deg, #8b0000, #b91c1c); }
#aboutPageContent .team-card .team-avatar.g4 { background: linear-gradient(135deg, #0f172a, #1e293b); }

#aboutPageContent .team-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.1rem;
}
#aboutPageContent .team-card p {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 0.75rem;
}

/* Team social icons – premium */
#aboutPageContent .team-card .team-social {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}
#aboutPageContent .team-card .team-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.2);
    text-decoration: none;
    font-size: 0.85rem;
}
#aboutPageContent .team-card .team-social a:hover {
    background: linear-gradient(135deg, #1a4d2e, #8b0000);
    color: #fff;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(26, 77, 46, 0.2);
}

/* Team image – premium */
#aboutPageContent .team-image-wrapper {
    border-radius: 2.5rem;
    overflow: hidden;
    box-shadow: 0 40px 80px -25px rgba(0, 0, 0, 0.2);
    transition: transform 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
#aboutPageContent .team-image-wrapper:hover {
    transform: scale(1.01);
}
#aboutPageContent .team-image-wrapper img {
    width: 100%;
    height: 100%;
    min-height: 340px;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
#aboutPageContent .team-image-wrapper:hover img {
    transform: scale(1.05);
}

/* ---------- CTA / TESTIMONIAL – Premium ---------- */
#aboutPageContent .cta-section {
    padding: 4rem 0 5rem;
}
#aboutPageContent .cta-card {
    background: linear-gradient(145deg, #ffffff, #f1f5f9);
    border-radius: 3rem;
    box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.5);
    overflow: hidden;
    transition: box-shadow 0.5s ease;
}
#aboutPageContent .cta-card:hover {
    box-shadow: 0 50px 100px -30px rgba(0, 0, 0, 0.12);
}

#aboutPageContent .cta-card .cta-content {
    padding: 3rem 2.5rem;
}
@media (min-width: 768px) {
    #aboutPageContent .cta-card .cta-content {
        padding: 3.5rem 4rem;
    }
}
#aboutPageContent .cta-card .cta-content h2 {
    font-size: clamp(1.8rem, 2.8vw, 2.8rem);
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}
#aboutPageContent .cta-card .cta-content ul {
    list-style: none;
    padding: 0;
    margin: 1.2rem 0 1.5rem;
}
#aboutPageContent .cta-card .cta-content ul li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #334155;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.02);
}
#aboutPageContent .cta-card .cta-content ul li:last-child {
    border-bottom: none;
}
#aboutPageContent .cta-card .cta-content ul li i {
    color: #1a4d2e;
    font-size: 1.1rem;
    width: 1.5rem;
    text-align: center;
}

/* Premium CTA button */
#aboutPageContent .cta-card .cta-content .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 2.5rem;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1rem;
    background: linear-gradient(135deg, #1a4d2e, #0d3320, #8b0000);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.2);
    box-shadow: 0 8px 30px rgba(26, 77, 46, 0.2);
    text-decoration: none;
    letter-spacing: 0.3px;
}
#aboutPageContent .cta-card .cta-content .btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px -10px rgba(139, 0, 0, 0.3);
    gap: 1.2rem;
}
#aboutPageContent .cta-card .cta-content .btn-primary i {
    transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.2);
}
#aboutPageContent .cta-card .cta-content .btn-primary:hover i {
    transform: translateX(5px) scale(1.1);
}
#aboutPageContent .cta-card .cta-content .btn-primary:active {
    transform: scale(0.96);
    transition-duration: 0.1s;
}

/* Testimonial side – premium dark */
#aboutPageContent .cta-card .testimonial-side {
    background: linear-gradient(160deg, #1a4d2e 0%, #0f172a 50%, #5a1a1a 100%);
    padding: 3rem 2.5rem;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
#aboutPageContent .cta-card .testimonial-side::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(76, 175, 80, 0.1), transparent 60%);
    pointer-events: none;
}
@media (min-width: 768px) {
    #aboutPageContent .cta-card .testimonial-side {
        padding: 3.5rem 3.5rem;
    }
}
#aboutPageContent .cta-card .testimonial-side .quote-icon {
    font-size: 3.5rem;
    opacity: 0.15;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}
#aboutPageContent .cta-card .testimonial-side blockquote {
    font-size: 1.25rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}
#aboutPageContent .cta-card .testimonial-side .stars {
    color: #fbbf24;
    letter-spacing: 3px;
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}
#aboutPageContent .cta-card .testimonial-side .stars i {
    margin-right: 3px;
}

/* ---------- CAREERS SECTION ---------- */
#aboutPageContent #careers {
    scroll-margin-top: 6rem;
    padding: 3rem 0 4rem;
}

/* ---------- RESPONSIVE – Premium ---------- */
@media (max-width: 992px) {
    #aboutPageContent .about-hero {
        min-height: 70vh;
        padding: 5rem 0 4rem;
        border-radius: 0 0 3rem 3rem;
    }
    #aboutPageContent .about-hero-content h1 {
        font-size: clamp(2.8rem, 6vw, 4rem);
    }
}
@media (max-width: 768px) {
    #aboutPageContent .about-hero {
        min-height: 60vh;
        padding: 4rem 0 3rem;
        border-radius: 0 0 2rem 2rem;
    }
    #aboutPageContent .about-home-btn {
        top: 1rem;
        left: 1rem;
        padding: 0.5rem 1.1rem;
        font-size: 0.8rem;
    }
    #aboutPageContent .about-hero-content h1 {
        font-size: clamp(2.2rem, 5vw, 3.2rem);
    }
    #aboutPageContent .hero-wave svg {
        height: 50px;
    }
    #aboutPageContent .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    #aboutPageContent .stat-card .stat-number {
        font-size: 1.8rem;
    }
    #aboutPageContent .stat-card {
        padding: 1.25rem 0.75rem;
    }
    #aboutPageContent .team-grid .team-cards {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    #aboutPageContent .story-image-wrapper img,
    #aboutPageContent .team-image-wrapper img {
        min-height: 250px;
    }
    #aboutPageContent .cta-card .cta-content {
        padding: 2rem 1.5rem;
    }
    #aboutPageContent .cta-card .testimonial-side {
        padding: 2rem 1.5rem;
    }
    #aboutPageContent .scroll-indicator {
        display: none;
    }
}
@media (max-width: 480px) {
    #aboutPageContent .about-hero {
        min-height: 50vh;
        padding: 3rem 0 2.5rem;
        border-radius: 0 0 1.5rem 1.5rem;
    }
    #aboutPageContent .about-hero-content h1 {
        font-size: 2rem;
    }
    #aboutPageContent .about-hero-content .hero-subtitle {
        font-size: 1rem;
    }
    #aboutPageContent .about-home-btn {
        top: 0.75rem;
        left: 0.75rem;
        padding: 0.35rem 0.9rem;
        font-size: 0.7rem;
    }
    #aboutPageContent .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }
    #aboutPageContent .stat-card .stat-number {
        font-size: 1.4rem;
    }
    #aboutPageContent .stat-card .stat-label {
        font-size: 0.7rem;
    }
    #aboutPageContent .stat-card .stat-icon {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }
    #aboutPageContent .team-grid .team-cards {
        grid-template-columns: 1fr;
    }
    #aboutPageContent .team-card {
        padding: 1.25rem 1rem;
    }
    #aboutPageContent .story-image-wrapper img,
    #aboutPageContent .team-image-wrapper img {
        min-height: 200px;
    }
    #aboutPageContent .cta-card .cta-content ul li {
        font-size: 0.85rem;
    }
    #aboutPageContent .cta-card .testimonial-side blockquote {
        font-size: 1rem;
    }
}

/* ---------- PRINT ---------- */
@media print {
    #aboutPageContent .about-hero {
        background: #1a4d2e !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
        min-height: auto;
        padding: 2rem 0;
    }
    #aboutPageContent .about-hero .floating-icons,
    #aboutPageContent .about-hero .grid-overlay,
    #aboutPageContent .particle,
    #aboutPageContent .scroll-indicator {
        display: none !important;
    }
    #aboutPageContent .about-home-btn {
        display: none !important;
    }
    #aboutPageContent .team-card {
        break-inside: avoid;
    }
    #aboutPageContent .cta-card {
        break-inside: avoid;
        box-shadow: none !important;
    }
    #aboutPageContent .stat-card {
        box-shadow: none !important;
        border: 1px solid #e2e8f0;
    }
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
    #aboutPageContent *,
    #aboutPageContent *::before,
    #aboutPageContent *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    #aboutPageContent .about-hero {
        animation: none !important;
        background: linear-gradient(135deg, #0a1a12, #1a4d2e, #4a1a1a);
    }
    #aboutPageContent .about-hero .grid-overlay {
        animation: none !important;
    }
}
