/* ===== ABOUT PAGE STYLES ===== */

:root {
    /* Custom colors for About page */
    --primary-blue: #1E73BE;
    --dark-blue: #0F2A44;
    --sky-blue: #4DA8FF;
    --light-bg: #F7FAFD;
    --heading-color: #0B1F33;
    --body-text:black;
    --card-bg: #FFFFFF;
    --overlay-blue: rgba(30, 115, 190, 0.15);
}

/* ===== CONTAINER ===== */
.container-about {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--body-text);
    font-weight: 400;
}

.trust-stats .section-subtitle {
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 500;
}

/* ===== DECORATIVE SHAPES ===== */
.mission-decorative-shape,
.timeline-decorative-shape,
.stats-decorative-shape {
    position: absolute;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    opacity: 0.08;
    pointer-events: none;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-blue);
    top: -50px;
    right: -100px;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--sky-blue);
    bottom: 100px;
    left: -50px;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: var(--primary-blue);
    top: 200px;
    left: -80px;
}

.shape-4 {
    width: 280px;
    height: 280px;
    background: var(--sky-blue);
    bottom: -100px;
    right: -50px;
}

.shape-5 {
    width: 320px;
    height: 320px;
    background: var(--primary-blue);
    top: -100px;
    right: -100px;
}

.shape-6 {
    width: 250px;
    height: 250px;
    background: var(--sky-blue);
    bottom: 50px;
    left: -80px;
}

/* ===== SECTION 1: MISSION/HERO SPLIT ===== */
.mission-hero {
    position: relative;
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
    overflow: hidden;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.mission-content {
    color: white;
    animation: fadeUpOnScroll 0.8s ease-out;
}

.mission-label {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--sky-blue);
    text-transform: uppercase;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.mission-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: white;
}

.mission-text {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.mission-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
}

.highlight-item i {
    color: var(--sky-blue);
    font-size: 1.3rem;
}

.mission-image {
    position: relative;
    animation: slideInRight 0.8s ease-out;
    max-width: 400px;
    margin: 0 auto;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.mission-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 115, 190, 0.2) 0%, rgba(77, 168, 255, 0.1) 100%);
    border-radius: 20px;
}

/* ===== SECTION 2: TRUST VALUES CARDS ===== */
.trust-values {
    padding: 4rem 0;
    background: var(--light-bg);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.trust-card {
    background: var(--card-bg);
    padding: 2rem 1.8rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(30, 115, 190, 0.08);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    animation: cardFadeUp 0.6s ease-out backwards;
    color: #000;
}

.trust-card h3 {
    color: #000 !important;
}

.trust-card p {
    color: #333 !important;
}

.trust-card:nth-child(1) { animation-delay: 0.1s; }
.trust-card:nth-child(2) { animation-delay: 0.2s; }
.trust-card:nth-child(3) { animation-delay: 0.3s; }
.trust-card:nth-child(4) { animation-delay: 0.1s; }
.trust-card:nth-child(5) { animation-delay: 0.2s; }
.trust-card:nth-child(6) { animation-delay: 0.3s; }

.trust-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(30, 115, 190, 0.15);
}

.card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.video-icon {
    background: rgba(30, 115, 190, 0.15);
    color: var(--primary-blue);
}

.verified-icon {
    background: rgba(77, 168, 255, 0.15);
    color: var(--sky-blue);
}

.replacement-icon {
    background: rgba(37, 211, 102, 0.15);
    color: #25d366;
}

.pricing-icon {
    background: rgba(255, 165, 0, 0.15);
    color: #FFA500;
}

.support-icon {
    background: rgba(156, 39, 176, 0.15);
    color: #9c27b0;
}

.coverage-icon {
    background: rgba(244, 67, 54, 0.15);
    color: #f44336;
}

.trust-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 0.8rem;
}

.trust-card p {
    font-size: 0.95rem;
    color: var(--body-text);
    line-height: 1.6;
}

/* ===== SECTION 3: HIRING TIMELINE ===== */
.hiring-timeline {
    position: relative;
    padding: 4rem 0;
    background: var(--card-bg);
    overflow: hidden;
}

.timeline-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.timeline-container {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.timeline-card {
    position: relative;
    padding: 2rem 0 2rem 80px;
    animation: cardFadeUp 0.6s ease-out backwards;
}

.timeline-card-1 { animation-delay: 0.1s; }
.timeline-card-2 { animation-delay: 0.2s; }
.timeline-card-3 { animation-delay: 0.3s; }

.timeline-step-number {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 2rem;
    font-weight: 700;
    color: var(--sky-blue);
    opacity: 0.3;
}

.timeline-icon {
    position: absolute;
    left: 10px;
    top: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--sky-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(30, 115, 190, 0.2);
}

.timeline-connector {
    height: 60px;
    width: 2px;
    margin-left: 35px;
    background: linear-gradient(180deg, var(--sky-blue), transparent);
    opacity: 0.5;
}

.timeline-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 0.8rem;
}

