/* ===================================================
   STANDARD ZONE TECHNOLOGIES - ABOUT PAGE STYLES
   =================================================== */

/* ===================== SIGNATURE SECTION ===================== */
.signature-section {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 35px;
    padding-top: 30px;
    border-top: 1px solid #e9ecef;
}

.signature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 14px;
}

.signature-item i {
    font-size: 24px;
    color: var(--accent-color);
}

/* ===================== MISSION & VISION CARDS ===================== */
.mission-vision-section {
    position: relative;
    overflow: hidden;
}

.mission-vision-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0.05;
    z-index: 0;
}

.mission-vision-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 350px;
    height: 350px;
    background: var(--gradient-accent);
    border-radius: 50%;
    opacity: 0.05;
    z-index: 0;
}

.mission-vision-section .container {
    position: relative;
    z-index: 1;
}

.mv-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: var(--shadow-md);
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid #f0f0f0;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    border-radius: 25px 25px 0 0;
}

.mission-card::before {
    background: var(--gradient-primary);
}

.vision-card::before {
    background: var(--gradient-accent);
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.mv-card::after {
    content: '';
    position: absolute;
    right: -80px;
    bottom: -80px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    opacity: 0.04;
    transition: var(--transition);
}

.mission-card::after {
    background: var(--primary-color);
}

.vision-card::after {
    background: var(--accent-color);
}

.mv-card:hover::after {
    transform: scale(1.3);
    opacity: 0.08;
}

.mv-icon-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.mv-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--white);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.mission-card .mv-icon {
    background: var(--gradient-primary);
    box-shadow: 0 10px 25px rgba(13, 71, 161, 0.35);
}

.vision-card .mv-icon {
    background: var(--gradient-accent);
    box-shadow: 0 10px 25px rgba(255, 111, 0, 0.35);
}

.mv-card:hover .mv-icon {
    transform: rotate(-10deg) scale(1.05);
}

.mv-label {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(13, 71, 161, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.vision-card .mv-label {
    background: rgba(255, 111, 0, 0.1);
    color: var(--accent-color);
}

.mv-card h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--dark-color);
    position: relative;
    z-index: 1;
}

.mv-card > p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.mv-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.mv-list li {
    padding: 10px 0;
    color: var(--text-dark);
    font-size: 14.5px;
    font-weight: 500;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.6;
}

.mv-list li i {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.mission-card .mv-list li i {
    color: var(--primary-color);
}

.vision-card .mv-list li i {
    color: var(--accent-color);
}

/* ===================== JOURNEY TIMELINE ===================== */
.journey-section {
    position: relative;
}

.timeline {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
    transform: translateX(-50%);
    border-radius: 5px;
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: 50%;
    padding: 0 50px;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-marker {
    position: absolute;
    top: 20px;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    box-shadow: 0 10px 25px rgba(13, 71, 161, 0.4);
    z-index: 2;
    border: 5px solid var(--white);
    transition: var(--transition);
}

.timeline-item:nth-child(odd) .timeline-marker {
    right: -30px;
}

.timeline-item:nth-child(even) .timeline-marker {
    left: -30px;
}

.timeline-item:nth-child(even) .timeline-marker {
    background: var(--gradient-accent);
    box-shadow: 0 10px 25px rgba(255, 111, 0, 0.4);
}

.timeline-item:hover .timeline-marker {
    transform: scale(1.15) rotate(360deg);
}

.timeline-content {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: var(--transition);
    border: 1px solid #f0f0f0;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 30px;
    width: 0;
    height: 0;
    border: 15px solid transparent;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -30px;
    border-left-color: var(--white);
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -30px;
    border-right-color: var(--white);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.timeline-year {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 6px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.timeline-item:nth-child(even) .timeline-year {
    background: var(--gradient-accent);
}

.timeline-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--text-light);
    margin: 0;
    font-size: 14.5px;
    line-height: 1.7;
}

/* ===================== WHY CHOOSE US (WC) ===================== */
.why-choose-section {
    position: relative;
}

.why-choose-features {
    margin-top: 30px;
}

.wc-feature {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--white);
    border-radius: 15px;
    transition: var(--transition);
    border: 1px solid #f0f0f0;
}

.wc-feature:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.wc-icon {
    width: 55px;
    height: 55px;
    background: var(--gradient-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 6px 15px rgba(13, 71, 161, 0.3);
    transition: var(--transition);
}

.wc-feature:hover .wc-icon {
    background: var(--gradient-accent);
    transform: rotateY(360deg);
    box-shadow: 0 6px 15px rgba(255, 111, 0, 0.4);
}

.wc-content h5 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.wc-content p {
    color: var(--text-light);
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

/* WC Visual Side */
.wc-visual {
    position: relative;
    padding: 30px;
}

.wc-main-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 25px;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
    border: 1px solid #f0f0f0;
}

.wc-card-header {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-bottom: 22px;
    margin-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
}

.wc-card-header i {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    box-shadow: 0 8px 20px rgba(13, 71, 161, 0.3);
}

.wc-card-header h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 4px;
    color: var(--dark-color);
}

.wc-card-header p {
    color: var(--text-light);
    margin: 0;
    font-size: 13px;
}

.wc-progress-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wc-progress-item {
    width: 100%;
}

.wc-progress-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-color);
}

