/* =========================================================
   DATANET HOSTING SERVICES PAGE
   File: public/assets/css/services.css

   Designed to match the GPU page visual language:
   - Blue enterprise palette
   - Same section rhythm
   - Same cards / buttons / shadows
   - Same responsive breakpoints
========================================================= */

:root {
    --services-primary: #0B5ED7;
    --services-primary-dark: #084298;
    --services-secondary: #123D99;
    --services-dark: #111827;
    --services-text: #4B5563;
    --services-light: #F5F7FA;
    --services-white: #FFFFFF;
    --services-border: #E5E7EB;
    --services-success: #16A34A;
}


p a{
    color:#ff7a00;
}

/* =========================================================
   GLOBAL
========================================================= */

.services-hero *,
.services-stats-section *,
.services-list-section *,
.services-why-section *,
.services-process-section *,
.services-cta-section * {
    box-sizing: border-box;
}

.services-hero,
.services-stats-section,
.services-list-section,
.services-why-section,
.services-process-section,
.services-cta-section {
    font-family: inherit;
}

.services-hero a,
.services-stats-section a,
.services-list-section a,
.services-why-section a,
.services-process-section a,
.services-cta-section a {
    text-decoration: none;
}

.services-hero img,
.services-list-section img {
    max-width: 100%;
}


/* =========================================================
   COMMON SECTION HEADING
========================================================= */

.services-section-heading {
    max-width: 850px;
    margin: 0 auto 35px;
    text-align: center;
}

.services-section-badge,
.services-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid rgba(11, 94, 215, 0.15);
    border-radius: 50px;
    background: rgba(11, 94, 215, 0.08);
    color: var(--services-primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.services-section-heading h2,
.services-why-content h2,
.services-cta-content h2 {
    margin: 8px 0 12px;
    color: var(--services-dark);
    font-size: 36px;
    line-height: 1.2;
}

.services-section-heading h2 span,
.services-why-content h2 span,
.services-cta-content h2 span {
    color: var(--services-primary);
}

.services-section-heading p,
.services-why-content > p,
.services-cta-content p {
    margin: 0;
    color: var(--services-text);
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   BUTTONS
========================================================= */

.services-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 13px 25px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.services-btn-primary {
    background: linear-gradient(
        135deg,
        var(--services-primary),
        var(--services-secondary)
    );
    color: var(--services-white);
    box-shadow: 0 12px 30px rgba(11, 94, 215, 0.22);
}

.services-btn-primary:hover {
    color: var(--services-white);
    transform: translateY(-3px);
    box-shadow: 0 18px 35px rgba(11, 94, 215, 0.3);
}

.services-btn-outline {
    border: 1px solid var(--services-border);
    background: var(--services-white);
    color: var(--services-dark);
}

.services-btn-outline:hover {
    border-color: var(--services-primary);
    color: var(--services-primary);
    transform: translateY(-3px);
}

.services-btn-light {
    background: var(--services-white);
    color: var(--services-primary);
}

.services-btn-light:hover {
    background: transparent;
    border: 1px solid #ffffff;
    color: var(--services-white);
    transform: translateY(-3px);
}

.services-btn-cta-outline {
    border: 1px solid rgba(255,255,255,0.35);
    background: transparent;
    color: var(--services-white);
}

.services-btn-cta-outline:hover {
    background: var(--services-white);
    color: var(--services-primary);
    transform: translateY(-3px);
}


/* =========================================================
   HERO
========================================================= */

.services-hero {
    position: relative;
    overflow: hidden;
    padding: 30px 0;
    background:
        radial-gradient(
            circle at 78% 45%,
            rgba(11, 94, 215, 0.16),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f5f8ff 55%,
            #edf4ff 100%
        );
}

.services-hero-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(400px, 0.9fr);
    align-items: center;
    gap: 70px;
}

.services-hero-content {
    max-width: 850px;
}

.services-hero-content h1 {
    margin: 22px 0;
    color: var(--services-dark);
    font-size: 40px;
    line-height: 1.08;
}

.services-hero-content h1 span {
    display: block;
    color: var(--services-primary);
}

.services-hero-description {
    max-width: 820px;
    margin: 0;
    color: var(--services-text);
    font-size: 16px;
    line-height: 1.8;
}

.services-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.services-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 24px;
    margin-top: 28px;
}

