html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", sans-serif;
    overflow-x: hidden;
}

body.page-loading > *:not(.site-loader) {
    visibility: hidden;
}

.site-loader {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: grid;
    place-items: center;
    background: #f7fbfc;
    transition: opacity .55s ease, visibility .55s ease;
}

.site-loader.is-complete {
    opacity: 0;
    visibility: hidden;
}

.loader-stage {
    position: relative;
    display: grid;
    place-items: center;
    width: min(270px, 66vw);
    aspect-ratio: 1;
}

.loader-color-splash,
.loader-logo-core,
.loader-logo-full {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.loader-color-splash {
    border-radius: 50%;
    opacity: 0;
    background: conic-gradient(#08a7d2, #ffd529, #ec5e22, #45b95c, #08a7d2);
    filter: blur(18px) saturate(1.25);
    transform: scale(.25) rotate(-20deg);
    animation: loader-color-in .9s .1s cubic-bezier(.22, 1, .36, 1) forwards;
}

.loader-logo-core,
.loader-logo-full {
    object-fit: contain;
    border-radius: 50%;
}

.loader-logo-core {
    opacity: 0;
    clip-path: circle(29% at 50% 50%);
    transform: scale(.74);
    animation: loader-tooth-in .8s .72s cubic-bezier(.22, 1, .36, 1) forwards;
}

.loader-logo-full {
    opacity: 0;
    transform: scale(.9);
    animation: loader-logo-in .8s 1.45s cubic-bezier(.22, 1, .36, 1) forwards;
}

.loader-caption {
    position: absolute;
    top: calc(100% + 22px);
    color: #0b3f5f;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    opacity: 0;
    animation: loader-caption-in .55s 1.7s ease forwards;
}

@keyframes loader-color-in {
    0% { opacity: 0; transform: scale(.25) rotate(-20deg); }
    55% { opacity: .95; transform: scale(1.1) rotate(12deg); }
    100% { opacity: .42; transform: scale(.9) rotate(0); }
}

@keyframes loader-tooth-in {
    0% { opacity: 0; transform: scale(.74) translateY(10px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes loader-logo-in {
    0% { opacity: 0; transform: scale(.9); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes loader-caption-in {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.text-deepBlue { color: #0b3f5f; }
.text-labBlue { color: #0276a8; }
.text-steel { color: #6b7c86; }
.border-labBlue { border-color: #0276a8; }
.bg-skyWash { background: #eaf7fc; }
.bg-deepBlue { background: #0b3f5f; }
.bg-labBlue { background: #0276a8; }

a {
    transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #0276a8, #19b6d2, #f4b41a);
    box-shadow: 0 0 12px rgba(2, 118, 168, .55);
    transition: width .12s linear;
}

.site-header {
    transition: box-shadow .3s ease, background .3s ease;
}

.site-header.is-scrolled {
    box-shadow: 0 10px 30px rgba(11, 63, 95, .12);
}

.site-header.is-scrolled nav {
    min-height: 66px;
    transition: min-height .3s ease;
}

.site-header nav a:hover,
footer a:hover {
    color: #0276a8;
}

.services-dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    display: none;
    padding: 8px 0;
    background: #fff;
    border: 1px solid #e6eef2;
    box-shadow: 0 18px 42px rgba(11, 63, 95, .16);
    z-index: 60;
    text-transform: none;
}

.services-dropdown-menu:before {
    content: "";
    position: absolute;
    top: -14px;
    left: 0;
    right: 0;
    height: 14px;
}

.group:hover .services-dropdown-menu,
.group:focus-within .services-dropdown-menu,
.services-dropdown-menu.is-open {
    display: block;
}

.services-dropdown-menu a {
    display: block;
    padding: 11px 16px;
    color: #172633;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 700;
}

.services-dropdown-menu a:hover {
    color: #0276a8;
    background: #eaf7fc;
}

.mobile-services summary {
    cursor: pointer;
    list-style: none;
}

.mobile-services summary::-webkit-details-marker {
    display: none;
}

.mobile-services-menu {
    display: grid;
    gap: 8px;
    margin: 10px 0 2px 14px;
    padding-left: 14px;
    border-left: 2px solid #eaf7fc;
}

.mobile-services-menu a {
    color: #6b7c86;
    font-size: 12px;
    text-transform: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 13px 22px;
    border: 2px solid #0276a8;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: #0276a8;
    color: #fff;
}

.btn-primary:hover {
    background: #0b3f5f;
    border-color: #0b3f5f;
}

.btn-outline {
    color: #0276a8;
    background: transparent;
}

.btn-outline:hover {
    color: #fff;
    background: #0276a8;
}

.btn-light {
    background: #fff;
    color: #0276a8;
    border-color: #fff;
}

.btn-ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, .75);
    background: transparent;
}

.section {
    padding: 92px 0;
}

.eyebrow {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .16em;
    color: #0276a8;
}

.section-title {
    margin-top: 12px;
    font-family: "Fahkwang", sans-serif;
    font-size: clamp(2.15rem, 4vw, 3.5rem);
    line-height: 1.12;
    color: #172633;
}

.section-copy {
    margin-top: 22px;
    color: #6b7c86;
    line-height: 1.8;
    font-size: 1.02rem;
}

.trust-card {
    border: 1px solid rgba(255, 255, 255, .35);
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(8px);
    padding: 18px;
    text-align: center;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
}

.hero-panel {
    background: rgba(255, 255, 255, .95);
    padding: 36px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .18);
    border-left: 6px solid #0276a8;
}

.stat,
.feature-card,
.service-card,
.workflow-step,
.testimonial,
.case-panel,
.contact-form {
    background: #fff;
    box-shadow: 0 16px 40px rgba(11, 63, 95, .08);
}

.stat {
    padding: 24px;
    border-top: 4px solid #0276a8;
}

.stat strong {
    display: block;
    font-size: 2rem;
    color: #0b3f5f;
    font-family: "Fahkwang", sans-serif;
}

.stat span {
    color: #6b7c86;
    font-size: .9rem;
}

.image-frame {
    position: relative;
}

.image-frame:before {
    content: "";
    position: absolute;
    inset: 24px -24px -24px 24px;
    background: #eaf7fc;
    z-index: 0;
}

.image-frame img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.feature-card,
.service-card,
.workflow-step,
.testimonial {
    padding: 28px;
    border: 1px solid #e6eef2;
}

.feature-card span {
    color: #0276a8;
    font-weight: 800;
}

.feature-card h3,
.service-card h3,
.workflow-step h3 {
    margin-top: 12px;
    font-family: "Fahkwang", sans-serif;
    font-size: 1.35rem;
    color: #0b3f5f;
}

.feature-card p,
.service-card p,
.workflow-step p {
    margin-top: 12px;
    color: #6b7c86;
    line-height: 1.7;
}

.service-card {
    min-height: 360px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: #9bcfe3;
    box-shadow: 0 22px 48px rgba(11, 63, 95, .13);
}

.service-img {
    width: 100%;
    height: 118px;
    object-fit: contain;
    margin-bottom: 18px;
    background: linear-gradient(180deg, #f8fcfe 0%, #eaf7fc 100%);
    padding: 14px;
}

.service-card a {
    margin-top: auto;
    color: #0276a8;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 12px;
}

.workflow-step {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .16);
    box-shadow: none;
}

.workflow-step b {
    display: inline-grid;
    place-items: center;
    min-width: 42px;
    height: 42px;
    padding: 0 7px;
    background: #fff;
    color: #0276a8;
    border-radius: 5px;
    font-size: 11px;
    white-space: nowrap;
}

.workflow-step h3,
.workflow-step p {
    color: #fff;
}

.workflow-step p {
    color: rgba(255, 255, 255, .78);
}

#digital-workflow .mt-12 {
    position: relative;
}

#digital-workflow .mt-12:before {
    content: "";
    position: absolute;
    top: 49px;
    left: 8%;
    right: 8%;
    border-top: 1px solid rgba(255, 255, 255, .28);
}

#digital-workflow .workflow-step {
    position: relative;
    z-index: 1;
}

.workflow-detail-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
    margin-top: 36px;
}

.workflow-detail-grid:before {
    content: "";
    position: absolute;
    top: 21px;
    left: 8%;
    right: 8%;
    border-top: 1px solid #9bcfe3;
    z-index: 0;
}

.workflow-detail-grid > div {
    position: relative;
    z-index: 1;
    padding: 0 8px;
}

.workflow-detail-grid b {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    background: #0276a8;
    color: #fff;
    border: 5px solid #eaf7fc;
    border-radius: 50%;
    font-size: 12px;
}

.workflow-detail-grid h3 {
    margin-top: 18px;
    color: #0b3f5f;
    font-family: "Fahkwang", sans-serif;
    font-size: 1.2rem;
}

.workflow-detail-grid p {
    margin-top: 8px;
    color: #6b7c86;
    font-size: .85rem;
    line-height: 1.65;
}

.workflow-shared-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 34px 20px;
}

.workflow-shared-grid:before {
    display: none;
}

.workflow-shared-grid b {
    width: auto;
    min-width: 78px;
    height: 34px;
    border: 0;
    border-radius: 0;
    padding: 0 10px;
    font-size: 10px;
    letter-spacing: .04em;
}

.workflow-shared-grid h3 {
    margin-top: 14px;
    font-size: 1.12rem;
}

.workflow-shared-grid strong {
    display: block;
    margin-top: 12px;
    color: #0276a8;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.service-page {
    padding-top: 80px;
}

.service-detail-hero {
    padding: 130px 0 110px;
    color: #fff;
    background: linear-gradient(120deg, #0b3f5f 0%, #0276a8 100%);
}

.service-detail-hero .eyebrow {
    color: #c8efff;
}

.service-page-title {
    max-width: 850px;
    margin-top: 14px;
    font-family: "Fahkwang", sans-serif;
    font-size: clamp(2.5rem, 6vw, 5.2rem);
    line-height: 1.05;
}

.service-page-lead {
    max-width: 720px;
    margin: 24px 0 30px;
    color: rgba(255, 255, 255, .86);
    font-size: 1.1rem;
    line-height: 1.8;
}

.service-detail-card {
    padding: 34px;
    border: 1px solid #e6eef2;
    background: #fff;
    box-shadow: 0 16px 40px rgba(11, 63, 95, .08);
}

.service-detail-card h3 {
    margin-top: 28px;
    color: #0b3f5f;
    font-family: "Fahkwang", sans-serif;
    font-size: 1.25rem;
}

.info-list {
    display: grid;
    gap: 11px;
    margin-top: 16px;
    color: #6b7c86;
    line-height: 1.6;
    list-style: none;
}

.info-list li {
    position: relative;
    padding-left: 22px;
}

.info-list li:before {
    content: "";
    position: absolute;
    top: .65em;
    left: 0;
    width: 7px;
    height: 7px;
    background: #0276a8;
    border-radius: 50%;
}

.text-link {
    display: inline-block;
    margin-top: 24px;
    color: #0276a8;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 12px;
}

.floating-contact {
    position: fixed;
    left: 18px;
    bottom: 22px;
    z-index: 70;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 102px;
    min-height: 44px;
    padding: 0 15px;
    color: #fff;
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(11, 63, 95, .22);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.floating-contact-btn:hover {
    color: #fff;
    transform: translateY(-2px);
}

.floating-call { background: #0276a8; }
.floating-whatsapp { background: #159447; }

.gallery-img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(11, 63, 95, .12);
    transition: transform .25s ease, filter .25s ease;
}

.gallery-img:hover {
    transform: scale(1.025);
    filter: saturate(1.08);
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal {
    will-change: opacity, transform;
}

.motion-fade {
    animation: motion-fade-in .8s cubic-bezier(.22, 1, .36, 1) both;
}

@keyframes motion-fade-in {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes workflow-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(2, 118, 168, .22); }
    50% { box-shadow: 0 0 0 10px rgba(2, 118, 168, 0); }
}

.workflow-hero .eyebrow,
.workflow-hero .service-page-title,
.workflow-hero .service-page-lead,
.workflow-hero .workflow-hero-meta,
.workflow-hero .btn {
    animation: motion-fade-in .8s cubic-bezier(.22, 1, .36, 1) both;
}

.hero > .relative > div:first-child > *,
.hero-panel,
.service-detail-hero:not(.workflow-hero) .eyebrow,
.service-detail-hero:not(.workflow-hero) .service-page-title,
.service-detail-hero:not(.workflow-hero) .service-page-lead,
.service-detail-hero:not(.workflow-hero) .btn {
    animation: motion-fade-in .8s cubic-bezier(.22, 1, .36, 1) both;
}

.hero > .relative > div:first-child > h1 { animation-delay: .08s; }
.hero > .relative > div:first-child > p:not(.eyebrow) { animation-delay: .16s; }
.hero > .relative > div:first-child > .mt-8 { animation-delay: .24s; }
.hero > .relative > div:first-child > .mt-10 { animation-delay: .32s; }
.hero-panel { animation-delay: .3s; }

.workflow-hero .service-page-title { animation-delay: .08s; }
.workflow-hero .service-page-lead { animation-delay: .16s; }
.workflow-hero .workflow-hero-meta { animation-delay: .24s; }
.workflow-hero .btn { animation-delay: .32s; }

.workflow-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 26px 0 30px;
}

.workflow-hero-meta span {
    padding: 9px 13px;
    border: 1px solid rgba(255, 255, 255, .35);
    color: rgba(255, 255, 255, .9);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.workflow-timeline {
    position: relative;
    display: grid;
    gap: 22px;
    margin-top: 58px;
}

.workflow-timeline-line {
    position: absolute;
    top: 32px;
    bottom: 32px;
    left: 84px;
    width: 2px;
    background: linear-gradient(180deg, #0276a8, #9bcfe3 80%, transparent);
}

.workflow-day {
    position: relative;
    display: grid;
    grid-template-columns: 168px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.workflow-day-marker {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 168px;
    min-height: 64px;
    padding: 12px;
    background: #0b3f5f;
    color: #fff;
    font-family: "Fahkwang", sans-serif;
    font-size: 1.1rem;
    box-shadow: 0 10px 22px rgba(11, 63, 95, .14);
}

.workflow-day:first-of-type .workflow-day-marker {
    animation: workflow-pulse 2.4s ease-in-out infinite;
}

.workflow-day-card {
    position: relative;
    padding: 24px 28px;
    border: 1px solid #e6eef2;
    background: #fff;
    box-shadow: 0 12px 30px rgba(11, 63, 95, .07);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.workflow-day-card:hover {
    transform: translateX(6px);
    border-color: #9bcfe3;
    box-shadow: 0 18px 36px rgba(11, 63, 95, .12);
}

.workflow-step-label {
    color: #0276a8;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
}

.workflow-day-card h3 {
    margin-top: 8px;
    color: #0b3f5f;
    font-family: "Fahkwang", sans-serif;
    font-size: 1.45rem;
}

.workflow-day-card p {
    max-width: 760px;
    margin-top: 9px;
    color: #6b7c86;
    line-height: 1.75;
}

.workflow-day-card strong,
.workflow-card-note {
    display: block;
    margin-top: 14px;
    color: #0276a8;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.workflow-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 42px;
    border-left: 5px solid #0276a8;
    background: #eaf7fc;
}

.workflow-cta-inner .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
}

.case-tab {
    border: 2px solid #0276a8;
    padding: 14px 18px;
    color: #0276a8;
    font-weight: 800;
    text-transform: uppercase;
}

.case-tab.active,
.case-tab:hover {
    background: #0276a8;
    color: #fff;
}

.case-panel {
    padding: 28px;
}

.case-panel h3 {
    font-family: "Fahkwang", sans-serif;
    font-size: 1.5rem;
    color: #0b3f5f;
}

.case-panel ul {
    margin-top: 14px;
    padding-left: 20px;
    color: #6b7c86;
    line-height: 1.9;
    list-style: disc;
}

.contact-form {
    padding: 32px;
    display: grid;
    gap: 18px;
}

.contact-form label {
    display: grid;
    gap: 8px;
    font-weight: 800;
    color: #0b3f5f;
    font-size: 13px;
    text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid #d7e5eb;
    padding: 14px;
    font-weight: 500;
    text-transform: none;
}

.upload-box {
    border: 2px dashed #9bcfe3;
    padding: 20px;
    text-align: center;
    cursor: pointer;
}

.upload-box input {
    display: none;
}

.testimonial {
    color: #6b7c86;
    line-height: 1.8;
}

.testimonial cite {
    display: block;
    margin-top: 18px;
    color: #0b3f5f;
    font-weight: 800;
}

footer h4 {
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 16px;
}

footer a {
    display: block;
    color: rgba(255, 255, 255, .72);
    margin: 8px 0;
}

@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }
    .image-frame:before {
        display: none;
    }
    .image-frame img {
        height: 360px;
    }
    .service-card {
        min-height: auto;
    }
    .btn {
        width: 100%;
    }
    .services-dropdown-menu {
        display: none !important;
    }
    .workflow-detail-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 14px;
    }
    .workflow-shared-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .workflow-detail-grid:before {
        display: none;
    }
    #digital-workflow .mt-12:before {
        display: none;
    }
    .service-detail-hero {
        padding: 100px 0 78px;
    }
    .service-detail-card {
        padding: 25px;
    }
    .floating-contact {
        left: 12px;
        bottom: 14px;
    }
    .floating-contact-btn {
        min-width: 92px;
        min-height: 40px;
        font-size: 11px;
    }
    .workflow-hero-meta {
        display: grid;
    }
    .workflow-timeline {
        gap: 16px;
        margin-top: 38px;
    }
    .workflow-timeline-line {
        left: 23px;
        top: 24px;
    }
    .workflow-day {
        grid-template-columns: 48px minmax(0, 1fr);
        gap: 14px;
    }
    .workflow-day-marker {
        width: 48px;
        min-height: 48px;
        padding: 5px;
        writing-mode: vertical-rl;
        font-size: .75rem;
    }
    .workflow-day-card {
        padding: 20px;
    }
    .workflow-day-card h3 {
        font-size: 1.2rem;
    }
    .workflow-cta-inner {
        display: block;
        padding: 28px 24px;
    }
    .workflow-cta-inner .btn {
        margin-top: 22px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *:before, *:after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
    .reveal {
        opacity: 1;
        transform: none;
    }
}


/* Add to the end of style.css */

#servicesDropdown a {
    transition: all 0.2s ease;
}

.floating-btn {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

.service-detail {
    padding: 80px 0;
}

.service-detail .section-title {
    font-size: 2.8rem;
}
