/* =========================================
   AXIOM CONTRACTORS
   MASTER STYLESHEET
========================================= */


/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family:
        Arial,
        Helvetica,
        sans-serif;

    background: #ffffff;

    color: #17212b;

    line-height: 1.6;

    overflow-x: hidden;
}


a {
    color: inherit;
    text-decoration: none;
}


button {
    font: inherit;
}


/* =========================================
   AXIOM BRAND COLOURS
========================================= */

:root {

    --axiom-navy: #12355b;

    --axiom-navy-dark: #08243e;

    --axiom-teal: #14a6a1;

    --axiom-teal-light: #54c9c3;

    --axiom-orange: #f28c28;

    --axiom-orange-dark: #d96f0d;

    --axiom-white: #ffffff;

    --axiom-cream: #f7f9fa;

    --axiom-gray: #667085;

    --axiom-light-gray: #e8edf1;

    --axiom-dark: #17212b;

}


/* =========================================
   TOP CONTACT BAR
========================================= */

.top-bar {

    min-height: 43px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding:
        8px 5%;

    background:
        linear-gradient(
            90deg,
            var(--axiom-navy-dark),
            var(--axiom-navy),
            var(--axiom-teal)
        );

    color:
        var(--axiom-white);

    font-size: 12px;
}


.top-bar-left,
.top-bar-right {

    display: flex;

    align-items: center;

    gap: 22px;
}


.top-bar-left span:first-child {

    color:
        #ffd7a0;

    font-weight: 800;
}


.top-bar-left span:last-child {

    color:
        rgba(
            255,
            255,
            255,
            0.88
        );
}


.top-bar-right a {

    color:
        var(--axiom-white);

    transition:
        color 0.25s ease;
}


.top-bar-right a:hover {

    color:
        #ffd7a0;
}


/* =========================================
   MAIN HEADER
========================================= */

.main-header {

    min-height: 92px;

    position: sticky;

    top: 0;

    z-index: 1000;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    padding:
        0 5%;

    background:
        rgba(
            255,
            255,
            255,
            0.96
        );

    backdrop-filter:
        blur(14px);

    border-bottom:
        1px solid
        rgba(
            18,
            53,
            91,
            0.10
        );

    box-shadow:
        0 7px 28px
        rgba(
            8,
            36,
            62,
            0.08
        );
}


/* =========================================
   AXIOM BRAND
========================================= */

.brand {

    display: flex;

    align-items: center;

    gap: 12px;

    flex-shrink: 0;
}


.brand-mark {

    width: 52px;

    height: 52px;

    display: grid;

    place-items: center;

    border-radius: 9px;

    background:
        linear-gradient(
            135deg,
            var(--axiom-teal),
            var(--axiom-navy)
        );

    color:
        var(--axiom-white);

    font-size: 19px;

    font-weight: 900;

    letter-spacing: -1px;

    box-shadow:
        0 9px 24px
        rgba(
            20,
            166,
            161,
            0.26
        );

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.brand:hover
.brand-mark {

    transform:
        translateY(-2px)
        rotate(-2deg);

    box-shadow:
        0 12px 30px
        rgba(
            20,
            166,
            161,
            0.34
        );
}


.brand-text {

    display: flex;

    flex-direction: column;

    line-height: 1;
}


.brand-text strong {

    color:
        var(--axiom-navy-dark);

    font-size: 20px;

    letter-spacing: 2px;
}


.brand-text span {

    margin-top: 6px;

    color:
        var(--axiom-teal);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;
}


/* =========================================
   DESKTOP NAVIGATION
========================================= */

.desktop-nav {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 25px;
}


.desktop-nav a {

    position: relative;

    padding:
        35px 0;

    color:
        #344054;

    font-size: 13px;

    font-weight: 700;

    transition:
        color 0.25s ease;
}


.desktop-nav a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 27px;

    width: 0;

    height: 3px;

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            var(--axiom-teal),
            var(--axiom-orange)
        );

    transition:
        width 0.3s ease;
}


.desktop-nav a:hover {

    color:
        var(--axiom-navy);
}


.desktop-nav a:hover::after {

    width: 100%;
}


/* =========================================
   HEADER ACTIONS
========================================= */

.header-actions {

    display: flex;

    align-items: center;

    gap: 14px;
}


/* =========================================
   REQUEST QUOTE BUTTON
========================================= */

.quote-button {

    position: relative;

    overflow: hidden;

    padding:
        13px 21px;

    border-radius: 6px;

    background:
        linear-gradient(
            135deg,
            var(--axiom-orange),
            #ffad4d
        );

    color:
        var(--axiom-white);

    font-size: 12px;

    font-weight: 800;

    white-space: nowrap;

    box-shadow:
        0 9px 24px
        rgba(
            242,
            140,
            40,
            0.28
        );

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}


.quote-button:hover {

    transform:
        translateY(-3px);

    background:
        linear-gradient(
            135deg,
            var(--axiom-teal),
            var(--axiom-navy)
        );

    box-shadow:
        0 13px 30px
        rgba(
            18,
            53,
            91,
            0.22
        );
}


/* =========================================
   MOBILE MENU BUTTON
========================================= */

.mobile-menu-button {

    width: 44px;

    height: 44px;

    display: none;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    gap: 5px;

    border: 0;

    border-radius: 6px;

    background:
        linear-gradient(
            135deg,
            var(--axiom-navy),
            var(--axiom-teal)
        );

    cursor: pointer;
}


.mobile-menu-button span {

    width: 21px;

    height: 2px;

    border-radius: 10px;

    background:
        var(--axiom-white);

    transition:
        0.3s ease;
}


.mobile-menu-button.active
span:nth-child(1) {

    transform:
        translateY(7px)
        rotate(45deg);
}


.mobile-menu-button.active
span:nth-child(2) {

    opacity: 0;
}


.mobile-menu-button.active
span:nth-child(3) {

    transform:
        translateY(-7px)
        rotate(-45deg);
}


/* =========================================
   MOBILE NAVIGATION
========================================= */

.mobile-nav {

    position: fixed;

    top: 135px;

    left: 0;

    right: 0;

    z-index: 999;

    display: flex;

    flex-direction: column;

    padding:
        20px;

    background:
        linear-gradient(
            160deg,
            var(--axiom-navy-dark),
            var(--axiom-navy)
        );

    border-top:
        1px solid
        rgba(
            255,
            255,
            255,
            0.10
        );

    box-shadow:
        0 20px 45px
        rgba(
            8,
            36,
            62,
            0.22
        );

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(-20px);

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease;
}


.mobile-nav.active {

    opacity: 1;

    visibility: visible;

    transform:
        translateY(0);
}


.mobile-nav > a {

    padding:
        14px 10px;

    border-bottom:
        1px solid
        rgba(
            255,
            255,
            255,
            0.08
        );

    color:
        var(--axiom-white);

    font-size: 13px;

    font-weight: 700;

    transition:
        color 0.25s ease,
        padding-left 0.25s ease;
}


.mobile-nav > a:hover {

    color:
        var(--axiom-teal-light);

    padding-left:
        16px;
}


.mobile-nav
.mobile-quote-button {

    margin-top:
        16px;

    border:
        0;

    border-radius:
        6px;

    background:
        linear-gradient(
            135deg,
            var(--axiom-orange),
            #ffad4d
        );

    color:
        var(--axiom-white);

    text-align:
        center;
}


/* =========================================
   SELECTION COLOUR
========================================= */

::selection {

    background:
        var(--axiom-teal);

    color:
        var(--axiom-white);
}


/* =========================================
   TABLET
========================================= */

@media (
    max-width: 1100px
) {

    .desktop-nav {

        display: none;
    }


    .mobile-menu-button {

        display: flex;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (
    max-width: 700px
) {

    .top-bar {

        justify-content:
            center;

        text-align:
            center;

        padding:
            8px 18px;
    }


    .top-bar-left
    span:nth-child(2),
    .top-bar-right {

        display: none;
    }


    .main-header {

        min-height:
            82px;

        padding:
            0 18px;
    }


    .brand {

        gap: 9px;
    }


    .brand-mark {

        width: 44px;

        height: 44px;

        font-size: 16px;
    }


    .brand-text strong {

        font-size: 16px;
    }


    .brand-text span {

        font-size: 8px;

        letter-spacing:
            1.4px;
    }


    .quote-button {

        display: none;
    }


    .mobile-nav {

        top: 125px;
    }

}


/* =========================================
   VERY SMALL PHONES
========================================= */

@media (
    max-width: 390px
) {

    .brand-text strong {

        font-size: 14px;

        letter-spacing: 1px;
    }


    .brand-text span {

        font-size: 7px;
    }

}

/* =========================================
   AXIOM HERO SLIDER
========================================= */

.hero {
    position: relative;

    height: 78vh;

    min-height: 590px;

    overflow: hidden;

    background:
        var(--axiom-navy-dark);
}


/* =========================================
   HERO SLIDES
========================================= */

.hero-slide {
    position: absolute;

    inset: 0;

    opacity: 0;

    visibility: hidden;

    transform: scale(1.04);

    transition:
        opacity 0.8s ease,
        visibility 0.8s ease,
        transform 5s ease;
}


.hero-slide.active {
    opacity: 1;

    visibility: visible;

    transform: scale(1);
}


.hero-slide img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;
}


/* =========================================
   HERO OVERLAY
========================================= */

.hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(8, 36, 62, 0.95) 0%,
            rgba(18, 53, 91, 0.82) 38%,
            rgba(8, 36, 62, 0.40) 72%,
            rgba(8, 36, 62, 0.18) 100%
        );
}


/* =========================================
   HERO CONTENT
========================================= */

.hero-content {
    position: absolute;

    z-index: 3;

    left: 7%;

    top: 50%;

    transform:
        translateY(-50%);

    width:
        min(
            680px,
            84%
        );

    color:
        var(--axiom-white);
}


/* SMALL HERO LABEL */

.hero-kicker {
    display: inline-block;

    margin-bottom: 18px;

    padding:
        7px 13px;

    border-left:
        4px solid
        var(--axiom-orange);

    background:
        rgba(
            20,
            166,
            161,
            0.18
        );

    color:
        var(--axiom-teal-light);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;
}


/* HERO HEADINGS */

.hero h1,
.hero h2 {
    max-width: 720px;

    color:
        var(--axiom-white);

    font-size:
        clamp(
            42px,
            5.3vw,
            76px
        );

    line-height: 1.04;

    letter-spacing: -2px;
}


.hero h1 span,
.hero h2 span {
    display: block;

    color:
        var(--axiom-teal-light);
}


/* HERO TEXT */

.hero-content p {
    max-width: 590px;

    margin-top: 22px;

    color:
        rgba(
            255,
            255,
            255,
            0.88
        );

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================
   HERO BUTTONS
========================================= */

.hero-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 14px;

    margin-top: 30px;
}


.hero-primary-button,
.hero-secondary-button {
    min-width: 165px;

    padding:
        14px 22px;

    border-radius: 6px;

    text-align: center;

    font-size: 13px;

    font-weight: 800;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease,
        box-shadow 0.3s ease;
}


/* PRIMARY */

.hero-primary-button {
    background:
        linear-gradient(
            135deg,
            var(--axiom-orange),
            #ffad4d
        );

    color:
        var(--axiom-white);

    box-shadow:
        0 10px 28px
        rgba(
            242,
            140,
            40,
            0.28
        );
}


.hero-primary-button:hover {
    transform:
        translateY(-3px);

    background:
        linear-gradient(
            135deg,
            var(--axiom-teal),
            var(--axiom-navy)
        );
}


/* SECONDARY */

.hero-secondary-button {
    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.55
        );

    background:
        rgba(
            255,
            255,
            255,
            0.08
        );

    color:
        var(--axiom-white);

    backdrop-filter:
        blur(8px);
}


.hero-secondary-button:hover {
    transform:
        translateY(-3px);

    background:
        var(--axiom-white);

    color:
        var(--axiom-navy);
}


/* =========================================
   HERO ARROWS
========================================= */

.hero-arrow {
    position: absolute;

    z-index: 5;

    top: 50%;

    transform:
        translateY(-50%);

    width: 48px;

    height: 48px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.25
        );

    border-radius: 50%;

    background:
        rgba(
            8,
            36,
            62,
            0.48
        );

    color:
        var(--axiom-white);

    font-size: 20px;

    cursor: pointer;

    backdrop-filter:
        blur(8px);

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}


.hero-arrow:hover {
    background:
        var(--axiom-orange);
}


.hero-prev {
    left: 22px;
}


.hero-next {
    right: 22px;
}