.services-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--services-text);
    font-size: 13px;
    font-weight: 500;
}

.services-trust-item i {
    color: var(--services-success);
}



/* ==================================================
CONSULTATION FORM (REDESIGNED)
================================================== */

.service-hero-form {
    position: relative;
    overflow: hidden;
    background: var(--services-white);
    border: 1px solid var(--services-border);
    border-radius: 22px;
    padding: 20px 30px;
    box-shadow: 0 30px 70px rgba(11, 61, 153, 0.14);
}

.service-hero-form::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(
        90deg,
        var(--services-primary),
        var(--services-secondary)
    );
}

.service-hero-form p {
    position: relative;
    color: var(--services-dark);
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 6px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--services-border);
}

.service-hero-form form {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
}

.service-hero-form input,
.service-hero-form select,
.service-hero-form textarea {
    width: 100%;
    border-radius: 10px;
    border: 1.5px solid var(--services-border);
    background: var(--services-light);
    color: var(--services-dark);
    font-size: 14px;
    padding: 10px 20px;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.service-hero-form input:hover,
.service-hero-form select:hover,
.service-hero-form textarea:hover {
    border-color: rgba(11, 94, 215, 0.4);
}

.service-hero-form input:focus,
.service-hero-form select:focus,
.service-hero-form textarea:focus {
    background: var(--services-white);
    border-color: var(--services-primary);
    box-shadow: 0 0 0 4px rgba(11, 94, 215, 0.14);
}

.service-hero-form select {
    background: var(--services-light);
    color: var(--services-dark);
    border: 1.5px solid var(--services-border);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%234B5563' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 42px;
}

.service-hero-form select option {
    color: var(--services-dark);
    background: var(--services-white);
}

.service-hero-form select option:hover,
.service-hero-form select option:checked {
    background: rgba(11, 94, 215, 0.1) !important;
    color: var(--services-primary) !important;
}

.service-hero-form textarea {
    resize: none;
    min-height: 90px;
    line-height: 1.6;
}

.service-hero-form input::placeholder,
.service-hero-form textarea::placeholder {
    color: #94A3B8;
}

.service-consult-btn {
    padding: 16px;
    margin-top: 4px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(
        135deg,
        var(--services-primary),
        var(--services-secondary)
    );
    color: var(--services-white);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.2px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 15px 35px rgba(11, 94, 215, 0.28);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-consult-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.25),
        transparent
    );
    transition: 0.6s;
}

.service-consult-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(11, 94, 215, 0.38);
}

.service-consult-btn:hover::before {
    left: 100%;
}

.response-time {
    display: block;
    text-align: center;
    color: var(--gpu-text);
    font-size: 12.5px;
    margin-top: 16px;
}


/* =========================================================
   HERO VISUAL
========================================================= */

.services-hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 480px;
}

.services-visual-glow {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: rgba(11, 94, 215, 0.12);
    filter: blur(40px);
}

.services-main-card {
    position: relative;
    z-index: 2;
    width: min(100%, 440px);
    padding: 28px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 24px;
    background: linear-gradient(
        145deg,
        #123D99,
        #071B47
    );
    box-shadow: 0 35px 80px rgba(5, 27, 71, 0.28);
}

.services-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.services-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255,255,255,0.12);
    color: var(--services-white);
    font-size: 22px;
}

.services-card-header span {
    display: block;
    margin-bottom: 4px;
    color: rgba(255,255,255,0.65);
    font-size: 10px;
    letter-spacing: 1px;
}

.services-card-header strong {
    color: var(--services-white);
    font-size: 17px;
}


/* =========================================================
   HERO ORBIT
========================================================= */

.services-orbit {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 265px;
    margin: 20px 0;
}

.services-orbit-ring {
    position: absolute;
    border-radius: 50%;
}

