* {

    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

html {

    scroll-behavior: smooth;

}

body {

    font-family: 'Poppins', sans-serif;

    background: var(--light);

    color: var(--black);

    overflow-x: hidden;

}

a {

    text-decoration: none;

    transition: var(--transition);

}

img {

    display: block;

    max-width: 100%;

}

ul {

    list-style: none;

}

button {

    border: none;

    outline: none;

    cursor: pointer;

    background: none;

}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
}

body.menu-open {
    overflow: hidden !important;
    position: fixed;
    width: 100%;
}

/* Client */

.clients-section {

    position: relative;

    background: #ffffff;

    padding: 65px 0 65px;

    overflow: hidden;

}


/* =========================================
   SUBTLE BACKGROUND
========================================= */

.clients-section::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    height: 1px;

    background:
        linear-gradient(90deg,
            transparent,
            rgba(245, 158, 11, .35),
            transparent);

}


.clients-section::after {

    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    top: -250px;
    right: -200px;

    background:
        radial-gradient(circle,
            rgba(245, 158, 11, .055),
            transparent 68%);

    pointer-events: none;

}


/* =========================================
   CONTAINER
========================================= */

.clients-container {

    width: min(calc(100% - 80px),
            var(--container));

    margin: auto;

    position: relative;

    z-index: 2;

}


/* =========================================
   HEADING
========================================= */

.clients-heading {

    text-align: center;

    max-width: 720px;

    margin: 0 auto 55px;

}


.clients-eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: var(--accent);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 16px;

}


.clients-eyebrow span {

    width: 28px;

    height: 2px;

    background: var(--accent);

    border-radius: 20px;

}


.clients-heading h2 {

    margin: 0;

    color: var(--primary);

    font-size:
        clamp(38px, 4vw, 58px);

    line-height: 1;

    letter-spacing: -2.5px;

    font-weight: 800;

}


.clients-heading h2 strong {

    color: var(--accent);

    font-weight: 800;

}


.clients-heading p {

    max-width: 650px;

    margin: 20px auto 0;

    color: #64748B;

    font-size: 15px;

    line-height: 1.8;

}


/* =========================================
   SLIDER
========================================= */

.clients-slider {

    width: 100%;

    overflow: hidden;

    position: relative;

    padding: 10px 0 20px;

}


/* Fade edges */

.clients-slider::before,
.clients-slider::after {

    content: "";

    position: absolute;

    top: 0;

    bottom: 0;

    width: 100px;

    z-index: 3;

    pointer-events: none;

}


.clients-slider::before {

    left: 0;

    background:
        linear-gradient(to right,
            #fff,
            transparent);

}


.clients-slider::after {

    right: 0;

    background:
        linear-gradient(to left,
            #fff,
            transparent);

}


/* =========================================
   TRACK
========================================= */

.clients-track {

    display: flex;

    align-items: center;

    gap: 18px;

    width: max-content;

    animation:
        clientsAutoSlide 28s linear infinite;

}


.clients-slider:hover .clients-track {

    animation-play-state: paused;

}


/* =========================================
   CLIENT CARD
========================================= */

.client-card {

    width: 210px;

    height: 115px;

    flex: 0 0 210px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 25px;

    background: #ffffff;

    border: 1px solid #E8ECF1;

    border-radius: 14px;

    box-shadow:
        0 8px 25px rgba(15, 23, 42, .045);

    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;

}


.client-card:hover {

    transform: translateY(-5px);

    border-color:
        rgba(245, 158, 11, .45);

    box-shadow:
        0 15px 35px rgba(15, 23, 42, .09);

}


.client-card img {

    width: 100%;

    height: 100%;

    object-fit: contain;

    display: block;

    transition:
        filter .35s ease,
        opacity .35s ease,
        transform .35s ease;

}


.client-card:hover img {

    filter: grayscale(0);

    opacity: 1;

    transform: scale(1.04);

}


/* =========================================
   AUTO SLIDE
========================================= */

@keyframes clientsAutoSlide {

    from {

        transform: translateX(0);

    }

    to {

        transform:
            translateX(calc(-50% - 9px));

    }

}


/* =========================================
   TRUST STRIP
========================================= */

