/* ===================================
   HERO ENHANCEMENTS CSS
   UKF Services - The Antidote to Logistics Drama
   =================================== */

/* Hero Trust Indicators */
.hero-trust-indicators {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.trust-item {
    font-size: 0.9rem;
    color: var(--text-light);
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.trust-item i {
    color: var(--accent);
    font-size: 1rem;
}

/* Trust Badge Styling */
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    border: 2px solid var(--accent);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

/* Bold Headline Styling */
.headline-bold {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.text-accent {
    color: var(--accent);
}

/* WhatsApp Button Styles */
.btn-whatsapp {
    background: #25D366;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-call {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9998;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i {
    color: white;
}

/* Exit Intent Modal */
.exit-intent-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10001;
    align-items: center;
    justify-content: center;
}

.exit-intent-content {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    max-width: 500px;
    position: relative;
    text-align: center;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.exit-intent-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
}

.exit-intent-close:hover {
    color: #333;
}

.exit-intent-content h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.exit-intent-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Quick Quote Form */
.quick-quote-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.quick-quote-form input,
.quick-quote-form select {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.quick-quote-form input:focus,
.quick-quote-form select:focus {
    outline: none;
    border-color: var(--accent);
}

.exit-intent-btn {
    background: var(--accent);
    color: var(--primary);
    padding: 1.2rem;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.exit-intent-btn:hover {
    background: #c5a050;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(197, 160, 80, 0.3);
}

/* Hero Buttons Layout */
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* CTA Section Styling */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, #0a2540 100%);
    padding: 5rem 2rem;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-primary-large {
    background: var(--accent);
    color: var(--primary);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary-large:hover {
    background: #c5a050;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(197, 160, 80, 0.4);
}

/* Services Section Styling */
.services-section {
    padding: 5rem 2rem;
    background: #f9fafb;
}

.services-content {
    max-width: 1200px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent) 0%, #c5a050 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-title {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.service-description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 0.95rem;
    flex-grow: 1;
}

.service-link {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.service-link:hover {
    color: var(--primary);
    gap: 0.6rem;
}

/* Timeline Process Section Styling */
.timeline-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #1B4965 0%, #0a2540 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.timeline-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.timeline-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.timeline-section .section-title {
    color: white;
}

.timeline-section .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 3rem;
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.timeline-step {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    position: relative;
    text-align: center;
}

.timeline-step:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Connection line between steps (desktop only) */
.timeline-step:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: var(--accent);
    font-weight: bold;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent) 0%, #c5a050 100%);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.4);
    transition: all 0.3s ease;
}

.timeline-step:hover .step-number {
    transform: scale(1.15) rotate(360deg);
}

.step-title {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.step-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Footer Enhancements */
.footer-tagline {
    font-style: italic;
    color: var(--accent);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

/* Tablet Responsive - 2 columns */
@media (max-width: 1024px) and (min-width: 769px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.8rem;
    }

    /* Timeline - 2 columns on tablet */
    .timeline-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    /* Remove arrow connectors on tablet */
    .timeline-step::after {
        display: none;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-trust-indicators {
        font-size: 0.8rem;
        gap: 1rem;
    }

    .headline-bold {
        font-size: 2.5rem;
    }

    .btn-whatsapp {
        width: 100%;
        justify-content: center;
    }

    .whatsapp-float {
        bottom: 90px;
        left: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .exit-intent-content {
        margin: 1rem;
        padding: 2rem 1.5rem;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary,
    .hero-buttons .btn-whatsapp {
        width: 100%;
        justify-content: center;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Timeline - single column on mobile */
    .timeline-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Remove arrow connectors on mobile */
    .timeline-step::after {
        display: none;
    }

    .timeline-section {
        padding: 3rem 1.5rem;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }

    .step-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .headline-bold {
        font-size: 2rem;
    }

    .trust-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .exit-intent-content {
        padding: 1.5rem 1rem;
    }
}

/* Animation for trust indicators */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-trust-indicators {
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.trust-badge {
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.headline-bold {
    animation: fadeInUp 0.6s ease-out 0.6s both;
}

.hero-subtitle {
    animation: fadeInUp 0.6s ease-out 0.8s both;
}

.hero-buttons {
    animation: fadeInUp 0.6s ease-out 1s both;
}
