/* Process Page Specific Styles */

/* Process Hero Section */
.process-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #ffffff;
    color: #000000;
    position: relative;
    padding: 120px 0 80px;
}

.process-hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.process-hero-text {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.process-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #000000;
}

.process-hero-subtitle {
    font-size: 1.2rem;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.process-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* 3D Rotating Globe */
.rotating-globe {
    width: 400px;
    height: 400px;
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
    animation: globeRotate 20s linear infinite;
}

.globe-core {
    width: 200px;
    height: 200px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transform-style: preserve-3d;
}

.globe-surface {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e8f4f8 0%, #f0f8ff 100%);
    border-radius: 50%;
    border: 3px solid #d4af37;
    position: relative;
    transform: rotateY(0deg);
    animation: surfaceRotate 15s linear infinite reverse;
}

.route-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.route-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, transparent, #d4af37);
    animation: routeGlow 3s ease-in-out infinite;
}

.africa-dubai {
    top: 60%;
    left: 20%;
    right: 30%;
    transform: rotate(-15deg);
}

.dubai-europe {
    top: 40%;
    left: 50%;
    right: 20%;
    transform: rotate(10deg);
}

.route-points {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.route-point {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.point-marker {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    border-radius: 50%;
    border: 3px solid #ffffff;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
    animation: pointPulse 2s ease-in-out infinite;
}

.point-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #000000;
    background: #ffffff;
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    border: 1px solid #000000;
}

.africa-point {
    top: 65%;
    left: 25%;
}

.dubai-point {
    top: 45%;
    right: 25%;
}

.europe-point {
    top: 30%;
    left: 60%;
}

/* Process Timeline Section */
.process-timeline {
    padding: 80px 0;
    background: #ffffff;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
    padding: 3rem 2rem;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 3px solid #000000;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.section-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #d4af37, #ffd700, #d4af37);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

.section-header h2 {
    font-size: 3.5rem;
    font-weight: 900;
    color: #000000;
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.4rem;
    color: #666666;
    font-weight: 600;
    margin: 1.5rem 0 0;
    line-height: 1.5;
}

/* Process Grid */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.process-card {
    background: #ffffff;
    border: 3px solid #000000;
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #d4af37, #ffd700);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.process-card:hover::before {
    transform: scaleX(1);
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.card-number {
    font-size: 3rem;
    font-weight: 900;
    color: #d4af37;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
}

.process-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.6);
}

.card-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

.card-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #d4af37;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-content p {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.feature-tag {
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border: 1px solid #000000;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #000000;
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: #d4af37;
    color: #ffffff;
    border-color: #d4af37;
    transform: translateY(-2px);
}

.timeline-container {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.process-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 2rem;
    background: #ffffff;
    border: 2px solid #000000;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.process-step:nth-child(even) {
    direction: rtl;
}

.process-step:nth-child(even) > * {
    direction: ltr;
}

.step-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-icon {
    width: 200px;
    height: 200px;
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
}

/* 3D Icons */
.excavator-3d {
    width: 120px;
    height: 80px;
    position: relative;
    animation: excavatorFloat 4s ease-in-out infinite;
}

.excavator-body {
    width: 60px;
    height: 40px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border-radius: 8px;
    position: absolute;
    top: 20px;
    left: 20px;
}

.excavator-arm {
    width: 50px;
    height: 8px;
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    border-radius: 4px;
    position: absolute;
    top: 15px;
    left: 10px;
    transform: rotate(-20deg);
    transform-origin: left center;
    animation: armSwing 3s ease-in-out infinite;
}

.excavator-bucket {
    width: 20px;
    height: 15px;
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    border-radius: 0 0 10px 10px;
    position: absolute;
    top: 10px;
    left: 0;
}

.truck-3d {
    width: 120px;
    height: 80px;
    position: relative;
    animation: truckFloat 4s ease-in-out infinite;
}

