/* =========================================================
   AARAV DIGITAL PRO
   SERVICES PAGE
   PREMIUM BLACK + GOLD
========================================================= */


/* =========================================================
   ROOT
========================================================= */

.adp-services-page {
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 15% 10%,
            rgba(212, 175, 55, 0.07),
            transparent 28%
        ),
        #050505;

    color: #ffffff;

    isolation: isolate;
}

.adp-services-page *,
.adp-services-page *::before,
.adp-services-page *::after {
    box-sizing: border-box;
}

.adp-sp-container {
    width: min(1180px, calc(100% - 40px));

    margin: 0 auto;

    position: relative;

    z-index: 2;
}


/* =========================================================
   COMMON EYEBROW
========================================================= */

.adp-sp-eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 18px;

    color: #d4af37;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2.5px;

    text-transform: uppercase;
}

.adp-sp-eyebrow > span {
    width: 30px;

    height: 1px;

    display: block;

    background: #d4af37;
}


/* =========================================================
   COMMON BUTTON
========================================================= */

.adp-sp-btn {
    min-height: 52px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    padding: 0 25px;

    border-radius: 999px;

    text-decoration: none !important;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 0.2px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.adp-sp-btn span {
    font-size: 18px;

    line-height: 1;
}

.adp-sp-btn-primary {
    background:
        linear-gradient(
            135deg,
            #d4af37,
            #b88f24
        );

    color: #080808 !important;

    box-shadow:
        0 14px 35px rgba(212, 175, 55, 0.16);
}

.adp-sp-btn-primary:hover {
    transform: translateY(-3px);

    color: #080808 !important;

    box-shadow:
        0 20px 45px rgba(212, 175, 55, 0.28);
}

.adp-sp-btn-secondary {
    border: 1px solid rgba(212, 175, 55, 0.28);

    background: rgba(255, 255, 255, 0.025);

    color: #ffffff !important;
}

.adp-sp-btn-secondary:hover {
    transform: translateY(-3px);

    border-color: rgba(212, 175, 55, 0.65);

    background: rgba(212, 175, 55, 0.07);

    color: #ffffff !important;
}


/* =========================================================
   HERO
========================================================= */

.adp-sp-hero {
    position: relative;

    min-height: 720px;

    display: flex;

    align-items: center;

    padding: 100px 0 90px;

    overflow: hidden;
}

.adp-sp-hero::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(212, 175, 55, 0.25),
            transparent
        );
}

.adp-sp-hero-glow {
    position: absolute;

    width: 600px;

    height: 600px;

    border-radius: 50%;

    filter: blur(110px);

    pointer-events: none;
}

.adp-sp-hero-glow-one {
    top: -300px;

    left: -250px;

    background:
        rgba(212, 175, 55, 0.08);
}

.adp-sp-hero-glow-two {
    right: -250px;

    bottom: -300px;

    background:
        rgba(212, 175, 55, 0.06);
}

.adp-sp-hero .adp-sp-container {
    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(420px, 0.95fr);

    gap: 60px;

    align-items: center;
}

.adp-sp-hero-content {
    position: relative;

    z-index: 3;
}

.adp-sp-hero h1 {
    max-width: 720px;

    margin: 0 0 24px;

    color: #ffffff;

    font-size: clamp(48px, 5.5vw, 76px);

    line-height: 1.02;

    letter-spacing: -3.5px;

    font-weight: 750;
}

.adp-sp-hero h1 strong {
    display: block;

    color: #d4af37;

    font-weight: 750;
}

.adp-sp-hero-content > p {
    max-width: 650px;

    margin: 0 0 32px;

    color: #9b9b9b;

    font-size: 16px;

    line-height: 1.8;
}

.adp-sp-hero-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 13px;

    margin-bottom: 42px;
}


/* =========================================================
   HERO TRUST
========================================================= */

.adp-sp-hero-trust {
    display: flex;

    align-items: center;

    gap: 0;
}

.adp-sp-hero-trust > div {
    display: flex;

    flex-direction: column;

    gap: 5px;

    padding: 0 25px;

    border-left:
        1px solid rgba(255, 255, 255, 0.09);
}

.adp-sp-hero-trust > div:first-child {
    padding-left: 0;

    border-left: 0;
}

.adp-sp-hero-trust strong {
    color: #d4af37;

    font-size: 24px;

    line-height: 1;
}

.adp-sp-hero-trust span {
    color: #777777;

    font-size: 10px;

    letter-spacing: 0.4px;
}