.client-trust-strip {

    margin-top: 42px;

    display: grid;

    grid-template-columns:
        1fr auto 1fr auto 1fr;

    align-items: center;

    border: 1px solid #E8ECF1;

    border-radius: 16px;

    background:
        linear-gradient(135deg,
            #ffffff,
            #FAFBFC);

    box-shadow:
        0 12px 35px rgba(15, 23, 42, .045);

}


/* =========================================
   TRUST ITEM
========================================= */

.trust-item {

    min-height: 88px;

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 18px 28px;

}


.trust-icon {

    width: 42px;

    height: 42px;

    flex: 0 0 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 11px;

    background:
        #FFF7E8;

    color: var(--accent);

    font-size: 16px;

}


.trust-item h4 {

    margin: 0 0 5px;

    color: var(--primary);

    font-size: 13px;

    font-weight: 800;

}


.trust-item p {

    margin: 0;

    color: #94A3B8;

    font-size: 11px;

    font-weight: 500;

}


/* =========================================
   DIVIDER
========================================= */

.trust-divider {

    width: 1px;

    height: 45px;

    background: #E5E7EB;

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 992px) {

    .clients-section {

        padding: 80px 0;

    }


    .clients-container {

        width:
            min(calc(100% - 40px),
                var(--container));

    }


    .client-card {

        width: 180px;

        height: 100px;

        flex-basis: 180px;

    }


    .client-trust-strip {

        grid-template-columns: 1fr;

    }


    .trust-divider {

        width: calc(100% - 40px);

        height: 1px;

        margin: auto;

    }


    .trust-item {

        padding: 18px 25px;

    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 576px) {

    .clients-section {

        padding: 65px 0 60px;

    }


    .clients-container {

        width:
            calc(100% - 32px);

    }


    .clients-heading {

        margin-bottom: 35px;

    }


    .clients-eyebrow {

        font-size: 9px;

        letter-spacing: 1.5px;

    }


    .clients-heading h2 {

        font-size: 38px;

        letter-spacing: -1.8px;

    }


    .clients-heading p {

        font-size: 13px;

        line-height: 1.7;

        padding: 0 8px;

    }


    .clients-slider {

        padding-bottom: 10px;

    }


    .clients-slider::before,
    .clients-slider::after {

        width: 45px;

    }


    .clients-track {

        gap: 12px;

        animation-duration: 22s;

    }


    .client-card {

        width: 155px;

        height: 88px;

        flex-basis: 155px;

        padding: 20px;

        border-radius: 11px;

    }


    .client-trust-strip {

        margin-top: 30px;

        border-radius: 13px;

    }


    .trust-item {

        min-height: 75px;

        padding: 15px 17px;

        gap: 11px;

    }


    .trust-icon {

        width: 37px;

        height: 37px;

        flex-basis: 37px;

        font-size: 14px;

    }


    .trust-item h4 {

        font-size: 12px;

    }


    .trust-item p {

        font-size: 10px;

    }

}

/* Reviews */
/* =========================================
   CLIENT REVIEWS
========================================= */

.client-reviews {
    position: relative;
    padding: 65px 0;
    background: #f8fafc;
    overflow: hidden;
}


/* SUBTLE BACKGROUND DETAIL */

.client-reviews::before {
    content: "";
    position: absolute;

    width: 500px;
    height: 500px;

    right: -250px;
    top: -250px;

    border: 1px solid rgba(245, 158, 11, .13);
    border-radius: 50%;

    pointer-events: none;
}


.client-reviews::after {
    content: "";
    position: absolute;

    width: 1px;
    height: 100%;

    left: 50%;
    top: 0;

    background: rgba(15, 23, 42, .025);

    pointer-events: none;
}


/* CONTAINER */

.reviews-container {
    width: min(calc(100% - 80px),
            var(--container));

    margin: auto;

    display: grid;

    grid-template-columns: 38% 62%;

    align-items: center;

    gap: 70px;

    position: relative;
    z-index: 2;
}


/* =========================================
   LEFT SIDE
========================================= */

.reviews-intro {
    padding-right: 15px;
}


.section-label {
    display: flex;
    align-items: center;

    gap: 12px;

    color: #f59e0b;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2.5px;

    margin-bottom: 20px;
}


.section-label span {
    width: 32px;
    height: 2px;

    background: #f59e0b;

    display: block;
}


.reviews-intro h2 {
    margin: 0;

    color: #172033;

    font-size: clamp(42px, 4vw, 62px);

    line-height: .98;

    letter-spacing: -2.8px;

    font-weight: 800;
}


.reviews-intro h2 strong {
    display: block;

    color: #f59e0b;

    font-weight: 800;
}


.reviews-intro-text {
    max-width: 430px;

    margin: 27px 0 0;

    color: #64748b;

    font-size: 15px;

    line-height: 1.8;
}


/* TRUST SCORE */

.review-trust {
    display: flex;

    align-items: center;

    gap: 18px;

    margin-top: 38px;

    padding-top: 25px;

    border-top: 1px solid #dfe5eb;

    max-width: 400px;
}


.trust-number {
    color: #172033;

    font-size: 38px;

    line-height: 1;

    font-weight: 800;

    letter-spacing: -1px;
}


.trust-info {
    display: flex;

    flex-direction: column;

    gap: 5px;
}


.stars {
    color: #f59e0b;

    font-size: 15px;

    letter-spacing: 2px;
}


.trust-info span {
    color: #8491a3;

    font-size: 11px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1.2px;
}


/* =========================================
   REVIEW SLIDER
========================================= */

.review-slider {
    position: relative;

    min-width: 0;
}


.review-card {
    display: none;

    min-height: 375px;

    padding: 42px 48px;

    background: #ffffff;

    border: 1px solid #e1e7ed;

    box-shadow:
        0 20px 55px rgba(15, 23, 42, .07);

    position: relative;

    animation: reviewFade .5s ease;
}


.review-card.active {
    display: flex;

    flex-direction: column;
}


@keyframes reviewFade {

    from {
        opacity: 0;
        transform: translateX(15px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}


/* TOP */

.review-top {
    display: flex;

    justify-content: space-between;

    align-items: flex-start;

    margin-bottom: 22px;
}


.review-number {
    color: #a0aabb;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


/* REVIEW TEXT */

.review-card blockquote {
    margin: 0;

    max-width: 720px;

    color: #172033;

    font-size: clamp(20px, 2vw, 27px);

    line-height: 1.55;

    font-weight: 600;

    letter-spacing: -.4px;
}


/* BOTTOM */

.review-bottom {
    margin-top: auto;

    padding-top: 35px;

    border-top: 1px solid #edf0f3;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;
}


/* PERSON */

.review-person {
    display: flex;

    align-items: center;

    gap: 13px;
}


.review-avatar {
    width: 46px;
    height: 46px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fff5df;

    color: #f59e0b;

    font-size: 12px;

    font-weight: 800;
}


.review-person h4 {
    margin: 0 0 4px;

    color: #172033;

    font-size: 14px;

    font-weight: 800;
}


.review-person span {
    color: #8491a3;

    font-size: 11px;
}


/* META */

.review-meta {
    text-align: right;
}


.review-meta>span {
    display: block;

    margin-bottom: 8px;

    color: #94a0b2;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.4px;
}


.review-stars {
    color: #f59e0b;

    font-size: 13px;

    letter-spacing: 2px;
}


/* =========================================
   CONTROLS
========================================= */

.review-controls {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 20px;
}


.review-controls button {
    width: 43px;
    height: 43px;

    border-radius: 50%;

    border: 1px solid #dce2e8;

    background: #fff;

    color: #172033;

    display: flex;

    align-items: center;
    justify-content: center;

    cursor: pointer;

    transition: .3s ease;
}


.review-controls button:hover {
    background: #f59e0b;

    border-color: #f59e0b;

    color: #fff;

    transform: translateY(-2px);
}


.review-progress {
    width: 90px;

    height: 2px;

    background: #dfe4ea;

    position: relative;

    overflow: hidden;
}


.review-progress span {
    display: block;

    width: 33.33%;

    height: 100%;

    background: #f59e0b;

    transition: width .35s ease;
}

/* =========================================
   ABOUT PAGE
========================================= */

.about-page {
    background: #ffffff;
    color: #172033;
}

.about-container {
    width: min(calc(100% - 80px),
            var(--container));
    margin: auto;
}


/* =========================================
   COMMON EYEBROW
========================================= */

.about-eyebrow {
    display: flex;
    align-items: center;
    gap: 11px;

    color: #d97706;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2.3px;
    text-transform: uppercase;
}

.about-eyebrow span {
    width: 34px;
    height: 2px;
    background: #f59e0b;
}


/* =========================================
   ABOUT HERO
========================================= */

.about-hero {
    position: relative;
    min-height: 610px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: #f7f9fb;
}

.about-hero-bg {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(248, 250, 252, 0.411) 0%,
            rgba(248, 250, 252, 0.637) 38%,
            rgba(248, 250, 252, 0.473) 58%,
            rgba(248,250,252,.15) 100%
        ),
        url("/assets/images/Hero Banner Image.webp");

    background-size: cover;
    background-position: center;
}

.about-hero-bg::after {
    content: "";

    position: absolute;
    inset: 0;

    opacity: .18;

    background-image:
        linear-gradient(rgba(31,41,55,.10) 1px, transparent 1px),
        linear-gradient(90deg, rgba(31,41,55,.10) 1px, transparent 1px);

    background-size: 70px 70px;

    mask-image:
        linear-gradient(
            90deg,
            black,
            transparent 75%
        );
}


.about-hero .about-container {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


.about-hero-content {
    max-width: 700px;

    padding: 90px 0;
}


.about-hero-content .about-eyebrow {
    margin-bottom: 25px;
}


.about-hero-content h1 {
    margin: 0;

    color: #172033;

    font-size: clamp(48px, 6vw, 78px);
    line-height: .97;

    letter-spacing: -4px;

    font-weight: 850;
}


.about-hero-content h1 span {
    color: #f59e0b;
}


.about-hero-content p {
    max-width: 650px;

    margin: 30px 0;

    color: #172033;

    font-size: 17px;
    line-height: 1.8;
}




/* =========================================
   INTRODUCTION
========================================= */

.about-introduction {
    padding: 120px 0;
    background: #fff;
}


.about-intro-grid {
    display: grid;

    grid-template-columns: .9fr 1fr;

    gap: 90px;

    align-items: center;
}


.about-intro-visual {
    position: relative;
}


.about-main-image {
    position: relative;

    height: 590px;

    overflow: hidden;

    background: #e9edf2;
}


.about-main-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: .7s ease;
}


.about-main-image:hover img {
    transform: scale(1.035);
}


.about-image-label {
    position: absolute;

    left: 22px;
    bottom: 22px;

    display: flex;
    align-items: center;
    gap: 13px;

    z-index: 2;
}


.about-image-label > span {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f59e0b;
    color: #fff;

    font-size: 11px;
    font-weight: 800;
}


.about-image-label b,
.about-image-label small {
    display: block;
    color: #fff;
}


.about-image-label b {
    font-size: 11px;
    letter-spacing: 1.2px;
}


.about-image-label small {
    margin-top: 4px;

    font-size: 10px;

    opacity: .75;
}


.about-image-accent {
    position: absolute;

    width: 85px;
    height: 85px;

    right: -25px;
    bottom: -25px;

    border-right: 2px solid #f59e0b;
    border-bottom: 2px solid #f59e0b;
}


.about-intro-content h2,
.about-section-heading h2,
.values-heading h2 {
    margin: 20px 0 28px;

    color: #172033;

    font-size: clamp(40px, 4vw, 58px);
    line-height: 1;

    letter-spacing: -2.5px;

    font-weight: 800;
}


.about-intro-content h2 strong,
.about-section-heading h2 strong,
.values-heading h2 strong {
    display: block;
    color: #f59e0b;
}


.about-lead {
    color: #253044 !important;

    font-size: 18px !important;

    font-weight: 600;
}


.about-intro-content p {
    color: #64748b;

    font-size: 15px;
    line-height: 1.85;

    margin-bottom: 17px;
}


/* CHECK LIST */

.about-check-list {
    margin-top: 35px;

    border-top: 1px solid #e5e7eb;
}


.about-check-list > div {
    display: flex;
    align-items: center;

    gap: 14px;

    padding: 17px 0;

    border-bottom: 1px solid #e5e7eb;
}


.about-check-list > div > span {
    width: 31px;
    height: 31px;

    flex: none;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fff7e8;
    color: #f59e0b;

    font-size: 11px;
}


.about-check-list b,
.about-check-list small {
    display: block;
}


.about-check-list b {
    color: #172033;
    font-size: 13px;
}


.about-check-list small {
    margin-top: 4px;
    color: #94a3b8;
    font-size: 11px;
}


/* =========================================
   APPROACH
========================================= */

.about-approach {
    padding: 110px 0;

    background: #f8fafc;
}


.about-section-heading {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 70px;

    margin-bottom: 55px;
}


.about-section-heading > div {
    max-width: 650px;
}


.about-section-heading p {
    max-width: 430px;

    margin: 0 0 8px;

    color: #64748b;

    font-size: 15px;
    line-height: 1.8;
}


.approach-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid #dce3ea;
    border-bottom: 1px solid #dce3ea;
}


.approach-item {
    position: relative;

    padding: 34px 28px 38px;

    border-right: 1px solid #dce3ea;
}


.approach-item:last-child {
    border-right: 0;
}


.approach-number {
    color: #cbd5e1;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1px;

    margin-bottom: 22px;
}


.approach-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    border: 1px solid #dce3ea;

    color: #f59e0b;

    background: #fff;

    margin-bottom: 25px;
}


.approach-item h3 {
    margin: 0 0 12px;

    color: #172033;

    font-size: 18px;
}


.approach-item p {
    margin: 0;

    color: #64748b;

    font-size: 13px;
    line-height: 1.7;
}


/* =========================================
   CAPABILITIES
========================================= */

.about-capabilities {
    padding: 120px 0;
}


.capabilities-layout {
    display: grid;

    grid-template-columns: .75fr 1.25fr;

    gap: 90px;
}


.capabilities-title h2 {
    margin: 20px 0;

    color: #172033;

    font-size: clamp(40px, 4vw, 58px);
    line-height: 1;

    letter-spacing: -2.5px;
}


.capabilities-title h2 strong {
    display: block;
    color: #f59e0b;
}


.capabilities-title p {
    max-width: 430px;

    color: #64748b;

    font-size: 15px;
    line-height: 1.8;
}


.capabilities-list {
    border-top: 1px solid #dce3ea;
}


.capability-row {
    display: grid;

    grid-template-columns: 45px 1fr 30px;

    align-items: center;

    gap: 15px;

    padding: 25px 0;

    border-bottom: 1px solid #dce3ea;

    transition: .3s ease;
}


.capability-row:hover {
    padding-left: 8px;
}


.capability-row > span {
    color: #f59e0b;

    font-size: 10px;
    font-weight: 800;
}


.capability-row h3 {
    margin: 0 0 6px;

    color: #172033;

    font-size: 16px;
}


.capability-row p {
    margin: 0;

    color: #94a3b8;

    font-size: 12px;
    line-height: 1.5;
}


.capability-row > i {
    color: #cbd5e1;

    font-size: 13px;

    transition: .3s;
}


.capability-row:hover > i {
    color: #f59e0b;
    transform: translate(3px,-3px);
}


/* =========================================
   VALUES
========================================= */

.about-values {
    padding: 105px 0;

    background: #f8fafc;
}


.values-heading {
    margin-bottom: 50px;
}


.values-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 14px;
}


.value-card {
    position: relative;

    min-height: 270px;

    padding: 30px;

    background: #fff;

    border: 1px solid #e2e8f0;

    border-radius: 14px;

    transition: .4s ease;
}


.value-card:hover {
    transform: translateY(-5px);

    border-color: rgba(245,158,11,.4);

    box-shadow:
        0 20px 45px rgba(15,23,42,.07);
}


.value-index {
    position: absolute;

    right: 25px;
    top: 25px;

    color: #cbd5e1;

    font-size: 10px;
    font-weight: 800;
}


.value-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff7e8;

    color: #f59e0b;

    border-radius: 10px;

    margin-bottom: 28px;
}


