/* =========================================================
   SURREAL CONTACT PAGE
   INDEX THEME SYSTEM
========================================================= */


/* =========================================================
   THEME
========================================================= */

:root {

    color-scheme: light dark;

    --orange: #f6a91b;
    --orange-2: #f4791d;
    --yellow: #ffc94d;

    --navy: #0b1f3a;
    --navy-2: #12325a;
    --navy-3: #183f6d;

    --blue: #3f82d1;
    --purple: #7357d9;
    --green: #3f9b72;

    --page-bg: #f6f8fb;

    --surface: #ffffff;
    --surface-2: #f2f6fa;

    --section-blue: #eef5fb;
    --section-warm: #fff8ed;
    --section-purple: #f6f3ff;

    --text: #10233d;
    --text-soft: #596d83;
    --muted: #8291a1;

    --border:
        rgba(13, 35, 66, .10);

    --border-strong:
        rgba(13, 35, 66, .16);

    --shadow:
        0 18px 55px
        rgba(13, 35, 66, .08);

    --shadow-hover:
        0 35px 90px
        rgba(13, 35, 66, .16);

    --glass:
        rgba(255, 255, 255, .76);

    --input:
        #f8fafc;

}


/* =========================================================
   DARK DEVICE APPEARANCE
========================================================= */

@media (prefers-color-scheme: dark) {

    :root {

        --page-bg:
            #071526;

        --surface:
            #0d213a;

        --surface-2:
            #142d49;

        --section-blue:
            #0c2440;

        --section-warm:
            #252218;

        --section-purple:
            #1a1d3b;

        --text:
            #f4f7fb;

        --text-soft:
            #b3c3d4;

        --muted:
            #8498ad;

        --border:
            rgba(255, 255, 255, .09);

        --border-strong:
            rgba(255, 255, 255, .15);

        --shadow:
            0 22px 60px
            rgba(0, 0, 0, .20);

        --shadow-hover:
            0 35px 90px
            rgba(0, 0, 0, .32);

        --glass:
            rgba(13, 33, 58, .80);

        --input:
            #102943;

    }

}


/* =========================================================
   PAGE
========================================================= */

body {

    background:
        var(--page-bg);

    color:
        var(--text);

}


main {

    overflow: hidden;

}


.contact-page-hero,
.contact-information,
.contact-form-section,
.contact-map-section,
.contact-final-cta {

    width: 100%;

}


/* =========================================================
   COMMON TEXT
========================================================= */

.contact-page-title,
.section-title,
.final-cta-inner h2,
.form-heading h3 {

    font-family:
        "Playfair Display",
        Georgia,
        serif;

}


.contact-page-title em,
.section-title em,
.final-cta-inner h2 em {

    font-style: italic;

    color:
        var(--orange);

}


/* =========================================================
   HERO
========================================================= */

.contact-page-hero {

    min-height:
        94vh;

    position: relative;

    display: flex;

    align-items: center;

    overflow: hidden;

    padding:
        145px 0
        100px;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            #071526 0%,
            #0b213d 52%,
            #12345b 100%
        );

}


.contact-hero-background {

    position: absolute;

    inset: 0;

    overflow: hidden;

    pointer-events: none;

}


.contact-grid {

    position: absolute;

    inset: 0;

    opacity: .12;

    background-image:

        linear-gradient(
            rgba(255,255,255,.07) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255,255,255,.07) 1px,
            transparent 1px
        );

    background-size:
        62px 62px;

    mask-image:
        linear-gradient(
            to bottom,
            rgba(0,0,0,.85),
            transparent 92%
        );

}


.contact-glow {

    position: absolute;

    border-radius: 50%;

    filter:
        blur(10px);

    pointer-events: none;

}


.contact-glow-one {

    width: 650px;
    height: 650px;

    right: -200px;
    top: -190px;

    background:
        radial-gradient(
            circle,
            rgba(246,169,27,.22),
            transparent 68%
        );

}


.contact-glow-two {

    width: 600px;
    height: 600px;

    left: -260px;
    bottom: -280px;

    background:
        radial-gradient(
            circle,
            rgba(63,130,209,.18),
            transparent 68%
        );

}


.contact-glow-three {

    width: 480px;
    height: 480px;

    left: 46%;
    top: 20%;

    background:
        radial-gradient(
            circle,
            rgba(115,87,217,.11),
            transparent 70%
        );

}


.contact-background-ring {

    position: absolute;

    border-radius: 50%;

    border:
        1px solid
        rgba(255,255,255,.045);

}


.ring-bg-one {

    width: 780px;
    height: 780px;

    right: -300px;
    top: -180px;

}


.ring-bg-two {

    width: 500px;
    height: 500px;

    right: -140px;
    top: -40px;

    border-color:
        rgba(246,169,27,.11);

}


.contact-hero-inner {

    position: relative;

    z-index: 2;

    width: 100%;

    display: grid;

    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(420px, .92fr);

    align-items: center;

    gap: 80px;

}


.contact-hero-copy {

    max-width: 770px;

}


.contact-page-hero .eyebrow {

    color:
        var(--orange);

}


.contact-page-title {

    max-width: 820px;

    margin:
        19px 0
        28px;

    color: #fff;

    font-size:
        clamp(
            58px,
            7vw,
            100px
        );

    font-weight: 500;

    line-height: .94;

    letter-spacing: -4px;

}


.contact-page-title em {

    display: block;

}


.contact-hero-text {

    max-width: 650px;

    margin:
        0 0
        36px;

    color:
        #b4c6d8;

    font-size: 16px;

    line-height: 1.9;

}


.contact-hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 13px;

}


.contact-page-hero .btn-outline {

    color: #fff;

    border-color:
        rgba(255,255,255,.22);

}


.contact-page-hero .btn-outline:hover {

    color:
        #10233d;

    background:
        #fff;

    border-color:
        #fff;

}


.contact-hero-meta {

    display: flex;

    flex-wrap: wrap;

    gap: 12px 22px;

    margin-top: 32px;

}


.contact-hero-meta div {

    display: flex;

    align-items: center;

    gap: 8px;

    color:
        #8fa6bd;

    font-size: 11px;

    font-weight: 600;

}


.contact-hero-meta i {

    color:
        var(--orange);

    font-size: 10px;

}


/* =========================================================
   HERO VISUAL
========================================================= */

.contact-hero-visual {

    position: relative;

    min-height: 560px;

    display: grid;

    place-items: center;

    isolation: isolate;

    perspective: 1200px;

}


.contact-visual-card {

    position: relative;

    z-index: 6;

    width: 330px;
    height: 330px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    border:
        1px solid
        rgba(255,255,255,.13);

    border-radius: 50%;

    text-align: center;

    color: #fff;

    background:

        radial-gradient(
            circle at 30% 20%,
            rgba(255,255,255,.12),
            transparent 30%
        ),

        linear-gradient(
            145deg,
            rgba(18,50,90,.96),
            rgba(8,25,45,.95)
        );

    box-shadow:

        0 45px 100px
        rgba(0,0,0,.35),

        inset
        0 1px 0
        rgba(255,255,255,.10);

    transform-style:
        preserve-3d;

    transition:
        transform .2s ease,
        box-shadow .4s ease;

}