/* =========================================================
   HERO VISUAL
========================================================= */

.adp-sp-hero-visual {
    position: relative;

    width: min(500px, 100%);

    aspect-ratio: 1;

    margin-left: auto;

    display: flex;

    align-items: center;

    justify-content: center;
}

.adp-sp-hero-orbit {
    position: absolute;

    border: 1px solid
        rgba(212, 175, 55, 0.16);

    border-radius: 50%;

    transform: rotate(-18deg);
}

.adp-sp-orbit-one {
    width: 78%;

    height: 42%;

    animation:
        adpSpOrbitOne 12s linear infinite;
}

.adp-sp-orbit-two {
    width: 92%;

    height: 55%;

    transform: rotate(42deg);

    border-color:
        rgba(212, 175, 55, 0.09);

    animation:
        adpSpOrbitTwo 16s linear infinite;
}

@keyframes adpSpOrbitOne {

    from {
        transform: rotate(-18deg);
    }

    to {
        transform: rotate(342deg);
    }

}

@keyframes adpSpOrbitTwo {

    from {
        transform: rotate(42deg);
    }

    to {
        transform: rotate(-318deg);
    }

}

.adp-sp-hero-core {
    position: relative;

    width: 180px;

    height: 180px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(212, 175, 55, 0.16),
            rgba(212, 175, 55, 0.025) 65%,
            transparent 70%
        );

    border:
        1px solid rgba(212, 175, 55, 0.42);

    box-shadow:
        0 0 80px rgba(212, 175, 55, 0.11),
        inset 0 0 45px rgba(212, 175, 55, 0.08);

    z-index: 3;
}

.adp-sp-hero-core::before {
    content: "";

    position: absolute;

    inset: 18px;

    border-radius: 50%;

    border:
        1px solid rgba(212, 175, 55, 0.2);
}

.adp-sp-hero-core span {
    color: #d4af37;

    font-size: 76px;

    font-weight: 800;

    line-height: 1;

    text-shadow:
        0 0 35px rgba(212, 175, 55, 0.25);
}


/* =========================================================
   FLOATING CARDS
========================================================= */

.adp-sp-floating-card {
    position: absolute;

    z-index: 5;

    min-width: 150px;

    padding: 14px 17px;

    display: flex;

    flex-direction: column;

    gap: 5px;

    background:
        linear-gradient(
            145deg,
            rgba(30, 30, 30, 0.92),
            rgba(10, 10, 10, 0.92)
        );

    border:
        1px solid rgba(212, 175, 55, 0.22);

    border-radius: 13px;

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.4);

    backdrop-filter: blur(12px);
}

.adp-sp-floating-card span {
    color: #d4af37;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.adp-sp-floating-card strong {
    color: #eeeeee;

    font-size: 12px;
}

.adp-sp-floating-one {
    top: 18%;

    left: 0;

    animation:
        adpSpFloatOne 4s ease-in-out infinite;
}

.adp-sp-floating-two {
    top: 51%;

    right: -5%;

    animation:
        adpSpFloatTwo 4.5s ease-in-out infinite;
}

.adp-sp-floating-three {
    bottom: 12%;

    left: 8%;

    animation:
        adpSpFloatThree 5s ease-in-out infinite;
}

@keyframes adpSpFloatOne {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

}

@keyframes adpSpFloatTwo {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(9px);
    }

}

@keyframes adpSpFloatThree {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

}


/* =========================================================
   SECTION INTRO
========================================================= */

.adp-sp-intro {
    position: relative;

    padding: 105px 0 115px;
}

.adp-sp-section-heading {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(300px, 0.7fr);

    gap: 50px;

    align-items: end;

    margin-bottom: 55px;
}

.adp-sp-section-heading h2 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(38px, 4.5vw, 58px);

    line-height: 1.05;

    letter-spacing: -2px;
}

.adp-sp-section-heading h2 strong {
    color: #d4af37;

    font-weight: 700;
}

.adp-sp-section-heading > p {
    margin: 0;

    color: #8f8f8f;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   SERVICE GRID
========================================================= */

.adp-sp-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 18px;
}


/* =========================================================
   SERVICE CARD
========================================================= */

.adp-sp-service-card {
    position: relative;

    min-height: 465px;

    padding: 30px;

    display: flex;

    flex-direction: column;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.052),
            rgba(255, 255, 255, 0.012)
        );

    border:
        1px solid rgba(255, 255, 255, 0.075);

    border-radius: 20px;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease;
}