.value-card h3 {
    margin: 0 0 12px;

    color: #172033;

    font-size: 18px;
}


.value-card p {
    margin: 0;

    color: #64748b;

    font-size: 13px;

    line-height: 1.75;
}




/* Services */
/* =========================================
   SERVICES PAGE
========================================= */

.services-page {

    position: relative;

    padding: 115px 0 130px;

    background: #f8fafc;

    overflow: hidden;
}


.services-page::before {

    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    opacity: .35;

    background-image:
        linear-gradient(
            rgba(31,41,55,.045) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(31,41,55,.045) 1px,
            transparent 1px
        );

    background-size: 70px 70px;
}


.services-container {

    position: relative;

    z-index: 2;

    width: min(
        calc(100% - 80px),
        1320px
    );

    margin: auto;
}


/* =========================================
   HEADER
========================================= */

.services-page-head {

    display: grid;

    grid-template-columns: 1.15fr .85fr;

    gap: 100px;

    align-items: end;

    padding-bottom: 75px;
}


.services-eyebrow {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 22px;

    color: #d97706;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.services-eyebrow span {

    width: 38px;

    height: 2px;

    background: #f59e0b;
}


.services-page-head h1 {

    margin: 0;

    color: #172033;

    font-size: clamp(
        52px,
        6vw,
        80px
    );

    line-height: .94;

    letter-spacing: -4px;

    font-weight: 850;
}