.contact-card-shine {

    position: absolute;

    inset: 0;

    opacity: 0;

    background:

        radial-gradient(
            circle at
            var(--shine-x, 50%)
            var(--shine-y, 50%),
            rgba(255,255,255,.16),
            transparent 38%
        );

    transition:
        opacity .3s ease;

}


.contact-visual-card:hover
.contact-card-shine {

    opacity: 1;

}


.contact-visual-icon {

    width: 78px;
    height: 78px;

    display: grid;

    place-items: center;

    position: relative;

    z-index: 2;

    margin-bottom: 23px;

    border-radius: 50%;

    color:
        #10233d;

    background:
        linear-gradient(
            135deg,
            #ffd669,
            #f6a91b
        );

    box-shadow:
        0 14px 35px
        rgba(246,169,27,.25);

    font-size: 27px;

}


.contact-visual-card > span {

    position: relative;

    z-index: 2;

    color:
        #91a9c1;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 3px;

}


.contact-visual-card strong {

    position: relative;

    z-index: 2;

    margin-top: 10px;

    font-family:
        "Playfair Display",
        serif;

    font-size: 30px;

    font-weight: 500;

    line-height: 1.1;

}


.contact-visual-card > small {

    position: relative;

    z-index: 2;

    margin-top: 16px;

    color:
        #718aa2;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 2px;

}


/* =========================================================
   HERO ORBITS
========================================================= */

.contact-orbit {

    position: absolute;

    left: 50%;
    top: 50%;

    border-radius: 50%;

    pointer-events: none;

}


.orbit-one {

    width: 430px;
    height: 430px;

    border:
        1px solid
        rgba(246,169,27,.25);

    animation:
        orbitRotate
        18s
        linear
        infinite;

}


.orbit-two {

    width: 545px;
    height: 545px;

    border:
        1px solid
        rgba(63,130,209,.17);

    animation:
        orbitReverse
        25s
        linear
        infinite;

}


.orbit-three {

    width: 665px;
    height: 665px;

    border:
        1px solid
        rgba(115,87,217,.12);

    animation:
        orbitRotate
        34s
        linear
        infinite;

}


.orbit-node {

    position: absolute;

    width: 9px;
    height: 9px;

    border-radius: 50%;

}


.orbit-node-one {

    top: 22%;
    right: 8%;

    background:
        var(--orange);

    box-shadow:
        0 0 18px
        rgba(246,169,27,.9);

}


.orbit-node-two {

    left: 12%;
    top: 25%;

    background:
        var(--blue);

    box-shadow:
        0 0 18px
        rgba(63,130,209,.8);

}


.orbit-node-three {

    right: 18%;
    bottom: 11%;

    background:
        #9b83ff;

    box-shadow:
        0 0 18px
        rgba(155,131,255,.8);

}


@keyframes orbitRotate {

    from {

        transform:
            translate(-50%,-50%)
            rotate(0deg);

    }

    to {

        transform:
            translate(-50%,-50%)
            rotate(360deg);

    }

}


@keyframes orbitReverse {

    from {

        transform:
            translate(-50%,-50%)
            rotate(360deg);

    }

    to {

        transform:
            translate(-50%,-50%)
            rotate(0deg);

    }

}


/* =========================================================
   FLOATING HERO CARDS
========================================================= */

.contact-floating-card {

    position: absolute;

    z-index: 10;

    min-width: 220px;

    display: flex;

    align-items: center;

    gap: 12px;

    padding:
        14px 17px;

    border:
        1px solid
        rgba(255,255,255,.12);

    border-radius: 15px;

    color: #fff;

    text-decoration: none;

    background:
        rgba(8,29,51,.76);

    backdrop-filter:
        blur(18px);

    -webkit-backdrop-filter:
        blur(18px);

    box-shadow:
        0 20px 50px
        rgba(0,0,0,.25);

    transition:
        transform .35s ease,
        border-color .35s ease,
        background .35s ease,
        box-shadow .35s ease;

}


.contact-floating-card:hover {

    transform:
        translateY(-7px)
        scale(1.025);

    border-color:
        rgba(246,169,27,.35);

    background:
        rgba(13,43,73,.92);

    box-shadow:
        0 28px 65px
        rgba(0,0,0,.34);

}


.contact-floating-card > i {

    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    display: grid;

    place-items: center;

    border-radius: 11px;

    color:
        #10233d;

    background:
        var(--orange);

}


.contact-floating-card div {

    display: flex;

    flex-direction: column;

}


.contact-floating-card small {

    color:
        #738da7;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 2px;

}


.contact-floating-card strong {

    margin-top: 4px;

    color:
        #e8eef5;

    font-size: 11px;

    font-weight: 600;

}


.floating-email {

    top: 75px;
    right: -20px;

}


.floating-location {

    left: -15px;
    bottom: 70px;

}


.floating-location > i {

    color: #fff;

    background:
        var(--purple);

}


/* =========================================================
   CONTACT INFORMATION
========================================================= */

.contact-information {

    position: relative;

    overflow: hidden;

    padding:
        130px 0
        140px;

    background:
        var(--surface);

}


.section-background-orb {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;

}


.methods-orb-one {

    width: 420px;
    height: 420px;

    top: -260px;
    right: -180px;

    background:
        rgba(115,87,217,.045);

}


.methods-orb-two {

    width: 380px;
    height: 380px;

    bottom: -240px;
    left: -200px;

    background:
        rgba(63,155,114,.045);

}


.contact-section-heading {

    position: relative;

    z-index: 2;

    max-width: 770px;

    margin-bottom: 60px;

}


.contact-section-heading
.section-title {

    margin:
        18px 0 0;

    color:
        var(--text);

    font-size:
        clamp(
            46px,
            5.8vw,
            78px
        );

    line-height: 1;

    letter-spacing: -2.5px;

}


.contact-section-heading
.section-intro {

    max-width: 620px;

    margin:
        25px 0 0;

    color:
        var(--text-soft);

    line-height: 1.8;

}


/* =========================================================
   CONTACT METHOD CARDS
========================================================= */

.contact-method-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(0,1fr)
        );

    gap: 18px;

}


.contact-method-card {

    --card-accent:
        var(--orange);

    position: relative;

    min-height: 210px;

    display: flex;

    align-items: flex-start;

    gap: 22px;

    overflow: hidden;

    padding: 32px;

    border:
        1px solid
        var(--border);

    border-radius: 21px;

    color:
        var(--text);

    text-decoration: none;

    background:
        var(--surface);

    box-shadow:
        var(--shadow);

    transform-style:
        preserve-3d;

    transition:
        transform .4s
        cubic-bezier(.22,.61,.36,1),

        box-shadow .4s ease,

        border-color .35s ease;

}


.method-orange {

    --card-accent:
        var(--orange);

}


.method-purple {

    --card-accent:
        var(--purple);

}


.method-green {

    --card-accent:
        var(--green);

}


