/* =========================================================
   SHOP ACT PAGE
   PROFESSIONAL BLUE CONSULTANCY THEME
========================================================= */

:root {

    --blue-950: #06152f;
    --blue-900: #08275c;
    --blue-800: #0b3b82;
    --blue-700: #0d4fa3;
    --blue-600: #1261c9;
    --blue-500: #1976d2;
    --blue-400: #3189df;
    --blue-100: #eaf3ff;
    --blue-50: #f4f8ff;

    --white: #ffffff;
    --black: #101828;

    --text: #26364d;
    --text-light: #667085;
    --border: #e1e8f2;

    --bg: #ffffff;
    --bg-light: #f6f9fd;

    --shadow-sm: 0 4px 18px rgba(11, 59, 130, 0.07);
    --shadow-md: 0 12px 35px rgba(11, 59, 130, 0.11);
    --shadow-lg: 0 22px 55px rgba(6, 21, 47, 0.16);

    --radius: 12px;
    --container: 1200px;

}


/* =========================================================
   RESET
========================================================= */

.shop-hero *,
.shop-hero *::before,
.shop-hero *::after,
section *,
section *::before,
section *::after {

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    margin: 0;

    background: var(--bg);

    color: var(--text);

    font-family: "Inter", sans-serif;

    overflow-x: hidden;

}


img {

    max-width: 100%;

    display: block;

}


a {

    color: inherit;

}


button,
input,
select,
textarea {

    font: inherit;

}


/* =========================================================
   CONTAINER
========================================================= */

.container {

    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin: 0 auto;

}


/* =========================================================
   COMMON SECTION
========================================================= */

.section-pad {

    padding: 100px 0;

}


.section-pad-sm {

    padding: 80px 0;

}


.section-heading {

    max-width: 760px;

    margin: 0 auto 55px;

    text-align: center;

}


.section-label {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--blue-700);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;

    margin-bottom: 13px;

}


.section-title {

    margin: 0;

    color: var(--blue-950);

    font-family: "Manrope", sans-serif;

    font-size: clamp(
        30px,
        4vw,
        46px
    );

    line-height: 1.15;

    font-weight: 800;

}


.section-title span {

    color: var(--blue-600);

}


.section-subtitle {

    margin: 18px auto 0;

    max-width: 720px;

    color: var(--text-light);

    font-size: 16px;

    line-height: 1.8;

}


.blue-divider {

    width: 60px;

    height: 4px;

    margin: 20px 0;

    border-radius: 20px;

    background:
        linear-gradient(
            90deg,
            var(--blue-900),
            var(--blue-500)
        );

}


.blue-divider.center {

    margin-left: auto;
    margin-right: auto;

}


.light-label {

    color: #8ec5ff !important;

}


.light {

    color: white !important;

}


.light-divider {

    background:
        linear-gradient(
            90deg,
            #3189df,
            #8ec5ff
        );

}


/* =========================================================
   HERO
========================================================= */

.shop-hero {

    position: relative;

    min-height: 650px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            115deg,
            rgba(3, 20, 49, .96),
            rgba(7, 52, 116, .90)
        ),
        url("../assets/shop-act-hero.webp")
        center / cover no-repeat;

}


.hero-overlay {

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(49,137,223,.28),
            transparent 35%
        );

    pointer-events: none;

}


.hero-container {

    position: relative;

    z-index: 2;

}


.hero-content {

    max-width: 820px;

    padding: 90px 0;

}


.hero-breadcrumb {

    display: flex;

    flex-wrap: wrap;

    align-items: center;

    gap: 9px;

    color: rgba(255,255,255,.65);

    font-size: 13px;

    margin-bottom: 25px;

}


.hero-breadcrumb a {

    color: #9bc9ff;

    text-decoration: none;

}


.hero-label {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 9px 15px;

    border: 1px solid rgba(255,255,255,.18);

    border-radius: 30px;

    color: #a9d2ff;

    background: rgba(255,255,255,.07);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.hero-content h1 {

    margin: 22px 0 20px;

    color: white;

    font-family: "Manrope", sans-serif;

    font-size: clamp(
        42px,
        6vw,
        72px
    );

    line-height: 1.06;

    letter-spacing: -2px;

    font-weight: 800;

}


.hero-content h1 span {

    display: block;

    color: #65aef5;

}


.hero-content > p {

    max-width: 690px;

    margin: 0;

    color: rgba(255,255,255,.78);

    font-size: 18px;

    line-height: 1.8;

}


.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 14px;

    margin-top: 32px;

}