/* =========================================
   HERO DOTS
========================================= */

.hero-dots {
    position: absolute;

    z-index: 5;

    left: 50%;

    bottom: 28px;

    transform:
        translateX(-50%);

    display: flex;

    align-items: center;

    gap: 9px;
}


.hero-dot {
    width: 9px;

    height: 9px;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background:
        rgba(
            255,
            255,
            255,
            0.45
        );

    cursor: pointer;

    transition:
        width 0.3s ease,
        border-radius 0.3s ease,
        background 0.3s ease;
}


.hero-dot.active {
    width: 30px;

    border-radius: 20px;

    background:
        var(--axiom-orange);
}


/* =========================================
   HERO ENTRANCE ANIMATION
========================================= */

.hero-slide.active
.hero-content {
    animation:
        heroContentReveal
        0.9s ease
        both;
}


@keyframes heroContentReveal {

    from {
        opacity: 0;

        transform:
            translateY(-45%)
            translateX(-35px);
    }

    to {
        opacity: 1;

        transform:
            translateY(-50%)
            translateX(0);
    }

}


/* =========================================
   TABLET HERO
========================================= */

@media (
    max-width: 900px
) {

    .hero {
        height: 74vh;

        min-height: 560px;
    }


    .hero-content {
        left: 6%;

        width: 82%;
    }


    .hero h1,
    .hero h2 {
        font-size:
            clamp(
                40px,
                7vw,
                62px
            );
    }

}


/* =========================================
   MOBILE HERO
========================================= */

@media (
    max-width: 700px
) {

    .hero {
        height: 72vh;

        min-height: 560px;
    }


    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(8, 36, 62, 0.95),
                rgba(8, 36, 62, 0.72)
            );
    }


    .hero-content {
        left: 20px;

        width:
            calc(
                100% - 40px
            );
    }


    .hero-kicker {
        font-size: 10px;

        letter-spacing: 1.4px;
    }


    .hero h1,
    .hero h2 {
        font-size:
            clamp(
                38px,
                12vw,
                54px
            );

        letter-spacing: -1px;
    }


    .hero-content p {
        font-size: 14px;

        line-height: 1.7;
    }


    .hero-actions {
        flex-direction: column;

        align-items: flex-start;
    }


    .hero-primary-button,
    .hero-secondary-button {
        width: 190px;
    }


    .hero-arrow {
        display: none;
    }


    .hero-dots {
        bottom: 20px;
    }

}

/* =========================================
   ABOUT AXIOM
========================================= */

.about-section {
    padding:
        95px 6%;

    background:
        linear-gradient(
            135deg,
            #ffffff,
            #f4fbfb
        );
}


.about-layout {
    max-width:
        1280px;

    margin:
        0 auto;

    display:
        grid;

    grid-template-columns:
        0.95fr 1.05fr;

    gap:
        70px;

    align-items:
        center;
}


/* ABOUT IMAGE */

.about-visual {
    position:
        relative;

    min-height:
        560px;

    border-radius:
        18px;

    overflow:
        hidden;

    box-shadow:
        0 30px 70px
        rgba(
            8,
            36,
            62,
            0.16
        );
}


.about-visual img {
    width:
        100%;

    height:
        100%;

    min-height:
        560px;

    display:
        block;

    object-fit:
        cover;

    transition:
        transform
        0.8s ease;
}


.about-visual:hover img {
    transform:
        scale(1.04);
}


/* EXPERIENCE CARD */

.about-experience-card {
    position:
        absolute;

    right:
        22px;

    bottom:
        22px;

    width:
        180px;

    padding:
        23px;

    border-radius:
        12px;

    background:
        linear-gradient(
            135deg,
            var(--axiom-orange),
            #ffad4d
        );

    color:
        #ffffff;

    box-shadow:
        0 18px 40px
        rgba(
            242,
            140,
            40,
            0.30
        );
}


.about-experience-card strong {
    display:
        block;

    font-size:
        42px;

    line-height:
        1;
}


.about-experience-card span {
    display:
        block;

    margin-top:
        8px;

    font-size:
        12px;

    font-weight:
        700;

    line-height:
        1.4;
}


/* ABOUT CONTENT */

.section-kicker {
    display:
        inline-block;

    margin-bottom:
        13px;

    color:
        var(--axiom-teal);

    font-size:
        11px;

    font-weight:
        900;

    letter-spacing:
        3px;
}


.about-content h2,
.values-heading h2 {
    color:
        var(--axiom-navy-dark);

    font-size:
        clamp(
            38px,
            4.2vw,
            58px
        );

    line-height:
        1.08;

    letter-spacing:
        -1.5px;
}


.about-content h2 span,
.values-heading h2 span {
    display:
        block;

    color:
        var(--axiom-teal);
}


.about-content p {
    margin-top:
        18px;

    color:
        var(--axiom-gray);

    font-size:
        15px;

    line-height:
        1.85;
}


.about-content
.about-lead {
    color:
        #344054;

    font-size:
        17px;

    font-weight:
        600;
}


/* ABOUT STATISTICS */

.about-highlights {
    display:
        grid;

    grid-template-columns:
        repeat(
            3,
            1fr
        );

    gap:
        14px;

    margin-top:
        30px;
}


.about-highlights div {
    padding:
        18px;

    border-radius:
        10px;

    background:
        #ffffff;

    border:
        1px solid
        rgba(
            20,
            166,
            161,
            0.14
        );

    box-shadow:
        0 8px 24px
        rgba(
            8,
            36,
            62,
            0.05
        );
}


.about-highlights strong {
    display:
        block;

    color:
        var(--axiom-navy);

    font-size:
        24px;
}


.about-highlights span {
    display:
        block;

    margin-top:
        2px;

    color:
        var(--axiom-gray);

    font-size:
        11px;

    font-weight:
        700;
}


/* ABOUT BUTTON */

.about-contact-button {
    display:
        inline-block;

    margin-top:
        30px;

    padding:
        14px 23px;

    border-radius:
        6px;

    background:
        linear-gradient(
            135deg,
            var(--axiom-navy),
            var(--axiom-teal)
        );

    color:
        #ffffff;

    font-size:
        13px;

    font-weight:
        800;

    box-shadow:
        0 11px 28px
        rgba(
            18,
            53,
            91,
            0.18
        );

    transition:
        0.3s ease;
}


.about-contact-button:hover {
    transform:
        translateY(-3px);

    background:
        linear-gradient(
            135deg,
            var(--axiom-orange),
            #ffad4d
        );
}


/* =========================================
   VISION / MISSION / VALUES
========================================= */

.values-section {
    padding:
        90px 6%;

    background:
        linear-gradient(
            135deg,
            var(--axiom-navy-dark),
            var(--axiom-navy)
        );

    color:
        #ffffff;
}


.values-heading {
    max-width:
        800px;

    margin:
        0 auto 50px;

    text-align:
        center;
}


.values-heading h2 {
    color:
        #ffffff;
}


.values-heading h2 span {
    color:
        var(--axiom-teal-light);
}


/* VISION / MISSION */

.vision-mission-grid {
    max-width:
        1200px;

    margin:
        0 auto;

    display:
        grid;

    grid-template-columns:
        repeat(
            2,
            1fr
        );

    gap:
        24px;
}


.vision-card,
.mission-card {
    padding:
        35px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.12
        );

    border-radius:
        14px;

    background:
        rgba(
            255,
            255,
            255,
            0.06
        );

    backdrop-filter:
        blur(8px);

    transition:
        0.3s ease;
}


.vision-card:hover,
.mission-card:hover {
    transform:
        translateY(-6px);

    background:
        rgba(
            255,
            255,
            255,
            0.10
        );
}


.value-icon {
    width:
        48px;

    height:
        48px;

    display:
        grid;

    place-items:
        center;

    margin-bottom:
        18px;

    border-radius:
        10px;

    background:
        var(--axiom-orange);

    color:
        #ffffff;

    font-size:
        21px;
}


.vision-card h3,
.mission-card h3 {
    font-size:
        24px;

    margin-bottom:
        10px;
}


.vision-card p,
.mission-card p {
    color:
        rgba(
            255,
            255,
            255,
            0.76
        );

    font-size:
        14px;

    line-height:
        1.8;
}


/* CORE VALUES */

.core-values {
    max-width:
        1200px;

    margin:
        25px auto 0;

    display:
        grid;

    grid-template-columns:
        repeat(
            4,
            1fr
        );

    gap:
        15px;
}


.core-value-card {
    padding:
        25px 22px;

    border-radius:
        12px;

    background:
        #ffffff;

    color:
        var(--axiom-dark);

    transition:
        transform
        0.3s ease;
}


.core-value-card:hover {
    transform:
        translateY(-5px);
}


.core-value-card > span {
    color:
        var(--axiom-orange);

    font-size:
        11px;

    font-weight:
        900;

    letter-spacing:
        2px;
}


.core-value-card h3 {
    margin:
        8px 0;

    color:
        var(--axiom-navy);

    font-size:
        18px;
}


.core-value-card p {
    color:
        var(--axiom-gray);

    font-size:
        12px;

    line-height:
        1.7;
}


/* =========================================
   ABOUT RESPONSIVE
========================================= */

@media (
    max-width: 950px
) {

    .about-layout {
        grid-template-columns:
            1fr;

        gap:
            45px;
    }


    .about-visual,
    .about-visual img {
        min-height:
            470px;
    }


    .core-values {
        grid-template-columns:
            repeat(
                2,
                1fr
            );
    }

}


@media (
    max-width: 700px
) {

    .about-section,
    .values-section {
        padding:
            70px 20px;
    }


    .about-visual,
    .about-visual img {
        min-height:
            400px;
    }


    .about-experience-card {
        right:
            14px;

        bottom:
            14px;

        width:
            150px;
    }


    .about-experience-card strong {
        font-size:
            34px;
    }


    .about-highlights {
        grid-template-columns:
            1fr;
    }


    .vision-mission-grid,
    .core-values {
        grid-template-columns:
            1fr;
    }


    .vision-card,
    .mission-card {
        padding:
            28px 22px;
    }

}

/* =========================================
   SCROLL REVEAL ANIMATIONS
========================================= */

.reveal-left,
.reveal-right,
.reveal-up {
    opacity: 0;

    transition:
        opacity 0.85s ease,
        transform 0.85s
        cubic-bezier(
            0.22,
            1,
            0.36,
            1
        );
}


/* FROM LEFT */

.reveal-left {
    transform:
        translateX(-80px);
}


/* FROM RIGHT */

.reveal-right {
    transform:
        translateX(80px);
}


/* FROM BOTTOM */

.reveal-up {
    transform:
        translateY(60px);
}


/* WHEN VISIBLE */

.reveal-left.is-visible,
.reveal-right.is-visible,
.reveal-up.is-visible {
    opacity: 1;

    transform:
        translate(0, 0);
}


/* MOBILE */

@media (max-width: 700px) {

    .reveal-left {
        transform:
            translateX(-35px);
    }

    .reveal-right {
        transform:
            translateX(35px);
    }

    .reveal-up {
        transform:
            translateY(35px);
    }

}


/* ACCESSIBILITY */

@media (
    prefers-reduced-motion:
    reduce
) {

    .reveal-left,
    .reveal-right,
    .reveal-up {
        opacity: 1 !important;

        transform:
            none !important;

        transition:
            none !important;
    }

}

/* =========================================
   SERVICES SECTION
========================================= */

.services-section {
    padding:
        100px 6%;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f5fafb 100%
        );
}


/* HEADING */

.services-heading {
    max-width:
        800px;

    margin:
        0 auto 55px;

    text-align:
        center;
}


.services-heading h2 {
    color:
        var(--axiom-navy-dark);

    font-size:
        clamp(
            38px,
            4.5vw,
            58px
        );

    line-height:
        1.08;

    letter-spacing:
        -1.5px;
}


.services-heading h2 span {
    display:
        block;

    color:
        var(--axiom-teal);
}


.services-heading > p {
    max-width:
        690px;

    margin:
        18px auto 0;

    color:
        var(--axiom-gray);

    font-size:
        15px;

    line-height:
        1.8;
}


/* =========================================
   SERVICES GRID
========================================= */

.services-grid {
    max-width:
        1250px;

    margin:
        0 auto;

    display:
        grid;

    grid-template-columns:
        repeat(
            3,
            1fr
        );

    gap:
        22px;
}


/* SERVICE CARD */

