/* Hero Section */
.about-hero {
    position: relative;
    min-height: 600px;
    background: linear-gradient(135deg, #f8f9fc 0%, #ffffff 100%);
    overflow: hidden;
    padding: 20px 0;
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Animated Background Effect */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(211, 47, 47, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(211, 47, 47, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 40% 80%, rgba(211, 47, 47, 0.06) 0%, transparent 40%);
    animation: particleFloat 20s ease-in-out infinite;
}

@keyframes particleFloat {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

.container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.about-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-primary);
}

.hero-badge-wrapper {
    margin-bottom: 30px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(211, 47, 47, 0.08);
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--primary-color);
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, #FF6B6B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    background: white;
    border-radius: 24px;
    padding: 32px 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

.stat-item {
    text-align: center;
    padding: 16px;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50%;
    background: var(--border-light);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-number .suffix {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 2;
}

.hero-wave svg {
    width: 100%;
    height: auto;
    fill: white;
}

/* About Intro Section */
.about-intro {
    padding: 100px 0;
    background: white;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 20px;
    align-items: center;
}

.intro-content {
    width: 100%;
    max-width: 600px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(211, 47, 47, 0.08);
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    border-radius: 30px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.intro-text {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 18px;
}

.intro-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 28px;
}

.intro-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 500;
    padding: 14px 18px;
    background: var(--bg-light);
    border-radius: 12px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.intro-feature:hover {
    border-color: var(--primary-color);
    transform: translateX(6px);
    box-shadow: var(--shadow-red);
}

.intro-feature svg {
    width: 22px;
    height: 22px;
    stroke: var(--primary-color);
    flex-shrink: 0;
}

/* Intro Image */
.intro-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 400px;
    margin-left: auto;
    background: #f1f5f9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1), 0 10px 30px rgba(211, 47, 47, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.intro-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    filter: brightness(0.95);
}

.image-wrapper:hover .intro-main-img {
    transform: scale(1.05);
}

.image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(35, 24, 52, 0.3));
    pointer-events: none;
}

/* Decorative Elements */
.image-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid var(--border-color);
}

.decoration-circle.c1 {
    width: 280px;
    height: 280px;
    top: -40px;
    right: -40px;
    border-color: rgba(211, 47, 47, 0.1);
}

.decoration-circle.c2 {
    width: 180px;
    height: 180px;
    bottom: -20px;
    left: -20px;
    border-color: rgba(211, 47, 47, 0.08);
}

.experience-badge {
    position: absolute;
    top: 40px;
    left: 40px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 24px 32px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    z-index: 5;
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.experience-badge:hover {
    transform: translateY(-5px) scale(1.02);
}

.experience-badge .years {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 4px;
}

.experience-badge .text {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stats-mini-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 20px 28px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    animation: cardFloat 6s ease-in-out infinite;
    z-index: 5;
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.stats-mini-card:hover {
    background: white;
    box-shadow: 0 25px 50px rgba(211, 47, 47, 0.15);
}

.stats-mini-card .number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.stats-mini-card .label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.card-1 {
    bottom: 60px;
    right: 40px;
    animation-delay: 0s;
}

.card-2 {
    top: 120px;
    right: 30px;
    animation-delay: 1.5s;
}

@keyframes cardFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fc 0%, white 100%);
}

.section-header {
    max-width: 700px;
    margin-bottom: 50px;
}

.section-header.centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 50px;
}

.value-card {
    background: white;
    border-radius: 24px;
    padding: 40px 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #FF6B6B);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-red);
    border-color: rgba(211, 47, 47, 0.2);
}

.value-card:hover::before {
    opacity: 1;
}

.value-icon {
    width: 76px;
    height: 76px;
    background: rgba(211, 47, 47, 0.06);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: var(--primary-color);
    transform: rotate(8deg) scale(1.05);
}

.value-icon svg {
    width: 38px;
    height: 38px;
    stroke: var(--primary-color);
    transition: stroke 0.3s ease;
}

.value-card:hover .value-icon svg {
    stroke: white;
}

.value-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 14px;
}

.value-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Mission Section */
.mission-section {
    padding: 100px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.mission-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(211, 47, 47, 0.06) 0%, transparent 60%);
    border-radius: 50%;
    filter: blur(60px);
    animation: gradientPulse 8s ease-in-out infinite;
}

@keyframes gradientPulse {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-20px, 20px) scale(1.1);
    }
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
    z-index: 2;
}

.mission-card {
    background: linear-gradient(135deg, var(--text-primary) 0%, #2d2d44 100%);
    border-radius: 28px;
    padding: 44px 36px;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(26, 26, 46, 0.3);
}

.mission-card:hover::before {
    opacity: 1;
}

.mission-icon {
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.mission-icon svg {
    width: 36px;
    height: 36px;
}

.mission-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.mission-card p {
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.8);
}

/* Timeline Section */
.timeline-section {
    padding: 100px 0;
    background: #f8f9fc;
}

.timeline {
    position: relative;
    max-width: 850px;
    margin: 60px auto 0;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, var(--primary-color), transparent);
    opacity: 0.2;
}

