/* ============================================
   ABOUT PAGE - COMPLETE CSS WITH CORRECTED MOBILE FIXES
   DevTonic Studios
   ============================================ */

/* ============================================
   HERO SECTION
   ============================================ */

.about-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 40px 100px;
    background: linear-gradient(135deg, #001429 0%, #0a1929 50%, #001429 100%);
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 102, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 102, 255, 0.1) 0%, transparent 50%);
    animation: backgroundPulse 15s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.about-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-hero-content {
    max-width: 650px;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    color: #00A3FF;
    margin-bottom: 25px;
    border: 2px solid rgba(0, 163, 255, 0.2);
    letter-spacing: 2px;
}

.badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 2s ease-in-out infinite;
}

.badge-icon svg {
    width: 16px;
    height: 16px;
    color: #00A3FF;
    stroke: currentColor;
    fill: none;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.about-hero h1 {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.about-hero h1 .gradient-text {
    background: linear-gradient(90deg, #00A3FF 0%, #CCE5FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero-description {
    font-size: 20px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 40px;
}

.about-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 102, 255, 0.2);
}

.about-stat-item {
    text-align: center;
}

.about-stat-item .stat-number {
    font-size: 36px;
    font-weight: 900;
    color: #CCE5FF;
    margin-bottom: 8px;
    line-height: 1;
}

.about-stat-item .stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-hero-visual {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.about-hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.3), transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

.floating-card {
    position: absolute;
    background: rgba(10, 25, 41, 0.8);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(0, 163, 255, 0.3);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.floating-card .card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
}

.floating-card .card-icon svg {
    width: 48px;
    height: 48px;
    color: #00A3FF;
    stroke: currentColor;
    fill: none;
    transition: all 0.3s ease;
}

.floating-card:hover .card-icon svg {
    color: #CCE5FF;
    transform: scale(1.1);
}

.floating-card .card-text {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
}

.card-1 {
    top: 10%;
    left: 10%;
    animation: float1 6s ease-in-out infinite;
}

.card-2 {
    top: 40%;
    right: 5%;
    animation: float2 7s ease-in-out infinite;
}

.card-3 {
    bottom: 15%;
    left: 20%;
    animation: float3 8s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(20px, -20px) rotate(5deg); }
    66% { transform: translate(-10px, 10px) rotate(-3deg); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-15px, 15px) rotate(-4deg); }
    66% { transform: translate(15px, -10px) rotate(3deg); }
}

@keyframes float3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(10px, -15px) rotate(4deg); }
    66% { transform: translate(-20px, 10px) rotate(-5deg); }
}

/* ============================================
   MISSION SECTION - WHITE SECTION
   ============================================ */

body.page-template-page-about .mission-section,
.page-about .mission-section {
    padding: 120px 40px !important;
    background: #ffffff !important;
    position: relative;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

body.page-template-page-about .mission-container,
.page-about .mission-container {
    max-width: 1400px;
    margin: 0 auto;
    display: block !important;
}

body.page-template-page-about .mission-content,
.page-about .mission-content {
    text-align: center;
    display: block !important;
}

body.page-template-page-about .mission-section .section-label,
.page-about .mission-section .section-label {
    display: inline-block !important;
    padding: 10px 26px;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    color: #0066FF;
    letter-spacing: 3px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

body.page-template-page-about .mission-title,
.page-about .mission-title {
    font-size: 56px !important;
    font-weight: 900 !important;
    color: #1a1a1a !important;
    margin-bottom: 60px;
    line-height: 1.1;
    display: block !important;
}

body.page-template-page-about .mission-grid,
.page-about .mission-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 40px;
    margin-top: 60px;
}

body.page-template-page-about .mission-card,
.page-about .mission-card {
    background: #ffffff !important;
    padding: 50px 40px !important;
    border-radius: 24px !important;
    border: 2px solid rgba(0, 163, 255, 0.2) !important;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    display: block !important;
}

body.page-template-page-about .mission-card:hover,
.page-about .mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.15);
    border-color: rgba(0, 102, 255, 0.3) !important;
}

body.page-template-page-about .mission-icon,
.page-about .mission-icon {
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    width: 100%;
    height: 56px;
}

body.page-template-page-about .mission-icon svg,
.page-about .mission-icon svg {
    width: 56px !important;
    height: 56px !important;
    color: #0066FF;
    stroke: currentColor;
    fill: none;
    transition: all 0.3s ease;
}