.service-card {
    position:
        relative;

    min-height:
        355px;

    display:
        flex;

    flex-direction:
        column;

    padding:
        32px 28px;

    overflow:
        hidden;

    border:
        1px solid
        rgba(
            18,
            53,
            91,
            0.10
        );

    border-radius:
        16px;

    background:
        #ffffff;

    box-shadow:
        0 12px 35px
        rgba(
            8,
            36,
            62,
            0.06
        );

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


.service-card::before {
    content: "";

    position:
        absolute;

    left:
        0;

    top:
        0;

    width:
        100%;

    height:
        5px;

    background:
        linear-gradient(
            90deg,
            var(--axiom-teal),
            var(--axiom-orange)
        );
}


.service-card:hover {
    transform:
        translateY(-10px);

    border-color:
        rgba(
            20,
            166,
            161,
            0.30
        );

    box-shadow:
        0 25px 55px
        rgba(
            8,
            36,
            62,
            0.13
        );
}


/* FEATURED POOL CARD */

.service-card-featured {
    background:
        linear-gradient(
            145deg,
            var(--axiom-navy-dark),
            var(--axiom-navy)
        );

    color:
        #ffffff;
}


.service-card-featured h3 {
    color:
        #ffffff !important;
}


.service-card-featured p {
    color:
        rgba(
            255,
            255,
            255,
            0.72
        ) !important;
}


.service-card-featured a {
    color:
        var(--axiom-teal-light) !important;
}


/* NUMBER */

.service-number {
    position:
        absolute;

    right:
        24px;

    top:
        22px;

    color:
        rgba(
            20,
            166,
            161,
            0.16
        );

    font-size:
        38px;

    font-weight:
        900;
}


.service-card-featured
.service-number {
    color:
        rgba(
            255,
            255,
            255,
            0.12
        );
}


/* ICON */

.service-icon {
    width:
        56px;

    height:
        56px;

    display:
        grid;

    place-items:
        center;

    margin-bottom:
        25px;

    border-radius:
        14px;

    background:
        linear-gradient(
            135deg,
            rgba(
                20,
                166,
                161,
                0.15
            ),
            rgba(
                242,
                140,
                40,
                0.14
            )
        );

    color:
        var(--axiom-teal);

    font-size:
        24px;

    font-weight:
        900;
}


.service-card-featured
.service-icon {
    background:
        rgba(
            255,
            255,
            255,
            0.12
        );

    color:
        var(--axiom-orange);
}


/* TEXT */

.service-card h3 {
    margin-bottom:
        13px;

    color:
        var(--axiom-navy-dark);

    font-size:
        21px;

    line-height:
        1.3;
}


.service-card p {
    color:
        var(--axiom-gray);

    font-size:
        13px;

    line-height:
        1.8;

    margin-bottom:
        25px;
}


/* SERVICE LINK */

.service-card a {
    margin-top:
        auto;

    width:
        fit-content;

    color:
        var(--axiom-teal);

    font-size:
        12px;

    font-weight:
        800;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}


.service-card a:hover {
    color:
        var(--axiom-orange);

    transform:
        translateX(5px);
}


/* =========================================
   STAGGERED REVEAL
========================================= */

.services-grid
.service-card:nth-child(1) {
    transition-delay:
        0.05s;
}


.services-grid
.service-card:nth-child(2) {
    transition-delay:
        0.10s;
}


.services-grid
.service-card:nth-child(3) {
    transition-delay:
        0.15s;
}


.services-grid
.service-card:nth-child(4) {
    transition-delay:
        0.20s;
}


.services-grid
.service-card:nth-child(5) {
    transition-delay:
        0.25s;
}


.services-grid
.service-card:nth-child(6) {
    transition-delay:
        0.30s;
}


/* =========================================
   SERVICES CTA
========================================= */

.services-cta {
    max-width:
        1250px;

    margin:
        35px auto 0;

    padding:
        32px 38px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        30px;

    border-radius:
        16px;

    background:
        linear-gradient(
            100deg,
            var(--axiom-teal),
            var(--axiom-navy)
        );

    color:
        #ffffff;

    box-shadow:
        0 20px 45px
        rgba(
            18,
            53,
            91,
            0.16
        );
}


.services-cta span {
    color:
        #d7ffff;

    font-size:
        10px;

    font-weight:
        900;

    letter-spacing:
        2px;
}


.services-cta h3 {
    margin-top:
        5px;

    font-size:
        clamp(
            21px,
            2.5vw,
            30px
        );
}


.services-cta > a {
    flex-shrink:
        0;

    padding:
        14px 22px;

    border-radius:
        6px;

    background:
        linear-gradient(
            135deg,
            var(--axiom-orange),
            #ffad4d
        );

    color:
        #ffffff;

    font-size:
        12px;

    font-weight:
        800;

    transition:
        0.3s ease;
}


.services-cta > a:hover {
    transform:
        translateY(-3px);

    background:
        #ffffff;

    color:
        var(--axiom-navy);
}


/* =========================================
   SERVICES RESPONSIVE
========================================= */

@media (
    max-width: 1000px
) {

    .services-grid {
        grid-template-columns:
            repeat(
                2,
                1fr
            );
    }

}


@media (
    max-width: 700px
) {

    .services-section {
        padding:
            75px 20px;
    }


    .services-grid {
        grid-template-columns:
            1fr;
    }


    .service-card {
        min-height:
            auto;
    }


    .services-cta {
        padding:
            28px 22px;

        flex-direction:
            column;

        align-items:
            flex-start;
    }


    .services-cta > a {
        width:
            100%;

        text-align:
            center;
    }

}

/* =========================================
   SPECIALIZED CONSTRUCTION
========================================= */

.specialized-section {
    padding: 100px 6%;
    background: #071f35;
    color: #ffffff;
}


/* HEADING */

.specialized-heading {
    max-width: 820px;
    margin: 0 auto 60px;
    text-align: center;
}

.specialized-heading h2 {
    color: #ffffff;

    font-size:
        clamp(
            40px,
            4.8vw,
            62px
        );

    line-height: 1.06;
    letter-spacing: -1.5px;
}

.specialized-heading h2 span {
    display: block;
    color: var(--axiom-teal-light);
}

.specialized-heading p {
    max-width: 680px;
    margin: 18px auto 0;

    color:
        rgba(
            255,
            255,
            255,
            0.70
        );

    font-size: 15px;
    line-height: 1.8;
}


/* =========================================
   LARGE FEATURE
========================================= */

.specialized-feature {
    max-width: 1250px;
    margin: 0 auto 35px;

    display: grid;

    grid-template-columns:
        1.15fr
        0.85fr;

    min-height: 520px;
    overflow: hidden;

    border-radius: 20px;

    background: #ffffff;

    box-shadow:
        0 30px 70px
        rgba(
            0,
            0,
            0,
            0.25
        );
}


/* FEATURE IMAGE */

.specialized-feature-image {
    position: relative;
    overflow: hidden;
}

.specialized-feature-image img {
    width: 100%;
    height: 100%;

    min-height: 520px;

    display: block;

    object-fit: cover;

    transition:
        transform
        0.8s ease;
}

.specialized-feature:hover
.specialized-feature-image img {
    transform: scale(1.05);
}


/* IMAGE LABEL */

.specialized-image-label {
    position: absolute;

    left: 22px;
    bottom: 22px;

    padding: 10px 16px;

    border-radius: 6px;

    background:
        var(--axiom-orange);

    color: #ffffff;

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 1px;

    text-transform: uppercase;
}


/* FEATURE CONTENT */

.specialized-feature-content {
    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 55px 48px;

    color:
        var(--axiom-dark);
}

.specialized-small-title {
    color:
        var(--axiom-orange);

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 2.5px;
}

.specialized-feature-content h3 {
    margin-top: 12px;

    color:
        var(--axiom-navy-dark);

    font-size:
        clamp(
            32px,
            3.5vw,
            48px
        );

    line-height: 1.08;
}

.specialized-feature-content h3 span {
    display: block;

    color:
        var(--axiom-teal);
}

.specialized-feature-content p {
    margin-top: 18px;

    color:
        var(--axiom-gray);

    font-size: 14px;
    line-height: 1.8;
}

.specialized-feature-content a {
    width: fit-content;

    margin-top: 27px;

    padding: 13px 20px;

    border-radius: 6px;

    background:
        linear-gradient(
            135deg,
            var(--axiom-teal),
            var(--axiom-navy)
        );

    color: #ffffff;

    font-size: 12px;
    font-weight: 800;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.specialized-feature-content a:hover {
    transform:
        translateY(-3px);

    background:
        var(--axiom-orange);
}


/* =========================================
   SPECIALIZED GRID
========================================= */

.specialized-grid {
    max-width: 1250px;
    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(
            2,
            1fr
        );

    gap: 22px;
}

.specialized-card {
    min-height: 390px;

    overflow: hidden;

    border-radius: 16px;
}

.specialized-card-wide {
    grid-column: 1 / -1;
    min-height: 430px;
}

.specialized-card-image {
    position: relative;

    width: 100%;
    height: 100%;

    min-height: inherit;

    overflow: hidden;
}

.specialized-card-image img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform
        0.7s ease;
}

.specialized-card:hover img {
    transform:
        scale(1.07);
}


/* DARK OVERLAY */

.specialized-card-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(
                8,
                36,
                62,
                0.08
            ) 10%,
            rgba(
                8,
                36,
                62,
                0.92
            ) 100%
        );
}


/* CARD TEXT */

.specialized-card-content {
    position: absolute;

    z-index: 2;

    left: 28px;
    right: 28px;
    bottom: 28px;
}

.specialized-card-content span {
    color:
        var(--axiom-orange);

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 2px;
}

.specialized-card-content h3 {
    margin-top: 7px;

    color: #ffffff;

    font-size: 25px;
}

.specialized-card-content p {
    max-width: 480px;

    margin-top: 8px;

    color:
        rgba(
            255,
            255,
            255,
            0.75
        );

    font-size: 12px;

    line-height: 1.7;
}


/* =========================================
   BOTTOM CTA
========================================= */

.specialized-bottom {
    max-width: 1250px;

    margin: 35px auto 0;

    padding: 32px 38px;

    display: flex;

    align-items: center;

    justify-content:
        space-between;

    gap: 25px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.12
        );

    border-radius: 15px;

    background:
        rgba(
            255,
            255,
            255,
            0.06
        );
}

.specialized-bottom span {
    color:
        var(--axiom-teal-light);

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 2px;
}

.specialized-bottom h3 {
    margin-top: 5px;

    color: #ffffff;

    font-size:
        clamp(
            21px,
            2.5vw,
            30px
        );
}