.services-orbit-ring-one {
    width: 230px;
    height: 230px;
    border: 1px solid rgba(255,255,255,0.09);
}

.services-orbit-ring-two {
    width: 170px;
    height: 170px;
    border: 1px dashed rgba(255,255,255,0.22);
    animation: servicesRotate 20s linear infinite;
}

.services-orbit-center {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    border: 8px solid rgba(255,255,255,0.06);
    border-radius: 22px;
    background: linear-gradient(
        135deg,
        var(--services-primary),
        #071B47
    );
    color: var(--services-white);
    box-shadow: 0 0 45px rgba(11,94,215,0.55);
}

.services-orbit-center i {
    margin-bottom: 7px;
    font-size: 30px;
}

.services-orbit-center span {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 2px;
}

.services-orbit-node {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    background: rgba(255,255,255,0.10);
    color: var(--services-white);
    font-size: 17px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.16);
}

.node-one {
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
}

.node-two {
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
}

.node-three {
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
}

.node-four {
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
}

.services-card-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.services-card-stats > div {
    padding: 13px 8px;
    border-radius: 10px;
    background: rgba(255,255,255,0.07);
    text-align: center;
}

.services-card-stats strong {
    display: block;
    color: var(--services-white);
    font-size: 15px;
}

.services-card-stats span {
    display: block;
    margin-top: 4px;
    color: rgba(255,255,255,0.60);
    font-size: 10px;
}


/* =========================================================
   STATS
========================================================= */

.services-stats-section {
    position: relative;
    z-index: 3;
    margin-top: -35px;
}

.services-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin: 10px 0;
}

.services-stat-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 22px;
    border: 1px solid var(--services-border);
    border-radius: 12px;
    background: var(--services-white);
    box-shadow: 0 10px 35px rgba(17,24,39,0.07);
    transition: all 0.3s ease;
}

.services-stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(11,94,215,0.35);
}

.services-stat-icon {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(11,94,215,0.09);
    color: var(--services-primary);
    font-size: 21px;
}

.services-stat-card strong {
    display: block;
    color: var(--services-dark);
    font-size: 15px;
}

.services-stat-card span {
    display: block;
    margin-top: 4px;
    color: var(--services-text);
    font-size: 11px;
}


/* =========================================================
   SERVICE LIST
========================================================= */

.services-list-section {
    padding: 30px 0 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    /* min-height: 200px; */
    padding: 15px;
    overflow: hidden;
    border: 1px solid var(--services-border);
    border-radius: 16px;
    background: var(--services-white);
    transition: all 0.35s ease;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            135deg,
            rgba(11,94,215,0.08),
            rgba(18,61,153,0.02)
        );
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(11,94,215,0.35);
    /* box-shadow: 0 20px 50px rgba(17,24,39,0.10); */
}

.service-card-featured {
    border-color: var(--services-primary);
    /*box-shadow: 0 15px 40px rgba(11,94,215,0.10);*/
}

.service-card-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
}

.service-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 13px;
    background: rgba(11,94,215,0.08);
    color: var(--services-primary);
    font-size: 22px;
}

.service-card-tag {
    padding: 6px 10px;
    border-radius: 5px;
    background: rgba(11,94,215,0.08);
    color: var(--services-primary);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.7px;
}

.service-card h3 {
    position: relative;
    z-index: 2;
    margin: 0 0 12px;
    color: var(--services-dark);
    /* height: 40px; */
    font-size: 18px;
    line-height: 1.3;
}

.service-card p {
    position: relative;
    z-index: 2;
    flex: 1;
    margin: 0 0 10px;
    color: var(--services-text);
    font-size: 14px;
    line-height: 1.75;
}

.service-card-link {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    color: var(--services-primary);
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.service-card-link:hover {
    color: var(--services-primary-dark);
    gap: 13px;
}


/* =========================================================
   WHY SECTION
========================================================= */

.services-why-section {
    padding: 30px 0;
    background: var(--services-light);
}

.services-why-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(400px, 0.9fr);
    align-items: center;
    gap: 75px;
}