body.page-template-page-about .mission-card:hover .mission-icon svg,
.page-about .mission-card:hover .mission-icon svg {
    color: #0052CC;
    transform: scale(1.1);
}

body.page-template-page-about .mission-card h3,
.page-about .mission-card h3 {
    font-size: 24px !important;
    font-weight: 800 !important;
    color: #1a1a1a !important;
    margin-bottom: 15px;
    display: block !important;
}

body.page-template-page-about .mission-card p,
.page-about .mission-card p {
    font-size: 17px !important;
    line-height: 1.7 !important;
    color: #666666 !important;
    margin: 0;
    display: block !important;
}

/* ============================================
   TEAM SECTION - MAGAZINE LAYOUT
   ============================================ */

.team-section {
    padding: 120px 40px;
    background: linear-gradient(135deg, #001429 0%, #0a1929 50%, #001429 100%);
    position: relative;
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(0, 102, 255, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(0, 163, 255, 0.08) 0%, transparent 50%);
    animation: founderGlow 15s ease-in-out infinite;
}

@keyframes founderGlow {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.8; }
    50% { transform: scale(1.1) rotate(5deg); opacity: 1; }
}

.team-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.team-section .section-header {
    text-align: center;
    margin-bottom: 80px;
}

.team-section .section-label {
    display: inline-block;
    padding: 12px 32px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.2), rgba(0, 163, 255, 0.1));
    border: 2px solid rgba(0, 163, 255, 0.4);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    color: #CCE5FF;
    letter-spacing: 3px;
    margin-bottom: 30px;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.3);
}

.team-section .section-title {
    font-size: 64px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.team-section .section-description {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 60px;
}

.team-grid .magazine-layout {
    background: linear-gradient(145deg, rgba(10, 25, 41, 0.5), rgba(0, 20, 41, 0.3));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(0, 163, 255, 0.2);
    border-radius: 30px;
    padding: 50px;
    transition: all 0.4s ease;
    margin-bottom: 40px;
}

.team-grid .magazine-layout:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 102, 255, 0.4);
    box-shadow: 0 30px 80px rgba(0, 102, 255, 0.3);
}

.magazine-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 60px;
    align-items: start;
}

.profile-card-magazine {
    background: linear-gradient(145deg, rgba(10, 25, 41, 0.9), rgba(0, 20, 41, 0.8));
    backdrop-filter: blur(30px);
    padding: 40px;
    border-radius: 24px;
    border: 2px solid rgba(0, 163, 255, 0.3);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(0, 102, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    text-align: center;
    position: sticky;
    top: 120px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.profile-card-magazine:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 102, 255, 0.6);
    box-shadow: 
        0 30px 80px rgba(0, 102, 255, 0.4),
        0 0 0 1px rgba(0, 102, 255, 0.3),
        0 0 100px rgba(0, 102, 255, 0.2);
}