.wc-progress-info span:last-child {
    color: var(--primary-color);
    font-weight: 700;
}

.wc-progress-bar {
    width: 100%;
    height: 8px;
    background: #f0f4f8;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.wc-progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 10px;
    width: 0;
    animation: fillProgress 2s ease-out forwards;
    position: relative;
    overflow: hidden;
}

.wc-progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    animation: progressShine 2s infinite;
}

@keyframes fillProgress {
    from { width: 0; }
}

@keyframes progressShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.wc-floating-card {
    position: absolute;
    background: var(--white);
    padding: 18px 22px;
    border-radius: 18px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 2;
    animation: floatAnim 4s ease-in-out infinite;
}

.wc-float-1 {
    top: 10px;
    right: -20px;
    animation-delay: 0s;
}

.wc-float-2 {
    bottom: 20px;
    left: -20px;
    animation-delay: 1.5s;
}

.wc-floating-card i {
    width: 45px;
    height: 45px;
    background: var(--gradient-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
    flex-shrink: 0;
}

.wc-float-1 i {
    background: var(--gradient-primary);
}

.wc-floating-card strong {
    display: block;
    font-size: 20px;
    color: var(--dark-color);
    line-height: 1;
    font-weight: 800;
}

.wc-floating-card span {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
}

/* ===================== RESPONSIVE STYLES ===================== */
@media (max-width: 991px) {
    .mv-card { padding: 40px 30px; }
    .mv-card h3 { font-size: 22px; }

    /* Timeline becomes single column */
    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        width: 100%;
        padding: 0 0 0 80px;
        text-align: left !important;
        left: 0 !important;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        text-align: left;
    }

    .timeline-marker {
        left: 0 !important;
        right: auto !important;
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

    .timeline-item:nth-child(odd) .timeline-content::before,
    .timeline-item:nth-child(even) .timeline-content::before {
        left: -30px;
        right: auto;
        border-right-color: var(--white);
        border-left-color: transparent;
    }

    .wc-floating-card {
        padding: 14px 18px;
    }
    .wc-float-1 { right: 0; }
    .wc-float-2 { left: 0; }
}

@media (max-width: 767px) {
    .mv-card { padding: 35px 25px; }
    .mv-icon {
        width: 65px;
        height: 65px;
        font-size: 30px;
    }
    .mv-card h3 { font-size: 20px; }

    .signature-section {
        gap: 15px;
    }

    .signature-item {
        font-size: 13px;
    }

    .signature-item i {
        font-size: 20px;
    }

    /* Timeline mobile */
    .timeline-item {
        padding: 0 0 0 70px;
        margin-bottom: 40px;
    }

    .timeline::before {
        left: 25px;
    }

    .timeline-marker {
        width: 50px;
        height: 50px;
        font-size: 20px;
        border-width: 4px;
    }

    .timeline-content {
        padding: 22px 20px;
    }

    .timeline-content h4 {
        font-size: 18px;
    }

    .wc-feature {
        padding: 15px;
        gap: 15px;
    }

    .wc-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .wc-content h5 { font-size: 15px; }

    .wc-main-card { padding: 28px 22px; }

    .wc-floating-card {
        padding: 12px 16px;
    }

    .wc-floating-card strong { font-size: 17px; }
    .wc-floating-card span { font-size: 11px; }
}

@media (max-width: 575px) {
    .mv-icon-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .timeline-item {
        padding: 0 0 0 60px;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-marker {
        width: 42px;
        height: 42px;
        font-size: 16px;
        border-width: 3px;
    }

    .timeline-item:nth-child(odd) .timeline-content::before,
    .timeline-item:nth-child(even) .timeline-content::before {
        display: none;
    }

    .wc-floating-card {
        position: static;
        margin-top: 15px;
        animation: none;
    }

    .wc-visual {
        padding: 15px 0;
    }
}