.services-feature-list {
    margin-top: 20px;
}

.services-feature-item {
    display: flex;
    gap: 17px;
    margin-bottom: 10px;
}

.services-feature-icon {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(11,94,215,0.08);
    color: var(--services-primary);
    font-size: 19px;
}

.services-feature-item h3 {
    margin: 0 0 6px;
    color: var(--services-dark);
    font-size: 17px;
}

.services-feature-item p {
    margin: 0;
    color: var(--services-text);
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   PERFORMANCE CARD
========================================================= */

.services-performance-card {
    width: 100%;
    max-width: 500px;
    padding: 32px;
    border-radius: 20px;
    background: linear-gradient(
        145deg,
        #123D99,
        #071B47
    );
    box-shadow: 0 30px 70px rgba(5,27,71,0.20);
}

.services-performance-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    color: var(--services-white);
}

.services-performance-header span {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.services-performance-header i {
    font-size: 24px;
}

.services-performance-bar {
    display: grid;
    grid-template-columns: 105px 1fr 40px;
    align-items: center;
    gap: 12px;
    margin-bottom: 21px;
}

.services-performance-bar > span {
    color: rgba(255,255,255,0.75);
    font-size: 11px;
}

.services-performance-bar > div {
    height: 8px;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255,255,255,0.12);
}

.services-performance-bar > div span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: var(--services-white);
}

.services-performance-bar strong {
    color: var(--services-white);
    font-size: 11px;
    text-align: right;
}


/* =========================================================
   PROCESS
========================================================= */

.services-process-section {
    padding: 55px 0;
}

.services-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.services-process-card {
    position: relative;
    padding: 28px 24px;
    border: 1px solid var(--services-border);
    border-radius: 15px;
    background: var(--services-white);
    transition: all 0.3s ease;
}

.services-process-card:hover {
    transform: translateY(-7px);
    border-color: rgba(11,94,215,0.30);
    box-shadow: 0 20px 45px rgba(17,24,39,0.08);
}

.services-process-number {
    position: absolute;
    top: 20px;
    right: 20px;
    color: rgba(11,94,215,0.14);
    font-size: 30px;
    font-weight: 800;
}

.services-process-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
    border-radius: 12px;
    background: rgba(11,94,215,0.08);
    color: var(--services-primary);
    font-size: 20px;
}

.services-process-card h3 {
    margin: 0 0 9px;
    color: var(--services-dark);
    font-size: 18px;
}

.services-process-card p {
    margin: 0;
    color: var(--services-text);
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   CTA
========================================================= */

.services-cta-section {
    padding: 70px 0;
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(255,255,255,0.12),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            var(--services-secondary),
            var(--services-primary-dark)
        );
}

.services-cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.services-cta-content {
    max-width: 760px;
}

.services-cta-content .services-section-badge {
    border-color: rgba(255,255,255,0.20);
    background: rgba(255,255,255,0.10);
    color: var(--services-white);
}

.services-cta-content h2 {
    color: var(--services-white);
}

.services-cta-content h2 span {
    color: #BCD8FF;
}

.services-cta-content p {
    color: rgba(255,255,255,0.76);
}

.services-cta-buttons {
    display: flex;
    flex-shrink: 0;
    flex-wrap: wrap;
    gap: 13px;
}


/* =========================================================
   ANIMATION
========================================================= */

@keyframes servicesRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


/* =========================================================
   3840px - 4K
========================================================= */

@media (min-width: 2561px) and (max-width: 3840px) {

    .services-hero {
        padding: 50px 0;
    }

    .services-hero-content h1 {
        font-size: 52px;
    }

    .services-section-heading h2,
    .services-why-content h2,
    .services-cta-content h2 {
        font-size: 42px;
    }

    .services-grid {
        gap: 28px;
    }

    .service-card {
        padding: 32px;
    }

    .services-list-section,
    .services-why-section,
    .services-process-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}


/* =========================================================
   2560px
========================================================= */

