/* ================================
   VERIFICATION PROCESS CSS (vp- prefix)
=================================== */

/* GLOBAL VP CLASSES */
.vp-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ================================
   1. HERO SECTION
=================================== */
.vp-hero {
    position: relative;
    padding: 120px 0;
    background: url('../images/hero.jpg') center/cover no-repeat;
    text-align: center;
}

.vp-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 18, 10, 0.95) 0%, rgba(117, 73, 2, 0.85) 100%);
    z-index: 1;
}

.vp-hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto;
}

.vp-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 24px;
    background: rgba(237, 180, 77, 0.15);
    border: 1px solid rgba(237, 180, 77, 0.4);
    color: #EDB44D;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.vp-title {
    font-size: 54px;
    color: #FFFFFF;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.vp-title span {
    color: #F39C12;
}

.vp-desc {
    font-size: 18px;
    color: #FDFBF7;
    line-height: 1.8;
}

/* ================================
   2. TIMELINE SECTION
=================================== */
.vp-timeline-section {
    padding: 100px 0;
    background: #FAF9F4;
}

.vp-timeline-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px;
}

.vp-timeline-header h2 {
    font-size: 40px;
    color: #332009;
    margin-bottom: 15px;
}

.vp-timeline-header p {
    font-size: 18px;
    color: #5B5B5B;
    line-height: 1.7;
}

/* Timeline Wrapper */
.vp-timeline {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

/* Center Vertical Line */
.vp-timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background: #E8D8C3;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
}

.vp-timeline-item {
    padding: 10px 50px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
    margin-bottom: 40px;
}

.vp-timeline-item.vp-left {
    left: 0;
}

.vp-timeline-item.vp-right {
    left: 50%;
}

/* Center Number Dots */
.vp-timeline-dot {
    position: absolute;
    width: 60px;
    height: 60px;
    background: #754902;
    border: 5px solid #FAF9F4;
    border-radius: 50%;
    top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-size: 24px;
    font-weight: 800;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(117, 73, 2, 0.3);
}

.vp-left .vp-timeline-dot {
    right: -30px;
}

.vp-right .vp-timeline-dot {
    left: -30px;
}

/* Content Cards */
.vp-timeline-content {
    background: #FFFFFF;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #F0E6D8;
    position: relative;
    transition: 0.4s ease;
}

.vp-timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(117, 73, 2, 0.15);
    border-color: #EDB44D;
}

.vp-step-icon {
    width: 50px;
    height: 50px;
    background: #FEF2E9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F39C12;
    font-size: 24px;
    margin-bottom: 20px;
}

.vp-timeline-content h3 {
    font-size: 24px;
    color: #332009;
    margin-bottom: 15px;
}

.vp-timeline-content p {
    font-size: 16px;
    color: #666666;
    line-height: 1.7;
}

/* Connecting Arrows (Optional Decorative element for desktop) */
.vp-left .vp-timeline-content::after {
    content: '';
    position: absolute;
    top: 35px;
    right: -15px;
    border-width: 15px 0 15px 15px;
    border-style: solid;
    border-color: transparent transparent transparent #FFFFFF;
}

.vp-right .vp-timeline-content::after {
    content: '';
    position: absolute;
    top: 35px;
    left: -15px;
    border-width: 15px 15px 15px 0;
    border-style: solid;
    border-color: transparent #FFFFFF transparent transparent;
}

/* ================================
   3. HIGHLIGHT METRICS
=================================== */
.vp-metrics-section {
    padding: 80px 0;
    background: #110A03;
}

.vp-metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.vp-metric-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 20px;
    border-radius: 16px;
    text-align: center;
    transition: 0.3s;
}

.vp-metric-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #EDB44D;
    transform: translateY(-5px);
}

.vp-metric-card i {
    font-size: 40px;
    color: #F39C12;
    margin-bottom: 20px;
}

.vp-metric-card h3 {
    font-size: 32px;
    color: #FFF;
    margin-bottom: 10px;
}

.vp-metric-card p {
    font-size: 16px;
    color: #A99C8D;
    font-weight: 500;
}

/* ================================
   4. CALL TO ACTION
=================================== */
.vp-cta-section {
    padding: 100px 0;
    background: #FFFFFF;
}