.method-blue {

    --card-accent:
        var(--blue);

}


.contact-method-card::after {

    content: "";

    position: absolute;

    right: -140px;
    bottom: -140px;

    width: 220px;
    height: 220px;

    border-radius: 50%;

    background:
        color-mix(
            in srgb,
            var(--card-accent)
            12%,
            transparent
        );

    transition:
        transform .55s ease;

}


.card-pointer-glow {

    position: absolute;

    inset: 0;

    opacity: 0;

    pointer-events: none;

    background:

        radial-gradient(
            circle at
            var(--pointer-x,50%)
            var(--pointer-y,50%),

            color-mix(
                in srgb,
                var(--card-accent)
                15%,
                transparent
            ),

            transparent
            42%
        );

    transition:
        opacity .3s ease;

}


.contact-method-card:hover {

    transform:
        translateY(-10px);

    border-color:
        color-mix(
            in srgb,
            var(--card-accent)
            35%,
            transparent
        );

    box-shadow:
        var(--shadow-hover);

}


.contact-method-card:hover
.card-pointer-glow {

    opacity: 1;

}


.contact-method-card:hover::after {

    transform:
        scale(2.3);

}


.contact-method-icon {

    position: relative;

    z-index: 2;

    width: 62px;
    height: 62px;

    flex:
        0 0
        62px;

    display: grid;

    place-items: center;

    border-radius: 17px;

    color: #fff;

    font-size: 21px;

    transition:
        transform .4s ease,
        box-shadow .4s ease;

}


.contact-method-card:hover
.contact-method-icon {

    transform:
        rotate(-7deg)
        scale(1.08);

    box-shadow:
        0 15px 30px
        color-mix(
            in srgb,
            var(--card-accent)
            25%,
            transparent
        );

}


.contact-method-icon.orange {

    background:
        var(--orange-2);

}


.contact-method-icon.purple {

    background:
        var(--purple);

}


.contact-method-icon.green {

    background:
        var(--green);

}


.contact-method-icon.blue {

    background:
        var(--blue);

}


.contact-method-content {

    position: relative;

    z-index: 2;

    min-width: 0;

    padding-right: 30px;

}


.contact-method-content span {

    color:
        var(--card-accent);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;

}


.contact-method-content h3 {

    margin:
        9px 0
        9px;

    color:
        var(--text);

    font-size: 19px;

}


.contact-method-content p {

    max-width: 390px;

    margin: 0;

    color:
        var(--text-soft);

    font-size: 13px;

    line-height: 1.75;

}


.method-arrow {

    position: absolute;

    z-index: 3;

    right: 25px;
    top: 25px;

    color:
        var(--muted);

    opacity: .55;

    transition:
        transform .3s ease,
        color .3s ease,
        opacity .3s ease;

}


.contact-method-card:hover
.method-arrow {

    opacity: 1;

    color:
        var(--card-accent);

    transform:
        translate(
            4px,
            -4px
        )
        rotate(3deg);

}


/* =========================================================
   FORM SECTION
========================================================= */

.contact-form-section {

    position: relative;

    overflow: hidden;

    padding:
        135px 0
        145px;

    background:

        linear-gradient(
            135deg,
            var(--section-blue),
            var(--section-purple)
        );

}


.contact-form-glow {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;

}


.form-glow-one {

    width: 500px;
    height: 500px;

    right: -250px;
    top: -190px;

    background:
        rgba(63,130,209,.08);

}


.form-glow-two {

    width: 460px;
    height: 460px;

    left: -250px;
    bottom: -230px;

    background:
        rgba(246,169,27,.07);

}


.contact-form-wrapper {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0,.78fr)
        minmax(0,1.22fr);

    gap: 90px;

    align-items: start;

}


.contact-form-intro {

    position: sticky;

    top: 120px;

}


.contact-form-intro
.section-title {

    margin:
        18px 0
        24px;

    color:
        var(--text);

    font-size:
        clamp(
            47px,
            5vw,
            72px
        );

    line-height: 1;

    letter-spacing: -2px;

}


.contact-form-intro
.section-intro {

    max-width: 470px;

    color:
        var(--text-soft);

    font-size: 14px;

    line-height: 1.85;

}


/* =========================================================
   PROJECT TYPES
========================================================= */

.project-types {

    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(0,1fr)
        );

    gap: 11px;

    margin-top: 34px;

}


.project-types div {

    min-width: 0;

    display: flex;

    align-items: center;

    gap: 9px;

    padding:
        13px 14px;

    border:
        1px solid
        var(--border);

    border-radius: 10px;

    color:
        var(--text);

    background:
        color-mix(
            in srgb,
            var(--surface)
            88%,
            transparent
        );

    font-size: 10px;

    font-weight: 700;

    transition:
        transform .3s ease,
        background .3s ease,
        border-color .3s ease;

}


.project-types div:hover {

    transform:
        translateY(-3px);

    border-color:
        rgba(246,169,27,.28);

    background:
        var(--surface);

}


.project-types i {

    width: 18px;

    flex-shrink: 0;

    color:
        var(--orange);

}


/* =========================================================
   RESPONSE NOTE
========================================================= */

.contact-response-note {

    display: flex;

    align-items: center;

    gap: 13px;

    margin-top: 28px;

    padding-top: 25px;

    border-top:
        1px solid
        var(--border);

}


.response-dot {

    width: 10px;
    height: 10px;

    flex:
        0 0
        10px;

    border-radius: 50%;

    background:
        var(--green);

    box-shadow:
        0 0 0 6px
        rgba(63,155,114,.10);

    animation:
        responsePulse
        2s ease
        infinite;

}


.contact-response-note div {

    display: flex;

    flex-direction: column;

    gap: 3px;

}


.contact-response-note strong {

    color:
        var(--text);

    font-size: 11px;

}


.contact-response-note small {

    color:
        var(--text-soft);

    font-size: 10px;

}


@keyframes responsePulse {

    50% {

        box-shadow:
            0 0 0 10px
            rgba(63,155,114,0);

    }

}


/* =========================================================
   FORM
========================================================= */

.professional-contact-form {

    position: relative;

    min-width: 0;

    overflow: hidden;

    padding: 46px;

    border:
        1px solid
        var(--border);

    border-radius: 25px;

    background:
        var(--surface);

    box-shadow:
        0 30px 90px
        rgba(13,35,66,.13);

}


.form-top-accent {

    position: absolute;

    left: 0;
    top: 0;

    width: 100%;
    height: 3px;

    background:

        linear-gradient(
            90deg,

            var(--orange),

            var(--purple),

            var(--blue),

            var(--green)
        );

}


.form-heading {

    margin-bottom: 35px;

}


.form-heading span {

    color:
        var(--orange);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;

}


.form-heading h3 {

    margin:
        8px 0
        0;

    color:
        var(--text);

    font-size: 34px;

    font-weight: 500;

}


.professional-form-row {

    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(0,1fr)
        );

    gap: 17px;

}


.professional-input {

    min-width: 0;

    margin-bottom: 21px;

}


