/* Service Page Styles */
.service-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 14rem 2rem 10rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.service-hero::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="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" 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;
}

.hero-overlay {
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60rem;
    height: 60rem;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 90rem;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 5rem;
    margin-bottom: 2.5rem;
    font-size: 1.4rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: fadeInDown 0.8s ease;
}

.hero-badge i {
    font-size: 2rem;
}

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

.service-hero h1 {
    font-size: 4.8rem;
    margin-bottom: 2rem;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-hero p {
    font-size: 1.9rem;
    max-width: 70rem;
    margin: 0 auto 4rem;
    opacity: 0.95;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-top: 4rem;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 2rem 3rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.stat-item i {
    font-size: 3.5rem;
    opacity: 0.9;
}

.stat-item div {
    text-align: left;
}

.stat-item strong {
    display: block;
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.stat-item span {
    display: block;
    font-size: 1.3rem;
    opacity: 0.9;
    font-weight: 400;
}

.services-section {
    padding: 8rem 2rem;
    background: var(--grey-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(40rem, 1fr));
    gap: 4rem;
    max-width: 120rem;
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: 2rem;
    padding: 4rem;
    text-align: center;
    box-shadow: var(--box-shadow-1);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-2);
}

.service-card i {
    font-size: 6rem;
    color: var(--primary-color);
}

.service-card h2 {
    font-size: 2.8rem;
    margin: 2rem 0 1.5rem;
}

.service-card p {
    font-size: 1.6rem;
    color: var(--default-color);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    text-align: left;
    margin-bottom: 3rem;
}

.service-features li {
    font-size: 1.5rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--grey-color);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service-features li i {
    color: #22c55e;
    font-size: 2rem;
    flex-shrink: 0;
}

.tracking-section {
    padding: 8rem 2rem;
    background: white;
}

.tracking-container {
    max-width: 70rem;
    margin: 0 auto;
    text-align: center;
}

.tracking-container h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.tracking-container p {
    font-size: 1.6rem;
    color: var(--default-color);
    margin-bottom: 3rem;
}

.tracking-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tracking-form input {
    flex: 1;
    padding: 1.5rem 2rem;
    font-size: 1.6rem;
    border: 2px solid var(--grey-color);
    border-radius: 1rem;
}

.tracking-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.tracking-form button {
    padding: 1.5rem 3rem;
    font-size: 1.6rem;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .service-hero {
        padding: 12rem 2rem 8rem;
    }

    .service-hero h1 {
        font-size: 3.2rem;
    }

    .service-hero p {
        font-size: 1.6rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .stat-item {
        padding: 1.5rem 2rem;
        width: 100%;
        max-width: 32rem;
    }

    .stat-item i {
        font-size: 3rem;
    }

    .stat-item strong {
        font-size: 2rem;
    }

    .stat-item span {
        font-size: 1.2rem;
    }

    .hero-badge {
        font-size: 1.3rem;
        padding: 0.8rem 1.5rem;
    }

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

    .tracking-form {
        flex-direction: column;
    }

    .tracking-form button {
        width: 100%;
    }
}