.services-page-head h1 strong {

    display: block;

    color: #f59e0b;
}


.services-intro {

    padding-bottom: 6px;
}


.services-intro p {

    max-width: 440px;

    margin: 0 0 28px;

    color: #64748b;

    font-size: 15px;

    line-height: 1.75;
}


.services-discuss {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    color: #172033;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;

    text-decoration: none;
}


.services-discuss span {

    color: #f59e0b;

    font-size: 19px;

    transition: .3s ease;
}


.services-discuss:hover span {

    transform: translate(4px,-4px);
}


/* =========================================
   SERVICE FEATURE
========================================= */

.service-feature {

    display: grid;

    grid-template-columns: 48% 52%;

    min-height: 470px;

    background: #fff;

    border:
        1px solid #e1e6ec;

    overflow: hidden;

    margin-bottom: 30px;

    box-shadow:
        0 12px 35px rgba(15,23,42,.045);
}


.service-feature.service-reverse {

    grid-template-columns: 52% 48%;
}


.service-feature.service-reverse
.service-image {

    order: 2;
}


.service-feature.service-reverse
.service-feature-content {

    order: 1;
}


/* =========================================
   IMAGE
========================================= */

.service-image {

    position: relative;

    min-height: 470px;

    overflow: hidden;

    background: #e5e7eb;
}


.service-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .8s cubic-bezier(.2,.7,.2,1);
}


.service-feature:hover
.service-image img {

    transform: scale(1.055);
}


/* IMAGE OVERLAY */

.service-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(15,23,42,.45),
            transparent 45%
        );

    pointer-events: none;
}


.service-image-number {

    position: absolute;

    z-index: 3;

    top: 22px;

    right: 22px;

    width: 46px;

    height: 46px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid rgba(255,255,255,.45);

    border-radius: 50%;

    background:
        rgba(15,23,42,.45);

    backdrop-filter: blur(8px);

    color: #fff;

    font-size: 10px;

    font-weight: 800;
}


/* =========================================
   CONTENT
========================================= */

.service-feature-content {

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 65px;
}


