/* ===========================================
   Company Overview Page Styles
   =========================================== */

:root {
    --co-primary: #ff5e14;
    --co-secondary: #010e2a;
    --co-light: #fff5ef;
    --co-gradient: linear-gradient(135deg, #ff5e14 0%, #ff7b3d 100%);
    --co-dark-gradient: linear-gradient(135deg, #010e2a 0%, #021a4d 100%);
}

/* Section Common */
.co-section {
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.co-section-light {
    background: linear-gradient(180deg, #ffffff 0%, #fff8f3 100%);
}

.co-section-tinted {
    background: linear-gradient(180deg, #fff5ef 0%, #ffffff 100%);
}

/* Section Badge */
.co-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(255, 94, 20, 0.12);
    color: var(--co-primary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 30px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 94, 20, 0.2);
}

.co-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--co-secondary);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
    display: inline-block;
}

.co-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: var(--co-gradient);
    border-radius: 2px;
}

.co-section-title.text-start::after {
    left: 0;
    transform: none;
}

.co-section-desc {
    font-size: 1.05rem;
    color: #6c757d;
    max-width: 750px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

/* ===========================================
   ABOUT SECTION
   =========================================== */
.co-about-text p {
    color: #475569;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.co-about-text .lead {
    color: var(--co-secondary);
    font-weight: 500;
    font-size: 1.15rem;
    line-height: 1.7;
}

.co-about-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.co-about-list li {
    padding: 0.65rem 0 0.65rem 1.75rem;
    color: #475569;
    line-height: 1.7;
    position: relative;
    font-size: 0.98rem;
    transition: transform 0.25s ease;
}

.co-about-list li:hover {
    transform: translateX(5px);
}

.co-about-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 10px;
    height: 10px;
    background: var(--co-gradient);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255, 94, 20, 0.15);
}

.co-about-list li strong {
    color: var(--co-secondary);
}

/* About Image */
.co-about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(1, 14, 42, 0.15);
}

.co-about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.co-about-image:hover img {
    transform: scale(1.05);
}

.co-experience-badge {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: var(--co-gradient);
    color: white;
    padding: 1.25rem 1.75rem;
    border-radius: 14px;
    box-shadow: 0 12px 35px rgba(255, 94, 20, 0.5);
    z-index: 2;
    text-align: center;
}

.co-experience-badge .years {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    display: block;
}

.co-experience-badge .label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 4px;
    display: block;
    opacity: 0.95;
}

/* Floating decoration */
.co-about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--co-gradient);
    border-radius: 50%;
    opacity: 0.15;
    z-index: 1;
    animation: coFloat 4s ease-in-out infinite;
}

@keyframes coFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-10px, 10px); }
}

/* ===========================================
   COMPANY PROFILE - TIMELINE
   =========================================== */
.co-timeline {
    position: relative;
    margin: 3rem auto;
    max-width: 900px;
}

.co-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: linear-gradient(180deg, transparent, var(--co-primary), var(--co-primary), transparent);
    transform: translateX(-50%);
    border-radius: 2px;
}

.co-timeline-item {
    position: relative;
    width: 50%;
    padding: 1.5rem 2.5rem;
    margin-bottom: 1rem;
}

.co-timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.co-timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.co-timeline-item::before {
    content: '';
    position: absolute;
    top: 35px;
    width: 22px;
    height: 22px;
    background: white;
    border: 4px solid var(--co-primary);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 4px 14px rgba(255, 94, 20, 0.4);
    transition: all 0.3s ease;
}

.co-timeline-item:nth-child(odd)::before {
    right: -11px;
}

.co-timeline-item:nth-child(even)::before {
    left: -11px;
}

.co-timeline-item:hover::before {
    background: var(--co-primary);
    transform: scale(1.3);
}

.co-timeline-card {
    background: white;
    padding: 1.5rem 1.75rem;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--co-primary);
    position: relative;
}

.co-timeline-item:nth-child(even) .co-timeline-card {
    border-left: none;
    border-right: 4px solid var(--co-primary);
}

.co-timeline-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 94, 20, 0.2);
}

.co-timeline-year {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--co-primary);
    margin-bottom: 0.4rem;
    display: block;
}

.co-timeline-card p {
    margin: 0;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===========================================
   WORK PROCESS
   =========================================== */
.co-process-section {
    background: linear-gradient(180deg, #fff5ef 0%, #ffe8da 100%);
    position: relative;
}

.co-process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 94, 20, 0.3), transparent);
}

