
/* Hero Section */
.hero-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.breadcrumb-custom {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

    .breadcrumb-custom a {
        color: var(--primary-navy);
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .breadcrumb-custom a:hover {
            color: var(--primary-orange);
        }

.hero-section h1 {
    color: var(--primary-navy);
    font-weight: 700;
    line-height: 1.2;
}

.hero-section .lead {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.hero-stats {
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-orange);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.hero-image img {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Services Section */
.services-section {
    background-color: var(--white);
}

.service-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .service-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-navy), var(--primary-orange));
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
        border-color: var(--primary-orange);
    }

        .service-card:hover::before {
            transform: scaleX(1);
        }

    .service-card.featured {
        border-color: var(--primary-orange);
        background: linear-gradient(135deg, #fff9f0 0%, #ffffff 100%);
    }

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--primary-orange);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.service-icon {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--primary-navy) 0%, #0f1a2e 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-image {
    border-radius: 16px;
    height: 200px;
    width: 100%;
    object-fit: cover;
    margin-bottom: 20px;
}

.service-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: 700;
    color: #f1f5f9;
    line-height: 1;
    z-index: 0;
}

.service-card.featured .service-number {
    color: #fff5e6;
}

.service-title {
    color: var(--primary-navy);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.service-description {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

    .service-features li {
        color: var(--text-dark);
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
        display: flex;
        align-items: center;
    }

        .service-features li i {
            color: var(--primary-orange);
            margin-right: 0.5rem;
            font-size: 1rem;
        }

.btn-service {
    background-color: var(--primary-navy);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

    .btn-service:hover {
        background-color: var(--primary-orange);
        color: white;
        transform: translateX(5px);
    }

/* Process Section */
.process-section {
    background-color: var(--bg-light);
}

.process-step {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    position: relative;
    height: 100%;
    transition: all 0.3s ease;
}

    .process-step:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }

.process-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-orange), #d97706);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: 0 4px 8px rgba(245, 158, 11, 0.3);
}

.process-icon {
    font-size: 3rem;
    color: var(--primary-navy);
    margin: 2rem 0 1rem;
}

.process-step h4 {
    color: var(--primary-navy);
    font-weight: 600;
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--text-muted);
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Industries Section */
.industries-section {
    background-color: white;
}

.industry-badge {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    height: 100%;
}

    .industry-badge:hover {
        border-color: var(--primary-orange);
        background-color: #fff9f0;
        transform: translateY(-3px);
        box-shadow: 0 4px 12px rgba(245, 158, 11, 0.15);
    }

    .industry-badge i {
        font-size: 1.5rem;
        color: var(--primary-navy);
    }

    .industry-badge span {
        color: var(--text-dark);
        font-weight: 600;
        font-size: 0.9rem;
    }

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-navy) 0%, #0f1a2e 100%);
    position: relative;
    overflow: hidden;
}

    .cta-section::before {
        content: "";
        position: absolute;
        top: -50%;
        right: -10%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
        border-radius: 50%;
    }

    .cta-section h2 {
        color: white;
        position: relative;
        z-index: 1;
    }

    .cta-section .lead {
        color: rgba(255, 255, 255, 0.9);
        position: relative;
        z-index: 1;
    }

.cta-buttons {
    position: relative;
    z-index: 1;
}

    .cta-buttons .btn-light {
        background-color: white;
        color: var(--primary-navy);
        border: none;
        font-weight: 600;
    }

        .cta-buttons .btn-light:hover {
            background-color: var(--primary-orange);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        }

    .cta-buttons .btn-outline-light {
        border-color: white;
        color: white;
        font-weight: 600;
    }

        .cta-buttons .btn-outline-light:hover {
            background-color: white;
            color: var(--primary-navy);
        }

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-orange);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 1000;
}

    .back-to-top:hover {
        background-color: var(--primary-navy);
        transform: translateY(-5px);
    }

    .back-to-top.show {
        display: flex;
    }

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-section {
        padding: 3rem 0;
    }

        .hero-section h1 {
            font-size: 2.5rem;
        }

    .stat-number {
        font-size: 2rem;
    }

    .service-number {
        font-size: 2rem;
        top: 1rem;
        right: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem !important;
    }

    .service-card {
        margin-bottom: 1rem;
    }

    .process-step {
        margin-bottom: 2rem;
    }

    .industry-badge {
        font-size: 0.85rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

        .cta-buttons .btn {
            width: 100%;
        }
}
