:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --dark-bg: #212529;
}

body {
    font-family: 'Inter', sans-serif;
    padding-top: 76px;
    color: #333;
}

.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 700;
    letter-spacing: -0.5px;
}

.nav-link {
    font-weight: 500;
    margin: 0 5px;
}

.hero-section {
    background: linear-gradient(135deg, rgba(33, 37, 41, 0.9), rgba(13, 110, 253, 0.8)), url('https://images.unsplash.com/photo-1555099962-4199c345e5dd?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 120px 0;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.section-padding {
    padding: 100px 0;
}

.bg-light-gray {
    background-color: #f8f9fa;
}

.section-title {
    position: relative;
    margin-bottom: 3rem;
    font-weight: 700;
    display: inline-block;
}

    .section-title::after {
        content: '';
        display: block;
        width: 60px;
        height: 4px;
        background: var(--primary-color);
        margin: 15px auto 0;
        border-radius: 2px;
    }

.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border-radius: 12px;
    border: none;
    background: #fff;
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
    }

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    background: rgba(13, 110, 253, 0.1);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    display: inline-block;
}

.package-list-item {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    border-left: 4px solid var(--primary-color);
}

    .package-list-item i {
        font-size: 1.5rem;
        color: var(--primary-color);
        margin-right: 15px;
    }

.process-step {
    position: relative;
    padding-left: 40px;
    margin-bottom: 40px;
}

    .process-step::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 4px;
        background: #e9ecef;
        border-radius: 4px;
    }

    .process-step:hover::before {
        background: var(--primary-color);
        transition: background 0.3s ease;
    }

.step-number {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
}

.benefit-item {
    padding: 20px;
    border-radius: 10px;
    transition: background 0.3s;
}

    .benefit-item:hover {
        background: rgba(255,255,255,0.05);
    }

.contact-card {
    border-radius: 15px;
    overflow: hidden;
    border: none;
}

.contact-link {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

    .contact-link:hover {
        color: var(--primary-color);
    }

html {
    scroll-behavior: smooth;
}
