/* Trade & Export Page Specific Styles */

/* Hero Overlay Animation */
.hero-overlay {
    background: linear-gradient(to bottom, rgba(27, 58, 45, 0.7) 0%, rgba(27, 58, 45, 0.3) 50%, rgba(247, 247, 242, 1) 100%);
}

/* Animations */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }

/* Grid Cards Hover Glow */
.product-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(74, 140, 92, 0.15);
    border-color: #4A8C5C;
}

/* Journey Timeline (Vertical line on mobile, Horizontal on desktop) */
.journey-line {
    position: relative;
}

@media (min-width: 768px) {
    .journey-line::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        height: 2px;
        background-color: #C9A84C;
        z-index: 0;
        transform: translateY(-50%);
        border-style: dashed;
        border-width: 2px;
        border-color: rgba(201, 168, 76, 0.5);
    }
}

@media (max-width: 767px) {
    .journey-line::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 24px;
        width: 2px;
        background-color: #C9A84C;
        z-index: 0;
        border-style: dashed;
        border-width: 2px;
        border-color: rgba(201, 168, 76, 0.5);
    }
}

.journey-node {
    position: relative;
    z-index: 10;
    transition: all 0.3s ease;
}

.journey-node:hover {
    transform: scale(1.1);
}

.journey-node:hover .journey-icon {
    background-color: #4A8C5C;
    color: white;
}

/* Trust Badges - grayscale to color on hover */
.trust-badge img {
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.3s ease;
}

.trust-badge:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

/* Scroll Indicator */
.scroll-indicator i {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}
