:root {
    --primary: #0056b3;
    --secondary: #ff6b00;
    --accent: #00c896;
    --dark: #2c3e50;
    --light: #f8f9fa;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --header-height: 140px;
}

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

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    background-color: #fff;
    overflow-x: hidden;
    padding-top: var(--header-height);
}

.service-header {
    background: linear-gradient(135deg, var(--primary) 0%, #003366 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(255,255,255,0.03)" d="M0,0 L100,0 L100,100 L0,100 Z" /></svg>');
    background-size: cover;
    opacity: 0.5;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

h1::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary);
}

.subheader {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 30px;
    font-weight: 300;
    opacity: 0.9;
}

.service-intro {
    text-align: center;
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    position: relative;
}

.service-intro::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 60px 0;
    gap: 30px;
}

.step {
    flex: 0 0 100%;
    margin-bottom: 30px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s forwards;
    border-left: 4px solid var(--primary);
}

.step:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.step:nth-child(1) {
    animation-delay: 0.2s;
}

.step:nth-child(2) {
    animation-delay: 0.4s;
}

.step:nth-child(3) {
    animation-delay: 0.6s;
}

.step:nth-child(4) {
    animation-delay: 0.8s;
}

.step:nth-child(5) {
    animation-delay: 1s;
}

@media (min-width: 768px) {
    .step {
        flex: 0 0 calc(50% - 15px);
    }
}

.step-header {
    background: linear-gradient(135deg, var(--primary) 0%, #004494 100%);
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.step-header::after {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    transform: rotate(30deg);
}

.step-number {
    background: white;
    color: var(--primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
    font-size: 1.2rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.step-title {
    font-size: 1.4rem;
    margin: 0;
    position: relative;
    z-index: 1;
}

.step-subtitle {
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    margin: 8px 0 0;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

.step-content {
    padding: 25px;
    position: relative;
}

.step-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 20px;
    width: 2px;
    height: calc(100% - 40px);
    background: linear-gradient(to bottom, var(--secondary), transparent);
}

.step-content ul {
    padding-left: 30px;
    list-style: none;
}

.step-content li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
    transition: all 0.3s;
}

.step-content li:hover {
    transform: translateX(5px);
}

.step-content li:before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--accent);
    position: absolute;
    left: 0;
    top: 2px;
}

.icon-feature {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin-right: 8px;
    color: var(--primary);
}

.cta-section {
    background: linear-gradient(135deg, var(--dark) 0%, #1a252f 100%);
    color: white;
    text-align: center;
    padding: 70px 20px;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
}

.cta-title {
    font-size: 2rem;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.cta-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--secondary);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    background: var(--secondary);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.4s;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    background: #e05d00;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4);
}

.cta-button::after {
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: 10px;
    transition: all 0.3s;
}

.cta-button:hover::after {
    transform: translateX(5px);
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    opacity: 0.1;
    border-radius: 50%;
}

.shape-1 {
    width: 100px;
    height: 100px;
    background: var(--primary);
    top: 20%;
    left: 10%;
    animation: float 15s infinite ease-in-out;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: var(--secondary);
    bottom: 10%;
    right: 5%;
    animation: float 18s infinite ease-in-out reverse;
}

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

.progress-tracker {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.progress-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 86, 179, 0.3);
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.progress-dot.active {
    background: var(--primary);
    transform: scale(1.3);
}

.progress-dot::after {
    content: attr(data-title);
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
}

.progress-dot:hover::after {
    opacity: 1;
    right: 20px;
}

.tooltip {
    position: absolute;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    pointer-events: none;
    opacity: 0;
    transition: all 0.3s;
    z-index: 100;
}

@media (max-width: 768px) {
    .progress-tracker {
        display: none;
    }

    h1 {
        font-size: 2.2rem;
    }

    .subheader {
        font-size: 1.1rem;
    }
}