.elementor-5529 .elementor-element.elementor-element-012d7d4{--display:flex;}.elementor-5529 .elementor-element.elementor-element-21ae0a8{width:100%;max-width:100%;background-color:var( --e-global-color-astglobalcolor8 );top:0px;}.elementor-5529 .elementor-element.elementor-element-21ae0a8.elementor-element{--align-self:center;--flex-grow:1;--flex-shrink:1;}body:not(.rtl) .elementor-5529 .elementor-element.elementor-element-21ae0a8{left:0px;}body.rtl .elementor-5529 .elementor-element.elementor-element-21ae0a8{right:0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-21ae0a8 *//* =========================================================
   SPIRIT ELECTRONICS
   CONTACT PAGE
========================================================= */


/* =========================================================
   ROOT VARIABLES
========================================================= */

:root {
    --bg: #070a0f;
    --bg-light: #0d1219;

    --card: rgba(15, 22, 31, 0.88);
    --card-hover: rgba(18, 27, 38, 0.96);

    --border: rgba(255, 255, 255, 0.09);
    --border-hover: rgba(0, 190, 255, 0.4);

    --text: #ffffff;
    --text-soft: #aab4c0;
    --text-muted: #7c8794; /* lightened from #687381 — original failed WCAG AA at small sizes */

    --primary: #00bfff;
    --primary-dark: #008dcc;
    --secondary: #006cff;

    --success: #21d69b;

    /* radius scale — --radius alone was unused dead code while every
       component hardcoded its own value; now every radius traces to one of these */
    --radius-sm: 9px;
    --radius: 14px;
    --radius-lg: 18px;

    --transition: 0.3s ease;

    --focus-ring: 0 0 0 3px rgba(0, 191, 255, 0.35);
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;

    background: var(--bg);

    color: var(--text);

    font-family:
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    overflow-x: hidden;
}


/* =========================================================
   BACKGROUND
========================================================= */

.background {
    position: fixed;

    inset: 0;

    z-index: -1;

    overflow: hidden;

    pointer-events: none;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(0, 191, 255, 0.09),
            transparent 28%
        ),

        radial-gradient(
            circle at 85% 75%,
            rgba(0, 108, 255, 0.08),
            transparent 30%
        );
}


/* Technical Grid */

.background::before {
    content: "";

    position: absolute;

    inset: 0;

    opacity: 0.28;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        );

    background-size:
        50px 50px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 90%
        );
}


/* Glow */

.background::after {
    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    top: -300px;
    right: -250px;

    border-radius: 50%;

    background:
        rgba(0, 191, 255, 0.05);

    filter: blur(100px);

    animation:
        backgroundGlow 8s ease-in-out infinite alternate;

    will-change: transform;
}


@keyframes backgroundGlow {

    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(-100px, 100px);
    }
}


/* =========================================================
   FLOATING SHAPES
========================================================= */

.shape {
    position: absolute;

    display: block;

    border-radius: 50%;

    pointer-events: none;

    will-change: transform;
}


/* Large Cyan Glow */

.shape-1 {
    width: 320px;
    height: 320px;

    left: -180px;
    top: 15%;

    background:
        radial-gradient(
            circle,
            rgba(0, 191, 255, 0.13),
            transparent 70%
        );

    animation:
        floatOne 12s ease-in-out infinite;
}


/* Blue Glow */

.shape-2 {
    width: 260px;
    height: 260px;

    right: -120px;
    top: 35%;

    background:
        radial-gradient(
            circle,
            rgba(0, 108, 255, 0.12),
            transparent 70%
        );

    animation:
        floatTwo 10s ease-in-out infinite;
}


/* Bottom Glow */

.shape-3 {
    width: 400px;
    height: 400px;

    left: 35%;
    bottom: -300px;

    background:
        radial-gradient(
            circle,
            rgba(0, 191, 255, 0.06),
            transparent 70%
        );

    animation:
        floatThree 14s ease-in-out infinite;
}