.co-process-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.co-process-card {
    background: white;
    border-radius: 16px;
    padding: 2rem 1rem;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 2px solid transparent;
}

.co-process-card:hover {
    transform: translateY(-12px);
    border-color: var(--co-primary);
    box-shadow: 0 20px 45px rgba(255, 94, 20, 0.25);
}

.co-process-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 1.25rem;
    background: var(--co-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 10px 25px rgba(255, 94, 20, 0.35);
    transition: transform 0.4s ease;
    position: relative;
}

.co-process-icon::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px dashed rgba(255, 94, 20, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: coRotate 8s linear infinite;
}

.co-process-card:hover .co-process-icon {
    transform: rotate(360deg) scale(1.1);
}

.co-process-card:hover .co-process-icon::after {
    opacity: 1;
}

@keyframes coRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.co-process-step {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--co-primary);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: block;
}

.co-process-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--co-secondary);
    margin-bottom: 0.5rem;
}

.co-process-desc {
    font-size: 0.85rem;
    color: #6c757d;
    line-height: 1.5;
    margin: 0;
}

/* ===========================================
   STATS / NUMBERS
   =========================================== */
.co-stats-section {
    background: var(--co-dark-gradient);
    position: relative;
    overflow: hidden;
    padding: 70px 0;
}

.co-stats-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 94, 20, 0.25) 0%, transparent 70%);
    border-radius: 50%;
}

.co-stats-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 94, 20, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.co-stat-card {
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
    padding: 1rem;
}

.co-stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 94, 20, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--co-primary);
    backdrop-filter: blur(10px);
}

.co-stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    color: white;
    margin: 0;
    line-height: 1;
}

.co-stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 0.5rem;
}

/* ===========================================
   TRUST / CLIENTS
   =========================================== */
.co-trust-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.co-trust-card {
    background: white;
    border-radius: 14px;
    padding: 1.5rem 2rem;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 2px solid transparent;
    min-width: 200px;
}

.co-trust-card:hover {
    transform: translateY(-5px);
    border-color: var(--co-primary);
    box-shadow: 0 15px 35px rgba(255, 94, 20, 0.2);
}

.co-trust-card i {
    font-size: 2rem;
    color: var(--co-primary);
}

.co-trust-card span {
    font-weight: 600;
    color: var(--co-secondary);
    font-size: 0.95rem;
}

/* ===========================================
   ANIMATIONS
   =========================================== */
@keyframes coFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes coFadeRight {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes coFadeLeft {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.co-animate-up { animation: coFadeUp 0.7s ease-out backwards; }
.co-animate-right { animation: coFadeRight 0.7s ease-out backwards; }
.co-animate-left { animation: coFadeLeft 0.7s ease-out backwards; }

.co-delay-100 { animation-delay: 0.1s; }
.co-delay-200 { animation-delay: 0.2s; }
.co-delay-300 { animation-delay: 0.3s; }
.co-delay-400 { animation-delay: 0.4s; }
.co-delay-500 { animation-delay: 0.5s; }

/* ===========================================
   RESPONSIVE
   =========================================== */
@media (max-width: 1199.98px) {
    .co-process-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991.98px) {
    .co-section {
        padding: 60px 0;
    }
    
    .co-section-title {
        font-size: 2rem;
    }
    
    .co-experience-badge .years {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .co-section {
        padding: 50px 0;
    }
    
    .co-section-title {
        font-size: 1.7rem;
    }
    
    .co-process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* Mobile Timeline - Single column */
    .co-timeline::before {
        left: 20px;
    }
    
    .co-timeline-item {
        width: 100%;
        left: 0 !important;
        text-align: left !important;
        padding-left: 50px;
        padding-right: 0;
    }
    
    .co-timeline-item::before {
        left: 9px !important;
        right: auto !important;
    }
    
    .co-timeline-card {
        border-left: 4px solid var(--co-primary) !important;
        border-right: none !important;
    }
    
    .co-stat-number {
        font-size: 2.2rem;
    }
}

@media (max-width: 575.98px) {
    .co-process-grid {
        grid-template-columns: 1fr;
    }
    
    .co-trust-card {
        min-width: 100%;
    }
    
    .co-experience-badge {
        bottom: 15px;
        left: 15px;
        padding: 1rem 1.25rem;
    }
    
    .co-experience-badge .years {
        font-size: 1.8rem;
    }
}