.specialized-bottom a {
    flex-shrink: 0;

    padding: 14px 22px;

    border-radius: 6px;

    background:
        var(--axiom-orange);

    color: #ffffff;

    font-size: 12px;
    font-weight: 800;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.specialized-bottom a:hover {
    transform:
        translateY(-3px);

    background:
        var(--axiom-teal);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {

    .specialized-feature {
        grid-template-columns:
            1fr;
    }

    .specialized-feature-image img {
        min-height: 430px;
    }

    .specialized-grid {
        grid-template-columns:
            1fr;
    }

    .specialized-card-wide {
        grid-column: auto;
    }

}


@media (max-width: 700px) {

    .specialized-section {
        padding: 75px 20px;
    }

    .specialized-feature-image img {
        min-height: 350px;
    }

    .specialized-feature-content {
        padding: 38px 25px;
    }

    .specialized-card {
        min-height: 340px;
    }

    .specialized-card-wide {
        min-height: 340px;
    }

    .specialized-bottom {
        padding: 27px 22px;

        flex-direction: column;

        align-items: flex-start;
    }

    .specialized-bottom a {
        width: 100%;

        text-align: center;
    }

}

/* =========================================
   PROJECT PORTFOLIO
========================================= */

.projects-section {
    padding: 100px 6%;
    background:
        linear-gradient(
            180deg,
            #f7fbfc 0%,
            #ffffff 100%
        );
}


/* =========================================
   PROJECT HEADING
========================================= */

.projects-heading {
    max-width: 820px;
    margin: 0 auto 40px;
    text-align: center;
}

.projects-heading h2 {
    color: var(--axiom-navy-dark);

    font-size:
        clamp(
            40px,
            4.8vw,
            62px
        );

    line-height: 1.06;
    letter-spacing: -1.5px;
}

.projects-heading h2 span {
    display: block;
    color: var(--axiom-teal);
}

.projects-heading p {
    max-width: 650px;
    margin: 18px auto 0;

    color: var(--axiom-gray);

    font-size: 15px;
    line-height: 1.8;
}


/* =========================================
   FILTER BUTTONS
========================================= */

.project-filters {
    max-width: 1000px;

    margin: 0 auto 45px;

    display: flex;
    flex-wrap: wrap;

    justify-content: center;

    gap: 10px;
}

.project-filter {
    padding: 11px 18px;

    border:
        1px solid
        rgba(
            18,
            53,
            91,
            0.12
        );

    border-radius: 30px;

    background: #ffffff;

    color: var(--axiom-navy);

    font-size: 11px;
    font-weight: 800;

    cursor: pointer;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.project-filter:hover {
    transform: translateY(-2px);

    border-color:
        var(--axiom-teal);

    color:
        var(--axiom-teal);
}

.project-filter.active {
    border-color:
        transparent;

    background:
        linear-gradient(
            135deg,
            var(--axiom-teal),
            var(--axiom-navy)
        );

    color: #ffffff;

    box-shadow:
        0 10px 25px
        rgba(
            20,
            166,
            161,
            0.18
        );
}


/* =========================================
   PROJECT GRID
========================================= */

.projects-grid {
    max-width: 1250px;
    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(
            3,
            1fr
        );

    gap: 20px;
}


/* PROJECT CARD */

.project-card {
    position: relative;

    min-height: 390px;

    overflow: hidden;

    border-radius: 16px;

    background:
        var(--axiom-navy-dark);

    box-shadow:
        0 15px 40px
        rgba(
            8,
            36,
            62,
            0.10
        );

    transition:
        transform 0.35s ease,
        opacity 0.35s ease,
        box-shadow 0.35s ease;
}

.project-card-large {
    grid-column:
        span 2;
}


/* USED BY JAVASCRIPT FILTER */

.project-card.project-hidden {
    display: none;
}


.project-card:hover {
    transform:
        translateY(-7px);

    box-shadow:
        0 25px 55px
        rgba(
            8,
            36,
            62,
            0.18
        );
}


/* IMAGE AREA */

.project-image {
    position: absolute;

    inset: 0;

    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition:
        transform
        0.7s ease;
}

.project-card:hover
.project-image img {
    transform:
        scale(1.08);
}


/* =========================================
   PROJECT OVERLAY
========================================= */

.project-overlay {
    position: absolute;

    inset: 0;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    align-items: flex-start;

    padding: 28px;

    background:
        linear-gradient(
            180deg,
            rgba(
                8,
                36,
                62,
                0.05
            ) 20%,
            rgba(
                8,
                36,
                62,
                0.90
            ) 100%
        );

    transition:
        background
        0.35s ease;
}

.project-card:hover
.project-overlay {
    background:
        linear-gradient(
            180deg,
            rgba(
                8,
                36,
                62,
                0.18
            ),
            rgba(
                8,
                36,
                62,
                0.96
            )
        );
}


/* CATEGORY */

.project-overlay > span {
    color:
        var(--axiom-orange);

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 2px;

    text-transform: uppercase;
}


/* PROJECT TITLE */

.project-overlay h3 {
    max-width: 360px;

    margin-top: 7px;

    color: #ffffff;

    font-size: 24px;

    line-height: 1.2;
}


/* VIEW BUTTON */

.project-view {
    margin-top: 17px;

    padding: 10px 15px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.38
        );

    border-radius: 6px;

    background:
        rgba(
            255,
            255,
            255,
            0.10
        );

    color: #ffffff;

    font-size: 10px;
    font-weight: 800;

    cursor: pointer;

    backdrop-filter:
        blur(8px);

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.project-view:hover {
    transform:
        translateY(-2px);

    border-color:
        var(--axiom-orange);

    background:
        var(--axiom-orange);
}


/* =========================================
   PROJECT CTA
========================================= */

.projects-cta {
    max-width: 1250px;

    margin: 38px auto 0;

    padding: 32px 38px;

    display: flex;

    align-items: center;

    justify-content:
        space-between;

    gap: 30px;

    border-radius: 16px;

    background:
        linear-gradient(
            100deg,
            var(--axiom-navy-dark),
            var(--axiom-teal)
        );

    color: #ffffff;

    box-shadow:
        0 22px 50px
        rgba(
            8,
            36,
            62,
            0.16
        );
}

.projects-cta span {
    color:
        var(--axiom-teal-light);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 2px;
}

.projects-cta h3 {
    margin-top: 6px;

    color: #ffffff;

    font-size:
        clamp(
            21px,
            2.4vw,
            30px
        );
}

.projects-cta a {
    flex-shrink: 0;

    padding: 14px 22px;

    border-radius: 6px;

    background:
        var(--axiom-orange);

    color: #ffffff;

    font-size: 12px;
    font-weight: 800;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.projects-cta a:hover {
    transform:
        translateY(-3px);

    background:
        #ffffff;

    color:
        var(--axiom-navy);
}


/* =========================================
   PROJECT LIGHTBOX
========================================= */

.project-lightbox {
    position: fixed;

    z-index: 9999;

    inset: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 30px;

    background:
        rgba(
            3,
            18,
            31,
            0.92
        );

    backdrop-filter:
        blur(12px);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.project-lightbox.active {
    opacity: 1;
    visibility: visible;
}


/* LIGHTBOX CONTENT */

.project-lightbox-content {
    width:
        min(
            1000px,
            94vw
        );

    max-height:
        90vh;

    overflow: hidden;

    border-radius: 16px;

    background: #ffffff;

    box-shadow:
        0 35px 90px
        rgba(
            0,
            0,
            0,
            0.45
        );

    transform:
        scale(0.92);

    transition:
        transform
        0.3s ease;
}

.project-lightbox.active
.project-lightbox-content {
    transform:
        scale(1);
}


/* LIGHTBOX IMAGE */

.project-lightbox-image {
    width: 100%;

    max-height: 72vh;

    display: block;

    object-fit: contain;

    background:
        var(--axiom-navy-dark);
}


/* LIGHTBOX INFO */

.project-lightbox-info {
    padding: 20px 25px;
}

.project-lightbox-type {
    color:
        var(--axiom-orange);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.project-lightbox-title {
    margin-top: 5px;

    color:
        var(--axiom-navy-dark);

    font-size: 23px;
}


/* CLOSE BUTTON */

.project-lightbox-close {
    position: fixed;

    z-index: 10001;

    top: 22px;
    right: 28px;

    width: 46px;
    height: 46px;

    display: grid;

    place-items: center;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.25
        );

    border-radius: 50%;

    background:
        rgba(
            255,
            255,
            255,
            0.10
        );

    color: #ffffff;

    font-size: 29px;

    cursor: pointer;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.project-lightbox-close:hover {
    transform:
        rotate(90deg);

    background:
        var(--axiom-orange);
}


/* PREVENT PAGE SCROLL */

body.lightbox-open {
    overflow: hidden;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1000px) {

    .projects-grid {
        grid-template-columns:
            repeat(
                2,
                1fr
            );
    }

    .project-card-large {
        grid-column:
            span 1;
    }

}


@media (max-width: 700px) {

    .projects-section {
        padding:
            75px 20px;
    }

    .project-filters {
        justify-content:
            flex-start;
    }

    .project-filter {
        padding:
            10px 14px;
    }

    .projects-grid {
        grid-template-columns:
            1fr;
    }

    .project-card,
    .project-card-large {
        min-height: 350px;

        grid-column: auto;
    }

    .project-overlay {
        padding: 22px;
    }

    .projects-cta {
        padding:
            27px 22px;

        flex-direction: column;

        align-items: flex-start;
    }

    .projects-cta a {
        width: 100%;

        text-align: center;
    }

    .project-lightbox {
        padding: 16px;
    }

    .project-lightbox-close {
        top: 12px;
        right: 12px;

        width: 42px;
        height: 42px;
    }

}

/* =========================================
   EQUIPMENT & CAPABILITY
========================================= */

.equipment-section {
    padding: 100px 6%;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f4f9fb 100%
        );
}


/* =========================================
   HEADING
========================================= */

.equipment-heading {
    max-width: 820px;

    margin: 0 auto 55px;

    text-align: center;
}

.equipment-heading h2 {
    color:
        var(--axiom-navy-dark);

    font-size:
        clamp(
            40px,
            4.8vw,
            62px
        );

    line-height: 1.06;

    letter-spacing: -1.5px;
}

.equipment-heading h2 span {
    display: block;

    color:
        var(--axiom-teal);
}

.equipment-heading p {
    max-width: 690px;

    margin: 18px auto 0;

    color:
        var(--axiom-gray);

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================
   EQUIPMENT GRID
========================================= */

.equipment-grid {
    max-width: 1250px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(
            5,
            1fr
        );

    gap: 18px;
}


/* CARD */

.equipment-card {
    position: relative;

    min-height: 310px;

    padding:
        30px 24px;

    overflow: hidden;

    border:
        1px solid
        rgba(
            18,
            53,
            91,
            0.10
        );

    border-radius: 16px;

    background: #ffffff;

    box-shadow:
        0 12px 35px
        rgba(
            8,
            36,
            62,
            0.06
        );

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease;
}


.equipment-card::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 100%;
    height: 4px;

    background:
        linear-gradient(
            90deg,
            var(--axiom-teal),
            var(--axiom-orange)
        );
}


.equipment-card:hover {
    transform:
        translateY(-9px);

    background:
        linear-gradient(
            145deg,
            var(--axiom-navy-dark),
            var(--axiom-navy)
        );

    box-shadow:
        0 25px 55px
        rgba(
            8,
            36,
            62,
            0.17
        );
}


/* ICON */

.equipment-icon {
    width: 58px;
    height: 58px;

    display: grid;

    place-items: center;

    margin-bottom: 24px;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            rgba(
                20,
                166,
                161,
                0.15
            ),
            rgba(
                242,
                140,
                40,
                0.14
            )
        );

    color:
        var(--axiom-teal);

    font-size: 25px;

    font-weight: 900;

    transition:
        background 0.35s ease,
        color 0.35s ease;
}


.equipment-card:hover
.equipment-icon {
    background:
        var(--axiom-orange);

    color: #ffffff;
}


/* NUMBER */

.equipment-number {
    position: absolute;

    right: 20px;
    top: 20px;

    color:
        rgba(
            18,
            53,
            91,
            0.12
        );

    font-size: 28px;

    font-weight: 900;

    transition:
        color 0.35s ease;
}


.equipment-card:hover
.equipment-number {
    color:
        rgba(
            255,
            255,
            255,
            0.15
        );
}


/* TEXT */

.equipment-card h3 {
    color:
        var(--axiom-navy-dark);

    font-size: 19px;

    line-height: 1.3;

    transition:
        color 0.35s ease;
}


.equipment-card p {
    margin-top: 12px;

    color:
        var(--axiom-gray);

    font-size: 12px;

    line-height: 1.8;

    transition:
        color 0.35s ease;
}


.equipment-card:hover h3 {
    color: #ffffff;
}


.equipment-card:hover p {
    color:
        rgba(
            255,
            255,
            255,
            0.74
        );
}


/* =========================================
   STAGGERED REVEAL
========================================= */

.equipment-grid
.equipment-card:nth-child(1) {
    transition-delay: 0.05s;
}

.equipment-grid
.equipment-card:nth-child(2) {
    transition-delay: 0.10s;
}

.equipment-grid
.equipment-card:nth-child(3) {
    transition-delay: 0.15s;
}

.equipment-grid
.equipment-card:nth-child(4) {
    transition-delay: 0.20s;
}

.equipment-grid
.equipment-card:nth-child(5) {
    transition-delay: 0.25s;
}


/* =========================================
   CAPABILITY STRIP
========================================= */

.capability-strip {
    max-width: 1250px;

    margin: 38px auto 0;

    padding:
        40px;

    display: grid;

    grid-template-columns:
        0.8fr
        1.2fr;

    gap: 45px;

    align-items: center;

    border-radius: 18px;

    background:
        linear-gradient(
            110deg,
            var(--axiom-navy-dark),
            var(--axiom-navy)
        );

    box-shadow:
        0 25px 55px
        rgba(
            8,
            36,
            62,
            0.15
        );
}


/* INTRO */

.capability-intro > span {
    color:
        var(--axiom-orange);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 2.5px;
}


.capability-intro h3 {
    margin-top: 8px;

    color: #ffffff;

    font-size:
        clamp(
            23px,
            2.8vw,
            34px
        );

    line-height: 1.2;
}


.capability-intro h3 strong {
    display: block;

    color:
        var(--axiom-teal-light);
}


/* ITEMS */

.capability-items {
    display: grid;

    grid-template-columns:
        repeat(
            4,
            1fr
        );

    gap: 12px;
}


.capability-items div {
    padding:
        20px 15px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.11
        );

    border-radius: 10px;

    background:
        rgba(
            255,
            255,
            255,
            0.06
        );
}


.capability-items strong {
    display: block;

    color:
        var(--axiom-orange);

    font-size: 12px;
}


.capability-items span {
    display: block;

    margin-top: 7px;

    color: #ffffff;

    font-size: 12px;

    font-weight: 700;
}


/* =========================================
   EQUIPMENT CTA
========================================= */

.equipment-cta {
    max-width: 1250px;

    margin: 30px auto 0;

    padding:
        30px 36px;

    display: flex;

    align-items: center;

    justify-content:
        space-between;

    gap: 25px;

    border:
        1px solid
        rgba(
            20,
            166,
            161,
            0.15
        );

    border-radius: 15px;

    background: #ffffff;

    box-shadow:
        0 15px 40px
        rgba(
            8,
            36,
            62,
            0.06
        );
}


.equipment-cta span {
    color:
        var(--axiom-teal);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 2px;
}


.equipment-cta h3 {
    margin-top: 5px;

    color:
        var(--axiom-navy-dark);

    font-size:
        clamp(
            20px,
            2.4vw,
            29px
        );
}


.equipment-cta a {
    flex-shrink: 0;

    padding:
        14px 22px;

    border-radius: 6px;

    background:
        linear-gradient(
            135deg,
            var(--axiom-orange),
            #ffad4d
        );

    color: #ffffff;

    font-size: 12px;

    font-weight: 800;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}


.equipment-cta a:hover {
    transform:
        translateY(-3px);

    background:
        var(--axiom-teal);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1150px) {

    .equipment-grid {
        grid-template-columns:
            repeat(
                3,
                1fr
            );
    }

}


@media (max-width: 900px) {

    .capability-strip {
        grid-template-columns:
            1fr;
    }

    .capability-items {
        grid-template-columns:
            repeat(
                2,
                1fr
            );
    }

}


@media (max-width: 700px) {

    .equipment-section {
        padding:
            75px 20px;
    }

    .equipment-grid {
        grid-template-columns:
            1fr;
    }

    .equipment-card {
        min-height: auto;
    }

    .capability-strip {
        padding:
            30px 22px;
    }

    .capability-items {
        grid-template-columns:
            1fr;
    }

    .equipment-cta {
        padding:
            26px 22px;

        flex-direction: column;

        align-items: flex-start;
    }

    .equipment-cta a {
        width: 100%;

        text-align: center;
    }

}

/* =========================================
   LEADERSHIP SECTION
========================================= */

.leadership-section {
    padding: 100px 6%;

    background:
        linear-gradient(
            135deg,
            #ffffff,
            #f3fafb
        );
}


/* MAIN LAYOUT */

.leadership-layout {
    max-width: 1250px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        0.9fr 1.1fr;

    gap: 75px;

    align-items: center;
}


/* =========================================
   LEADERSHIP IMAGE
========================================= */

.leadership-visual {
    position: relative;

    padding:
        0 25px 30px 0;
}


.leadership-image-wrap {
    position: relative;

    z-index: 2;

    min-height: 600px;

    overflow: hidden;

    border-radius: 20px;

    background:
        var(--axiom-navy-dark);

    box-shadow:
        0 30px 70px
        rgba(
            8,
            36,
            62,
            0.17
        );
}


.leadership-image-wrap img {
    width: 100%;

    height: 100%;

    min-height: 600px;

    display: block;

    object-fit: cover;

    object-position:
        center top;

    transition:
        transform
        0.8s ease;
}


.leadership-image-wrap:hover img {
    transform:
        scale(1.035);
}


/* DECORATIVE ACCENT */

.leadership-image-accent {
    position: absolute;

    z-index: -1;

    width: 82%;

    height: 82%;

    right: -25px;

    bottom: -25px;

    border-radius: 20px;

    background:
        linear-gradient(
            135deg,
            var(--axiom-teal),
            var(--axiom-navy)
        );
}


/* EXPERIENCE BADGE */

.leadership-experience {
    position: absolute;

    z-index: 4;

    left: -15px;

    bottom: 55px;

    width: 180px;

    padding: 23px;

    border-radius: 13px;

    background:
        linear-gradient(
            135deg,
            var(--axiom-orange),
            #ffad4d
        );

    color: #ffffff;

    box-shadow:
        0 18px 40px
        rgba(
            242,
            140,
            40,
            0.30
        );
}


.leadership-experience strong {
    display: block;

    font-size: 43px;

    line-height: 1;
}


.leadership-experience span {
    display: block;

    margin-top: 8px;

    font-size: 11px;

    font-weight: 800;

    line-height: 1.45;
}


/* =========================================
   LEADERSHIP CONTENT
========================================= */

.leadership-content h2 {
    color:
        var(--axiom-navy-dark);

    font-size:
        clamp(
            40px,
            4.6vw,
            60px
        );

    line-height: 1.07;

    letter-spacing: -1.5px;
}


.leadership-content h2 span {
    display: block;

    color:
        var(--axiom-teal);
}


/* NAME / TITLE */

.leader-title {
    margin-top: 28px;

    padding-left: 20px;

    border-left:
        4px solid
        var(--axiom-orange);
}


.leader-title > span {
    color:
        var(--axiom-orange);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 2.2px;
}


.leader-title h3 {
    margin-top: 5px;

    color:
        var(--axiom-navy-dark);

    font-size: 27px;
}


.leader-title p {
    margin-top: 3px;

    color:
        var(--axiom-teal);

    font-size: 12px;

    font-weight: 700;
}


/* TEXT */

.leadership-content > p {
    margin-top: 18px;

    color:
        var(--axiom-gray);

    font-size: 14px;

    line-height: 1.85;
}


.leadership-content
.leadership-lead {
    margin-top: 26px;

    color: #344054;

    font-size: 16px;

    font-weight: 600;
}


/* =========================================
   LEADERSHIP STATS
========================================= */

.leadership-stats {
    display: grid;

    grid-template-columns:
        repeat(
            3,
            1fr
        );

    gap: 13px;

    margin-top: 30px;
}


.leadership-stats div {
    padding:
        20px 15px;

    border:
        1px solid
        rgba(
            20,
            166,
            161,
            0.15
        );

    border-radius: 11px;

    background: #ffffff;

    box-shadow:
        0 9px 25px
        rgba(
            8,
            36,
            62,
            0.05
        );

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.leadership-stats div:hover {
    transform:
        translateY(-5px);

    box-shadow:
        0 18px 35px
        rgba(
            8,
            36,
            62,
            0.10
        );
}


.leadership-stats strong {
    display: block;

    color:
        var(--axiom-navy);

    font-size: 25px;
}


.leadership-stats span {
    display: block;

    margin-top: 4px;

    color:
        var(--axiom-gray);

    font-size: 10px;

    font-weight: 700;
}


/* BUTTON */

.leadership-button {
    display: inline-block;

    margin-top: 30px;

    padding:
        14px 24px;

    border-radius: 6px;

    background:
        linear-gradient(
            135deg,
            var(--axiom-navy),
            var(--axiom-teal)
        );

    color: #ffffff;

    font-size: 12px;

    font-weight: 800;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}


.leadership-button:hover {
    transform:
        translateY(-3px);

    background:
        var(--axiom-orange);
}


/* =========================================
   LEADERSHIP QUOTE
========================================= */

.leadership-quote {
    padding:
        75px 6%;

    background:
        linear-gradient(
            110deg,
            var(--axiom-navy-dark),
            var(--axiom-navy)
        );

    text-align: center;
}


.leadership-quote > div {
    max-width: 900px;

    margin: 0 auto;
}


.leadership-quote span {
    color:
        var(--axiom-orange);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 3px;
}


.leadership-quote blockquote {
    margin-top: 18px;

    color: #ffffff;

    font-size:
        clamp(
            25px,
            3.5vw,
            42px
        );

    font-weight: 700;

    line-height: 1.35;
}


.leadership-quote p {
    margin-top: 18px;

    color:
        var(--axiom-teal-light);

    font-size: 12px;

    font-weight: 700;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 950px) {

    .leadership-layout {
        grid-template-columns:
            1fr;

        gap: 55px;
    }


    .leadership-visual {
        max-width: 650px;

        margin: 0 auto;
    }

}


@media (max-width: 700px) {

    .leadership-section {
        padding:
            75px 20px;
    }


    .leadership-visual {
        padding:
            0 12px 20px 0;
    }


    .leadership-image-wrap,
    .leadership-image-wrap img {
        min-height: 500px;
    }


    .leadership-image-accent {
        right: -12px;

        bottom: -12px;
    }


    .leadership-experience {
        left: 10px;

        bottom: 35px;

        width: 155px;

        padding: 19px;
    }


    .leadership-experience strong {
        font-size: 35px;
    }


    .leadership-stats {
        grid-template-columns:
            1fr;
    }


    .leadership-quote {
        padding:
            60px 20px;
    }

}

/* =========================================
   WHY CHOOSE AXIOM
========================================= */

.why-axiom-section {
    padding: 100px 6%;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f5fafb 100%
        );
}


/* =========================================
   HEADING
========================================= */

.why-axiom-heading {
    max-width: 820px;

    margin: 0 auto 55px;

    text-align: center;
}

.why-axiom-heading h2 {
    color:
        var(--axiom-navy-dark);

    font-size:
        clamp(
            40px,
            4.8vw,
            62px
        );

    line-height: 1.06;

    letter-spacing: -1.5px;
}

.why-axiom-heading h2 span {
    display: block;

    color:
        var(--axiom-teal);
}

.why-axiom-heading p {
    max-width: 680px;

    margin: 18px auto 0;

    color:
        var(--axiom-gray);

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================
   WHY AXIOM GRID
========================================= */

.why-axiom-grid {
    max-width: 1250px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(
            3,
            1fr
        );

    gap: 20px;
}


/* CARD */

.why-card {
    position: relative;

    min-height: 300px;

    padding:
        32px 27px;

    overflow: hidden;

    border:
        1px solid
        rgba(
            18,
            53,
            91,
            0.10
        );

    border-radius: 16px;

    background: #ffffff;

    box-shadow:
        0 12px 35px
        rgba(
            8,
            36,
            62,
            0.06
        );

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease;
}

.why-card::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 100%;
    height: 4px;

    background:
        linear-gradient(
            90deg,
            var(--axiom-teal),
            var(--axiom-orange)
        );
}

.why-card:hover {
    transform:
        translateY(-9px);

    background:
        linear-gradient(
            145deg,
            var(--axiom-navy-dark),
            var(--axiom-navy)
        );

    box-shadow:
        0 25px 55px
        rgba(
            8,
            36,
            62,
            0.17
        );
}


/* NUMBER */

.why-number {
    position: absolute;

    right: 22px;
    top: 21px;

    color:
        rgba(
            18,
            53,
            91,
            0.11
        );

    font-size: 31px;

    font-weight: 900;

    transition:
        color 0.35s ease;
}

.why-card:hover
.why-number {
    color:
        rgba(
            255,
            255,
            255,
            0.13
        );
}


/* ICON */

.why-icon {
    width: 56px;
    height: 56px;

    display: grid;

    place-items: center;

    margin-bottom: 24px;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            rgba(
                20,
                166,
                161,
                0.15
            ),
            rgba(
                242,
                140,
                40,
                0.14
            )
        );

    color:
        var(--axiom-teal);

    font-size: 23px;

    font-weight: 900;

    transition:
        background 0.35s ease,
        color 0.35s ease;
}

.why-card:hover
.why-icon {
    background:
        var(--axiom-orange);

    color: #ffffff;
}


/* TEXT */

.why-card h3 {
    color:
        var(--axiom-navy-dark);

    font-size: 20px;

    line-height: 1.3;

    transition:
        color 0.35s ease;
}

.why-card p {
    margin-top: 12px;

    color:
        var(--axiom-gray);

    font-size: 13px;

    line-height: 1.8;

    transition:
        color 0.35s ease;
}

.why-card:hover h3 {
    color: #ffffff;
}

.why-card:hover p {
    color:
        rgba(
            255,
            255,
            255,
            0.76
        );
}


/* =========================================
   STAGGERED CARD REVEAL
========================================= */

.why-axiom-grid
.why-card:nth-child(1) {
    transition-delay: 0.05s;
}

.why-axiom-grid
.why-card:nth-child(2) {
    transition-delay: 0.10s;
}

.why-axiom-grid
.why-card:nth-child(3) {
    transition-delay: 0.15s;
}

.why-axiom-grid
.why-card:nth-child(4) {
    transition-delay: 0.20s;
}

.why-axiom-grid
.why-card:nth-child(5) {
    transition-delay: 0.25s;
}

.why-axiom-grid
.why-card:nth-child(6) {
    transition-delay: 0.30s;
}


/* =========================================
   TRUST STRIP
========================================= */

.why-trust-strip {
    max-width: 1250px;

    margin: 38px auto 0;

    display: grid;

    grid-template-columns:
        repeat(
            4,
            1fr
        );

    overflow: hidden;

    border-radius: 17px;

    background:
        linear-gradient(
            110deg,
            var(--axiom-navy-dark),
            var(--axiom-navy)
        );

    box-shadow:
        0 22px 50px
        rgba(
            8,
            36,
            62,
            0.15
        );
}

.why-trust-strip div {
    padding:
        31px 25px;

    text-align: center;

    border-right:
        1px solid
        rgba(
            255,
            255,
            255,
            0.10
        );
}

.why-trust-strip div:last-child {
    border-right: none;
}

.why-trust-strip strong {
    display: block;

    color:
        var(--axiom-orange);

    font-size: 30px;
}

.why-trust-strip span {
    display: block;

    margin-top: 5px;

    color:
        rgba(
            255,
            255,
            255,
            0.82
        );

    font-size: 11px;

    font-weight: 700;
}


/* =========================================
   WHY AXIOM CTA
========================================= */

.why-axiom-cta {
    max-width: 1250px;

    margin: 30px auto 0;

    padding:
        31px 36px;

    display: flex;

    align-items: center;

    justify-content:
        space-between;

    gap: 30px;

    border:
        1px solid
        rgba(
            20,
            166,
            161,
            0.15
        );

    border-radius: 15px;

    background: #ffffff;

    box-shadow:
        0 15px 40px
        rgba(
            8,
            36,
            62,
            0.06
        );
}

.why-axiom-cta span {
    color:
        var(--axiom-teal);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 2px;
}

.why-axiom-cta h3 {
    margin-top: 5px;

    color:
        var(--axiom-navy-dark);

    font-size:
        clamp(
            21px,
            2.5vw,
            30px
        );
}

.why-axiom-cta a {
    flex-shrink: 0;

    padding:
        14px 22px;

    border-radius: 6px;

    background:
        linear-gradient(
            135deg,
            var(--axiom-orange),
            #ffad4d
        );

    color: #ffffff;

    font-size: 12px;

    font-weight: 800;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.why-axiom-cta a:hover {
    transform:
        translateY(-3px);

    background:
        var(--axiom-teal);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1000px) {

    .why-axiom-grid {
        grid-template-columns:
            repeat(
                2,
                1fr
            );
    }

    .why-trust-strip {
        grid-template-columns:
            repeat(
                2,
                1fr
            );
    }

}


@media (max-width: 700px) {

    .why-axiom-section {
        padding:
            75px 20px;
    }

    .why-axiom-grid {
        grid-template-columns:
            1fr;
    }

    .why-card {
        min-height: auto;
    }

    .why-trust-strip {
        grid-template-columns:
            1fr;
    }

    .why-trust-strip div {
        border-right: none;

        border-bottom:
            1px solid
            rgba(
                255,
                255,
                255,
                0.10
            );
    }

    .why-trust-strip div:last-child {
        border-bottom: none;
    }

    .why-axiom-cta {
        padding:
            27px 22px;

        flex-direction: column;

        align-items: flex-start;
    }

    .why-axiom-cta a {
        width: 100%;

        text-align: center;
    }

}
/* =========================================
   CONTACT / COMMUNICATION SECTION
========================================= */

.contact-section {
    padding: 100px 6%;

    background:
        linear-gradient(
            180deg,
            #f5fafb 0%,
            #ffffff 100%
        );
}


/* =========================================
   CONTACT HEADING
========================================= */

.contact-heading {
    max-width: 820px;

    margin: 0 auto 55px;

    text-align: center;
}

.contact-heading h2 {
    color:
        var(--axiom-navy-dark);

    font-size:
        clamp(
            40px,
            4.8vw,
            62px
        );

    line-height: 1.06;

    letter-spacing: -1.5px;
}

.contact-heading h2 span {
    display: block;

    color:
        var(--axiom-teal);
}

.contact-heading p {
    max-width: 680px;

    margin: 18px auto 0;

    color:
        var(--axiom-gray);

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================
   QUICK CONTACT CARDS
========================================= */

.contact-cards {
    max-width: 1250px;

    margin: 0 auto 40px;

    display: grid;

    grid-template-columns:
        repeat(
            4,
            1fr
        );

    gap: 17px;
}

.contact-card {
    min-height: 225px;

    padding: 27px 23px;

    border:
        1px solid
        rgba(
            18,
            53,
            91,
            0.10
        );

    border-radius: 15px;

    background: #ffffff;

    color:
        var(--axiom-dark);

    box-shadow:
        0 12px 35px
        rgba(
            8,
            36,
            62,
            0.06
        );

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}

.contact-card:hover {
    transform:
        translateY(-8px);

    background:
        linear-gradient(
            145deg,
            var(--axiom-navy-dark),
            var(--axiom-navy)
        );

    box-shadow:
        0 23px 50px
        rgba(
            8,
            36,
            62,
            0.16
        );
}


/* ICON */

.contact-card-icon {
    width: 52px;
    height: 52px;

    display: grid;

    place-items: center;

    margin-bottom: 22px;

    border-radius: 13px;

    background:
        linear-gradient(
            135deg,
            rgba(
                20,
                166,
                161,
                0.15
            ),
            rgba(
                242,
                140,
                40,
                0.14
            )
        );

    color:
        var(--axiom-teal);

    font-size: 22px;

    font-weight: 900;

    transition:
        background 0.35s ease,
        color 0.35s ease;
}

.contact-card:hover
.contact-card-icon {
    background:
        var(--axiom-orange);

    color: #ffffff;
}


/* CARD TEXT */

.contact-card > span {
    color:
        var(--axiom-orange);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 2px;
}

.contact-card h3 {
    margin-top: 7px;

    color:
        var(--axiom-navy-dark);

    font-size: 18px;

    transition:
        color 0.35s ease;
}

.contact-card p {
    margin-top: 8px;

    color:
        var(--axiom-gray);

    font-size: 12px;

    line-height: 1.7;

    overflow-wrap: anywhere;

    transition:
        color 0.35s ease;
}

.contact-card:hover h3 {
    color: #ffffff;
}

.contact-card:hover p {
    color:
        rgba(
            255,
            255,
            255,
            0.75
        );
}


/* =========================================
   MAIN CONTACT LAYOUT
========================================= */

.contact-main {
    max-width: 1250px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1.05fr
        0.95fr;

    gap: 28px;

    align-items: stretch;
}


/* =========================================
   QUOTE FORM
========================================= */

.quote-form-wrap {
    padding:
        42px 38px;

    border-radius: 18px;

    background: #ffffff;

    box-shadow:
        0 18px 50px
        rgba(
            8,
            36,
            62,
            0.09
        );
}

.contact-small-title {
    color:
        var(--axiom-orange);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 2.3px;
}

.quote-form-wrap > h3,
.contact-info-panel > h3 {
    margin-top: 9px;

    color:
        var(--axiom-navy-dark);

    font-size:
        clamp(
            29px,
            3.4vw,
            43px
        );

    line-height: 1.12;
}

.quote-form-wrap > p,
.contact-info-panel > p {
    margin-top: 14px;

    color:
        var(--axiom-gray);

    font-size: 13px;

    line-height: 1.8;
}


/* FORM */

.quote-form {
    margin-top: 28px;
}

.form-row {
    display: grid;

    grid-template-columns:
        repeat(
            2,
            1fr
        );

    gap: 16px;
}

.form-group {
    margin-bottom: 17px;
}

.form-group label {
    display: block;

    margin-bottom: 7px;

    color:
        var(--axiom-navy-dark);

    font-size: 11px;

    font-weight: 800;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding:
        13px 14px;

    border:
        1px solid
        #d7e1e6;

    border-radius: 8px;

    outline: none;

    background:
        #f9fbfc;

    color:
        var(--axiom-dark);

    font-family: inherit;

    font-size: 13px;

    transition:
        border-color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.form-group textarea {
    resize: vertical;

    min-height: 145px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color:
        var(--axiom-teal);

    background: #ffffff;

    box-shadow:
        0 0 0 3px
        rgba(
            20,
            166,
            161,
            0.10
        );
}


/* SUBMIT BUTTON */

.quote-submit-button {
    width: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding:
        15px 22px;

    border: 0;

    border-radius: 7px;

    background:
        linear-gradient(
            135deg,
            var(--axiom-orange),
            #ffad4d
        );

    color: #ffffff;

    font-size: 12px;

    font-weight: 900;

    cursor: pointer;

    box-shadow:
        0 13px 30px
        rgba(
            242,
            140,
            40,
            0.20
        );

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.quote-submit-button:hover {
    transform:
        translateY(-3px);

    background:
        linear-gradient(
            135deg,
            var(--axiom-teal),
            var(--axiom-navy)
        );
}

.quote-submit-button span {
    font-size: 17px;
}

.form-note {
    margin-top: 11px;

    color:
        var(--axiom-gray);

    font-size: 10px;

    line-height: 1.6;

    text-align: center;
}


/* =========================================
   CONTACT INFO SIDE
========================================= */

.contact-info-side {
    display: grid;

    grid-template-rows:
        auto
        1fr;

    gap: 20px;
}

.contact-info-panel {
    padding:
        39px 34px;

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            var(--axiom-navy-dark),
            var(--axiom-navy)
        );

    color: #ffffff;

    box-shadow:
        0 20px 50px
        rgba(
            8,
            36,
            62,
            0.18
        );
}

.contact-info-panel > h3 {
    color: #ffffff;
}

.contact-info-panel > p {
    color:
        rgba(
            255,
            255,
            255,
            0.72
        );
}


/* DETAILS */

.contact-detail {
    margin-top: 20px;

    padding-top: 17px;

    border-top:
        1px solid
        rgba(
            255,
            255,
            255,
            0.10
        );
}

.contact-detail strong {
    display: block;

    margin-bottom: 5px;

    color:
        var(--axiom-orange);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 1.7px;

    text-transform: uppercase;
}

.contact-detail a,
.contact-detail span {
    color:
        rgba(
            255,
            255,
            255,
            0.90
        );

    font-size: 12px;

    line-height: 1.6;

    overflow-wrap: anywhere;
}


/* DIRECT BUTTONS */

.contact-direct-actions {
    display: grid;

    grid-template-columns:
        repeat(
            2,
            1fr
        );

    gap: 11px;

    margin-top: 27px;
}

.contact-call-button,
.contact-whatsapp-button {
    padding:
        13px 16px;

    border-radius: 6px;

    text-align: center;

    font-size: 11px;

    font-weight: 900;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.contact-call-button {
    background:
        #ffffff;

    color:
        var(--axiom-navy);
}

.contact-whatsapp-button {
    background:
        var(--axiom-teal);

    color: #ffffff;
}

.contact-call-button:hover,
.contact-whatsapp-button:hover {
    transform:
        translateY(-3px);

    background:
        var(--axiom-orange);

    color: #ffffff;
}


/* =========================================
   GOOGLE MAP
========================================= */

.contact-map {
    min-height: 330px;

    overflow: hidden;

    border-radius: 18px;

    box-shadow:
        0 18px 45px
        rgba(
            8,
            36,
            62,
            0.10
        );
}

.contact-map iframe {
    width: 100%;
    height: 100%;

    min-height: 330px;

    display: block;

    border: 0;
}


/* =========================================
   FLOATING COMMUNICATION BUTTONS
========================================= */

.floating-contact {
    position: fixed;

    z-index: 8000;

    right: 22px;

    bottom: 24px;

    display: flex;

    flex-direction: column;

    gap: 12px;
}


.floating-call,
.floating-whatsapp {
    width: 56px;

    height: 56px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    color: #ffffff;

    text-decoration: none;

    box-shadow:
        0 14px 32px
        rgba(
            0,
            0,
            0,
            0.20
        );

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        filter 0.3s ease;
}


/* PHONE */

.floating-call {
    background:
        linear-gradient(
            135deg,
            var(--axiom-orange),
            #ffad4d
        );
}


/* WHATSAPP */

.floating-whatsapp {
    background:
        linear-gradient(
            135deg,
            #25d366,
            #128c7e
        );
}


/* SVG ICONS */

.floating-call svg,
.floating-whatsapp svg {
    width: 25px;

    height: 25px;

    display: block;

    fill: currentColor;
}


/* HOVER */

.floating-call:hover,
.floating-whatsapp:hover {
    transform:
        translateY(-5px)
        scale(1.07);

    box-shadow:
        0 20px 40px
        rgba(
            0,
            0,
            0,
            0.26
        );

    filter:
        brightness(1.05);
}


/* =========================================
   STAGGER CONTACT CARDS
========================================= */

.contact-cards
.contact-card:nth-child(1) {
    transition-delay: 0.05s;
}

.contact-cards
.contact-card:nth-child(2) {
    transition-delay: 0.10s;
}

.contact-cards
.contact-card:nth-child(3) {
    transition-delay: 0.15s;
}

.contact-cards
.contact-card:nth-child(4) {
    transition-delay: 0.20s;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1000px) {

    .contact-cards {
        grid-template-columns:
            repeat(
                2,
                1fr
            );
    }

    .contact-main {
        grid-template-columns:
            1fr;
    }

}


@media (max-width: 700px) {

    .contact-section {
        padding:
            75px 20px;
    }

    .contact-cards {
        grid-template-columns:
            1fr;
    }

    .contact-card {
        min-height: auto;
    }

    .quote-form-wrap,
    .contact-info-panel {
        padding:
            30px 22px;
    }

    .form-row {
        grid-template-columns:
            1fr;
    }

    .contact-direct-actions {
        grid-template-columns:
            1fr;
    }

    .contact-map,
    .contact-map iframe {
        min-height: 300px;
    }

    .floating-contact {
        right: 14px;
        bottom: 16px;
    }

    .floating-call,
    .floating-whatsapp {
        width: 47px;
        height: 47px;
    }

}
/* =========================================
   PAGE SCROLL PROGRESS
========================================= */

.scroll-progress {
    position: fixed;

    top: 0;
    left: 0;

    width: 0%;
    height: 4px;

    z-index: 99999;

    background:
        linear-gradient(
            90deg,
            var(--axiom-teal),
            var(--axiom-orange)
        );

    box-shadow:
        0 2px 8px
        rgba(
            20,
            166,
            161,
            0.25
        );

    transition:
        width 0.08s linear;
}

/* =========================================
   ACTIVE NAVIGATION LINK
========================================= */

.desktop-nav a.active {
    color:
        var(--axiom-teal);
}

.desktop-nav a.active::after {
    width: 100%;

    background:
        linear-gradient(
            90deg,
            var(--axiom-teal),
            var(--axiom-orange)
        );
}


.mobile-nav a.active {
    color:
        var(--axiom-teal-light);

    padding-left: 16px;
}

/* =========================================
   SCROLLED HEADER EFFECT
========================================= */

.main-header {
    transition:
        min-height 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.main-header.scrolled {
    min-height: 76px;

    background:
        rgba(
            255,
            255,
            255,
            0.98
        );

    box-shadow:
        0 12px 35px
        rgba(
            8,
            36,
            62,
            0.14
        );
}

.main-header.scrolled .brand-mark {
    transform:
        scale(0.92);
}

.main-header.scrolled .desktop-nav a {
    padding:
        27px 0;
}

.main-header.scrolled .desktop-nav a::after {
    bottom: 19px;
}

/* =========================================
   STICKY HEADER SECTION OFFSET
========================================= */

section[id] {
    scroll-margin-top: 105px;
}
/* =========================================
   STEP 13 - MOBILE ABOUT POLISH
========================================= */

@media (max-width: 700px) {

    .about-content h2 {
        font-size: 36px;
        line-height: 1.08;
        letter-spacing: -1px;
    }

    .about-content p {
        font-size: 14px;
        line-height: 1.75;
    }

    .about-content .about-lead {
        font-size: 15px;
    }

    .about-highlights {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .about-highlights div {
        padding: 15px;
    }

    .about-highlights strong {
        font-size: 21px;
    }

    .about-highlights span {
        font-size: 10px;
    }
}

@media (max-width: 390px) {

    .about-content h2 {
        font-size: 33px;
    }

}

/* =========================================
   AXIOM AI ASSISTANT
========================================= */

.axiom-ai {
    position: fixed;
    left: 22px;
    bottom: 24px;
    z-index: 8500;
}


/* =========================================
   AI CHAT PANEL
========================================= */

.axiom-ai-panel {
    position: absolute;
    left: 0;
    bottom: 72px;

    width: 390px;
    max-height: 620px;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    border:
        1px solid
        rgba(
            18,
            53,
            91,
            0.12
        );

    border-radius: 20px;

    background: #ffffff;

    box-shadow:
        0 28px 70px
        rgba(
            8,
            36,
            62,
            0.22
        );

    opacity: 0;
    visibility: hidden;

    transform:
        translateY(18px)
        scale(0.97);

    transform-origin:
        bottom left;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease;
}


/* OPEN STATE */

.axiom-ai.open
.axiom-ai-panel {
    opacity: 1;
    visibility: visible;

    transform:
        translateY(0)
        scale(1);
}


/* =========================================
   HEADER
========================================= */

.axiom-ai-header {
    min-height: 72px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    padding:
        14px 16px;

    background:
        linear-gradient(
            135deg,
            var(--axiom-navy-dark),
            var(--axiom-navy)
        );

    color: #ffffff;
}


.axiom-ai-identity {
    display: flex;
    align-items: center;

    gap: 11px;
}


.axiom-ai-logo,
.axiom-ai-message-avatar {
    flex-shrink: 0;

    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border-radius: 11px;

    background:
        linear-gradient(
            135deg,
            var(--axiom-teal),
            var(--axiom-orange)
        );

    color: #ffffff;

    font-size: 12px;
    font-weight: 900;

    letter-spacing: 1px;
}


.axiom-ai-name {
    display: flex;
    flex-direction: column;
}


.axiom-ai-name strong {
    font-size: 14px;
}


.axiom-ai-name span {
    margin-top: 2px;

    color:
        rgba(
            255,
            255,
            255,
            0.70
        );

    font-size: 10px;
}


.axiom-ai-header-actions {
    display: flex;
    align-items: center;

    gap: 6px;
}


.axiom-ai-sound,
.axiom-ai-close {
    width: 36px;
    height: 36px;

    display: grid;
    place-items: center;

    border: 0;

    border-radius: 9px;

    background:
        rgba(
            255,
            255,
            255,
            0.10
        );

    color: #ffffff;

    cursor: pointer;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}


.axiom-ai-sound:hover,
.axiom-ai-close:hover {
    background:
        rgba(
            255,
            255,
            255,
            0.20
        );

    transform:
        translateY(-2px);
}


.axiom-ai-close {
    font-size: 24px;
    line-height: 1;
}


/* =========================================
   MESSAGES AREA
========================================= */

.axiom-ai-messages {
    flex: 1;

    min-height: 280px;
    max-height: 370px;

    overflow-y: auto;

    padding:
        18px 15px;

    background:
        #f8fafb;

    scroll-behavior: smooth;
}


.axiom-ai-message {
    display: flex;

    gap: 9px;

    margin-bottom: 16px;
}


.axiom-ai-message.user {
    justify-content: flex-end;
}


.axiom-ai-message.user
.axiom-ai-message-avatar {
    display: none;
}


.axiom-ai-message-content {
    max-width: 78%;
}


.axiom-ai-message-bubble {
    padding:
        12px 14px;

    border-radius:
        5px 15px 15px 15px;

    background: #ffffff;

    color:
        var(--axiom-dark);

    box-shadow:
        0 5px 16px
        rgba(
            8,
            36,
            62,
            0.07
        );

    font-size: 12px;

    line-height: 1.65;
}


.axiom-ai-message-bubble p + p {
    margin-top: 8px;
}


/* USER MESSAGE */

.axiom-ai-message.user
.axiom-ai-message-content {
    max-width: 80%;
}


.axiom-ai-message.user
.axiom-ai-message-bubble {
    border-radius:
        15px 5px 15px 15px;

    background:
        linear-gradient(
            135deg,
            var(--axiom-teal),
            var(--axiom-navy)
        );

    color: #ffffff;

    box-shadow:
        0 7px 18px
        rgba(
            18,
            53,
            91,
            0.16
        );
}


/* =========================================
   TYPING INDICATOR
========================================= */

.axiom-ai-typing {
    display: flex;

    align-items: center;

    gap: 9px;

    padding:
        8px 15px 13px;

    background:
        #f8fafb;
}


.axiom-ai-typing[hidden] {
    display: none;
}


.axiom-ai-typing-bubble {
    display: flex;

    align-items: center;

    gap: 4px;

    padding:
        12px 14px;

    border-radius:
        5px 15px 15px 15px;

    background: #ffffff;

    box-shadow:
        0 5px 15px
        rgba(
            8,
            36,
            62,
            0.07
        );
}


.axiom-ai-typing-bubble span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background:
        var(--axiom-teal);

    animation:
        axiomTyping
        1.1s infinite ease-in-out;
}


.axiom-ai-typing-bubble
span:nth-child(2) {
    animation-delay: 0.15s;
}


.axiom-ai-typing-bubble
span:nth-child(3) {
    animation-delay: 0.30s;
}


@keyframes axiomTyping {

    0%,
    60%,
    100% {
        transform:
            translateY(0);

        opacity: 0.45;
    }

    30% {
        transform:
            translateY(-5px);

        opacity: 1;
    }

}


/* =========================================
   QUICK SUGGESTIONS
========================================= */

.axiom-ai-suggestions {
    display: flex;

    gap: 7px;

    overflow-x: auto;

    padding:
        11px 13px;

    border-top:
        1px solid
        #e9eef1;

    background: #ffffff;
}


.axiom-ai-suggestions button {
    flex-shrink: 0;

    padding:
        8px 11px;

    border:
        1px solid
        rgba(
            20,
            166,
            161,
            0.22
        );

    border-radius: 20px;

    background:
        rgba(
            20,
            166,
            161,
            0.06
        );

    color:
        var(--axiom-navy);

    font-size: 10px;
    font-weight: 800;

    cursor: pointer;

    transition:
        background 0.25s ease,
        color 0.25s ease;
}


.axiom-ai-suggestions button:hover {
    background:
        var(--axiom-teal);

    color: #ffffff;
}


/* =========================================
   INPUT AREA
========================================= */

.axiom-ai-form {
    display: grid;

    grid-template-columns:
        auto
        1fr
        auto;

    align-items: end;

    gap: 8px;

    padding:
        10px 12px;

    border-top:
        1px solid
        #e7ecef;

    background: #ffffff;
}


.axiom-ai-form textarea {
    width: 100%;

    min-height: 42px;
    max-height: 110px;

    padding:
        11px 12px;

    border:
        1px solid
        #dbe3e7;

    border-radius: 12px;

    outline: none;

    resize: none;

    background:
        #f8fafb;

    color:
        var(--axiom-dark);

    font-family: inherit;

    font-size: 12px;

    line-height: 1.5;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}


.axiom-ai-form textarea:focus {
    border-color:
        var(--axiom-teal);

    box-shadow:
        0 0 0 3px
        rgba(
            20,
            166,
            161,
            0.08
        );
}


/* MIC + SEND */

.axiom-ai-mic,
.axiom-ai-send {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border: 0;

    border-radius: 50%;

    cursor: pointer;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}


.axiom-ai-mic {
    background:
        #eef3f5;

    color:
        var(--axiom-navy);
}


.axiom-ai-send {
    background:
        var(--axiom-orange);

    color: #ffffff;
}


.axiom-ai-mic:hover,
.axiom-ai-send:hover {
    transform:
        translateY(-2px);
}


.axiom-ai-mic:hover {
    background:
        #dde8eb;
}


.axiom-ai-send:hover {
    background:
        var(--axiom-teal);
}


.axiom-ai-mic svg,
.axiom-ai-send svg {
    width: 19px;
    height: 19px;

    fill: currentColor;
}


/* LISTENING STATE */

.axiom-ai-mic.listening {
    background:
        #e74c3c;

    color: #ffffff;

    animation:
        axiomMicPulse
        1.2s infinite;
}


@keyframes axiomMicPulse {

    0% {
        box-shadow:
            0 0 0 0
            rgba(
                231,
                76,
                60,
                0.35
            );
    }

    70% {
        box-shadow:
            0 0 0 10px
            rgba(
                231,
                76,
                60,
                0
            );
    }

    100% {
        box-shadow:
            0 0 0 0
            rgba(
                231,
                76,
                60,
                0
            );
    }

}


/* =========================================
   VOICE STATUS
========================================= */

.axiom-ai-voice-status {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    padding:
        7px 12px;

    background:
        #fff5f4;

    color:
        #c0392b;

    font-size: 10px;
    font-weight: 800;
}


.axiom-ai-voice-status[hidden] {
    display: none;
}


.voice-pulse {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background:
        #e74c3c;

    animation:
        axiomVoicePulse
        0.9s infinite;
}


@keyframes axiomVoicePulse {

    50% {
        opacity: 0.35;
    }

}


/* =========================================
   AI FOOTER
========================================= */

.axiom-ai-footer {
    display: flex;

    justify-content: space-between;

    gap: 10px;

    padding:
        8px 13px;

    border-top:
        1px solid
        #edf1f3;

    background:
        #ffffff;

    font-size: 9px;
}


.axiom-ai-footer span {
    color:
        var(--axiom-gray);
}


.axiom-ai-footer a {
    color:
        var(--axiom-teal);

    font-weight: 800;
}


/* =========================================
   FLOATING AI LAUNCHER
========================================= */

.axiom-ai-launcher {
    min-width: 128px;
    height: 54px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    padding:
        0 15px;

    border: 0;

    border-radius: 30px;

    background:
        linear-gradient(
            135deg,
            var(--axiom-navy),
            var(--axiom-teal)
        );

    color: #ffffff;

    cursor: pointer;

    box-shadow:
        0 15px 35px
        rgba(
            8,
            36,
            62,
            0.25
        );

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.axiom-ai-launcher:hover {
    transform:
        translateY(-4px);

    box-shadow:
        0 20px 42px
        rgba(
            8,
            36,
            62,
            0.30
        );
}


.axiom-ai-launcher-icon {
    width: 32px;
    height: 32px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background:
        var(--axiom-orange);

    color: #ffffff;

    font-size: 10px;
    font-weight: 900;
}


.axiom-ai-launcher-text {
    font-size: 11px;
    font-weight: 900;

    letter-spacing: 0.3px;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .axiom-ai {
        left: 14px;
        bottom: 16px;
    }

    .axiom-ai-panel {
        position: fixed;

        left: 12px;
        right: 12px;
        bottom: 78px;

        width: auto;

        max-height:
            min(
                650px,
                calc(
                    100vh - 105px
                )
            );

        transform-origin:
            bottom center;
    }

    .axiom-ai-messages {
        min-height: 260px;
        max-height: 350px;
    }

    .axiom-ai-launcher {
        min-width: 54px;
        width: 54px;

        padding: 0;

        border-radius: 50%;
    }

    .axiom-ai-launcher-text {
        display: none;
    }

    .axiom-ai-launcher-icon {
        width: 34px;
        height: 34px;
    }

}

/* =========================================
   FAQ SECTION
========================================= */

.faq-section {
    padding: 100px 6%;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f5fafb 100%
        );
}


/* =========================================
   FAQ HEADING
========================================= */

.faq-heading {
    max-width: 840px;

    margin: 0 auto 55px;

    text-align: center;
}


.faq-heading h2 {
    color:
        var(--axiom-navy-dark);

    font-size:
        clamp(
            40px,
            4.8vw,
            62px
        );

    line-height: 1.06;

    letter-spacing: -1.5px;
}


.faq-heading h2 span {
    display: block;

    color:
        var(--axiom-teal);
}


.faq-heading p {
    max-width: 690px;

    margin: 18px auto 0;

    color:
        var(--axiom-gray);

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================
   FAQ LAYOUT
========================================= */

.faq-layout {
    max-width: 1250px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        0.8fr
        1.2fr;

    gap: 38px;

    align-items: start;
}


/* =========================================
   FAQ INTRO
========================================= */

.faq-intro {
    position: sticky;

    top: 120px;

    padding: 36px 30px;

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            var(--axiom-navy-dark),
            var(--axiom-navy)
        );

    color: #ffffff;

    box-shadow:
        0 22px 55px
        rgba(
            8,
            36,
            62,
            0.16
        );
}


.faq-small-title {
    color:
        var(--axiom-orange);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 2.2px;
}


.faq-intro h3 {
    margin-top: 10px;

    color: #ffffff;

    font-size:
        clamp(
            28px,
            3vw,
            42px
        );

    line-height: 1.12;
}


.faq-intro p {
    margin-top: 16px;

    color:
        rgba(
            255,
            255,
            255,
            0.72
        );

    font-size: 13px;

    line-height: 1.8;
}


.faq-contact-button {
    display: inline-block;

    margin-top: 25px;

    padding: 13px 19px;

    border-radius: 6px;

    background:
        linear-gradient(
            135deg,
            var(--axiom-orange),
            #ffad4d
        );

    color: #ffffff;

    font-size: 11px;

    font-weight: 900;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}


.faq-contact-button:hover {
    transform:
        translateY(-3px);

    background:
        var(--axiom-teal);
}


/* =========================================
   FAQ LIST
========================================= */

.faq-list {
    display: flex;

    flex-direction: column;

    gap: 12px;
}


/* =========================================
   FAQ ITEM
========================================= */

.faq-item {
    overflow: hidden;

    border:
        1px solid
        rgba(
            18,
            53,
            91,
            0.10
        );

    border-radius: 13px;

    background: #ffffff;

    box-shadow:
        0 10px 28px
        rgba(
            8,
            36,
            62,
            0.05
        );

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}


.faq-item:hover {
    transform:
        translateY(-2px);

    border-color:
        rgba(
            20,
            166,
            161,
            0.25
        );

    box-shadow:
        0 15px 35px
        rgba(
            8,
            36,
            62,
            0.08
        );
}


/* REMOVE DEFAULT ARROW */

.faq-item summary {
    list-style: none;
}


.faq-item summary::-webkit-details-marker {
    display: none;
}


/* QUESTION */

.faq-item summary {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 18px;

    padding: 20px 22px;

    color:
        var(--axiom-navy-dark);

    font-size: 13px;

    font-weight: 800;

    line-height: 1.5;

    cursor: pointer;
}


.faq-item summary span {
    flex-shrink: 0;

    width: 30px;

    height: 30px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background:
        rgba(
            20,
            166,
            161,
            0.10
        );

    color:
        var(--axiom-teal);

    font-size: 18px;

    font-weight: 700;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}


/* OPEN STATE */

.faq-item[open] {
    border-color:
        rgba(
            20,
            166,
            161,
            0.25
        );
}


.faq-item[open] summary {
    color:
        var(--axiom-teal);
}


.faq-item[open] summary span {
    transform:
        rotate(45deg);

    background:
        var(--axiom-orange);

    color: #ffffff;
}


/* =========================================
   FAQ ANSWER
========================================= */

.faq-answer {
    padding:
        0 22px 22px;

    border-top:
        1px solid
        #edf1f3;
}


.faq-answer p {
    margin-top: 13px;

    color:
        var(--axiom-gray);

    font-size: 12px;

    line-height: 1.75;
}


.faq-answer strong {
    color:
        var(--axiom-navy);

    font-weight: 900;
}


/* =========================================
   RESPONSIVE FAQ
========================================= */

@media (max-width: 950px) {

    .faq-layout {
        grid-template-columns:
            1fr;
    }


    .faq-intro {
        position: static;
    }

}


@media (max-width: 700px) {

    .faq-section {
        padding:
            75px 20px;
    }


    .faq-heading h2 {
        font-size: 36px;
    }


    .faq-intro {
        padding:
            30px 22px;
    }


    .faq-item summary {
        padding:
            18px 17px;

        font-size: 12px;
    }


    .faq-answer {
        padding:
            0 17px 18px;
    }


    .faq-answer p {
        font-size: 11px;
    }

}

/* =========================================
   PROFESSIONAL WEBSITE FOOTER
========================================= */

.site-footer {
    background:
        linear-gradient(
            145deg,
            #061b2d,
            var(--axiom-navy-dark),
            var(--axiom-navy)
        );

    color: #ffffff;
}


/* =========================================
   FOOTER MAIN
========================================= */

.footer-main {
    max-width: 1280px;

    margin: 0 auto;

    padding:
        75px 6% 55px;

    display: grid;

    grid-template-columns:
        1.4fr
        0.8fr
        1fr
        1.1fr;

    gap: 45px;
}


/* =========================================
   FOOTER BRAND
========================================= */

.footer-brand {
    display: flex;

    align-items: center;

    gap: 12px;

    width: fit-content;
}


.footer-brand-mark {
    width: 52px;
    height: 52px;

    display: grid;

    place-items: center;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            var(--axiom-teal),
            var(--axiom-orange)
        );

    color: #ffffff;

    font-size: 17px;
    font-weight: 900;

    letter-spacing: 1px;

    box-shadow:
        0 10px 26px
        rgba(
            20,
            166,
            161,
            0.20
        );
}


.footer-brand-text {
    display: flex;

    flex-direction: column;

    line-height: 1;
}


.footer-brand-text strong {
    font-size: 20px;

    letter-spacing: 2px;
}


.footer-brand-text span {
    margin-top: 6px;

    color:
        var(--axiom-teal-light);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;
}


.footer-company > p {
    max-width: 390px;

    margin-top: 22px;

    color:
        rgba(
            255,
            255,
            255,
            0.68
        );

    font-size: 12px;

    line-height: 1.85;
}


.footer-company-info {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-top: 23px;
}


.footer-company-info span {
    padding:
        7px 10px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.10
        );

    border-radius: 5px;

    background:
        rgba(
            255,
            255,
            255,
            0.05
        );

    color:
        rgba(
            255,
            255,
            255,
            0.75
        );

    font-size: 9px;

    font-weight: 800;
}


/* =========================================
   FOOTER COLUMNS
========================================= */

.footer-column {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 10px;
}


.footer-column h3 {
    position: relative;

    margin-bottom: 13px;

    padding-bottom: 10px;

    color: #ffffff;

    font-size: 14px;
}


.footer-column h3::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 34px;
    height: 3px;

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            var(--axiom-teal),
            var(--axiom-orange)
        );
}


.footer-column > a {
    color:
        rgba(
            255,
            255,
            255,
            0.68
        );

    font-size: 11px;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}


.footer-column > a:hover {
    color:
        var(--axiom-teal-light);

    transform:
        translateX(4px);
}


/* =========================================
   FOOTER CONTACT
========================================= */

.footer-contact {
    gap: 14px;
}


.footer-contact-item {
    width: 100%;
}


.footer-contact-item > span {
    display: block;

    margin-bottom: 4px;

    color:
        var(--axiom-orange);

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1.5px;
}


.footer-contact-item a,
.footer-contact-item p {
    color:
        rgba(
            255,
            255,
            255,
            0.76
        );

    font-size: 11px;

    line-height: 1.6;

    overflow-wrap: anywhere;
}


.footer-whatsapp-button {
    margin-top: 7px;

    padding:
        11px 15px;

    border-radius: 6px;

    background:
        linear-gradient(
            135deg,
            #25d366,
            #128c7e
        );

    color: #ffffff !important;

    font-size: 10px !important;

    font-weight: 900;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.footer-whatsapp-button:hover {
    transform:
        translateY(-3px) !important;

    box-shadow:
        0 12px 25px
        rgba(
            37,
            211,
            102,
            0.16
        );
}


/* =========================================
   FOOTER BOTTOM
========================================= */

.footer-bottom {
    max-width: 1280px;

    margin: 0 auto;

    padding:
        20px 6%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    border-top:
        1px solid
        rgba(
            255,
            255,
            255,
            0.09
        );
}


.footer-bottom p {
    color:
        rgba(
            255,
            255,
            255,
            0.48
        );

    font-size: 9px;
}


.footer-bottom-links {
    display: flex;

    align-items: center;

    gap: 17px;
}


.footer-bottom-links a,
.footer-bottom-links button {
    border: 0;

    background: none;

    color:
        rgba(
            255,
            255,
            255,
            0.70
        );

    font-family: inherit;

    font-size: 9px;

    font-weight: 800;

    cursor: pointer;

    transition:
        color 0.25s ease;
}


.footer-bottom-links a:hover,
.footer-bottom-links button:hover {
    color:
        var(--axiom-orange);
}


/* =========================================
   FOOTER RESPONSIVE
========================================= */

@media (max-width: 1000px) {

    .footer-main {
        grid-template-columns:
            repeat(
                2,
                1fr
            );
    }

}


@media (max-width: 700px) {

    .footer-main {
        padding:
            60px 20px 40px;

        grid-template-columns:
            1fr;

        gap: 38px;
    }


    .footer-company > p {
        max-width: none;
    }


    .footer-bottom {
        padding:
            18px 20px;

        flex-direction: column;

        align-items: flex-start;
    }


    .footer-bottom-links {
        flex-wrap: wrap;
    }

}