.btn-primary,
.btn-outline {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    min-height: 50px;

    padding: 0 23px;

    border-radius: 7px;

    font-size: 13px;

    font-weight: 700;

    text-decoration: none;

    transition:
        .3s ease;

}


.btn-primary {

    color: white;

    border: 1px solid var(--blue-600);

    background:
        linear-gradient(
            135deg,
            var(--blue-600),
            var(--blue-800)
        );

    box-shadow:
        0 10px 25px
        rgba(18,97,201,.25);

}


.btn-primary:hover {

    color: white;

    transform: translateY(-3px);

    box-shadow:
        0 15px 32px
        rgba(18,97,201,.35);

}


.btn-outline {

    color: white;

    border: 1px solid rgba(255,255,255,.38);

    background: rgba(255,255,255,.06);

}


.btn-outline:hover {

    color: white;

    border-color: #8ec5ff;

    background: rgba(255,255,255,.12);

}


.hero-trust {

    display: flex;

    flex-wrap: wrap;

    gap: 45px;

    margin-top: 50px;

}


.hero-trust div {

    display: flex;

    flex-direction: column;

    gap: 4px;

}


.hero-trust strong {

    color: white;

    font-size: 25px;

    font-weight: 800;

}


.hero-trust span {

    color: rgba(255,255,255,.58);

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 1px;

}


/* =========================================================
   INTRO
========================================================= */

.intro-section {

    background: white;

}


.intro-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 85px;

    align-items: center;

}


.intro-content .lead-text {

    color: var(--blue-900);

    font-size: 19px;

    line-height: 1.75;

    font-weight: 600;

}


.intro-content p {

    color: var(--text-light);

    font-size: 15px;

    line-height: 1.85;

}


.intro-points {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 13px;

    margin-top: 28px;

}


.intro-points div {

    display: flex;

    align-items: center;

    gap: 10px;

    color: var(--text);

    font-size: 13px;

    font-weight: 600;

}


.intro-points i {

    color: var(--blue-600);

}


.image-frame {

    position: relative;

    overflow: visible;

}


.image-frame::before {

    content: "";

    position: absolute;

    width: 90%;

    height: 90%;

    right: -20px;

    bottom: -20px;

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            var(--blue-600),
            var(--blue-900)
        );

    z-index: 0;

}


.image-frame img {

    position: relative;

    z-index: 1;

    width: 100%;

    height: 550px;

    object-fit: cover;

    border-radius: 15px;

    box-shadow: var(--shadow-lg);

}


.image-badge {

    position: absolute;

    right: -20px;

    top: 35px;

    z-index: 3;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 15px 20px;

    color: white;

    background: var(--blue-800);

    border-radius: 10px;

    box-shadow: var(--shadow-md);

}


.image-badge strong {

    font-size: 30px;

}


.image-badge span {

    font-size: 11px;

    line-height: 1.4;

    color: rgba(255,255,255,.75);

}


/* =========================================================
   SERVICES
========================================================= */

.services-section {

    background: var(--bg-light);

}


.service-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;

}


.service-card {

    position: relative;

    padding: 32px 28px;

    border: 1px solid var(--border);

    border-radius: 12px;

    background: white;

    box-shadow: var(--shadow-sm);

    overflow: hidden;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;

}


.service-card::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;

    height: 3px;

    background:
        linear-gradient(
            90deg,
            var(--blue-900),
            var(--blue-400)
        );

    transform: scaleX(0);

    transform-origin: left;

    transition: .3s ease;

}


.service-card:hover {

    transform: translateY(-7px);

    border-color: #bfd8f5;

    box-shadow: var(--shadow-md);

}


.service-card:hover::before {

    transform: scaleX(1);

}


.service-icon {

    width: 54px;

    height: 54px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 22px;

    border-radius: 10px;

    color: var(--blue-700);

    background: var(--blue-50);

    font-size: 22px;

}


.service-card h3 {

    margin: 0 0 12px;

    color: var(--blue-950);

    font-family: "Manrope", sans-serif;

    font-size: 18px;

}