.vp-cta-wrapper {
    display: flex;
    align-items: center;
    background: #FDFBF7;
    border: 1px solid #F0E6D8;
    border-radius: 24px;
    overflow: hidden;
}

.vp-cta-content {
    flex: 1.2;
    padding: 60px;
}

.vp-cta-content h2 {
    font-size: 38px;
    color: #754902;
    line-height: 1.3;
    margin-bottom: 20px;
}

.vp-cta-content p {
    font-size: 18px;
    color: #5B5B5B;
    line-height: 1.7;
    margin-bottom: 30px;
}

.vp-cta-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.vp-cta-features span {
    font-size: 15px;
    font-weight: 600;
    color: #332009;
    display: flex;
    align-items: center;
    gap: 8px;
}

.vp-cta-features span i {
    color: #27AE60;
    font-size: 18px;
}

.vp-cta-buttons {
    display: flex;
    gap: 15px;
}

.vp-btn-primary {
    background: linear-gradient(135deg, #754902 0%, #CA7D00 100%);
    color: #FFF;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: 0.3s;
}

.vp-btn-primary:hover {
    box-shadow: 0 10px 20px rgba(117, 73, 2, 0.2);
    transform: translateY(-3px);
}

.vp-btn-secondary {
    background: #FFFFFF;
    color: #754902;
    border: 2px solid #754902;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: 0.3s;
}

.vp-btn-secondary:hover {
    background: #754902;
    color: #FFF;
}

.vp-cta-image {
    flex: 0.8;
    position: relative;
    height: 100%;
    min-height: 450px;
}

.vp-cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.vp-floating-badge {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: #FFFFFF;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 5px solid #27AE60;
}

.vp-floating-badge i {
    font-size: 32px;
    color: #27AE60;
}

.vp-floating-badge strong {
    font-size: 18px;
    color: #332009;
}

/* ================================
   RESPONSIVE QUERIES
=================================== */
@media (max-width: 1100px) {
    .vp-metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .vp-cta-wrapper {
        flex-direction: column;
    }
    .vp-cta-image {
        width: 100%;
        min-height: 350px;
    }
}

@media (max-width: 991px) {
    /* Mobile Timeline Layout */
    .vp-timeline::after {
        left: 31px;
    }
    
    .vp-timeline-item {
        width: 100%;
        padding-left: 80px;
        padding-right: 0;
    }
    
    .vp-timeline-item.vp-left, 
    .vp-timeline-item.vp-right {
        left: 0;
    }
    
    .vp-left .vp-timeline-dot,
    .vp-right .vp-timeline-dot {
        left: 0;
        right: auto;
    }
    
    .vp-left .vp-timeline-content::after,
    .vp-right .vp-timeline-content::after {
        display: none; /* Hide arrows on mobile */
    }
}

@media (max-width: 768px) {
    .vp-title {
        font-size: 19px;
    }
    
    .vp-timeline-header h2 {
        font-size: 21px;
    }
    .vp-desc {
    font-size: 14px;
    color: #FDFBF7;
    line-height: 1.8;
}
.vp-timeline-header p {
    font-size: 15px;
    color: #5B5B5B;
    line-height: 1.7;
}
.vp-timeline-content h3 {
    font-size: 16px;
    color: #332009;
    margin-bottom: 15px;
}
.vp-timeline-content p {
    font-size: 14px;
    color: #666666;
    line-height: 1.7;
}
.vp-cta-content h2 {
    font-size: 20px;
    color: #754902;
    line-height: 1.3;
    margin-bottom: 20px;
}
.vp-cta-content p {
    font-size: 14px;
    color: #5B5B5B;
    line-height: 1.7;
    margin-bottom: 30px;
}
.vp-hero {
   
    padding: 30px 0;
  
}
    .vp-metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .vp-cta-content {
        padding: 40px 20px;
    }
    
    .vp-cta-buttons {
        flex-direction: column;
    }
    
    .vp-btn-primary, .vp-btn-secondary {
        text-align: center;
    }
    
    .vp-floating-badge {
        bottom: 20px;
        right: 20px;
    }
}