.avatar-magazine {
    width: 200px;
    height: 200px;
    margin: 0 auto 30px;
    border-radius: 24px;
    background: linear-gradient(135deg, #0066FF, #0052CC);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 20px 60px rgba(0, 102, 255, 0.5),
        0 0 0 8px rgba(0, 102, 255, 0.2);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.profile-card-magazine:hover .avatar-magazine {
    transform: scale(1.05);
    box-shadow: 
        0 25px 70px rgba(0, 102, 255, 0.6),
        0 0 0 12px rgba(0, 102, 255, 0.3);
}

.avatar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

.avatar-placeholder-magazine {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.avatar-placeholder-magazine svg {
    width: 80px;
    height: 80px;
    color: white;
    stroke: currentColor;
}

.profile-name {
    font-size: 32px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.profile-role {
    font-size: 14px;
    color: #00A3FF;
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.profile-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.stat-item-magazine {
    background: rgba(0, 102, 255, 0.15);
    padding: 20px;
    border-radius: 16px;
    border: 2px solid rgba(0, 163, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item-magazine:hover {
    background: rgba(0, 102, 255, 0.25);
    border-color: rgba(0, 102, 255, 0.4);
    transform: translateY(-3px);
}

.stat-number-magazine {
    font-size: 28px;
    font-weight: 900;
    color: #CCE5FF;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label-magazine {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.profile-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.profile-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.profile-btn span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
}

.profile-btn span svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
}

.primary-btn-magazine {
    background: linear-gradient(135deg, #0066FF, #0052CC);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(0, 102, 255, 0.4);
}

.primary-btn-magazine:hover {
    background: linear-gradient(135deg, #0052CC, #0066FF);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.6);
}

.secondary-btn-magazine {
    background: rgba(0, 102, 255, 0.2);
    color: #00A3FF;
    border-color: rgba(0, 102, 255, 0.3);
}

.secondary-btn-magazine:hover {
    background: rgba(0, 102, 255, 0.3);
    color: #CCE5FF;
    border-color: rgba(0, 102, 255, 0.5);
    transform: translateY(-3px);
}

.story-content-magazine {
    background: linear-gradient(145deg, rgba(10, 25, 41, 0.9), rgba(0, 20, 41, 0.8));
    backdrop-filter: blur(30px);
    padding: 60px 50px;
    border-radius: 32px;
    border: 2px solid rgba(0, 163, 255, 0.3);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.5s ease;
}

.story-content-magazine:hover {
    border-color: rgba(0, 102, 255, 0.5);
    box-shadow: 
        0 25px 70px rgba(0, 102, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.story-title {
    font-size: 42px;
    font-weight: 900;
    color: #CCE5FF;
    margin-bottom: 35px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.story-paragraph {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

.highlight-quote-box {
    background: rgba(0, 102, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 35px 40px;
    border-radius: 20px;
    border-left: 4px solid #0066FF;
    margin: 35px 0;
    position: relative;
    transition: all 0.4s ease;
}

.highlight-quote-box::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 120px;
    font-weight: 900;
    color: rgba(0, 102, 255, 0.2);
    line-height: 1;
    font-family: Georgia, serif;
}

.highlight-quote-box:hover {
    background: rgba(0, 102, 255, 0.2);
    border-left-color: #00A3FF;
    transform: translateX(5px);
}

.highlight-quote-box p {
    margin: 0;
    font-style: italic;
    font-size: 19px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

/* ============================================
   JOURNEY SECTION - WHITE BACKGROUND
   ============================================ */

.journey-section {
    padding: 120px 40px;
    background: white;
    position: relative;
    overflow: hidden;
}

.journey-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.journey-section .section-header {
    text-align: center;
    margin-bottom: 80px;
}

.journey-section .section-label {
    display: inline-block;
    padding: 10px 26px;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    color: #0066FF;
    letter-spacing: 3px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.journey-section .section-title {
    font-size: 64px;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 25px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.journey-section .section-description {
    font-size: 22px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.journey-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.journey-card {
    background: white;
    backdrop-filter: blur(30px);
    padding: 50px 40px;
    border-radius: 24px;
    border: 2px solid rgba(0, 163, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: left;
}

.journey-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.15);
    border-color: rgba(0, 102, 255, 0.3);
}

.journey-year {
    display: inline-block;
    background: linear-gradient(135deg, #0066FF 0%, #6B3A8C 100%);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.journey-icon {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 25px;
    width: 100%;
    height: 64px;
}

.journey-icon svg {
    width: 64px;
    height: 64px;
    color: #0066FF;
    stroke: currentColor;
    fill: none;
    transition: all 0.3s ease;
}

.journey-card:hover .journey-icon svg {
    color: #0052CC;
    transform: scale(1.1);
}

.journey-card h3 {
    font-size: 28px;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.journey-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* ============================================
   CTA SECTION
   ============================================ */

.about-cta {
    padding: 100px 40px;
    background: linear-gradient(135deg, #0066FF 0%, #0052CC 100%);
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
    border-radius: 50%;
}

.about-cta-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content {
    text-align: center;
}

.about-cta h2 {
    font-size: 52px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-cta p {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 50px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s ease;
}

.about-cta .btn-primary {
    background: #ffffff;
    color: #0066FF;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.about-cta .btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.about-cta .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.about-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* ============================================
   ANIMATIONS
   ============================================ */

.about-hero-content {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body.page-template-page-about .mission-content,
.page-about .mission-content {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

body.page-template-page-about .mission-content.animate-in,
.page-about .mission-content.animate-in {
    opacity: 1;
    transform: translateY(0);
}

body.page-template-page-about .mission-card,
.page-about .mission-card {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

body.page-template-page-about .mission-card.animate-in,
.page-about .mission-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.profile-card-magazine,
.story-content-magazine {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.profile-card-magazine.animate-in,
.story-content-magazine.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.journey-card {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.journey-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.cta-content {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-content.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.section-header,
.about-section h2,
.about-section .section-title {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.about-hero-content,
.profile-card-magazine,
.story-content-magazine,
.journey-card,
.cta-content,
.mission-content,
.mission-card {
    min-height: 1px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1200px) {
    .about-hero-container {
        gap: 60px;
    }
    
    .magazine-layout {
        grid-template-columns: 320px 1fr;
        gap: 40px;
    }
    
    .profile-card-magazine {
        padding: 35px 30px;
    }
    
    .story-content-magazine {
        padding: 50px 40px;
    }
    
    .journey-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .about-hero {
        min-height: auto;
        padding: 100px 30px 80px;
    }
    
    .about-hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-hero h1 {
        font-size: 48px;
    }
    
    .about-hero-description {
        font-size: 18px;
    }
    
    .about-stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    /* CORRECTED: Floating Cards - Compact Horizontal Layout on Mobile */
    .about-hero-visual {
        height: auto !important;
        min-height: auto !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        margin-top: 30px;
    }
    
    .floating-card {
        position: static !important;
        animation: none !important;
        padding: 18px 20px !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 15px !important;
    }
    
    .floating-card .card-icon {
        width: 36px !important;
        height: 36px !important;
        flex-shrink: 0 !important;
    }
    
    .floating-card .card-icon svg {
        width: 36px !important;
        height: 36px !important;
    }
    
    .floating-card .card-text {
        font-size: 14px !important;
        font-weight: 700;
        text-align: left !important;
        margin: 0 !important;
    }
    
    .about-hero-glow {
        display: none !important;
    }
    
    .team-section,
    .journey-section,
    .mission-section,
    .about-cta {
        padding: 80px 20px;
    }
    
    .journey-section .section-title,
    .team-section .section-title,
    body.page-template-page-about .mission-title,
    .page-about .mission-title {
        font-size: 42px !important;
    }
    
    body.page-template-page-about .mission-grid,
    .page-about .mission-grid {
        grid-template-columns: 1fr !important;
        gap: 25px;
    }
    
    body.page-template-page-about .mission-card,
    .page-about .mission-card {
        padding: 40px 30px !important;
    }
    
    .journey-card {
        padding: 40px 30px;
    }
    
    .journey-icon svg {
        width: 60px;
        height: 60px;
    }
    
    .journey-card h3 {
        font-size: 24px;
    }
    
    .journey-card p {
        font-size: 16px;
    }
    
    .about-cta h2 {
        font-size: 36px;
    }
    
    .about-cta p {
        font-size: 18px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
        justify-content: center;
    }
    
    .profile-card-magazine {
        padding: 30px 25px;
    }
    
    .avatar-magazine {
        width: 160px;
        height: 160px;
    }
    
    .avatar-placeholder-magazine svg {
        width: 60px;
        height: 60px;
    }
    
    .profile-name {
        font-size: 28px;
    }
    
    .story-content-magazine {
        padding: 40px 30px;
    }
    
    .story-title {
        font-size: 32px;
    }
    
    .story-paragraph {
        font-size: 16px;
    }
    
    .highlight-quote-box {
        padding: 30px 25px;
    }
    
    .highlight-quote-box p {
        font-size: 17px;
    }
    
    .team-grid .magazine-layout {
        padding: 30px 20px;
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 20px;
    }
    
    .magazine-layout {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
    
    .profile-card-magazine {
        position: static !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 35px 25px 30px !important;
        text-align: center !important;
    }
    
    .avatar-magazine {
        width: 120px !important;
        height: 120px !important;
        margin: 0 auto 15px !important;
    }
    
    .avatar-placeholder-magazine svg {
        width: 50px !important;
        height: 50px !important;
    }
    
    .profile-name {
        font-size: 26px !important;
        margin-bottom: 3px !important;
        line-height: 1.1 !important;
    }
    
    .profile-role {
        margin-bottom: 20px !important;
        font-size: 12px !important;
    }
    
    .profile-stats {
        display: flex !important;
        gap: 10px !important;
        margin-bottom: 20px !important;
        justify-content: center !important;
    }
    
    .stat-item-magazine {
        padding: 14px 18px !important;
        flex: 0 1 auto !important;
        min-width: 100px !important;
    }
    
    .stat-number-magazine {
        font-size: 22px !important;
        margin-bottom: 4px !important;
    }
    
    .stat-label-magazine {
        font-size: 10px !important;
    }
    
    .profile-links {
        display: flex !important;
        flex-direction: row !important;
        gap: 10px !important;
        justify-content: center !important;
    }
    
    .profile-btn {
        padding: 12px 22px !important;
        font-size: 13px !important;
        flex: 1 !important;
        max-width: 160px !important;
    }
    
    .story-content-magazine {
        padding: 35px 28px !important;
    }
    
    .story-title {
        font-size: 28px !important;
        margin-bottom: 20px !important;
    }
    
    .story-paragraph {
        font-size: 15px !important;
        margin-bottom: 18px !important;
    }
    
    .highlight-quote-box {
        padding: 25px 20px !important;
        margin: 25px 0 !important;
    }
    
    .highlight-quote-box p {
        font-size: 16px !important;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 28px;
    }
    
    /* CORRECTED: Even More Compact on Small Screens */
    .floating-card {
        padding: 15px 18px !important;
        gap: 12px !important;
    }
    
    .floating-card .card-icon {
        width: 32px !important;
        height: 32px !important;
    }
    
    .floating-card .card-icon svg {
        width: 32px !important;
        height: 32px !important;
    }
    
    .floating-card .card-text {
        font-size: 13px !important;
    }
    
    .about-stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    body.page-template-page-about .mission-title,
    .page-about .mission-title {
        font-size: 32px !important;
    }
    
    body.page-template-page-about .mission-card,
    .page-about .mission-card {
        padding: 35px 25px !important;
    }
    
    body.page-template-page-about .mission-card h3,
    .page-about .mission-card h3 {
        font-size: 20px !important;
    }
    
    body.page-template-page-about .mission-card p,
    .page-about .mission-card p {
        font-size: 15px !important;
    }
    
    .journey-section .section-title,
    .team-section .section-title {
        font-size: 32px;
    }
    
    .journey-section {
        padding: 70px 15px;
    }
    
    .journey-card {
        padding: 35px 25px;
    }
    
    .journey-icon svg {
        width: 50px;
        height: 50px;
    }
    
    .journey-card h3 {
        font-size: 22px;
    }
    
    .journey-card p {
        font-size: 15px;
    }
    
    .about-cta h2 {
        font-size: 28px;
    }
    
    .profile-stats {
        grid-template-columns: 1fr;
    }
    
    .story-title {
        font-size: 24px;
    }
    
    .profile-card-magazine {
        padding: 30px 20px 25px !important;
    }
    
    .avatar-magazine {
        width: 100px !important;
        height: 100px !important;
        margin-bottom: 12px !important;
    }
    
    .avatar-placeholder-magazine svg {
        width: 45px !important;
        height: 45px !important;
    }
    
    .profile-name {
        font-size: 24px !important;
        margin-bottom: 2px !important;
    }
    
    .profile-role {
        font-size: 11px !important;
        margin-bottom: 18px !important;
    }
    
    .profile-stats {
        gap: 8px !important;
    }
    
    .stat-item-magazine {
        padding: 12px 14px !important;
        min-width: 85px !important;
    }
    
    .stat-number-magazine {
        font-size: 20px !important;
    }
    
    .stat-label-magazine {
        font-size: 9px !important;
    }
    
    .profile-links {
        flex-direction: column !important;
        gap: 10px !important;
    }
    
    .profile-btn {
        max-width: 100% !important;
    }
    
    .story-content-magazine {
        padding: 30px 22px !important;
    }
    
    .story-title {
        font-size: 24px !important;
    }
    
    .story-paragraph {
        font-size: 14px !important;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .about-hero-content,
    .profile-card-magazine,
    .story-content-magazine,
    .journey-card,
    .mission-content,
    .mission-card,
    .cta-content {
        animation: none;
        transition: none;
        opacity: 1;
        transform: none;
    }
}

/* Force Visibility for Mission Section */
body .mission-section {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: #ffffff !important;
}

body .mission-container {
    display: block !important;
    visibility: visible !important;
}

body .mission-content {
    display: block !important;
    visibility: visible !important;
}

body .mission-grid {
    display: grid !important;
    visibility: visible !important;
}

body .mission-card {
    display: block !important;
    visibility: visible !important;
    background: #ffffff !important;
}

body .mission-title {
    display: block !important;
    visibility: visible !important;
}

body .mission-icon {
    display: flex !important;
    visibility: visible !important;
}

/* ============================================
   END OF ABOUT PAGE CSS
   ============================================ */