.truck-cab {
    width: 40px;
    height: 30px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border-radius: 8px;
    position: absolute;
    top: 25px;
    left: 10px;
}

.truck-trailer {
    width: 60px;
    height: 25px;
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    border-radius: 5px;
    position: absolute;
    top: 30px;
    left: 50px;
}

.gps-signal {
    width: 15px;
    height: 15px;
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    border-radius: 50%;
    position: absolute;
    top: 10px;
    right: 10px;
    animation: signalPulse 2s ease-in-out infinite;
}

.furnace-3d {
    width: 120px;
    height: 100px;
    position: relative;
    animation: furnaceFloat 4s ease-in-out infinite;
}

.furnace-base {
    width: 80px;
    height: 60px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border-radius: 10px;
    position: absolute;
    top: 20px;
    left: 20px;
}

.furnace-chamber {
    width: 60px;
    height: 40px;
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    border-radius: 8px;
    position: absolute;
    top: 10px;
    left: 30px;
}

.furnace-flame {
    width: 20px;
    height: 30px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    position: absolute;
    top: 0;
    left: 50px;
    animation: flameFlicker 1s ease-in-out infinite;
}

.gold-bar-output {
    width: 15px;
    height: 25px;
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    border-radius: 2px;
    position: absolute;
    top: 30px;
    right: 10px;
    animation: barOutput 3s ease-in-out infinite;
}

.document-3d {
    width: 120px;
    height: 100px;
    position: relative;
    animation: documentFloat 4s ease-in-out infinite;
}

.document-page {
    width: 80px;
    height: 100px;
    background: #ffffff;
    border: 2px solid #000000;
    border-radius: 5px;
    position: absolute;
    top: 0;
    left: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.document-seal {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    border-radius: 50%;
    position: absolute;
    top: 20px;
    right: 20px;
    animation: sealGlow 2s ease-in-out infinite;
}

.document-glow {
    width: 100px;
    height: 120px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    position: absolute;
    top: -10px;
    left: 10px;
    animation: glowPulse 3s ease-in-out infinite;
}

.airplane-3d {
    width: 120px;
    height: 80px;
    position: relative;
    animation: airplaneFloat 4s ease-in-out infinite;
}

.airplane-body {
    width: 60px;
    height: 20px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border-radius: 10px;
    position: absolute;
    top: 30px;
    left: 30px;
}

.airplane-wings {
    width: 80px;
    height: 15px;
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    border-radius: 8px;
    position: absolute;
    top: 35px;
    left: 20px;
}

.airplane-tail {
    width: 20px;
    height: 30px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border-radius: 5px;
    position: absolute;
    top: 25px;
    left: 10px;
}

.airplane-trail {
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, transparent);
    border-radius: 2px;
    position: absolute;
    top: 38px;
    left: 0;
    animation: trailFade 2s ease-in-out infinite;
}

.step-content {
    padding: 1rem;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: #d4af37;
    margin-bottom: 1rem;
    text-align: center;
}

.step-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5rem;
}

.step-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #d4af37;
    margin-bottom: 1rem;
}

.step-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 1.5rem;
}

.step-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.detail-item {
    padding: 0.8rem;
    background: #f8f9fa;
    border-left: 4px solid #d4af37;
    border-radius: 5px;
}

.detail-item strong {
    color: #000000;
    font-weight: 600;
}

/* Documentation Pack Section */
.documentation-pack {
    padding: 80px 0;
    background: #ffffff;
}

.docs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.doc-item {
    background: #ffffff;
    padding: 2rem;
    border: 2px solid #000000;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.doc-item:hover {
    transform: translateY(-5px);
}

.doc-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #ffffff;
}

.doc-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 1rem;
}

.doc-item p {
    color: #000000;
    margin-bottom: 1.5rem;
}