.service-category {

    margin-bottom: 18px;

    color: #d97706;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;
}


.service-feature-content h2 {

    max-width: 500px;

    margin: 0 0 22px;

    color: #172033;

    font-size: clamp(
        38px,
        4vw,
        58px
    );

    line-height: .98;

    letter-spacing: -2.5px;

    font-weight: 850;
}


.service-feature-content h2 strong {

    display: block;

    color: #8b95a5;
}


.service-feature-content p {

    max-width: 510px;

    margin: 0;

    color: #64748b;

    font-size: 15px;

    line-height: 1.75;
}


/* =========================================
   BOTTOM
========================================= */

.service-bottom {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-top: 45px;

    padding-top: 22px;

    border-top:
        1px solid #e5e7eb;
}


.service-bottom > span {

    color: #94a3b8;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.4px;
}


.service-contact {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: #172033;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;

    text-decoration: none;

    white-space: nowrap;
}


.service-contact span {

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid #dce3ea;

    border-radius: 50%;

    color: #f59e0b;

    font-size: 17px;

    transition: .35s ease;
}


.service-contact:hover {

    color: #d97706;
}


.service-contact:hover span {

    color: #fff;

    background: #f59e0b;

    border-color: #f59e0b;

    transform: translate(3px,-3px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .services-page {

        padding: 90px 0 100px;
    }


    .services-container {

        width:
            calc(100% - 40px);
    }


    .services-page-head {

        grid-template-columns: 1fr;

        gap: 30px;

        padding-bottom: 55px;
    }


    .service-feature,
    .service-feature.service-reverse {

        grid-template-columns: 1fr;

    }


    .service-feature.service-reverse
    .service-image {

        order: 1;
    }


    .service-feature.service-reverse
    .service-feature-content {

        order: 2;
    }


    .service-image {

        min-height: 400px;
    }


    .service-feature-content {

        padding: 50px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .services-page {

        padding: 65px 0 80px;
    }


    .services-container {

        width:
            calc(100% - 32px);
    }


    .services-page-head {

        gap: 22px;

        padding-bottom: 40px;
    }


    .services-page-head h1 {

        font-size: 47px;

        letter-spacing: -2.5px;
    }


    .services-intro p {

        font-size: 14px;

        line-height: 1.65;
    }


    .service-feature,
    .service-feature.service-reverse {

        display: flex;

        flex-direction: column;

        margin-bottom: 20px;
    }


    .service-image {

        width: 100%;

        min-height: 245px;

        height: 245px;
    }


    .service-feature-content {

        padding: 32px 25px 28px;
    }


    .service-category {

        margin-bottom: 13px;

        font-size: 9px;
    }


    .service-feature-content h2 {

        font-size: 34px;

        letter-spacing: -1.5px;

        margin-bottom: 17px;
    }


    .service-feature-content p {

        font-size: 13px;

        line-height: 1.65;
    }


    .service-bottom {

        align-items: flex-end;

        margin-top: 28px;

        padding-top: 18px;
    }


    .service-bottom > span {

        max-width: 150px;

        line-height: 1.5;
    }


    .service-contact span {

        width: 34px;

        height: 34px;
    }

}

/* =====================================================
   PROJECTS PAGE
===================================================== */

.projects-page {

    width: 100%;

    padding:
        105px 0 120px;

    background:
        #f8fafc;

    position: relative;

    overflow: hidden;

}


/* subtle architectural grid */

.projects-page::before {

    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    opacity: .35;

    background-image:

        linear-gradient(
            rgba(31,41,55,.035) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(31,41,55,.035) 1px,
            transparent 1px
        );

    background-size:
        64px 64px;

}


.projects-container {

    width:
        min(1320px, calc(100% - 80px));

    margin:
        0 auto;

    position: relative;

    z-index: 2;

}


/* =====================================================
   HEADER
===================================================== */

.projects-page-head {

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        410px;

    gap: 80px;

    align-items: end;

    padding-bottom: 52px;

    border-bottom:
        1px solid #dce3ea;

}


.projects-eyebrow {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 22px;

    color:
        #d97706;

    font-size: 10px;

    font-weight: 800;

    letter-spacing:
        2px;

    text-transform:
        uppercase;

}


.projects-eyebrow span {

    width: 34px;

    height: 2px;

    background:
        #f59e0b;

}


.projects-heading h1 {

    margin: 0;

    max-width: 780px;

    color:
        #172033;

    font-size:
        clamp(52px, 5.7vw, 78px);

    line-height:
        .94;

    letter-spacing:
        -4px;

    font-weight:
        850;

}


.projects-heading h1 strong {

    display: block;

    color:
        #f59e0b;

}


.projects-intro {

    padding-bottom: 4px;

}


.projects-intro p {

    margin: 0;

    color:
        #64748b;

    font-size:
        15px;

    line-height:
        1.8;

}


/* =====================================================
   GRID
===================================================== */

.projects-grid {

    display: grid !important;

    grid-template-columns:
        repeat(2, minmax(0, 1fr)) !important;

    gap:
        34px !important;

    margin-top:
        48px;

    width: 100%;

}


/* =====================================================
   CARD
===================================================== */

.project-card {

    width: 100% !important;

    min-width: 0 !important;

    box-sizing: border-box;

    display: flex;

    flex-direction: column;

    background:
        #ffffff;

    border:
        1px solid #dce3ea;

    border-radius:
        4px;

    overflow:
        hidden;

    box-shadow:
        0 12px 35px
        rgba(15,23,42,.045);

    transition:
        transform .4s ease,
        box-shadow .4s ease;

}


.project-card:hover {

    transform:
        translateY(-6px);

    box-shadow:
        0 25px 60px
        rgba(15,23,42,.11);

}


/* =====================================================
   IMAGE
===================================================== */

.project-image {

    position:
        relative;

    width:
        100% !important;

    height:
        315px !important;

    flex-shrink:
        0;

    overflow:
        hidden;

    background:
        #cbd5e1;

}


.project-image img {

    display:
        block;

    width:
        100% !important;

    height:
        100% !important;

    object-fit:
        cover;

    object-position:
        center;

    transition:
        transform .7s
        cubic-bezier(.2,.7,.2,1);

}


.project-card:hover
.project-image img {

    transform:
        scale(1.045);

}


/* IMAGE DARK GRADIENT */

.project-image::after {

    content: "";

    position:
        absolute;

    inset:
        0;

    pointer-events:
        none;

    background:
        linear-gradient(
            to top,
            rgba(15,23,42,.68),
            rgba(15,23,42,.05) 65%,
            transparent
        );

}


/* =====================================================
   NUMBER
===================================================== */

.project-index {

    position:
        absolute;

    top:
        20px;

    right:
        20px;

    width:
        44px;

    height:
        44px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        50%;

    background:
        rgba(255,255,255,.94);

    color:
        #172033;

    font-size:
        10px;

    font-weight:
        800;

    z-index:
        3;

}


/* =====================================================
   IMAGE CATEGORY
===================================================== */

.project-type {

    position:
        absolute;

    left:
        25px;

    bottom:
        20px;

    z-index:
        3;

    color:
        #ffffff;

    font-size:
        9px;

    font-weight:
        800;

    letter-spacing:
        1.8px;

}


/* =====================================================
   CONTENT
===================================================== */

.project-content {

    flex:
        1;

    display:
        flex;

    flex-direction:
        column;

    padding:
        28px 30px 31px;

    box-sizing:
        border-box;

}


/* =====================================================
   TOP META
===================================================== */

.project-top {

    display:
        flex;

    justify-content:
        space-between;

    align-items:
        center;

    padding-bottom:
        14px;

    margin-bottom:
        19px;

    border-bottom:
        1px solid #e5e7eb;

    color:
        #94a3b8;

    font-size:
        10px;

    font-weight:
        800;

    letter-spacing:
        1.6px;

}


/* =====================================================
   TITLE
===================================================== */

.project-content h2 {

    margin:
        0 0 23px;

    color:
        #172033;

    font-size:
        29px;

    line-height:
        1.08;

    letter-spacing:
        -1.2px;

    font-weight:
        850;

}


.project-content h2 strong {

    color:
        #8792a2;

    font-weight:
        800;

}


/* =====================================================
   PROJECT DETAILS
===================================================== */

.project-details {

    display:
        grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    border-top:
        1px solid #e5e7eb;

    border-bottom:
        1px solid #e5e7eb;

    margin-bottom:
        22px;

}


.project-details div {

    min-width:
        0;

    min-height:
        72px;

    display:
        flex;

    flex-direction:
        column;

    justify-content:
        center;

    padding:
        10px 14px;

    border-right:
        1px solid #e5e7eb;

    box-sizing:
        border-box;

}


.project-details div:last-child {

    border-right:
        0;

}


.project-details small {

    margin-bottom:
        7px;

    color:
        #a0aaba;

    font-size:
        10px;

    font-weight:
        800;

    letter-spacing:
        1.2px;

}


.project-details strong {

    color:
        #263246;

    font-size:
        10px;

    line-height:
        1.4;

    font-weight:
        700;

}


/* =====================================================
   DESCRIPTION
===================================================== */

.project-content > p {

    margin:
        0;

    color:
        #64748b;

    font-size:
        13px;

    line-height:
        1.7;

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1050px) {

    .projects-container {

        width:
            calc(100% - 50px);

    }

    .projects-page-head {

        grid-template-columns:
            1fr;

        gap:
            25px;

    }

    .projects-intro {

        max-width:
            650px;

    }

    .projects-grid {

        gap:
            24px !important;

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 700px) {

    .projects-page {

        padding:
            70px 0 85px;

    }

    .projects-container {

        width:
            calc(100% - 32px);

    }

    .projects-page-head {

        padding-bottom:
            35px;

    }

    .projects-heading h1 {

        font-size:
            47px;

        line-height:
            .97;

        letter-spacing:
            -2.5px;

    }

    .projects-intro p {

        font-size:
            14px;

        line-height:
            1.7;

    }

    .projects-grid {

        grid-template-columns:
            1fr !important;

        gap:
            24px !important;

        margin-top:
            30px;

    }

    .project-image {

        height:
            245px !important;

    }

    .project-content {

        padding:
            24px 21px 27px;

    }

    .project-content h2 {

        font-size:
            25px;

        letter-spacing:
            -1px;

    }

    .project-details {

        grid-template-columns:
            repeat(2, minmax(0,1fr));

    }

    .project-details div {

        min-height:
            68px;

    }

    .project-details div:nth-child(2) {

        border-right:
            0;

    }

    .project-details div:nth-child(3) {

        grid-column:
            1 / -1;

        border-top:
            1px solid #e5e7eb;

        border-right:
            0;

    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .projects-heading h1 {

        font-size:
            39px;

        letter-spacing:
            -2px;

    }

    .project-image {

        height:
            220px !important;

    }

    .project-content h2 {

        font-size:
            23px;

    }

}

/* =====================================================
   PREMIUM GALLERY
===================================================== */

.gallery-page {
    position: relative;
    padding: 105px 0 120px;
    background: #f8fafc;
    overflow: hidden;
}

.gallery-container {
    position: relative;
    z-index: 2;
    width: min(1320px, calc(100% - 80px));
    margin: auto;
}


/* HEADER */

.gallery-header {
    display: grid;
    grid-template-columns: 1fr 390px;
    gap: 80px;
    align-items: end;
    padding-bottom: 48px;
    border-bottom: 1px solid #dce3ea;
}

.gallery-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;

    color: #d97706;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.gallery-eyebrow span {
    width: 34px;
    height: 2px;
    background: #f59e0b;
}

.gallery-header h1 {
    margin: 0;
    color: #172033;

    font-size: clamp(55px, 6vw, 82px);
    line-height: .92;
    letter-spacing: -4px;
    font-weight: 850;
}

.gallery-header h1 strong {
    color: #f59e0b;
}

.gallery-header-right p {
    margin: 0;
    color: #64748b;
    font-size: 15px;
    line-height: 1.8;
}


/* GRID */

.gallery-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    grid-auto-rows: 255px;

    gap: 18px;

    margin-top: 38px;
}


/* ITEM */

.gallery-item {
    position: relative;
    display: block;

    overflow: hidden;

    background: #dbe2ea;

    text-decoration: none;

    isolation: isolate;
}

.gallery-item.gallery-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.gallery-tall {
    grid-row: span 2;
}

.gallery-item.gallery-wide {
    grid-column: span 2;
}


.gallery-item img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .7s cubic-bezier(.2,.7,.2,1);
}

.gallery-item:hover img {
    transform: scale(1.06);
}


/* OVERLAY */

.gallery-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    padding: 25px;

    background:
        linear-gradient(
            to top,
            rgba(15,23,42,.88),
            rgba(15,23,42,.12) 65%,
            transparent
        );

    opacity: 0;

    transition: opacity .35s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    display: block;

    margin-bottom: 8px;

    color: #f59e0b;

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.7px;
}