.service-card p {

    min-height: 82px;

    margin: 0 0 20px;

    color: var(--text-light);

    font-size: 13px;

    line-height: 1.75;

}


.service-card a {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--blue-600);

    font-size: 12px;

    font-weight: 800;

    text-decoration: none;

}


/* =========================================================
   WHY CHOOSE
========================================================= */

.why-section {

    background: white;

}


.why-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 80px;

    align-items: center;

}


.why-image {

    position: relative;

}


.why-image::after {

    content: "";

    position: absolute;

    left: -20px;

    bottom: -20px;

    width: 65%;

    height: 65%;

    border: 3px solid #c9e1fb;

    border-radius: 15px;

    z-index: 0;

}


.why-image img {

    position: relative;

    z-index: 1;

    width: 100%;

    height: 600px;

    object-fit: cover;

    border-radius: 15px;

    box-shadow: var(--shadow-lg);

}


.why-content {

    padding-left: 10px;

}


.why-item {

    display: grid;

    grid-template-columns: 52px 1fr;

    gap: 18px;

    margin-bottom: 25px;

}


.why-icon {

    width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 10px;

    color: var(--blue-700);

    background: var(--blue-50);

    font-size: 19px;

}


.why-item h4 {

    margin: 0 0 7px;

    color: var(--blue-950);

    font-size: 15px;

}


.why-item p {

    margin: 0;

    color: var(--text-light);

    font-size: 13px;

    line-height: 1.7;

}


/* =========================================================
   TIMELINE
========================================================= */

.timeline-section {

    background:
        linear-gradient(
            135deg,
            #061a3b,
            #0a4089
        );

}


.timeline-grid {

    display: grid;

    grid-template-columns:
        1.15fr .85fr;

    gap: 70px;

    align-items: start;

}


.timeline-list {

    position: relative;

}


.timeline-list::before {

    content: "";

    position: absolute;

    left: 24px;

    top: 28px;

    bottom: 28px;

    width: 1px;

    background:
        rgba(142,197,255,.28);

}


.timeline-item {

    position: relative;

    display: grid;

    grid-template-columns: 50px 1fr;

    gap: 20px;

    margin-bottom: 34px;

}


.timeline-dot {

    position: relative;

    z-index: 2;

    width: 50px;

    height: 50px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 2px solid #70b4f7;

    border-radius: 50%;

    color: white;

    background: #0b438b;

    font-size: 9px;

    font-weight: 800;

}


.timeline-item h4 {

    margin: 5px 0 7px;

    color: white;

    font-size: 16px;

}


.timeline-item p {

    margin: 0;

    color: rgba(255,255,255,.62);

    font-size: 13px;

    line-height: 1.7;

}


.requirements-card {

    padding: 30px;

    border: 1px solid rgba(142,197,255,.2);

    border-radius: 14px;

    background: rgba(255,255,255,.06);

    backdrop-filter: blur(10px);

}


.requirements-card h3 {

    display: flex;

    align-items: center;

    gap: 10px;

    margin: 0 0 22px;

    color: #8ec5ff;

    font-size: 17px;

}


.requirement-list {

    display: flex;

    flex-direction: column;

    gap: 10px;

}


.requirement-list div {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    padding: 13px 15px;

    border-radius: 6px;

    background: rgba(255,255,255,.05);

}


.requirement-list span {

    color: rgba(255,255,255,.82);

    font-size: 12px;

}


.requirement-list strong {

    color: #8ec5ff;

    font-size: 11px;

    white-space: nowrap;

}


/* =========================================================
   CASE STUDY
========================================================= */

.case-section {

    background: var(--bg-light);

}


.case-card {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    overflow: hidden;

    border: 1px solid var(--border);

    border-radius: 15px;

    background: white;

    box-shadow: var(--shadow-md);

}


.case-image {

    min-height: 600px;

}


.case-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}


.case-content {

    padding: 50px 45px;

}


.case-badge {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 7px 11px;

    border-radius: 5px;

    color: var(--blue-700);

    background: var(--blue-50);

    font-size: 10px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .7px;

}


.case-content h3 {

    margin: 20px 0 28px;

    color: var(--blue-950);

    font-family: "Manrope", sans-serif;

    font-size: 24px;

}


