.service-page {
    background: #050505;
    color: #ffffff;
    overflow: hidden;
}


/* HERO */

.service-hero {
    background: #070707;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.service-hero-title {
    color: #ffffff;
    font-size: clamp(48px, 7vw, 90px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -3px;
}

.service-highlight {
    color: #85f3ca;
}

.service-breadcrumb {
    color: #888888;
    font-size: 14px;
}

.service-breadcrumb-link {
    color: #ffffff;
    text-decoration: none;
}

.service-breadcrumb-link:hover {
    color: #85f3ca;
}

.service-breadcrumb-icon {
    color: #85f3ca;
    font-size: 11px;
}

.service-breadcrumb-current {
    color: #8a8a8a;
}


/* TICKER */

.service-ticker-section {
    background: #0a0a0a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.service-ticker-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.service-ticker-icon {
    width: 20px;
    height: 20px;
}

.service-ticker-item:hover {
    color: #85f3ca;
}


/* WHY CHOOSE */

.service-choose-section {
    background: #050505;
}

.service-small-heading {
    color: #85f3ca;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
}

.service-choose-heading {
    color: #ffffff;
    font-size: clamp(34px, 4vw, 58px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -2px;
}

.service-choose-item {
    background: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 22px;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
}

.service-choose-item:hover {
    transform: translateY(-4px);
    border-color: rgba(133, 243, 202, 0.5);
}

.service-choose-item-title {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-choose-item-text {
    color: #919191;
    font-size: 14px;
    line-height: 1.7;
}

.service-choose-image-box {
    border-radius: 20px;
    overflow: hidden;
}

.service-choose-image {
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.service-choose-image:hover {
    transform: scale(1.03);
}


/* SERVICES */

.service-list-section {
    background: #080808;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.service-main-heading {
    color: #ffffff;
    font-size: clamp(38px, 5vw, 68px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2px;
}

.service-description {
    color: #8f8f8f;
    font-size: 15px;
    line-height: 1.7;
}

.service-quote-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #85f3ca;
    color: #050505;
    padding: 13px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

.service-quote-btn:hover {
    color: #050505;
    transform: translateY(-3px);
    opacity: 0.9;
}


/* SERVICE CARDS */

.service-card-link {
    display: block;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.service-card {
    background: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 28px;
    transition:
        transform 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease;
}

.service-card:hover {
    transform: translateY(-7px);
    background: #111111;
    border-color: rgba(133, 243, 202, 0.55);
}

.service-card-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(133, 243, 202, 0.1);
    border-radius: 14px;
    color: #85f3ca;
    font-size: 21px;
}

.service-card-arrow {
    color: #ffffff;
    font-size: 18px;
    opacity: 0.6;
    transition:
        transform 0.3s ease,
        color 0.3s ease,
        opacity 0.3s ease;
}

.service-card:hover .service-card-arrow {
    transform: translateY(-3px);
    color: #85f3ca;
    opacity: 1;
}

.service-card-title {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-card-text {
    color: #8d8d8d;
    font-size: 14px;
    line-height: 1.75;
}


/* BOTTOM TEXT */

.service-bottom-text {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 35px;
}

.service-bottom-paragraph {
    color: #929292;
    font-size: 15px;
}