.gallery-overlay h3 {
    margin: 0 0 5px;

    color: #fff;

    font-size: 20px;
    line-height: 1.15;
    font-weight: 800;
}

.gallery-overlay p {
    margin: 0;

    color: rgba(255,255,255,.7);

    font-size: 10px;
}

.gallery-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: #f59e0b;
    color: #172033;

    font-size: 12px;
}


/* =====================================================
   CSS LIGHTBOX
===================================================== */

.gallery-lightbox {
    position: fixed;

    inset: 0;

    z-index: 99999;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 35px;

    background: rgba(8,15,28,.95);

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transition:
        opacity .3s ease,
        visibility .3s ease;
}


/* OPEN THROUGH #ID */

.gallery-lightbox:target {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


.lightbox-content {
    position: relative;

    max-width: min(1100px, 90vw);
    max-height: 90vh;

    text-align: center;
}


.lightbox-content img {
    display: block;

    max-width: 100%;
    max-height: 76vh;

    width: auto;
    height: auto;

    object-fit: contain;

    box-shadow:
        0 30px 90px rgba(0,0,0,.5);
}


.lightbox-caption {
    padding-top: 18px;
}


.lightbox-caption span {
    color: #f59e0b;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.7px;
}


.lightbox-caption h3 {
    margin: 6px 0 4px;

    color: #fff;

    font-size: 21px;
    font-weight: 750;
}


.lightbox-caption p {
    margin: 0;

    color: #94a3b8;

    font-size: 11px;
}


/* CLOSE */

.lightbox-close {
    position: fixed;

    top: 25px;
    right: 30px;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,.2);

    border-radius: 50%;

    background: rgba(255,255,255,.06);

    color: #fff;

    text-decoration: none;

    font-size: 18px;

    transition: .3s ease;
}