.professional-input label {

    display: block;

    margin-bottom: 8px;

    color:
        var(--text);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .3px;

}


.input-wrapper {

    position: relative;

}


.input-wrapper > i {

    position: absolute;

    z-index: 3;

    left: 17px;
    top: 50%;

    color:
        var(--muted);

    transform:
        translateY(-50%);

    font-size: 13px;

    pointer-events: none;

    transition:
        color .25s ease;

}


.input-wrapper input,
.input-wrapper textarea {

    width: 100%;

    border:
        1px solid
        var(--border);

    outline: none;

    border-radius: 11px;

    color:
        var(--text);

    background:
        var(--input);

    padding:
        15px
        16px
        15px
        45px;

    font-family:
        "Manrope",
        "Poppins",
        sans-serif;

    font-size: 12px;

    transition:
        background .25s ease,
        border-color .25s ease,
        box-shadow .25s ease,
        transform .25s ease;

}


.input-wrapper textarea {

    min-height: 160px;

    resize: vertical;

    line-height: 1.7;

}


.textarea-wrapper > i {

    top: 20px;

    transform: none;

}


.input-wrapper input::placeholder,
.input-wrapper textarea::placeholder {

    color:
        var(--muted);

}


.input-wrapper input:hover,
.input-wrapper textarea:hover {

    border-color:
        var(--border-strong);

}


.input-wrapper:focus-within > i {

    color:
        var(--orange);

}


.input-wrapper input:focus,
.input-wrapper textarea:focus {

    border-color:
        var(--orange);

    background:
        var(--surface);

    box-shadow:
        0 0 0 4px
        rgba(246,169,27,.08);

    transform:
        translateY(-1px);

}


.full-btn {

    width: 100%;

    min-height: 54px;

    justify-content: center;

    margin-top: 4px;

}


.full-btn i {

    transition:
        transform .3s ease;

}


.full-btn:hover i {

    transform:
        translateX(4px);

}


.full-btn.loading i {

    animation:
        loadingArrow
        .85s ease
        infinite;

}


@keyframes loadingArrow {

    50% {

        transform:
            translateX(7px);

    }

}


.form-security {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    margin:
        17px 0
        0;

    color:
        var(--text-soft);

    font-size: 9px;

}


.form-security i {

    color:
        var(--green);

}


/* =========================================================
   FORM STATUS
========================================================= */

.form-status {

    min-height: 0;

    margin:
        18px 0
        0;

    padding: 0;

    border-radius: 10px;

    font-size: 11px;

    line-height: 1.6;

}


.form-status.success {

    padding:
        13px 15px;

    border:
        1px solid
        rgba(63,155,114,.20);

    color:
        var(--green);

    background:
        rgba(63,155,114,.08);

}


.form-status.error {

    padding:
        13px 15px;

    border:
        1px solid
        rgba(217,104,106,.22);

    color:
        #d9686a;

    background:
        rgba(217,104,106,.08);

}


/* =========================================================
   MAP
========================================================= */

.contact-map-section {

    position: relative;

    padding:
        130px 0
        140px;

    background:
        var(--surface);

}


.map-heading {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 55px;

    margin-bottom: 48px;

}


.map-heading
.section-title {

    max-width: 730px;

    margin:
        18px 0
        0;

    color:
        var(--text);

    font-size:
        clamp(
            46px,
            5.5vw,
            76px
        );

    line-height: 1;

    letter-spacing: -2px;

}


.map-heading
.projects-intro {

    max-width: 350px;

    margin: 0 0 5px;

    color:
        var(--text-soft);

    font-size: 13px;

    line-height: 1.8;

}


.map-container {

    position: relative;

    overflow: hidden;

    border:
        1px solid
        var(--border);

    border-radius: 25px;

    box-shadow:
        var(--shadow);

    transition:
        transform .45s ease,
        box-shadow .45s ease;

}


.map-container:hover {

    transform:
        translateY(-5px);

    box-shadow:
        var(--shadow-hover);

}


.map-container iframe {

    display: block;

    width: 100%;

    filter:
        saturate(.8)
        contrast(.96);

}


.map-overlay-gradient {

    position: absolute;

    inset: 0;

    pointer-events: none;

    background:

        linear-gradient(
            180deg,
            transparent
            58%,
            rgba(4,20,36,.18)
        );

}


.map-info-card {

    position: absolute;

    z-index: 5;

    left: 25px;
    bottom: 25px;

    display: flex;

    align-items: center;

    gap: 14px;

    padding:
        15px 19px;

    border:
        1px solid
        rgba(255,255,255,.17);

    border-radius: 15px;

    color: #fff;

    background:
        rgba(7,24,43,.88);

    backdrop-filter:
        blur(16px);

    -webkit-backdrop-filter:
        blur(16px);

    box-shadow:
        0 18px 45px
        rgba(0,0,0,.27);

}


.map-info-icon {

    width: 44px;
    height: 44px;

    flex:
        0 0
        44px;

    display: grid;

    place-items: center;

    border-radius: 11px;

    color:
        #10233d;

    background:
        var(--orange);

}


.map-info-card > div:last-child {

    display: flex;

    flex-direction: column;

}


.map-info-card span {

    color:
        #7890a7;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 2px;

}


.map-info-card strong {

    margin-top: 4px;

    color:
        #fff;

    font-size: 11px;

}


.map-info-card small {

    margin-top: 3px;

    color:
        #879bb0;

    font-size: 9px;

}


/* =========================================================
   FINAL CTA
========================================================= */

.contact-final-cta {

    padding:
        0 0
        120px;

    background:
        var(--surface);

}


.final-cta-inner {

    position: relative;

    min-height: 330px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;

    overflow: hidden;

    padding:
        65px;

    border-radius: 28px;

    color: #fff;

    background:

        radial-gradient(
            circle at 90% 15%,
            rgba(115,87,217,.28),
            transparent 30%
        ),

        radial-gradient(
            circle at 15% 100%,
            rgba(63,130,209,.18),
            transparent 32%
        ),

        linear-gradient(
            135deg,
            #08182b,
            #123d69
        );

    box-shadow:
        0 40px 100px
        rgba(7,24,43,.22);

}


.final-cta-copy {

    position: relative;

    z-index: 2;

}


.final-cta-inner .eyebrow {

    color:
        var(--orange);

}


.final-cta-inner h2 {

    max-width: 740px;

    margin:
        15px 0
        0;

    color: #fff;

    font-size:
        clamp(
            48px,
            5.7vw,
            76px
        );

    font-weight: 500;

    line-height: .98;

    letter-spacing: -2px;

}


.final-cta-inner .btn-light {

    position: relative;

    z-index: 2;

    flex-shrink: 0;

    color:
        #10233d;

    background:
        linear-gradient(
            135deg,
            #ffd365,
            #f6a91b
        );

}


.final-cta-inner .btn-light:hover {

    background:
        #fff;

}


.cta-orb {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;

}


.cta-orb-one {

    width: 450px;
    height: 450px;

    right: -180px;
    top: -230px;

    border:
        1px solid
        rgba(255,255,255,.11);

}