.case-block {

    padding-left: 16px;

    margin-bottom: 22px;

    border-left: 3px solid;

}


.case-block.challenge {

    border-color: #d84b4b;

}


.case-block.approach {

    border-color: var(--blue-500);

}


.case-block.result {

    border-color: #25a46a;

}


.case-block small {

    display: block;

    margin-bottom: 6px;

    color: var(--blue-700);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.case-block.challenge small {

    color: #c0392b;

}


.case-block.result small {

    color: #218a5a;

}


.case-block p {

    margin: 0;

    color: var(--text-light);

    font-size: 13px;

    line-height: 1.75;

}


.case-stats {

    display: flex;

    flex-wrap: wrap;

    gap: 40px;

    padding-top: 12px;

}


.case-stats div {

    display: flex;

    flex-direction: column;

}


.case-stats strong {

    color: var(--blue-800);

    font-family: "Manrope", sans-serif;

    font-size: 26px;

}


.case-stats span {

    color: var(--text-light);

    font-size: 10px;

}


/* =========================================================
   FAQ
========================================================= */

.faq-section {

    background: white;

}


.faq-container {

    max-width: 880px;

    margin: auto;

}


.faq-item {

    margin-bottom: 10px;

    border: 1px solid var(--border);

    border-radius: 8px;

    background: white;

    overflow: hidden;

}


.faq-question {

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding: 20px 22px;

    border: 0;

    background: white;

    color: var(--blue-950);

    cursor: pointer;

    text-align: left;

    font-size: 14px;

    font-weight: 700;

}


.faq-question i {

    color: var(--blue-600);

    transition: transform .3s ease;

}


.faq-answer {

    display: grid;

    grid-template-rows: 0fr;

    transition: grid-template-rows .35s ease;

}


.faq-answer p {

    overflow: hidden;

    margin: 0;

    padding: 0 22px;

    color: var(--text-light);

    font-size: 13px;

    line-height: 1.8;

}


.faq-item.active {

    border-color: #bfd8f5;

    box-shadow: var(--shadow-sm);

}


.faq-item.active .faq-answer {

    grid-template-rows: 1fr;

}


.faq-item.active .faq-answer p {

    padding-bottom: 20px;

}


.faq-item.active .faq-question i {

    transform: rotate(180deg);

}


/* =========================================================
   TESTIMONIALS
========================================================= */

.testimonials-section {

    background: var(--blue-50);

}


.testimonial-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

}


.testimonial-card {

    padding: 28px;

    border: 1px solid var(--border);

    border-radius: 12px;

    background: white;

    box-shadow: var(--shadow-sm);

    transition: .3s ease;

}


.testimonial-card:hover {

    transform: translateY(-5px);

    box-shadow: var(--shadow-md);

}


.stars {

    margin-bottom: 17px;

    color: #f5a623;

    font-size: 14px;

    letter-spacing: 2px;

}


.testimonial-card p {

    min-height: 105px;

    margin: 0 0 20px;

    color: var(--text-light);

    font-size: 13px;

    line-height: 1.8;

    font-style: italic;

}


.testimonial-card strong {

    display: block;

    color: var(--blue-950);

    font-size: 13px;

}


.testimonial-card span {

    display: block;

    margin-top: 4px;

    color: #8994a5;

    font-size: 10px;

}


/* =========================================================
   RELATED SERVICES
========================================================= */

.related-section {

    background: white;

}


.related-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;

}


.related-card {

    padding: 25px;

    border: 1px solid var(--border);

    border-radius: 10px;

    background: white;

    text-decoration: none;

    transition: .3s ease;

}


.related-card:hover {

    transform: translateY(-6px);

    border-color: #b9d6f5;

    box-shadow: var(--shadow-md);

}


.related-icon {

    margin-bottom: 17px;

    color: var(--blue-600);

    font-size: 28px;

}


.related-card h4 {

    margin: 0 0 8px;

    color: var(--blue-950);

    font-size: 14px;

}


.related-card p {

    margin: 0;

    color: var(--text-light);

    font-size: 11px;

    line-height: 1.7;

}


/* =========================================================
   CLIENTS
========================================================= */

.clients-section {

    padding: 65px 0;

    overflow: hidden;

    background: #f8fbff;

    border-top: 1px solid var(--border);

    border-bottom: 1px solid var(--border);

}