.lightbox-close:hover {
    background: #f59e0b;
    color: #172033;
    border-color: #f59e0b;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 1000px) {

    .gallery-container {
        width: calc(100% - 50px);
    }

    .gallery-header {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 700px) {

    .gallery-page {
        padding: 70px 0 85px;
    }

    .gallery-container {
        width: calc(100% - 32px);
    }

    .gallery-header {
        padding-bottom: 35px;
    }

    .gallery-header h1 {
        font-size: 48px;
        letter-spacing: -2.5px;
    }

    .gallery-header-right p {
        font-size: 14px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
        gap: 14px;
    }

    .gallery-item.gallery-large,
    .gallery-item.gallery-tall,
    .gallery-item.gallery-wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-overlay {
        opacity: 1;
        padding: 18px;
    }

    .gallery-overlay h3 {
        font-size: 17px;
    }

    .gallery-icon {
        width: 38px;
        height: 38px;
    }

    .gallery-lightbox {
        padding: 20px;
    }

    .lightbox-content img {
        max-height: 68vh;
    }

    .lightbox-close {
        top: 18px;
        right: 18px;
    }
}

/* =====================================================
   CONTACT PAGE
===================================================== */

.contact-container {
    width: min(1320px, calc(100% - 80px));
    margin: 0 auto;
}


/* =====================================================
   HERO
===================================================== */

.contact-hero {
    position: relative;

    padding: 105px 0 85px;

    background: #f8fafc;

    overflow: hidden;
}

.contact-hero::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    right: -180px;
    top: -220px;

    border: 1px solid rgba(245,158,11,.20);

    border-radius: 50%;
}

.contact-hero-grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns: 1fr 390px;

    gap: 100px;

    align-items: end;
}

.contact-eyebrow {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 22px;

    color: #d97706;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;
}

.contact-eyebrow span {
    width: 35px;
    height: 2px;

    background: #f59e0b;
}

.contact-hero h1 {
    margin: 0;

    max-width: 800px;

    color: #172033;

    font-size: clamp(55px, 6.5vw, 88px);

    line-height: .92;

    letter-spacing: -4px;

    font-weight: 850;
}

.contact-hero h1 strong {
    display: block;

    color: #f59e0b;
}

.contact-hero-content > p {
    max-width: 690px;

    margin: 30px 0 0;

    color: #64748b;

    font-size: 16px;

    line-height: 1.8;
}

.contact-hero-note {
    padding-left: 35px;

    border-left: 1px solid #dce3ea;
}

.contact-hero-note span {
    display: block;

    margin-bottom: 15px;

    color: #94a3b8;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;
}

.contact-hero-note p {
    margin: 0;

    color: #526783;

    font-size: 14px;

    line-height: 1.8;
}


/* =====================================================
   MAIN
===================================================== */

.contact-main {
    padding: 100px 0;

    background: #fff;
}

.contact-layout {
    display: grid;

    grid-template-columns: .85fr 1.15fr;

    gap: 85px;

    align-items: start;
}


/* =====================================================
   INFORMATION
===================================================== */

.contact-section-label {
    margin-bottom: 18px;

    color: #d97706;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;
}

.contact-information h2 {
    margin: 0;

    color: #172033;

    font-size: clamp(42px, 4vw, 58px);

    line-height: .98;

    letter-spacing: -2.5px;

    font-weight: 850;
}