@keyframes floatOne {

    0%,
    100% {
        transform:
            translate(0, 0);
    }

    50% {
        transform:
            translate(70px, -50px);
    }
}


@keyframes floatTwo {

    0%,
    100% {
        transform:
            translate(0, 0);
    }

    50% {
        transform:
            translate(-60px, 70px);
    }
}


@keyframes floatThree {

    0%,
    100% {
        transform:
            translateX(0);
    }

    50% {
        transform:
            translateX(100px);
    }
}


/* =========================================================
   MAIN CONTACT SECTION
========================================================= */

.contact-section {
    min-height: 100vh;

    padding:
        90px 24px;

    display: flex;

    align-items: center;

    justify-content: center;
}


.contact-container {
    width: min(
        1180px,
        100%
    );

    display: grid;

    grid-template-columns:
        0.9fr 1.1fr;

    gap: 80px;

    align-items: center;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.contact-info {
    animation:
        contactInfoIn
        0.8s
        ease
        both;
}


@keyframes contactInfoIn {

    from {
        opacity: 0;

        transform:
            translateX(-35px);
    }

    to {
        opacity: 1;

        transform:
            translateX(0);
    }
}


/* Small Label */

.eyebrow {
    position: relative;

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 22px;

    color: var(--primary);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2.5px;

    text-transform: uppercase;
}


.eyebrow::before {
    content: "";

    width: 28px;
    height: 1px;

    background:
        var(--primary);

    box-shadow:
        0 0 10px
        var(--primary);
}


/* Main Heading */

.contact-info h1 {
    max-width: 600px;

    font-size:
        clamp(
            44px,
            5.5vw,
            72px
        );

    line-height: 0.98;

    letter-spacing: -3.5px;

    font-weight: 800;
}


.contact-info h1 span {
    display: block;

    margin-top: 8px;

    color: var(--primary);

    background:
        linear-gradient(
            100deg,
            #ffffff 0%,
            #00bfff 55%,
            #006cff 100%
        );

    -webkit-background-clip: text;

    background-clip: text;

    -webkit-text-fill-color: transparent;
}


/* Description */

.description {
    max-width: 520px;

    margin-top: 28px;

    color: var(--text-soft);

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================================
   CONTACT DETAILS
========================================================= */

.info-list {
    display: flex;

    flex-direction: column;

    gap: 18px;

    margin-top: 42px;
}


.info-item {
    display: flex;

    align-items: center;

    gap: 15px;

    padding: 5px 0;

    transition:
        transform var(--transition);
}


.info-item:hover {
    transform:
        translateX(7px);
}


/* Icon */

.icon {
    width: 46px;
    height: 46px;

    flex-shrink: 0;

    display: grid;

    place-items: center;

    border:
        1px solid
        var(--border);

    border-radius: var(--radius-sm);

    background:
        rgba(0, 191, 255, 0.035);

    color: var(--primary);

    font-size: 18px;

    transition:
        var(--transition);
}


.info-item:hover .icon {
    border-color:
        rgba(0, 191, 255, 0.4);

    background:
        rgba(0, 191, 255, 0.09);

    box-shadow:
        0 0 25px
        rgba(0, 191, 255, 0.1);

    transform:
        scale(1.05);
}


/* Detail Label */

.info-item small {
    display: block;

    margin-bottom: 4px;

    color: var(--text-muted);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


/* Detail Text */

.info-item p {
    color: #e6ebf0;

    font-size: 14px;

    font-weight: 500;
}


/* =========================================================
   SOCIAL ICONS
========================================================= */

.socials {
    display: flex;

    gap: 9px;

    margin-top: 40px;
}


.socials a {
    width: 38px;
    height: 38px;

    display: grid;

    place-items: center;

    border:
        1px solid
        var(--border);

    border-radius: var(--radius-sm);

    background:
        rgba(255, 255, 255, 0.02);

    color: var(--text-muted);

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;

    transition:
        var(--transition);
}


.socials a:hover {
    color: #ffffff;

    border-color:
        var(--primary);

    background:
        rgba(0, 191, 255, 0.08);

    box-shadow:
        0 0 20px
        rgba(0, 191, 255, 0.12);

    transform:
        translateY(-4px);
}


.socials a:focus-visible {
    outline: none;

    box-shadow: var(--focus-ring);
}


/* =========================================================
   FORM CARD
========================================================= */

.form-card {
    position: relative;

    padding: 45px;

    border:
        1px solid
        var(--border);

    border-radius: var(--radius-lg);

    background:
        linear-gradient(
            145deg,
            rgba(18, 27, 38, 0.92),
            rgba(8, 13, 19, 0.95)
        );

    box-shadow:
        0 30px 80px
        rgba(0, 0, 0, 0.4),

        inset 0 1px 0
        rgba(255, 255, 255, 0.035);

    backdrop-filter:
        blur(18px);

    -webkit-backdrop-filter:
        blur(18px);

    animation:
        formIn
        0.8s
        0.12s
        ease
        both;
}


/* Top Highlight */

.form-card::before {
    content: "";

    position: absolute;

    left: 10%;

    top: -1px;

    width: 80%;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--primary),
            transparent
        );

    box-shadow:
        0 0 15px
        rgba(0, 191, 255, 0.5);
}


@keyframes formIn {

    from {
        opacity: 0;

        transform:
            translateY(35px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }
}


/* =========================================================
   FORM HEADER
========================================================= */

.form-header span {
    color: var(--primary);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.form-header h2 {
    margin-top: 9px;

    color: #ffffff;

    font-size: 30px;

    line-height: 1.2;

    letter-spacing: -1px;
}


.form-header p {
    margin-top: 9px;

    color: var(--text-muted);

    font-size: 13px;
}


/* =========================================================
   FORM
========================================================= */

form {
    display: flex;

    flex-direction: column;

    gap: 19px;

    margin-top: 32px;
}


/* Two Inputs */

.input-row {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 16px;
}


/* Input Wrapper */

.input-group {
    position: relative;
}


/* Input */

.input-group input,
.input-group textarea {

    width: 100%;

    padding:
        17px 15px;

    border:
        1px solid
        rgba(255, 255, 255, 0.08);

    border-radius: var(--radius-sm);

    outline: none;

    background:
        rgba(0, 0, 0, 0.22);

    color: #ffffff;

    font-family: inherit;

    font-size: 13px;

    transition:
        border-color var(--transition),
        background var(--transition),
        box-shadow var(--transition);
}


/* Textarea */

.input-group textarea {

    min-height: 145px;

    resize: vertical;

    line-height: 1.6;
}


/* Placeholder
   NOTE: the floating-label trick below relies on :placeholder-shown,
   which only works if every input/textarea has a placeholder attribute
   in the HTML (e.g. placeholder=" "). Without it, the label never moves. */

.input-group input::placeholder,
.input-group textarea::placeholder {
    color: transparent;
}


/* Label */

.input-group label {

    position: absolute;

    top: 17px;

    left: 15px;

    padding:
        0 4px;

    color:
        #66717d;

    font-size: 13px;

    pointer-events: none;

    transition:
        top 0.2s ease,
        font-size 0.2s ease,
        color 0.2s ease;
}


/* Input Focus */

.input-group input:focus,
.input-group textarea:focus {

    border-color:
        rgba(0, 191, 255, 0.7);

    background:
        rgba(0, 191, 255, 0.025);

    box-shadow:
        0 0 0 3px
        rgba(0, 191, 255, 0.06),

        0 0 25px
        rgba(0, 191, 255, 0.04);
}


/* Floating Label */

.input-group input:focus + label,
.input-group input:not(:placeholder-shown) + label,
.input-group textarea:focus + label,
.input-group textarea:not(:placeholder-shown) + label {

    top: -7px;

    background:
        #10161d;

    color:
        var(--primary);

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 0.4px;
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.submit-btn {

    position: relative;

    width: 100%;

    min-height: 52px;

    padding:
        0 18px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    overflow: hidden;

    border:
        1px solid
        rgba(0, 191, 255, 0.35);

    border-radius: var(--radius-sm);

    background:
        linear-gradient(
            100deg,
            #008dcc,
            #006cff
        );

    color: #ffffff;

    font-family: inherit;

    font-size: 13px;

    font-weight: 700;

    cursor: pointer;

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}


/* Button Shine */

.submit-btn::before {

    content: "";

    position: absolute;

    inset: 0;

    width: 45%;

    background:
        linear-gradient(
            100deg,
            transparent,
            rgba(255, 255, 255, 0.18),
            transparent
        );

    transform:
        translateX(-160%)
        skewX(-20deg);

    transition:
        transform 0.7s ease;
}


.submit-btn:hover::before {

    transform:
        translateX(360%)
        skewX(-20deg);
}


/* Button Hover */

.submit-btn:hover {

    border-color:
        rgba(0, 191, 255, 0.8);

    box-shadow:
        0 10px 35px
        rgba(0, 108, 255, 0.22);

    transform:
        translateY(-2px);
}


.submit-btn:active {

    transform:
        translateY(0);
}


.submit-btn:focus-visible {

    outline: none;

    box-shadow:
        var(--focus-ring),
        0 10px 35px
        rgba(0, 108, 255, 0.22);
}


/* Arrow */

.arrow {

    font-size: 19px;

    transition:
        transform 0.25s ease;
}


.submit-btn:hover .arrow {

    transform:
        translateX(6px);
}


/* =========================================================
   FORM CARD HOVER
========================================================= */

.form-card:hover {

    border-color:
        rgba(255, 255, 255, 0.13);
}


/* =========================================================
   SELECTION
========================================================= */

::selection {

    background:
        rgba(0, 191, 255, 0.3);

    color:
        #ffffff;
}


/* =========================================================
   SCROLLBAR
========================================================= */

::-webkit-scrollbar {

    width: 7px;
}


::-webkit-scrollbar-track {

    background:
        #070a0f;
}


::-webkit-scrollbar-thumb {

    background:
        #1b3444;

    border-radius:
        20px;
}


::-webkit-scrollbar-thumb:hover {

    background:
        #00a9df;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .contact-container {

        grid-template-columns:
            1fr;

        gap: 55px;

        max-width: 700px;
    }


    .contact-info {

        text-align: center;
    }


    .contact-info h1 {

        margin:
            0 auto;
    }


    .description {

        margin:
            25px auto 0;
    }


    .info-list {

        align-items:
            center;
    }


    .socials {

        justify-content:
            center;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .contact-section {

        padding:
            55px 16px;
    }


    .contact-container {

        gap:
            42px;
    }


    .contact-info h1 {

        font-size:
            43px;

        letter-spacing:
            -2.5px;
    }


    .description {

        font-size:
            14px;

        line-height:
            1.7;
    }


    .form-card {

        padding:
            28px 20px;

        border-radius:
            var(--radius);
    }


    .form-header h2 {

        font-size:
            25px;
    }


    .input-row {

        grid-template-columns:
            1fr;

        gap:
            19px;
    }


    .input-group textarea {

        min-height:
            135px;
    }


    .shape-1 {

        width:
            220px;

        height:
            220px;
    }


    .shape-2 {

        width:
            180px;

        height:
            180px;
    }


    .shape-3 {

        width:
            250px;

        height:
            250px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .contact-info h1 {

        font-size:
            37px;
    }


    .form-card {

        padding:
            24px 16px;
    }


    .info-item p {

        font-size:
            13px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    * ,
    *::before,
    *::after {

        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}/* End custom CSS */