.adp-sp-service-card::before {
    content: "";

    position: absolute;

    top: 0;

    left: 24px;

    right: 24px;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(212, 175, 55, 0.35),
            transparent
        );

    opacity: 0;

    transition:
        opacity 0.35s ease;
}

.adp-sp-service-card::after {
    content: "";

    position: absolute;

    width: 180px;

    height: 180px;

    right: -100px;

    bottom: -100px;

    border-radius: 50%;

    background:
        rgba(212, 175, 55, 0.05);

    filter: blur(30px);

    transition:
        transform 0.5s ease;
}

.adp-sp-service-card:hover {
    transform: translateY(-7px);

    border-color:
        rgba(212, 175, 55, 0.30);

    background:
        linear-gradient(
            145deg,
            rgba(212, 175, 55, 0.065),
            rgba(255, 255, 255, 0.015)
        );

    box-shadow:
        0 25px 65px rgba(0, 0, 0, 0.38);
}

.adp-sp-service-card:hover::before {
    opacity: 1;
}

.adp-sp-service-card:hover::after {
    transform: scale(1.5);
}

.adp-sp-service-featured {
    border-color:
        rgba(212, 175, 55, 0.20);
}

.adp-sp-card-number {
    position: absolute;

    top: 25px;

    right: 27px;

    color: rgba(212, 175, 55, 0.40);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;
}

.adp-sp-card-icon {
    width: 52px;

    height: 52px;

    margin-bottom: 25px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 15px;

    background:
        rgba(212, 175, 55, 0.075);

    border:
        1px solid rgba(212, 175, 55, 0.20);

    color: #d4af37;

    font-size: 22px;

    transition:
        transform 0.35s ease,
        background 0.35s ease;
}

.adp-sp-service-card:hover .adp-sp-card-icon {
    transform: translateY(-3px) rotate(3deg);

    background:
        rgba(212, 175, 55, 0.13);
}

.adp-sp-card-label {
    margin-bottom: 10px;

    color: #d4af37;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.7px;
}

.adp-sp-service-card h3 {
    margin: 0 0 13px;

    color: #ffffff;

    font-size: 23px;

    line-height: 1.2;

    font-weight: 700;
}

.adp-sp-service-card > p {
    margin: 0 0 18px;

    color: #8d8d8d;

    font-size: 13px;

    line-height: 1.7;
}

.adp-sp-service-card ul {
    margin: 0 0 22px;

    padding: 0;

    list-style: none;
}

.adp-sp-service-card li {
    position: relative;

    padding-left: 18px;

    margin-bottom: 7px;

    color: #aaaaaa;

    font-size: 11px;
}

.adp-sp-service-card li::before {
    content: "✓";

    position: absolute;

    left: 0;

    top: 0;

    color: #d4af37;

    font-weight: 800;
}

.adp-sp-card-link {
    margin-top: auto;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #ffffff !important;

    text-decoration: none !important;

    font-size: 11px;

    font-weight: 800;

    transition:
        color 0.25s ease,
        gap 0.25s ease;
}

.adp-sp-card-link span {
    color: #d4af37;

    font-size: 17px;

    line-height: 1;

    transition:
        transform 0.25s ease;
}

.adp-sp-card-link:hover {
    color: #d4af37 !important;

    gap: 12px;
}

.adp-sp-card-link:hover span {
    transform: translateX(3px);
}


/* =========================================================
   WIDE CARD
========================================================= */

.adp-sp-service-wide {
    grid-column: span 2;
}


/* =========================================================
   WHY AARAV DIGITAL
========================================================= */

.adp-sp-why {
    position: relative;

    padding: 110px 0;

    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.015),
            rgba(255, 255, 255, 0.035),
            rgba(255, 255, 255, 0.015)
        );

    border-top:
        1px solid rgba(255, 255, 255, 0.055);

    border-bottom:
        1px solid rgba(255, 255, 255, 0.055);
}

.adp-sp-benefits {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 0;

    border-top:
        1px solid rgba(255, 255, 255, 0.08);

    border-left:
        1px solid rgba(255, 255, 255, 0.08);
}

.adp-sp-benefit {
    min-height: 170px;

    display: grid;

    grid-template-columns: 55px 1fr;

    gap: 20px;

    padding: 30px;

    border-right:
        1px solid rgba(255, 255, 255, 0.08);

    border-bottom:
        1px solid rgba(255, 255, 255, 0.08);
}

.adp-sp-benefit > span {
    color: #d4af37;

    font-size: 11px;

    font-weight: 800;
}