.clients-label {

    margin-bottom: 25px;

    color: var(--blue-900);

    text-align: center;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;

}


.clients-track-wrap {

    position: relative;

    width: 100%;

    overflow: hidden;

    margin: 12px 0;

}


.clients-track {

    width: max-content;

    display: flex;

    align-items: center;

    gap: 18px;

    animation:
        clientsLeft 35s linear infinite;

}


.clients-track.reverse {

    animation:
        clientsRight 42s linear infinite;

}


.client-item {

    padding: 13px 22px;

    border: 1px solid #dbe7f4;

    border-radius: 30px;

    color: #52657d;

    background: white;

    box-shadow: 0 3px 12px rgba(11,59,130,.04);

    font-size: 11px;

    font-weight: 600;

    white-space: nowrap;

}


@keyframes clientsLeft {

    from {

        transform: translateX(0);

    }

    to {

        transform: translateX(-50%);

    }

}


@keyframes clientsRight {

    from {

        transform: translateX(-35%);

    }

    to {

        transform: translateX(0);

    }

}


/* =========================================================
   FINAL CTA
========================================================= */

.final-cta {

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #04152f,
            #0b4a9a
        );

}


.final-cta::before {

    content: "";

    position: absolute;

    width: 500px;

    height: 500px;

    top: -280px;

    right: -100px;

    border-radius: 50%;

    background:
        rgba(49,137,223,.18);

}


.final-content {

    position: relative;

    z-index: 2;

    text-align: center;

}


.final-content h2 {

    margin: 0;

    color: white;

    font-family: "Manrope", sans-serif;

    font-size: clamp(
        32px,
        5vw,
        52px
    );

    line-height: 1.15;

}


.final-content h2 span {

    color: #70b4f7;

}


.final-content > p {

    max-width: 650px;

    margin: 20px auto 30px;

    color: rgba(255,255,255,.7);

    font-size: 15px;

    line-height: 1.8;

}


.final-buttons {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 13px;

}


.final-content small {

    display: block;

    margin-top: 30px;

    color: rgba(255,255,255,.4);

    font-size: 10px;

}


/* =========================================================
   BLOG
========================================================= */

.blog-section {

    background: var(--bg-light);

}


.blog-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;

}


.blog-card {

    overflow: hidden;

    border: 1px solid var(--border);

    border-radius: 12px;

    background: white;

    box-shadow: var(--shadow-sm);

    transition: .3s ease;

}


.blog-card:hover {

    transform: translateY(-6px);

    box-shadow: var(--shadow-md);

}


.blog-card > img {

    width: 100%;

    height: 210px;

    object-fit: cover;

}


.blog-body {

    padding: 25px;

}


.blog-body > span {

    color: var(--blue-600);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.4px;

}


.blog-body h3 {

    margin: 10px 0;

    color: var(--blue-950);

    font-size: 16px;

    line-height: 1.5;

}


.blog-body p {

    color: var(--text-light);

    font-size: 12px;

    line-height: 1.7;

}


.blog-body a {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 8px;

    color: var(--blue-600);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;

    text-decoration: none;

}


/* =========================================================
   FLOATING BUTTONS
========================================================= */

.floating-wa,
.floating-call {

    position: fixed;

    right: 22px;

    z-index: 999;

}


.floating-wa {

    bottom: 90px;

}


.floating-call {

    bottom: 25px;

}


.floating-wa a,
.floating-call a {

    width: 54px;

    height: 54px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    color: white;

    font-size: 22px;

    text-decoration: none;

    box-shadow:
        0 8px 25px rgba(0,0,0,.2);

    transition: .3s ease;

}


.floating-wa a {

    background: #1da851;

}


.floating-call a {

    background: var(--blue-700);

}


.floating-wa a:hover,
.floating-call a:hover {

    transform: translateY(-5px) scale(1.04);

}


/* =========================================================
   STICKY CONSULTATION
========================================================= */

.sticky-consultation {

    position: fixed;

    right: 0;

    top: 50%;

    z-index: 990;

    transform: translateY(-50%);

}