.cta-orb-two {

    width: 270px;
    height: 270px;

    right: 90px;
    bottom: -210px;

    border:
        1px solid
        rgba(246,169,27,.20);

}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {

    position: relative;

    overflow: hidden;

    padding:
        90px 0
        0;

    color: #fff;

    background:

        radial-gradient(
            circle at 12% 15%,
            rgba(246,169,27,.08),
            transparent 24%
        ),

        radial-gradient(
            circle at 85% 85%,
            rgba(63,130,209,.09),
            transparent 26%
        ),

        #07182b;

}


.site-footer::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 1px;

    background:

        linear-gradient(
            90deg,
            transparent,
            rgba(246,169,27,.6),
            rgba(63,130,209,.45),
            transparent
        );

}


.footer-inner {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(280px,1.45fr)
        minmax(150px,.65fr)
        minmax(190px,.75fr)
        minmax(260px,1fr);

    gap: 70px;

    align-items: start;

    padding-bottom: 75px;

}


.footer-brand {

    max-width: 370px;

}


.footer-logo {

    display: inline-flex;

    margin-bottom: 27px;

}


.footer-logo-image {

    display: block;

    width: 230px;

    max-width: 100%;

    height: auto;

    object-fit: contain;

}


.footer-logo img {

    filter: none;

}


.footer-brand > p {

    max-width: 340px;

    margin: 0;

    color:
        #93a6ba;

    font-family:
        "Manrope",
        sans-serif;

    font-size: 13px;

    line-height: 1.8;

}


.footer-social {

    display: flex;

    gap: 10px;

    margin-top: 27px;

}


.footer-social a {

    width: 38px;
    height: 38px;

    display: grid;

    place-items: center;

    border:
        1px solid
        rgba(255,255,255,.11);

    border-radius: 50%;

    color: #fff;

    background:
        rgba(255,255,255,.025);

    text-decoration: none;

    transition:
        .3s ease;

}


.footer-social a:hover {

    transform:
        translateY(-4px);

    color:
        #10233d;

    border-color:
        var(--orange);

    background:
        var(--orange);

}


.footer-col {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

}


.footer-col h4,
.footer-news h4 {

    margin:
        0 0
        24px;

    color: #fff;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.8px;

}


.footer-col a {

    position: relative;

    margin-bottom: 13px;

    color:
        #93a6ba;

    text-decoration: none;

    font-size: 13px;

    transition:
        .25s ease;

}


.footer-col a:hover {

    color: #fff;

    transform:
        translateX(4px);

}


.footer-news > p {

    max-width: 290px;

    margin:
        0 0
        24px;

    color:
        #93a6ba;

    font-size: 13px;

    line-height: 1.75;

}


.newsletter-form {

    width: 100%;

    max-width: 320px;

    height: 50px;

    display: flex;

    overflow: hidden;

    border:
        1px solid
        rgba(255,255,255,.12);

    border-radius: 10px;

    background:
        rgba(255,255,255,.04);

}


.newsletter-form input {

    min-width: 0;

    flex: 1;

    padding:
        0 17px;

    border: 0;

    outline: 0;

    color: #fff;

    background:
        transparent;

}


.newsletter-form button {

    width: 50px;

    border: 0;

    color:
        #10233d;

    background:
        var(--orange);

    cursor: pointer;

}


.footer-bottom {

    border-top:
        1px solid
        rgba(255,255,255,.08);

}