.adp-sp-benefit h3 {
    margin: 0 0 8px;

    color: #ffffff;

    font-size: 17px;
}

.adp-sp-benefit p {
    margin: 0;

    color: #858585;

    font-size: 12px;

    line-height: 1.7;
}


/* =========================================================
   PROCESS
========================================================= */

.adp-sp-process {
    padding: 110px 0;
}

.adp-sp-process-grid {
    display: grid;

    grid-template-columns:
        repeat(5, minmax(0, 1fr));

    border-top:
        1px solid rgba(212, 175, 55, 0.18);

    border-bottom:
        1px solid rgba(255, 255, 255, 0.07);
}

.adp-sp-process-item {
    position: relative;

    min-height: 210px;

    padding: 30px 25px;

    border-right:
        1px solid rgba(255, 255, 255, 0.07);
}

.adp-sp-process-item:last-child {
    border-right: 0;
}

.adp-sp-process-item > span {
    display: block;

    margin-bottom: 45px;

    color: #d4af37;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;
}

.adp-sp-process-item h3 {
    margin: 0 0 10px;

    color: #ffffff;

    font-size: 18px;
}

.adp-sp-process-item p {
    margin: 0;

    color: #7f7f7f;

    font-size: 11px;

    line-height: 1.65;
}


/* =========================================================
   FINAL CTA
========================================================= */

.adp-sp-final-cta {
    position: relative;

    padding: 40px 0 110px;

    overflow: hidden;
}

.adp-sp-final-glow {
    position: absolute;

    width: 500px;

    height: 500px;

    left: 50%;

    top: 50%;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    background:
        rgba(212, 175, 55, 0.055);

    filter: blur(100px);

    pointer-events: none;
}

.adp-sp-final-card {
    position: relative;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        auto;

    gap: 50px;

    align-items: center;

    padding: 55px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            rgba(212, 175, 55, 0.085),
            rgba(255, 255, 255, 0.025)
        );

    border:
        1px solid rgba(212, 175, 55, 0.22);

    border-radius: 24px;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.35);
}

.adp-sp-final-card::before {
    content: "";

    position: absolute;

    top: 0;

    left: 40px;

    right: 40px;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(212, 175, 55, 0.75),
            transparent
        );
}

.adp-sp-final-card h2 {
    max-width: 650px;

    margin: 0 0 16px;

    color: #ffffff;

    font-size: clamp(35px, 4vw, 52px);

    line-height: 1.05;

    letter-spacing: -1.8px;
}

.adp-sp-final-card h2 strong {
    color: #d4af37;
}

.adp-sp-final-card p {
    max-width: 620px;

    margin: 0;

    color: #909090;

    font-size: 13px;

    line-height: 1.75;
}

.adp-sp-final-actions {
    display: flex;

    flex-direction: column;

    gap: 10px;

    min-width: 205px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .adp-sp-hero .adp-sp-container {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(330px, 0.8fr);

        gap: 35px;
    }

    .adp-sp-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .adp-sp-service-wide {
        grid-column: span 2;
    }

    .adp-sp-process-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    .adp-sp-process-item:nth-child(3) {
        border-right: 0;
    }

    .adp-sp-process-item:nth-child(-n+3) {
        border-bottom:
            1px solid rgba(255, 255, 255, 0.07);
    }

}


/* =========================================================
   TABLET / SMALL
========================================================= */