.contact-information h2 strong {
    display: block;

    color: #f59e0b;
}

.contact-intro {
    max-width: 520px;

    margin: 25px 0 40px;

    color: #64748b;

    font-size: 15px;

    line-height: 1.8;
}


/* INFO ROW */

.contact-info-row {
    position: relative;

    display: flex;

    align-items: center;

    gap: 18px;

    padding: 22px 0;

    border-top: 1px solid #e1e7ed;

    text-decoration: none;
}

.contact-info-row:last-of-type {
    border-bottom: 1px solid #e1e7ed;
}

.contact-info-icon {
    width: 50px;
    height: 50px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #e0e6ed;

    border-radius: 50%;

    background: #f8fafc;

    color: #f59e0b;

    font-size: 16px;

    transition: .3s ease;
}

.contact-info-row:hover .contact-info-icon {
    background: #f59e0b;

    border-color: #f59e0b;

    color: #fff;

    transform: translateY(-2px);
}

.contact-info-content {
    min-width: 0;
}

.contact-info-content span {
    display: block;

    margin-bottom: 5px;

    color: #94a3b8;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.7px;
}

.contact-info-content h3 {
    margin: 0;

    color: #172033;

    font-size: 16px;

    font-weight: 750;

    word-break: break-word;
}

.contact-info-content p {
    margin: 4px 0 0;

    color: #7b8da5;

    font-size: 11px;
}

.contact-info-arrow {
    margin-left: auto;

    color: #cbd5e1;

    font-size: 15px;

    transition: .3s ease;
}

.contact-info-row:hover .contact-info-arrow {
    color: #f59e0b;

    transform: translate(3px,-3px);
}


/* RESPONSE BOX */

.contact-response {
    display: flex;

    gap: 15px;

    margin-top: 28px;

    padding: 18px;

    background: #fffaf0;

    border: 1px solid #f8dfae;
}

.contact-response-icon {
    width: 38px;
    height: 38px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f59e0b;

    color: #fff;

    border-radius: 8px;

    font-size: 13px;
}

.contact-response strong {
    display: block;

    color: #172033;

    font-size: 13px;
}

.contact-response p {
    margin: 5px 0 0;

    color: #718198;

    font-size: 11px;

    line-height: 1.6;
}


/* =====================================================
   FORM
===================================================== */

.contact-form-box {
    padding: 42px;

    background: #f8fafc;

    border: 1px solid #dce3ea;

    box-shadow:
        0 25px 70px rgba(15,23,42,.06);
}

.form-heading {
    padding-bottom: 28px;

    margin-bottom: 28px;

    border-bottom: 1px solid #dce3ea;
}

.form-heading > div > span {
    display: block;

    margin-bottom: 12px;

    color: #d97706;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.8px;
}

.form-heading h2 {
    margin: 0;

    color: #172033;

    font-size: 32px;

    line-height: 1.05;

    letter-spacing: -1.2px;

    font-weight: 800;
}

.form-heading h2 strong {
    color: #f59e0b;
}


/* FORM GRID */

.form-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;
}

.form-field {
    margin-bottom: 20px;
}

.form-field label {
    display: block;

    margin-bottom: 8px;

    color: #334155;

    font-size: 11px;

    font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {

    width: 100%;

    box-sizing: border-box;

    border: 1px solid #d8e0e8;

    outline: none;

    background: #fff;

    color: #172033;

    border-radius: 6px;

    font-family: inherit;

    font-size: 13px;

    transition:
        border-color .3s ease,
        box-shadow .3s ease;
}

.form-field input,
.form-field select {
    height: 50px;

    padding: 0 15px;
}

.form-field textarea {
    min-height: 125px;

    padding: 14px 15px;

    resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #a5b1c1;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: #f59e0b;

    box-shadow:
        0 0 0 3px rgba(245,158,11,.10);
}


/* SUBMIT */

.contact-submit {
    width: 100%;

    min-height: 56px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    padding: 0 8px 0 22px;

    border: 0;

    border-radius: 7px;

    background: #f59e0b;

    color: #172033;

    font-family: inherit;

    font-size: 13px;

    font-weight: 800;

    cursor: pointer;

    transition: .35s ease;
}

.contact-submit span {
    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,.25);

    border-radius: 5px;
}

.contact-submit:hover {
    background: #d97706;

    color: #fff;

    transform: translateY(-2px);

    box-shadow:
        0 15px 30px rgba(245,158,11,.22);
}

.form-note {
    margin: 14px 0 0;

    color: #94a3b8;

    font-size: 9px;

    line-height: 1.5;

    text-align: center;
}




/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1050px) {

    .contact-hero-grid {
        grid-template-columns: 1fr 300px;

        gap: 50px;
    }

    .contact-layout {
        grid-template-columns: 1fr;

        gap: 65px;
    }

}


@media (max-width: 750px) {

    .contact-container {
        width: calc(100% - 32px);
    }

    .contact-hero {
        padding: 70px 0 60px;
    }

    .contact-hero-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .contact-hero h1 {
        font-size: 50px;

        letter-spacing: -2.5px;
    }

    .contact-hero-note {
        padding-left: 20px;
    }

    .contact-main {
        padding: 70px 0;
    }

    .contact-form-box {
        padding: 25px 20px;
    }

    .form-grid {
        grid-template-columns: 1fr;

        gap: 0;
    }

    .contact-information h2 {
        font-size: 42px;
    }

}


@media (max-width: 480px) {

    .contact-hero h1 {
        font-size: 43px;

        letter-spacing: -2px;
    }

    .contact-information h2 {
        font-size: 38px;
    }

    .contact-info-row {
        gap: 12px;
    }

    .contact-info-icon {
        width: 44px;
        height: 44px;
    }

    .contact-info-content h3 {
        font-size: 14px;
    }

    .contact-info-arrow {
        display: none;
    }

    .contact-form-box {
        padding: 22px 16px;
    }

    .form-heading h2 {
        font-size: 27px;
    }

}