.btn-outline {
    background: transparent;
    color: #000000;
    border: 2px solid #000000;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline:hover {
    background: #000000;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Risk Management Section */
.risk-management {
    padding: 80px 0;
    background: #ffffff;
}

.risk-content {
    margin-top: 3rem;
}

.risk-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.risk-item {
    background: #ffffff;
    padding: 2rem;
    border: 2px solid #000000;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.risk-item:hover {
    transform: translateY(-5px);
}

.risk-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #ffffff;
}

.risk-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 1rem;
}

.risk-item p {
    color: #000000;
    line-height: 1.6;
}

/* Process CTA Section */
.process-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ffffff;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Animations */
@keyframes globeRotate {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

@keyframes surfaceRotate {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(-360deg); }
}

@keyframes routeGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

@keyframes pointPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

@keyframes excavatorFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

@keyframes armSwing {
    0%, 100% { transform: rotate(-20deg); }
    50% { transform: rotate(-40deg); }
}

@keyframes truckFloat {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    50% { transform: translateY(-8px) translateX(5px); }
}

@keyframes signalPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

@keyframes furnaceFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

@keyframes flameFlicker {
    0%, 100% { transform: scaleY(1) scaleX(1); }
    50% { transform: scaleY(1.2) scaleX(0.8); }
}

@keyframes barOutput {
    0%, 100% { transform: translateX(0px) scale(1); }
    50% { transform: translateX(10px) scale(1.1); }
}

@keyframes documentFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-5px) rotate(1deg); }
}

@keyframes sealGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(212, 175, 55, 0.5); }
    50% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.8); }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

@keyframes airplaneFloat {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    50% { transform: translateY(-12px) translateX(8px); }
}

@keyframes trailFade {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Section Header Mobile */
    .section-header {
        padding: 2rem 1.5rem;
        margin-bottom: 3rem;
        border-width: 2px;
        border-radius: 15px;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
    }
    
    .section-header h2::after {
        width: 60px;
        height: 3px;
    }
    
    .section-header p {
        font-size: 1.1rem;
        margin-top: 1rem;
    }
    
    /* Process Grid Mobile */
    .process-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-card {
        padding: 2rem;
    }
    
    .card-number {
        font-size: 2.5rem;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .card-content h3 {
        font-size: 1.5rem;
    }
    
    .card-content h4 {
        font-size: 1rem;
    }

    .process-hero-content {
        text-align: center;
    }

    .process-hero-title {
        font-size: 2.5rem;
    }

    .process-hero-subtitle {
        font-size: 1rem;
    }

    .rotating-globe {
        width: 300px;
        height: 300px;
    }

    .globe-core {
        width: 150px;
        height: 150px;
    }

    .process-step {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .process-step:nth-child(even) {
        direction: ltr;
    }

    .step-icon {
        width: 150px;
        height: 150px;
    }

    .docs-grid {
        grid-template-columns: 1fr;
    }

    .risk-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    /* Section Header Extra Small Screens */
    .section-header {
        padding: 1.5rem 1rem;
        margin-bottom: 2rem;
        border-radius: 12px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .section-header h2::after {
        width: 50px;
        height: 2px;
        bottom: -8px;
    }
    
    .section-header p {
        font-size: 1rem;
        margin-top: 0.8rem;
    }
    
    /* Process Grid Small Screens */
    .process-card {
        padding: 1.5rem;
        border-width: 2px;
    }
    
    .card-number {
        font-size: 2rem;
    }
    
    .card-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .card-content h3 {
        font-size: 1.3rem;
    }
    
    .card-content h4 {
        font-size: 0.95rem;
    }
    
    .card-content p {
        font-size: 0.95rem;
    }
    
    .feature-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .process-hero-title {
        font-size: 2rem;
    }

    .process-hero-subtitle {
        font-size: 0.9rem;
    }

    .rotating-globe {
        width: 250px;
        height: 250px;
    }

    .globe-core {
        width: 125px;
        height: 125px;
    }

    .step-icon {
        width: 120px;
        height: 120px;
    }

    .step-number {
        font-size: 2.5rem;
    }

    .step-content h3 {
        font-size: 1.5rem;
    }
}