@media (max-width: 850px) {

    .adp-sp-hero {
        min-height: auto;

        padding: 90px 0 80px;
    }

    .adp-sp-hero .adp-sp-container {
        grid-template-columns: 1fr;
    }

    .adp-sp-hero-visual {
        width: min(460px, 100%);

        margin: 20px auto 0;
    }

    .adp-sp-section-heading {
        grid-template-columns: 1fr;

        gap: 20px;

        align-items: start;
    }

    .adp-sp-final-card {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .adp-sp-final-actions {
        flex-direction: row;

        flex-wrap: wrap;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 640px) {

    .adp-sp-container {
        width: min(
            100% - 30px,
            520px
        );
    }


    /* HERO */

    .adp-sp-hero {
        padding: 70px 0 65px;
    }

    .adp-sp-hero h1 {
        font-size: 43px;

        letter-spacing: -2px;
    }

    .adp-sp-hero-content > p {
        font-size: 14px;

        line-height: 1.75;
    }

    .adp-sp-hero-actions {
        flex-direction: column;

        align-items: stretch;
    }

    .adp-sp-btn {
        width: 100%;
    }

    .adp-sp-hero-trust {
        width: 100%;
    }

    .adp-sp-hero-trust > div {
        padding: 0 15px;
    }

    .adp-sp-hero-trust strong {
        font-size: 20px;
    }

    .adp-sp-hero-trust span {
        font-size: 9px;
    }


    /* HERO VISUAL */

    .adp-sp-hero-visual {
        width: 100%;

        max-width: 390px;
    }

    .adp-sp-hero-core {
        width: 145px;

        height: 145px;
    }

    .adp-sp-hero-core span {
        font-size: 60px;
    }

    .adp-sp-floating-card {
        min-width: 120px;

        padding: 11px 13px;
    }

    .adp-sp-floating-card strong {
        font-size: 10px;
    }

    .adp-sp-floating-one {
        left: -5%;
    }

    .adp-sp-floating-two {
        right: -5%;
    }

    .adp-sp-floating-three {
        left: 3%;
    }


    /* INTRO */

    .adp-sp-intro {
        padding: 75px 0 80px;
    }

    .adp-sp-section-heading {
        margin-bottom: 35px;
    }

    .adp-sp-section-heading h2 {
        font-size: 37px;

        letter-spacing: -1.3px;
    }


    /* SERVICES */

    .adp-sp-grid {
        grid-template-columns: 1fr;

        gap: 14px;
    }

    .adp-sp-service-card,
    .adp-sp-service-wide {
        grid-column: auto;

        min-height: auto;

        padding: 25px;
    }

    .adp-sp-service-card h3 {
        font-size: 22px;
    }


    /* WHY */

    .adp-sp-why {
        padding: 75px 0;
    }

    .adp-sp-benefits {
        grid-template-columns: 1fr;
    }

    .adp-sp-benefit {
        min-height: auto;

        padding: 25px;

        grid-template-columns: 40px 1fr;
    }


    /* PROCESS */

    .adp-sp-process {
        padding: 75px 0;
    }

    .adp-sp-process-grid {
        grid-template-columns: 1fr;

        border-bottom: 0;
    }

    .adp-sp-process-item {
        min-height: auto;

        padding: 25px 20px;

        border-right: 0;

        border-bottom:
            1px solid rgba(255, 255, 255, 0.07);
    }

    .adp-sp-process-item:nth-child(-n+3) {
        border-bottom:
            1px solid rgba(255, 255, 255, 0.07);
    }

    .adp-sp-process-item:last-child {
        border-bottom: 0;
    }

    .adp-sp-process-item > span {
        margin-bottom: 25px;
    }


    /* CTA */

    .adp-sp-final-cta {
        padding: 20px 0 75px;
    }

    .adp-sp-final-card {
        padding: 32px 25px;

        border-radius: 20px;
    }

    .adp-sp-final-card h2 {
        font-size: 36px;

        letter-spacing: -1.2px;
    }

    .adp-sp-final-actions {
        flex-direction: column;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .adp-sp-hero h1 {
        font-size: 38px;
    }

    .adp-sp-hero-trust > div {
        padding: 0 10px;
    }

    .adp-sp-hero-trust strong {
        font-size: 18px;
    }

    .adp-sp-hero-trust span {
        font-size: 8px;
    }

    .adp-sp-floating-card {
        min-width: 105px;
    }

    .adp-sp-floating-card strong {
        font-size: 9px;
    }

}
/* =========================================================
   SERVICES CARDS - CONTENT SIZE
   ========================================================= */

/* Service category */
.adp-service-card .adp-service-category {
    font-size: 30px !important;
    letter-spacing: 1.8px;
    font-weight: 900;
}


/* Service title */
.adp-service-card h3 {
    font-size: 38px !important;
    line-height: 1.25 !important;
    margin-bottom: 14px !important;
}


/* Description */
.adp-service-card p {
    font-size: 28px !important;
    line-height: 1.75 !important;
    color: #a7a7a7;
    margin-bottom: 20px !important;
}


/* Checklist */
.adp-service-card li {
    font-size: 18px !important;
    line-height: 1.7 !important;
    margin-bottom: 8px !important;
}


/* Check mark */
.adp-service-card li::before {
    font-size: 20px !important;
}


/* Explore Service */
.adp-service-card .adp-service-link {
    font-size: 22px !important;
    font-weight: 800;
}


/* Number */
.adp-service-card .adp-service-number {
    font-size: 24px !important;
}


/* Mobile */
@media (max-width: 768px) {

    .adp-service-card h3 {
        font-size: 24px !important;
    }

    .adp-service-card p {
        font-size: 18px !important;
    }

    .adp-service-card li {
        font-size: 16px !important;
    }

}
/* =========================================================
   SERVICES PAGE - READABLE CONTENT SIZE
   ========================================================= */

/* Service description */
.adp-service-card p {
    font-size: 17px !important;
    line-height: 1.75 !important;
    font-weight: 400;
}


/* Service feature list */
.adp-service-card ul {
    margin-top: 20px !important;
}


.adp-service-card li {
    font-size: 16px !important;
    line-height: 1.7 !important;
    margin-bottom: 10px !important;
}


/* Check mark */
.adp-service-card li::before {
    font-size: 15px !important;
}


/* Explore Service */
.adp-service-card a {
    font-size: 15px !important;
}


/* Category */
.adp-service-card .adp-service-category {
    font-size: 13px !important;
    letter-spacing: 1.7px !important;
}


/* Service title */
.adp-service-card h3 {
    font-size: 25px !important;
    line-height: 1.25 !important;
}


/* =========================================================
   ALL OTHER SERVICES PAGE TEXT
   ========================================================= */

.adp-services-page p {
    font-size: 17px;
    line-height: 1.75;
}


.adp-services-page li {
    font-size: 16px;
    line-height: 1.7;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .adp-service-card p {
        font-size: 16px !important;
    }

    .adp-service-card li {
        font-size: 15px !important;
    }

    .adp-service-card h3 {
        font-size: 23px !important;
    }

}
/* =========================================================
   SERVICES CARDS - PREMIUM HOVER EFFECT
   ========================================================= */

.adp-service-card {
    position: relative;
    overflow: hidden;
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease;
}


/* Soft gold light inside card */

.adp-service-card::before {
    content: "";
    position: absolute;

    width: 220px;
    height: 220px;

    right: -110px;
    bottom: -120px;

    background: radial-gradient(
        circle,
        rgba(217, 173, 43, 0.16) 0%,
        rgba(217, 173, 43, 0) 70%
    );

    pointer-events: none;

    opacity: 0;

    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
}


/* Keep content above glow */

.adp-service-card > * {
    position: relative;
    z-index: 2;
}


/* Hover */

.adp-service-card:hover {
    transform: translateY(-7px);

    border-color:
        rgba(217, 173, 43, 0.55) !important;

    box-shadow:
        0 20px 55px rgba(0, 0, 0, 0.45),
        0 0 35px rgba(217, 173, 43, 0.07);
}


.adp-service-card:hover::before {
    opacity: 1;
    transform: scale(1.25);
}


/* =========================================================
   SERVICE ICON
   ========================================================= */

.adp-service-card .adp-service-icon {
    transition:
        transform 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease;
}


.adp-service-card:hover
.adp-service-icon {
    transform: translateY(-3px);

    background:
        rgba(217, 173, 43, 0.12);

    border-color:
        rgba(217, 173, 43, 0.55);
}


/* =========================================================
   SERVICE TITLE
   ========================================================= */

.adp-service-card h3 {
    transition: color 0.3s ease;
}


.adp-service-card:hover h3 {
    color: #f0c83d;
}


/* =========================================================
   EXPLORE SERVICE
   ========================================================= */

.adp-service-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    transition:
        color 0.3s ease,
        gap 0.3s ease;
}


.adp-service-card a:hover {
    color: #f0c83d !important;
    gap: 13px;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .adp-service-card:hover {
        transform: translateY(-3px);
    }

}
/* =========================================
   AEO / GEO SERVICE LINKS
========================================= */

.adp-sp-service-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 10px;

    margin: 20px 0 26px;
}

.adp-sp-service-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 7px 13px;

    border: 1px solid rgba(214, 168, 46, 0.35);
    border-radius: 30px;

    color: #d6a82e;
    background: rgba(214, 168, 46, 0.04);

    font-size: 11px;
    font-weight: 600;

    text-decoration: none;

    transition: all 0.25s ease;
}

.adp-sp-service-links a:hover {
    color: #ffffff;
    border-color: #d6a82e;
    background: rgba(214, 168, 46, 0.10);
}


@media (max-width: 600px) {

    .adp-sp-service-links {
        gap: 6px 7px;
        margin: 16px 0 22px;
    }

    .adp-sp-service-links a {
        padding: 6px 10px;
        font-size: 10px;
    }

}
.adp-sp-hero-content > p strong {
    color: #e0ad32;
}