@media (min-width: 1921px) and (max-width: 2560px) {

    .services-hero {
        padding: 45px 0;
    }

    .services-hero-content h1 {
        font-size: 48px;
    }

    .services-section-heading h2,
    .services-why-content h2,
    .services-cta-content h2 {
        font-size: 40px;
    }

    .services-grid {
        gap: 25px;
    }
}


/* =========================================================
   1920px
========================================================= */

@media (max-width: 1920px) {

    .services-hero-content h1 {
        font-size: 40px;
    }
}


/* =========================================================
   1440px
========================================================= */

@media (max-width: 1440px) {

    .services-hero-wrapper {
        gap: 50px;
    }

    .services-grid {
        gap: 18px;
    }

    .services-why-wrapper {
        gap: 55px;
    }
}


/* =========================================================
   1366px
========================================================= */

@media (max-width: 1366px) {

    .services-section-heading h2,
    .services-why-content h2,
    .services-cta-content h2 {
        font-size: 30px;
    }

    .services-hero-content h1 {
        font-size: 35px;
    }

    .services-process-grid {
        gap: 16px;
    }
}


/* =========================================================
   1280px
========================================================= */

@media (max-width: 1280px) {

    .services-hero {
        padding: 30px 0;
    }

    .services-hero-wrapper {
        grid-template-columns: minmax(0, 1.5fr) minmax(360px, 0.9fr);
        gap: 40px;
    }

    .services-hero-content h1 {
        font-size: 33px;
    }

     .service-hero-form {
        padding: 30px 28px;
    }

    .services-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .services-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* =========================================================
   1024px
========================================================= */

@media (max-width: 1024px) {

    .services-hero {
        padding: 30px 0;
    }

    .services-hero-wrapper {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .services-hero-content {
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
    }

    .services-hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .service-hero-form {
        max-width: 480px;
        margin: 0 auto;
    }

    .services-hero-buttons,
    .services-trust {
        justify-content: center;
    }

    .services-hero-visual {
        min-height: auto;
    }

    .services-main-card {
        max-width: 470px;
    }

    .services-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-why-wrapper {
        grid-template-columns: 1fr;
    }

    .services-why-content {
        max-width: 800px;
        margin: auto;
    }

    .services-performance-card {
        margin: 0 auto;
    }

    .services-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-cta-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* =========================================================
   768px
========================================================= */

@media (max-width: 768px) {

    .services-hero {
        padding: 20px 0;
    }

    .services-hero-wrapper {
        gap: 25px;
    }

    .services-hero-content h1 {
        font-size: 30px;
    }

        .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-section-heading h2,
    .services-why-content h2,
    .services-cta-content h2 {
        font-size: 28px;
    }

    .services-section-heading p,
    .services-why-content > p,
    .services-cta-content p {
        font-size: 15px;
    }

    .services-stats-section {
        margin-top: 0;
        padding-top: 20px;
    }

    .services-list-section,
    .services-why-section,
    .services-process-section {
        padding: 50px 0;
    }

    .services-grid {
        max-width: 650px;
        margin: auto;
    }

    .services-process-grid {
        max-width: 650px;
        margin: auto;
    }

    .services-cta-section {
        padding: 55px 0;
    }

    .services-cta-buttons {
        width: 100%;
    }

    .service-hero-form {
        max-width: 100%;
        padding: 28px 24px;
        border-radius: 18px;
    }

     .service-hero-form p {
        font-size: 19px;
        text-align: center;
    }

    .service-hero-form form {
        gap: 14px;
    }

}


/* =========================================================
   576px
========================================================= */

@media (max-width: 576px) {

    .services-badge,
    .services-section-badge {
        padding: 7px 12px;
        font-size: 10px;
    }

    .services-hero-content h1 {
        font-size: 28px;
    }

    .services-hero-buttons {
        flex-direction: column;
    }

    .services-btn {
        width: 100%;
    }

    .services-trust {
        align-items: flex-start;
        flex-direction: column;
        gap: 11px;
    }

    .services-main-card {
        padding: 20px;
        border-radius: 18px;
    }

    .services-orbit {
        height: 220px;
    }

    .services-orbit-ring-one {
        width: 195px;
        height: 195px;
    }

    .services-orbit-ring-two {
        width: 145px;
        height: 145px;
    }

    .services-orbit-center {
        width: 105px;
        height: 105px;
    }

    .services-orbit-center i {
        font-size: 25px;
    }

    .services-orbit-node {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }

    .service-hero-form {
        padding: 24px 18px;
        border-radius: 16px;
    }

    .service-hero-form p {
        font-size: 17px;
        padding-bottom: 12px;
    }

    .service-hero-form input,
    .service-hero-form select,
    .service-hero-form textarea {
        padding: 10px 14px;
        font-size: 14px;
    }

    .service-consult-btn {
        padding: 14px;
        font-size: 14px;
    }

    .node-two {
        right: 8px;
    }

    .node-four {
        left: 8px;
    }

    .services-stats-grid,
    .services-grid,
    .services-process-grid {
        grid-template-columns: 1fr;
    }

    .services-stat-card {
        padding: 20px;
    }

    .service-card {
        min-height: auto;
        padding: 22px;
    }

    .services-performance-card {
        padding: 25px;
    }

    .services-performance-bar {
        grid-template-columns: 90px 1fr 35px;
        gap: 8px;
    }

    .services-cta-buttons {
        flex-direction: column;
    }
}


/* =========================================================
   480px
========================================================= */

@media (max-width: 480px) {

    .services-hero-content h1 {
        font-size: 27px;
    }

    .services-hero-description {
        font-size: 14px;
    }

    .services-section-heading h2,
    .services-why-content h2,
    .services-cta-content h2 {
        font-size: 26px;
    }

    .services-section-heading p,
    .services-why-content > p,
    .services-cta-content p {
        font-size: 14px;
    }

    .services-card-stats {
        grid-template-columns: 1fr;
    }

    .services-orbit {
        height: 205px;
        margin: 12px 0;
    }

    .services-orbit-ring-one {
        width: 180px;
        height: 180px;
    }

    .services-orbit-ring-two {
        width: 135px;
        height: 135px;
    }

    .services-orbit-center {
        width: 95px;
        height: 95px;
    }

    .services-orbit-node {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }

    .services-feature-item {
        align-items: flex-start;
    }

    .services-performance-bar {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .services-performance-bar strong {
        text-align: left;
    }

    .services-cta-section {
        padding: 50px 0;
    }

    .service-hero-form {
        padding: 20px 16px;
        border-radius: 14px;
    }

    .service-hero-form form {
        gap: 12px;
    }

    .service-hero-form textarea {
        min-height: 75px;
    }

    .response-time {
        font-size: 11.5px;
    }
}


/* =========================================================
   375px
========================================================= */

@media (max-width: 375px) {

    .services-hero {
        padding: 18px 0;
    }

    .services-hero-content h1 {
        font-size: 25px;
    }

    .services-section-heading h2,
    .services-why-content h2,
    .services-cta-content h2 {
        font-size: 24px;
    }

    .services-hero-description,
    .services-section-heading p {
        font-size: 13.5px;
    }

    .services-main-card {
        padding: 16px;
    }

    .services-card-header strong {
        font-size: 15px;
    }

    .services-card-header span {
        font-size: 8px;
    }

    .services-orbit {
        height: 185px;
    }

    .services-orbit-ring-one {
        width: 160px;
        height: 160px;
    }

    .services-orbit-ring-two {
        width: 120px;
        height: 120px;
    }

    .services-orbit-center {
        width: 88px;
        height: 88px;
    }

    .services-orbit-center i {
        font-size: 22px;
    }

    .services-orbit-center span {
        font-size: 16px;
    }

    .service-hero-form p {
        font-size: 16px;
    }

    .service-hero-form input,
    .service-hero-form select,
    .service-hero-form textarea {
        padding: 10px 13px;
        font-size: 13.5px;
    }

    .node-two {
        right: 0;
    }

    .node-four {
        left: 0;
    }

    .service-card {
        padding: 20px;
    }

    .services-performance-card {
        padding: 20px;
    }
}