.footer-bottom-inner {

    min-height: 78px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


.footer-bottom p,
.footer-legal a {

    color:
        #667d94;

    font-size: 11px;

}


.footer-bottom p {

    margin: 0;

}


.footer-legal {

    display: flex;

    gap: 25px;

}


.footer-legal a {

    text-decoration: none;

}


.footer-legal a:hover {

    color: #fff;

}


/* =========================================================
   INTERACTION HELPERS
========================================================= */

.reveal-item {

    opacity: 0;

    transform:
        translateY(28px);

    transition:

        opacity .75s ease,

        transform .75s
        cubic-bezier(
            .22,
            .61,
            .36,
            1
        );

}


.reveal-item.visible,
.reveal-item.revealed,
.reveal-item.is-visible,
.reveal-item.active {

    opacity: 1;

    transform:
        translateY(0);

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .contact-hero-inner {

        grid-template-columns:
            minmax(0,1fr)
            minmax(370px,.85fr);

        gap: 45px;

    }


    .contact-page-title {

        font-size:
            clamp(
                55px,
                7.5vw,
                82px
            );

    }


    .contact-form-wrapper {

        gap: 55px;

    }


    .footer-inner {

        grid-template-columns:
            minmax(260px,1.3fr)
            repeat(
                2,
                minmax(150px,.7fr)
            );

        gap:
            55px 45px;

    }


    .footer-news {

        grid-column:
            1 / -1;

        max-width:
            420px;

    }

}


/* =========================================================
   TABLET / MOBILE
========================================================= */

@media (max-width: 850px) {

    .contact-page-hero {

        min-height: auto;

        padding:
            135px 0
            80px;

    }


    .contact-hero-inner {

        grid-template-columns:
            1fr;

        gap: 35px;

        text-align: center;

    }


    .contact-hero-copy {

        margin:
            0 auto;

    }


    .contact-hero-text {

        margin-left: auto;
        margin-right: auto;

    }


    .contact-hero-buttons,
    .contact-hero-meta {

        justify-content:
            center;

    }


    .contact-hero-visual {

        min-height:
            500px;

    }


    .contact-method-grid {

        grid-template-columns:
            1fr;

    }


    .contact-form-wrapper {

        grid-template-columns:
            1fr;

        gap: 55px;

    }


    .contact-form-intro {

        position: static;

    }


    .map-heading {

        flex-direction: column;

        align-items: flex-start;

    }


    .map-heading
    .projects-intro {

        max-width: 600px;

    }


    .final-cta-inner {

        flex-direction: column;

        align-items: flex-start;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .contact-page-hero {

        padding:
            115px 0
            70px;

    }


    .contact-page-title {

        font-size:
            clamp(
                46px,
                13vw,
                66px
            );

        letter-spacing:
            -2.2px;

    }


    .contact-hero-visual {

        min-height:
            420px;

    }


    .contact-visual-card {

        width: 245px;
        height: 245px;

    }


    .contact-visual-icon {

        width: 62px;
        height: 62px;

        font-size: 21px;

    }


    .contact-visual-card strong {

        font-size: 23px;

    }


    .orbit-one {

        width: 315px;
        height: 315px;

    }


    .orbit-two {

        width: 385px;
        height: 385px;

    }


    .orbit-three {

        width: 455px;
        height: 455px;

    }


    .contact-floating-card {

        min-width: auto;

        padding:
            9px 12px;

        transform:
            scale(.9);

    }


    .contact-floating-card > i {

        width: 35px;
        height: 35px;

        flex-basis: 35px;

    }


    .contact-floating-card strong {

        font-size: 9px;

    }


    .floating-email {

        top: 25px;
        right: -5px;

    }


    .floating-location {

        left: -5px;
        bottom: 20px;

    }


    .contact-information,
    .contact-form-section,
    .contact-map-section {

        padding-top:
            95px;

        padding-bottom:
            100px;

    }


    .professional-contact-form {

        padding:
            32px 22px;

    }


    .professional-form-row {

        grid-template-columns:
            1fr;

        gap: 0;

    }


    .project-types {

        grid-template-columns:
            1fr;

    }


    .map-container iframe {

        height:
            430px;

    }


    .map-info-card {

        left: 15px;
        right: 15px;
        bottom: 15px;

    }


    .contact-final-cta {

        padding-bottom:
            90px;

    }


    .final-cta-inner {

        min-height: auto;

        padding:
            45px 28px;

    }


    .footer-inner {

        grid-template-columns:
            repeat(
                2,
                minmax(0,1fr)
            );

        gap:
            50px 30px;

    }


    .footer-brand {

        grid-column:
            1 / -1;

    }


    .footer-news {

        grid-column:
            1 / -1;

    }


    .footer-bottom-inner {

        min-height: auto;

        padding:
            24px 0;

        flex-direction:
            column;

        align-items:
            flex-start;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 450px) {

    .contact-hero-buttons {

        flex-direction:
            column;

    }


    .contact-hero-buttons .btn {

        width: 100%;

        justify-content:
            center;

    }


    .contact-hero-meta {

        flex-direction:
            column;

        align-items:
            center;

    }


    .contact-method-card {

        min-height: auto;

        padding:
            25px 20px;

    }


    .contact-method-icon {

        width: 52px;
        height: 52px;

        flex-basis: 52px;

        border-radius: 14px;

    }


    .contact-method-content {

        padding-right: 15px;

    }


    .method-arrow {

        right: 17px;
        top: 18px;

    }


    .footer-inner {

        grid-template-columns:
            1fr;

    }


    .footer-brand,
    .footer-news {

        grid-column: auto;

    }


    .footer-logo-image {

        width: 190px;

    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    * {

        scroll-behavior:
            auto !important;

    }


    .contact-orbit,
    .response-dot {

        animation:
            none !important;

    }


    .reveal-item {

        opacity: 1 !important;

        transform:
            none !important;

    }


    .contact-method-card,
    .contact-visual-card,
    .contact-floating-card {

        transition:
            none !important;

    }

}
/* =========================================================
   CONTACT PAGE — FINAL RESPONSIVE / OVERFLOW FIX
   Add at the VERY BOTTOM of contact.css
========================================================= */


/* =========================================================
   GLOBAL SAFETY
========================================================= */

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}


.contact-page-hero,
.contact-information,
.contact-form-section,
.contact-map-section,
.contact-final-cta,
.site-footer {
    max-width: 100%;
    overflow-x: clip;
}


/* =========================================================
   CONTACT HERO CONTAINER FIX
========================================================= */

.contact-page-hero {

    min-height: 100svh;

    padding:
        145px 0
        90px;

    overflow: hidden;
}


/*
   IMPORTANT:
   keeps hero aligned with navbar/container
*/

.contact-hero-inner {

    width:
        min(
            calc(100% - 48px),
            1280px
        );

    max-width: 1280px;

    margin:
        0 auto;

    padding:
        0;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(400px, .95fr);

    gap:
        clamp(
            40px,
            5vw,
            80px
        );
}


/* prevent grid children from forcing overflow */

.contact-hero-copy,
.contact-hero-visual {

    min-width: 0;

}


/* =========================================================
   HERO TYPOGRAPHY FIX
========================================================= */

.contact-page-title {

    width: 100%;

    max-width: 760px;

    margin:
        20px 0
        28px;

    font-size:
        clamp(
            64px,
            6.4vw,
            100px
        );

    line-height: .94;

    letter-spacing:
        clamp(
            -4px,
            -.25vw,
            -2px
        );

    overflow-wrap: normal;
}


.contact-page-title em {

    display: block;
}


/* =========================================================
   HERO TEXT
========================================================= */

.contact-hero-text {

    max-width: 620px;
}


/* =========================================================
   RIGHT VISUAL BOUNDARY FIX
========================================================= */

.contact-hero-visual {

    width: 100%;

    max-width: 590px;

    min-height: 560px;

    justify-self: end;

    overflow: visible;
}


/*
   Slightly reduce visual size so cards
   cannot escape viewport on normal laptops.
*/

.contact-visual-card {

    width:
        clamp(
            270px,
            20vw,
            330px
        );

    height:
        clamp(
            270px,
            20vw,
            330px
        );
}


.orbit-one {

    width:
        clamp(
            360px,
            27vw,
            430px
        );

    height:
        clamp(
            360px,
            27vw,
            430px
        );
}


.orbit-two {

    width:
        clamp(
            440px,
            34vw,
            545px
        );

    height:
        clamp(
            440px,
            34vw,
            545px
        );
}


.orbit-three {

    width:
        clamp(
            520px,
            40vw,
            650px
        );

    height:
        clamp(
            520px,
            40vw,
            650px
        );
}


/* =========================================================
   FLOATING CARDS — KEEP INSIDE SCREEN
========================================================= */

.floating-email {

    top: 75px;

    right: 0;
}


.floating-location {

    left: 0;

    bottom: 65px;
}


.contact-floating-card {

    max-width:
        min(
            255px,
            calc(100vw - 40px)
        );

    box-sizing: border-box;
}


.contact-floating-card strong {

    max-width: 175px;

    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;
}


/* =========================================================
   LARGE LAPTOP
========================================================= */

@media (max-width: 1450px) {

    .contact-hero-inner {

        width:
            min(
                calc(100% - 60px),
                1180px
            );

        grid-template-columns:
            minmax(0, 1fr)
            minmax(390px, .88fr);

        gap: 45px;
    }


    .contact-page-title {

        max-width: 670px;

        font-size:
            clamp(
                60px,
                6.2vw,
                88px
            );
    }


    .contact-hero-visual {

        max-width: 520px;
    }


    .orbit-three {

        width: 560px;
        height: 560px;
    }


    .orbit-two {

        width: 470px;
        height: 470px;
    }


    .orbit-one {

        width: 390px;
        height: 390px;
    }


    .contact-visual-card {

        width: 290px;
        height: 290px;
    }


    .floating-email {

        right: 0;
    }


    .floating-location {

        left: 0;
    }

}


/* =========================================================
   SMALL LAPTOP / TABLET LANDSCAPE
========================================================= */

@media (max-width: 1100px) {

    .contact-page-hero {

        min-height: auto;

        padding:
            130px 0
            80px;
    }


    .contact-hero-inner {

        width:
            min(
                calc(100% - 48px),
                900px
            );

        grid-template-columns:
            1fr;

        gap: 55px;

        text-align: center;
    }


    .contact-hero-copy {

        max-width: 780px;

        margin:
            0 auto;
    }


    .contact-page-title {

        max-width: 760px;

        margin-left: auto;
        margin-right: auto;

        font-size:
            clamp(
                58px,
                9vw,
                88px
            );
    }


    .contact-hero-text {

        margin-left: auto;
        margin-right: auto;
    }


    .contact-hero-buttons,
    .contact-hero-meta {

        justify-content: center;
    }


    .contact-hero-visual {

        width: min(100%, 650px);

        max-width: 650px;

        min-height: 560px;

        margin:
            0 auto;

        justify-self: center;
    }


    .contact-visual-card {

        width: 300px;
        height: 300px;
    }


    .orbit-one {

        width: 400px;
        height: 400px;
    }


    .orbit-two {

        width: 500px;
        height: 500px;
    }


    .orbit-three {

        width: 590px;
        height: 590px;
    }


    .floating-email {

        right: 15px;

        top: 75px;
    }


    .floating-location {

        left: 15px;

        bottom: 70px;
    }

}


/* =========================================================
   MOBILE NAVIGATION
========================================================= */

@media (max-width: 850px) {

    /*
       Hide desktop contact button
    */

    .header-contact {

        display: none !important;
    }


    /*
       Hamburger becomes visible
    */

    .hamburger {

        width: 44px;
        height: 44px;

        display: flex !important;

        flex-direction: column;

        justify-content: center;

        align-items: center;

        gap: 5px;

        padding: 0;

        border: 0;

        background: transparent;

        cursor: pointer;

        position: relative;

        z-index: 1002;
    }


    .hamburger span {

        display: block;

        width: 23px;
        height: 2px;

        border-radius: 10px;

        background:
            var(--text, #10233d);

        transition:
            transform .3s ease,
            opacity .25s ease,
            background .3s ease;
    }


    /*
       If header is dark
    */

    .site-header:not(.scrolled)
    .hamburger span {

        background: #ffffff;
    }


    /*
       X animation
    */

    .hamburger.active span:nth-child(1) {

        transform:
            translateY(7px)
            rotate(45deg);
    }


    .hamburger.active span:nth-child(2) {

        opacity: 0;

        transform:
            scaleX(0);
    }


    .hamburger.active span:nth-child(3) {

        transform:
            translateY(-7px)
            rotate(-45deg);
    }


    /*
       Mobile navigation panel
    */

    .main-nav {

        position: fixed;

        top: 78px;

        left: 18px;
        right: 18px;

        width: auto;

        max-height: 0;

        display: flex !important;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        overflow: hidden;

        visibility: hidden;

        opacity: 0;

        padding:
            0 20px;

        border:
            1px solid
            rgba(255,255,255,.09);

        border-radius: 18px;

        background:
            rgba(7,24,43,.96);

        backdrop-filter:
            blur(22px);

        -webkit-backdrop-filter:
            blur(22px);

        box-shadow:
            0 30px 80px
            rgba(0,0,0,.28);

        transform:
            translateY(-12px);

        transition:
            max-height .45s ease,
            opacity .3s ease,
            transform .35s ease,
            visibility .35s ease,
            padding .35s ease;

        z-index: 1000;
    }


    .main-nav.open {

        max-height: 520px;

        visibility: visible;

        opacity: 1;

        padding:
            14px 20px;

        transform:
            translateY(0);
    }


    .main-nav .nav-link {

        width: 100%;

        padding:
            16px 4px;

        border-bottom:
            1px solid
            rgba(255,255,255,.07);

        color:
            #d9e4ef;

        font-size: 12px;

        letter-spacing: 1.2px;

        text-align: left;
    }


    .main-nav .nav-link:last-child {

        border-bottom: 0;
    }


    .main-nav .nav-link:hover,
    .main-nav .nav-link.active {

        color:
            var(--orange);
    }


    body.nav-open {

        overflow: hidden;
    }


    /*
       Search fits mobile header
    */

    .search-box input {

        display: none;
    }


    .search-box.open input {

        display: block;

        position: fixed;

        left: 18px;
        right: 18px;

        top: 88px;

        width:
            calc(100% - 36px);

        padding:
            15px 18px;

        border-radius: 12px;

        border:
            1px solid
            rgba(255,255,255,.1);

        color: #fff;

        background:
            #0b2039;

        box-shadow:
            0 20px 50px
            rgba(0,0,0,.25);
    }

}


/* =========================================================
   MOBILE HERO
========================================================= */

@media (max-width: 700px) {

    .contact-page-hero {

        padding:
            115px 0
            60px;
    }


    .contact-hero-inner {

        width:
            calc(100% - 36px);

        gap: 35px;
    }


    .contact-page-title {

        max-width: 100%;

        font-size:
            clamp(
                48px,
                14vw,
                68px
            );

        line-height: .96;

        letter-spacing: -2px;
    }


    .contact-hero-text {

        max-width: 520px;

        font-size: 14px;

        line-height: 1.8;
    }


    .contact-hero-buttons {

        width: 100%;

        display: grid;

        grid-template-columns: 1fr;

        gap: 10px;
    }


    .contact-hero-buttons .btn {

        width: 100%;

        justify-content: center;
    }


    .contact-hero-meta {

        display: grid;

        grid-template-columns:
            repeat(
                3,
                auto
            );

        gap:
            10px 14px;

        justify-content: center;
    }


    /* right visual */

    .contact-hero-visual {

        width: 100%;

        max-width: 470px;

        min-height: 440px;
    }


    .contact-visual-card {

        width: 230px;
        height: 230px;
    }


    .contact-visual-icon {

        width: 58px;
        height: 58px;

        margin-bottom: 15px;

        font-size: 20px;
    }


    .contact-visual-card strong {

        font-size: 22px;
    }


    .contact-visual-card > small {

        font-size: 7px;

        letter-spacing: 1.4px;
    }


    .orbit-one {

        width: 295px;
        height: 295px;
    }


    .orbit-two {

        width: 360px;
        height: 360px;
    }


    .orbit-three {

        width: 425px;
        height: 425px;
    }


    .contact-floating-card {

        min-width: 0;

        max-width: 185px;

        padding:
            9px 11px;
    }


    .contact-floating-card > i {

        width: 34px;
        height: 34px;

        flex-basis: 34px;

        font-size: 12px;
    }


    .contact-floating-card small {

        font-size: 7px;

        letter-spacing: 1.3px;
    }


    .contact-floating-card strong {

        max-width: 120px;

        font-size: 8px;
    }


    .floating-email {

        right: 0;

        top: 20px;
    }


    .floating-location {

        left: 0;

        bottom: 18px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .contact-hero-inner {

        width:
            calc(100% - 28px);
    }


    .contact-page-title {

        font-size:
            clamp(
                43px,
                13.5vw,
                58px
            );
    }


    .contact-hero-meta {

        grid-template-columns: 1fr;

        justify-items: center;
    }


    .contact-hero-visual {

        min-height: 390px;
    }


    .contact-visual-card {

        width: 205px;
        height: 205px;
    }


    .orbit-one {

        width: 270px;
        height: 270px;
    }


    .orbit-two {

        width: 325px;
        height: 325px;
    }


    .orbit-three {

        width: 375px;
        height: 375px;
    }


    .floating-email {

        top: 0;

        right: -5px;
    }


    .floating-location {

        bottom: 0;

        left: -5px;
    }


    .main-nav {

        left: 12px;
        right: 12px;
    }

}


/* =========================================================
   VERY SMALL PHONE
========================================================= */

@media (max-width: 370px) {

    .contact-visual-card {

        width: 185px;
        height: 185px;
    }


    .contact-visual-card strong {

        font-size: 19px;
    }


    .orbit-one {

        width: 235px;
        height: 235px;
    }


    .orbit-two {

        width: 290px;
        height: 290px;
    }


    .orbit-three {

        width: 340px;
        height: 340px;
    }


    .contact-floating-card {

        transform:
            scale(.88);
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .contact-orbit {

        animation: none !important;
    }


    .hamburger span,
    .main-nav {

        transition: none !important;
    }

}


/* =========================================================
   FINAL CONTACT FORM FIX
   INDEX FORM STRUCTURE + DARK SURREAL PANEL
   Keep this block at the END of contact.css.
========================================================= */

.contact-form-section .contact-form {
    position: relative;
    min-width: 0;
    width: 100%;
    overflow: hidden;

    padding: 46px;

    border:
        1px solid
        rgba(255,255,255,.10);

    border-radius: 25px;

    color: #fff;

    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(246,169,27,.11),
            transparent 31%
        ),
        radial-gradient(
            circle at 0% 100%,
            rgba(63,130,209,.10),
            transparent 34%
        ),
        linear-gradient(
            145deg,
            #0b1f3a 0%,
            #102b4d 58%,
            #091a30 100%
        );

    box-shadow:
        0 30px 90px
        rgba(7,24,43,.24);
}


/* subtle top accent */

.contact-form-section .contact-form::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 100%;
    height: 3px;

    background:
        linear-gradient(
            90deg,
            var(--orange),
            var(--purple),
            var(--blue),
            var(--green)
        );
}


/* index-style two column grid */

.contact-form-section .form-grid {
    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(0,1fr)
        );

    gap:
        20px 17px;
}


/* each field */

.contact-form-section .form-group {
    min-width: 0;

    display: flex;

    flex-direction: column;

    gap: 8px;
}


.contact-form-section .form-group-full {
    grid-column:
        1 / -1;
}


/* labels */

.contact-form-section
.contact-form
.form-group
label {

    color:
        #bdcad8;

    font-size:
        10px;

    font-weight:
        700;

    letter-spacing:
        .4px;
}


/* inputs */

.contact-form-section
.contact-form
.form-group
input,

.contact-form-section
.contact-form
.form-group
textarea {

    width: 100%;

    outline: none;

    border:
        1px solid
        rgba(255,255,255,.11);

    border-radius:
        11px;

    color:
        #ffffff;

    background:
        rgba(255,255,255,.055);

    font-family:
        "Manrope",
        "Poppins",
        sans-serif;

    font-size:
        12px;

    transition:
        background .25s ease,
        border-color .25s ease,
        box-shadow .25s ease,
        transform .25s ease;
}


.contact-form-section
.contact-form
.form-group
input {

    min-height:
        52px;

    padding:
        0 16px;
}


.contact-form-section
.contact-form
.form-group
textarea {

    min-height:
        170px;

    padding:
        15px 16px;

    resize:
        vertical;

    line-height:
        1.7;
}


/* placeholders */

.contact-form-section
.contact-form
.form-group
input::placeholder,

.contact-form-section
.contact-form
.form-group
textarea::placeholder {

    color:
        #73899f;
}


/* hover */

.contact-form-section
.contact-form
.form-group
input:hover,

.contact-form-section
.contact-form
.form-group
textarea:hover {

    border-color:
        rgba(255,255,255,.20);

    background:
        rgba(255,255,255,.070);
}


/* focus */

.contact-form-section
.contact-form
.form-group
input:focus,

.contact-form-section
.contact-form
.form-group
textarea:focus {

    border-color:
        var(--orange);

    background:
        rgba(255,255,255,.085);

    box-shadow:
        0 0 0 4px
        rgba(246,169,27,.10);

    transform:
        translateY(-1px);
}


/* autofill fix */

.contact-form-section
.contact-form
.form-group
input:-webkit-autofill,

.contact-form-section
.contact-form
.form-group
input:-webkit-autofill:hover,

.contact-form-section
.contact-form
.form-group
input:-webkit-autofill:focus {

    -webkit-text-fill-color:
        #ffffff;

    -webkit-box-shadow:
        0 0 0 1000px
        #132c49
        inset;

    transition:
        background-color
        9999s ease-in-out
        0s;
}


/* button */

.contact-form-section
.contact-form
.full-btn {

    width:
        100%;

    min-height:
        54px;

    justify-content:
        center;

    margin-top:
        24px;

    color:
        #10233d;

    background:
        linear-gradient(
            135deg,
            var(--yellow),
            var(--orange)
        );
}


.contact-form-section
.contact-form
.full-btn:hover {

    box-shadow:
        0 15px 38px
        rgba(246,169,27,.28);
}


/* status / note */

.contact-form-section
.contact-form
.form-note,

.contact-form-section
.contact-form
.form-status {

    min-height:
        20px;

    margin:
        14px 0
        0;

    padding:
        0;

    color:
        #9eb0c2;

    text-align:
        center;

    font-size:
        10px;

    line-height:
        1.6;
}


.contact-form-section
.contact-form
.form-status.success {

    padding:
        13px 15px;

    border:
        1px solid
        rgba(63,155,114,.24);

    color:
        #83d7a7;

    background:
        rgba(63,155,114,.10);
}


.contact-form-section
.contact-form
.form-status.error {

    padding:
        13px 15px;

    border:
        1px solid
        rgba(217,104,106,.25);

    color:
        #ef9294;

    background:
        rgba(217,104,106,.10);
}


/* Remove legacy white professional-form visual if any old class
   remains in cached markup. */

.contact-form-section
.professional-contact-form {

    background:
        linear-gradient(
            145deg,
            #0b1f3a,
            #102b4d
        );

    border-color:
        rgba(255,255,255,.10);

    color:
        #fff;
}


/* desktop/tablet */

@media (max-width: 1100px) {

    .contact-form-section
    .contact-form {

        padding:
            38px;
    }

}


/* mobile */

@media (max-width: 650px) {

    .contact-form-section
    .contact-form {

        padding:
            30px 22px;

        border-radius:
            20px;
    }


    .contact-form-section
    .form-grid {

        grid-template-columns:
            1fr;

        gap:
            17px;
    }


    .contact-form-section
    .form-group-full {

        grid-column:
            auto;
    }


    .contact-form-section
    .contact-form
    .form-group
    input {

        min-height:
            50px;
    }


    .contact-form-section
    .contact-form
    .form-group
    textarea {

        min-height:
            155px;
    }

}


/* small phone */

@media (max-width: 420px) {

    .contact-form-section
    .contact-form {

        padding:
            24px 17px;

        border-radius:
            17px;
    }


    .contact-form-section
    .contact-form
    .form-group
    input,

    .contact-form-section
    .contact-form
    .form-group
    textarea {

        font-size:
            11px;
    }

}
