/* ============================================
   ACHIEVEMENTS PAGE STYLES
   Colors: #00676d, #0099b0, #f47a20
   ============================================ */

/* PAGE HERO - Gradient Background */
.page-hero {
    background: linear-gradient(135deg, #00676d, #0099b0);
    padding: 100px 0 52px;
    margin-top: 66px;
}

.page-hero-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.page-hero-tag {
    color: rgba(255,255,255,0.85) !important;
    background: rgba(255,255,255,0.12) !important;
    border-color: rgba(255,255,255,0.22) !important;
}

.page-hero-title {
    font-size: clamp(26px,4vw,46px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -.03em;
    color: #ffffff;
    margin: 10px 0 12px;
}

.page-hero-grad {
    background: linear-gradient(135deg, #f47a20 0%, #ffcc00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero-sub {
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    line-height: 1.75;
    max-width: 560px;
}

/* BREADCRUMB */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    margin-top: 4px;
}

.breadcrumb a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color .2s;
}

.breadcrumb a:hover {
    color: #ffffff;
}

.breadcrumb i {
    font-size: 9px;
}

.breadcrumb span {
    color: #ffffff;
    font-weight: 600;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 90px 0 40px;
    }
    .page-hero-sub {
        font-size: 14px;
    }
}

/* STATS HIGHLIGHT SECTION */
.stats-highlight {
    padding: 60px 0 40px;
    background: white;
}

.stats-highlight-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-highlight-card {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fc;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid #eef2f6;
}

.stat-highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,103,109,0.1);
    border-color: rgba(0,153,176,0.3);
}

.stat-highlight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00676d, #0099b0);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.stat-highlight-icon i {
    font-size: 28px;
    color: white;
}

.stat-highlight-number {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #00676d, #0099b0, #f47a20);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 8px;
}

.stat-highlight-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* TIMELINE SECTION */
.timeline-section {
    padding: 60px 0 80px;
    background: #f8f9fc;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 120px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #00676d, #0099b0, #f47a20);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: 112px;
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #00676d, #f47a20);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px rgba(0,103,109,0.2);
    z-index: 2;
}

.timeline-date {
    width: 100px;
    flex-shrink: 0;
    font-weight: 700;
    font-size: 18px;
    color: #00676d;
    text-align: right;
    padding-right: 20px;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 20px 25px;
    border-radius: 16px;
    border: 1px solid #eef2f6;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateX(5px);
    border-color: rgba(0,153,176,0.3);
    box-shadow: 0 10px 25px rgba(0,103,109,0.08);
}

.timeline-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #1a1a2e;
}

.timeline-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* PROJECT MILESTONES */
.project-milestones-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.project-milestone {
    text-align: center;
    padding: 32px 20px;
    background: white;
    border-radius: 20px;
    border: 1px solid #eef2f6;
    transition: all 0.3s ease;
}

.project-milestone:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,103,109,0.1);
    border-color: rgba(0,153,176,0.3);
}

.project-milestone-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0,103,109,0.1), rgba(0,153,176,0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.project-milestone-icon i {
    font-size: 32px;
    background: linear-gradient(135deg, #00676d, #0099b0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.project-milestone-number {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #00676d, #0099b0, #f47a20);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 8px;
}

.project-milestone-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* TESTIMONIALS SECTION */
.testimonials-section {
    padding: 80px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: #f8f9fc;
    padding: 32px 28px;
    border-radius: 20px;
    border: 1px solid #eef2f6;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,103,109,0.1);
    border-color: rgba(0,153,176,0.3);
}

.testimonial-quote {
    margin-bottom: 20px;
}

.testimonial-quote i {
    font-size: 32px;
    background: linear-gradient(135deg, #00676d, #f47a20);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: 0.5;
}

.testimonial-text {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-author-icon i {
    font-size: 40px;
    color: #0099b0;
}

.testimonial-author strong {
    display: block;
    font-size: 15px;
    color: #1a1a2e;
}

.testimonial-author span {
    font-size: 12px;
    color: #888;
}

/* CTA STRIP */
.cta-strip {
    background: linear-gradient(135deg, #00676d, #0099b0);
    padding: 72px 0;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.cta-text h2 {
    font-size: clamp(20px,3vw,30px);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.cta-text p {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
}

.cta-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.btn-cta-primary {
    background: #ffffff;
    color: #00676d;
    border: 2px solid #ffffff;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s;
}

.btn-cta-primary:hover {
    background: #f8f9fc;
    transform: translateY(-2px);
}

.btn-cta-ghost {
    color: #ffffff;
    border: 2px solid rgba(255,255,255,0.45);
    background: transparent;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s;
}

.btn-cta-ghost:hover {
    background: rgba(255,255,255,0.12);
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .stats-highlight-grid,
    .project-milestones-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-dot {
        left: 22px;
    }
    
    .timeline-date {
        width: 80px;
        font-size: 14px;
        text-align: left;
        padding-left: 50px;
        padding-right: 0;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 10px;
    }
    
    .timeline-content {
        margin-left: 50px;
    }
}

@media (max-width: 768px) {
    .stats-highlight-grid,
    .project-milestones-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-dot {
        left: 12px;
    }
    
    .timeline-date {
        width: auto;
        padding-left: 45px;
    }
    
    .timeline-content {
        margin-left: 45px;
    }
    
    .cta-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .cta-actions .btn {
        min-width: 200px;
        justify-content: center;
    }
}