.timeline-card p {
    font-size: 0.95rem;
    color: var(--body-text);
    line-height: 1.6;
}

.timeline-image {
    position: relative;
}

.timeline-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(30, 115, 190, 0.15);
}

.image-overlay-timeline {
    position: absolute;
    inset: 0;
    background: var(--overlay-blue);
    border-radius: 16px;
}

/* ===== SECTION 4: CUSTOMER SUPPORT SPLIT ===== */
.support-section {
    padding: 4rem 0;
    background: var(--light-bg);
}

.support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.support-image {
    position: relative;
}

.support-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(30, 115, 190, 0.15);
}

.image-overlay-support {
    position: absolute;
    inset: 0;
    background: var(--overlay-blue);
    border-radius: 16px;
}

.support-content {
    animation: fadeUpOnScroll 0.8s ease-out;
}

.support-intro {
    font-size: 1.05rem;
    color: var(--body-text);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.support-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.support-feature {
    display: flex;
    gap: 1.2rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-blue), var(--sky-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    box-shadow: 0 4px 12px rgba(30, 115, 190, 0.2);
}

.feature-text h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 0.3rem;
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--body-text);
    line-height: 1.5;
}

.btn-support {
    margin-top: 1rem;
}

/* ===== SECTION 5: TRUST STATS ===== */
.trust-stats {
    position: relative;
    padding: 4rem 0;
    background: var(--primary-blue);
    color: white;
    overflow: hidden;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background:white;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid #e91a1a33;
    animation: cardFadeUp 0.6s ease-out backwards;
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--sky-blue);
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

/* ===== SECTION 6: TEAM SECTION ===== */
.team-section {
    padding: 4rem 0;
    background: var(--light-bg);
}

.team-grid {
    display: flex;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
}

.team-card {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(30, 115, 190, 0.08);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    animation: cardFadeUp 0.6s ease-out backwards;
    width: 100%;
    color: #000;
}

.team-card:nth-child(1) { animation-delay: 0.1s; }
.team-card:nth-child(2) { display: none; }
.team-card:nth-child(3) { display: none; }

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(30, 115, 190, 0.15);
}

.team-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.team-card:hover .team-img {
    transform: scale(1.08);
}

.image-overlay-team {
    position: absolute;
    inset: 0;
    background: var(--overlay-blue);
}

.team-info {
    padding: 1.5rem;
    color: #000;
}

.team-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #000 !important;
    margin-bottom: 0.5rem;
}

.team-info p {
    color: #333 !important;
}

.team-info p {
    font-size: 0.9rem;
    color: var(--body-text);
    line-height: 1.6;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUpOnScroll {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes cardFadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ===== RESPONSIVE DESIGN ===== */

/* Ripple effect for buttons */
.btn {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

/* Tablet - 768px */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .mission-grid,
    .timeline-wrapper,
    .support-grid,
    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mission-title {
        font-size: 2rem;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline-card {
        padding: 1.5rem 0 1.5rem 70px;
    }

    .timeline-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .timeline-step-number {
        font-size: 1.5rem;
    }

    .shape-1, .shape-3, .shape-5 {
        width: 200px;
        height: 200px;
    }

    .shape-2, .shape-4, .shape-6 {
        width: 150px;
        height: 150px;
    }
}

/* Mobile - 480px */
@media (max-width: 480px) {
    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .mission-title {
        font-size: 1.5rem;
    }

    .mission-label {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .mission-text {
        font-size: 0.95rem;
    }

    .mission-highlights {
        gap: 0.8rem;
    }

    .highlight-item {
        font-size: 0.9rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .trust-card {
        padding: 1.5rem 1.2rem;
    }

    .trust-card h3 {
        font-size: 1.1rem;
    }

    .trust-card p {
        font-size: 0.9rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-card {
        padding: 1.2rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-image-wrapper {
        height: 200px;
    }

    .timeline-card {
        padding: 1.2rem 0 1.2rem 60px;
        margin-bottom: 1rem;
    }

    .timeline-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .timeline-step-number {
        font-size: 1.2rem;
    }

    .timeline-connector {
        height: 40px;
        margin-left: 30px;
    }

    .container-about {
        padding: 0 15px;
    }

    .mission-content,
    .mission-image {
        animation: none;
    }

    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .feature-icon {
        width: 45px;
        height: 45px;
    }

    .support-features {
        gap: 1.2rem;
    }

    .shape-1, .shape-2, .shape-3, .shape-4, .shape-5, .shape-6 {
        display: none;
    }

    .mission-hero,
    .trust-values,
    .hiring-timeline,
    .support-section,
    .trust-stats,
    .team-section {
        padding: 2.5rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }
}

/* ===== INTERSECTION OBSERVER - FADE IN EFFECT ===== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