.timeline-item {
    position: relative;
    margin-bottom: 56px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 18px;
    background: var(--primary-color);
    border: 3px solid #f8f9fc;
    border-radius: 50%;
    z-index: 3;
    box-shadow: 0 0 0 4px rgba(211, 47, 47, 0.15);
}

.timeline-content {
    position: relative;
    width: calc(50% - 50px);
    padding: 28px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(211, 47, 47, 0.2);
}

.timeline-item:nth-child(odd) .timeline-content {
    left: 0;
}

.timeline-item:nth-child(even) .timeline-content {
    left: 50%;
    margin-left: 50px;
}

.timeline-year {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(211, 47, 47, 0.08);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 50px;
    margin-bottom: 14px;
}

.timeline-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.timeline-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 100px 0;
    background: white;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 50px;
}

.reason-card {
    background: white;
    border-radius: 24px;
    padding: 40px 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.reason-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #FF6B6B);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-red);
    border-color: rgba(211, 47, 47, 0.2);
}

.reason-card:hover::before {
    opacity: 1;
}

.reason-icon {
    width: 76px;
    height: 76px;
    background: rgba(211, 47, 47, 0.06);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
}

.reason-card:hover .reason-icon {
    background: var(--primary-color);
    transform: rotate(8deg) scale(1.05);
}

.reason-icon svg {
    width: 38px;
    height: 38px;
    stroke: var(--primary-color);
    transition: stroke 0.3s ease;
}

.reason-card:hover .reason-icon svg {
    stroke: white;
}

.reason-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 14px;
}

.reason-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: #f8f9fc;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 50px;
}

.team-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-red);
    border-color: rgba(211, 47, 47, 0.2);
}

.team-image {
    height: 200px;
    background: linear-gradient(135deg, #f8f9fc 0%, #eef2f6 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-image::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(211, 47, 47, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-muted);
    position: relative;
    z-index: 2;
}

.team-info {
    padding: 24px;
    text-align: center;
}

.team-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.team-position {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 12px;
}

.team-bio {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.team-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 10px;
    color: var(--text-muted);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.team-social a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    border-color: var(--primary-color);
}

/* Certifications Section */
.certifications-section {
    padding: 60px 0;
    background: white;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.certifications-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 28px;
}

.cert-badge {
    padding: 12px 26px;
    background: white;
    border-radius: 50px;
    font-weight: 600;
    color: var(--text-secondary);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.cert-badge:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-red);
}

/* CTA Section */
.cta-section {
    padding: 100px 0 120px;
    background: linear-gradient(135deg, #f8f9fc 0%, white 100%);
}

.cta-card {
    background: linear-gradient(135deg, var(--text-primary) 0%, #2d2d44 100%);
    border-radius: 32px;
    padding: 60px;
    position: relative;
    overflow: hidden;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(211, 47, 47, 0.15) 0%, transparent 60%);
    border-radius: 50%;
    filter: blur(60px);
    animation: gradientPulse 8s ease-in-out infinite;
}

.cta-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 36px;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cta-actions .btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 16px 36px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-actions .btn-primary:hover {
    background: #E53935;
    box-shadow: 0 15px 30px rgba(211, 47, 47, 0.25);
    transform: translateY(-3px);
}

.cta-actions .btn-primary svg {
    transition: transform 0.3s ease;
}

.cta-actions .btn-primary:hover svg {
    transform: translateX(4px);
}

.cta-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.cta-contact a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.cta-contact a:hover {
    color: var(--primary-color);
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */

/* Desktop */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }

    .values-grid,
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet */
@media (max-width: 992px) {
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .intro-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .mission-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-marker {
        left: 20px;
    }

    .timeline-content {
        width: calc(100% - 60px);
        left: 60px !important;
        margin-left: 0 !important;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .about-hero {
        min-height: auto;
        padding: 100px 0 50px;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 24px;
    }

    .stat-item::after {
        display: none;
    }

    .values-grid,
    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }

    .certifications-grid {
        gap: 16px;
    }

    .cta-card {
        padding: 40px 24px;
    }

    .cta-actions {
        flex-direction: column;
    }

    .cta-actions .btn-primary {
        width: 100%;
        justify-content: center;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 1.85rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 18px;
    }

    .value-card,
    .reason-card {
        padding: 28px 24px;
    }

    .intro-feature {
        padding: 12px 14px;
    }

    .image-wrapper {
        height: 380px;
    }

    .experience-badge {
        padding: 16px 20px;
        top: 20px;
        left: 20px;
    }

    .experience-badge .years {
        font-size: 1.75rem;
    }

    .stats-mini-card {
        padding: 12px 16px;
    }

    .card-2 {
        right: 0;
        top: 80px;
    }

    .timeline-content {
        padding: 20px;
    }

    .timeline-title {
        font-size: 1.1rem;
    }

    .cert-badge {
        padding: 10px 18px;
        font-size: 0.8rem;
    }
}

/* =========================================
   ACCESSIBILITY
   ========================================= */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* =========================================
   PAGE ANIMATIONS
   ========================================= */
.about-page {
    animation: pageIn 0.6s ease-out;
}

@keyframes pageIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Staggered animations */
.about-hero {
    animation: fadeInUp 0.8s ease-out;
}

.about-intro {
    animation: fadeInUp 0.8s ease-out 0.1s backwards;
}

.values-section {
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}