.sticky-consultation a {

    display: flex;

    align-items: center;

    gap: 9px;

    padding: 13px 15px;

    color: white;

    background: var(--blue-700);

    border-radius: 8px 0 0 8px;

    font-size: 11px;

    font-weight: 700;

    text-decoration: none;

    writing-mode: vertical-rl;

    box-shadow:
        0 5px 20px rgba(6,21,47,.18);

}


/* =========================================================
   BACK TOP
========================================================= */

.back-top {

    position: fixed;

    right: 24px;

    bottom: 155px;

    z-index: 900;

    width: 42px;

    height: 42px;

    border: 0;

    border-radius: 7px;

    color: white;

    background: var(--blue-900);

    opacity: 0;

    visibility: hidden;

    cursor: pointer;

    transition: .3s ease;

}


.back-top.show {

    opacity: 1;

    visibility: visible;

}


.back-top:hover {

    transform: translateY(-3px);

    background: var(--blue-600);

}


/* =========================================================
   POPUP
========================================================= */

body.popup-open {

    overflow: hidden;

}


.consultation-popup,
.thankyou-popup {

    position: fixed;

    inset: 0;

    z-index: 5000;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 20px;

    background:
        rgba(3,15,34,.72);

    backdrop-filter: blur(8px);

    opacity: 0;

    visibility: hidden;

    transition: .3s ease;

}


.consultation-popup.active,
.thankyou-popup.active {

    opacity: 1;

    visibility: visible;

}


.consultation-box {

    position: relative;

    width: min(
        760px,
        100%
    );

    max-height: 90vh;

    overflow-y: auto;

    padding: 35px;

    border-radius: 15px;

    background: white;

    box-shadow:
        0 30px 80px rgba(0,0,0,.25);

    transform: translateY(20px);

    transition: .3s ease;

}


.consultation-popup.active
.consultation-box {

    transform: translateY(0);

}


.close-consultation,
.thankyou-close {

    position: absolute;

    top: 15px;

    right: 18px;

    width: 35px;

    height: 35px;

    border: 0;

    border-radius: 50%;

    color: #475467;

    background: #f2f4f7;

    font-size: 22px;

    cursor: pointer;

}


.popup-header {

    padding-right: 35px;

    margin-bottom: 25px;

}


.popup-header > span {

    color: var(--blue-600);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.popup-header h2 {

    margin: 7px 0;

    color: var(--blue-950);

    font-family: "Manrope", sans-serif;

    font-size: 28px;

}


.popup-header p {

    margin: 0;

    color: var(--text-light);

    font-size: 13px;

}


.form-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 17px;

}


.form-group {

    display: flex;

    flex-direction: column;

}


.form-group.full,
.form-submit-wrap {

    grid-column: 1 / -1;

}


.form-group label {

    margin-bottom: 7px;

    color: var(--blue-950);

    font-size: 11px;

    font-weight: 700;

}


.form-group label b {

    color: #e24b4b;

}


.form-group input,
.form-group select,
.form-group textarea {

    width: 100%;

    border: 1px solid #d7e0eb;

    border-radius: 6px;

    outline: none;

    padding: 12px 13px;

    color: var(--text);

    background: white;

    font-size: 12px;

    transition: .25s ease;

}


.form-group textarea {

    resize: vertical;

    min-height: 105px;

}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

    border-color: var(--blue-500);

    box-shadow:
        0 0 0 3px rgba(25,118,210,.09);

}


.form-group input.error,
.form-group textarea.error {

    border-color: #e24b4b;

}


.form-group small {

    display: none;

    margin-top: 5px;

    color: #d63f3f;

    font-size: 10px;

}


.form-group small.show {

    display: block;

}


.form-submit-wrap {

    text-align: center;

}


.form-submit {

    width: 100%;

    min-height: 50px;

    border: 0;

    border-radius: 7px;

    color: white;

    background:
        linear-gradient(
            135deg,
            var(--blue-600),
            var(--blue-900)
        );

    cursor: pointer;

    font-size: 12px;

    font-weight: 800;

}


.form-submit-wrap p {

    margin: 10px 0 0;

    color: #98a2b3;

    font-size: 10px;

}


.form-submit-wrap p i {

    color: var(--blue-600);

}


/* =========================================================
   THANK YOU
========================================================= */

.thankyou-box {

    position: relative;

    width: min(
        420px,
        100%
    );

    padding: 45px 30px;

    border-radius: 15px;

    background: white;

    text-align: center;

    box-shadow: var(--shadow-lg);

}


.success-icon {

    width: 65px;

    height: 65px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0 auto 18px;

    border-radius: 50%;

    color: white;

    background: var(--blue-600);

    font-size: 25px;

}


.thankyou-box h2 {

    margin: 0 0 10px;

    color: var(--blue-950);

    font-size: 28px;

}


.thankyou-box p {

    margin: 5px 0;

    color: var(--text-light);

    font-size: 13px;

}


.thankyou-btn {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 22px;

    padding: 13px 18px;

    border-radius: 7px;

    color: white;

    background: #1da851;

    text-decoration: none;

    font-size: 12px;

    font-weight: 700;

}


/* =========================================================
   REVEAL
========================================================= */

.reveal {

    opacity: 0;

    transform: translateY(25px);

    transition:
        opacity .7s ease,
        transform .7s ease;

}


.reveal.visible {

    opacity: 1;

    transform: translateY(0);

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .service-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .related-grid {

        grid-template-columns:
            repeat(3, 1fr);

    }


    .testimonial-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .intro-grid,
    .why-grid {

        gap: 45px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .container {

        width: min(
            calc(100% - 30px),
            var(--container)
        );

    }


    .section-pad {

        padding: 70px 0;

    }


    .section-pad-sm {

        padding: 60px 0;

    }


    .shop-hero {

        min-height: 650px;

    }


    .hero-content {

        padding: 75px 0;

    }


    .hero-content h1 {

        font-size: 43px;

        letter-spacing: -1px;

    }


    .hero-content > p {

        font-size: 15px;

    }


    .hero-trust {

        gap: 25px;

        margin-top: 35px;

    }


    .hero-trust strong {

        font-size: 20px;

    }


    .intro-grid,
    .why-grid,
    .timeline-grid,
    .case-card {

        grid-template-columns: 1fr;

    }


    .intro-grid,
    .why-grid {

        gap: 55px;

    }


    .image-frame img {

        height: 430px;

    }


    .image-badge {

        right: 10px;

    }


    .service-grid,
    .testimonial-grid {

        grid-template-columns: 1fr;

    }


    .related-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .case-image {

        min-height: 350px;

    }


    .case-content {

        padding: 35px 25px;

    }


    .case-stats {

        gap: 25px;

    }


    .timeline-grid {

        gap: 45px;

    }


    .form-grid {

        grid-template-columns: 1fr;

    }


    .form-group.full,
    .form-submit-wrap {

        grid-column: auto;

    }


    .sticky-consultation {

        top: auto;

        right: 50%;

        bottom: 0;

        transform: translateX(50%);

        width: 100%;

    }


    .sticky-consultation a {

        justify-content: center;

        width: 100%;

        border-radius: 0;

        padding: 13px;

        writing-mode: horizontal-tb;

    }


    .floating-wa {

        bottom: 70px;

    }


    .floating-call {

        bottom: 70px;

        right: 85px;

    }


    .back-top {

        right: 18px;

        bottom: 135px;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .hero-content h1 {

        font-size: 36px;

    }


    .hero-buttons {

        flex-direction: column;

    }


    .hero-buttons a {

        width: 100%;

    }


    .hero-trust {

        display: grid;

        grid-template-columns:
            repeat(3, 1fr);

        gap: 10px;

    }


    .hero-trust strong {

        font-size: 17px;

    }


    .hero-trust span {

        font-size: 8px;

        letter-spacing: .5px;

    }


    .intro-points {

        grid-template-columns: 1fr;

    }


    .image-frame img {

        height: 350px;

    }


    .why-image img {

        height: 400px;

    }


    .related-grid {

        grid-template-columns: 1fr;

    }


    .requirement-list div {

        align-items: flex-start;

        flex-direction: column;

        gap: 5px;

    }


    .case-stats {

        display: grid;

        grid-template-columns:
            repeat(3, 1fr);

        gap: 15px;

    }


    .case-stats strong {

        font-size: 20px;

    }


    .consultation-box {

        padding: 28px 20px;

    }


    .popup-header h2 {

        font-size: 23px;

    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {

        scroll-behavior: auto;

    }


    *,
    *::before,
    *::after {

        animation-duration: .01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: .01ms !important;

    }

}