/* =========================================================
   CONTACT PAGE
   Premium Dark Portfolio
========================================================= */

:root {
    --contact-bg: #050816;
    --contact-card: rgba(255, 255, 255, 0.045);
    --contact-border: rgba(255, 255, 255, 0.10);
    --contact-text: #f7f7fb;
    --contact-muted: #989caf;
    --contact-purple: #8b5cf6;
    --contact-cyan: #22d3ee;
    --contact-purple-light: #b69cff;
}


/* =========================================================
   IMPORTANT GLOBAL RESET
   Prevents style.css conflicts
========================================================= */

.contact-hero,
.contact-section,
.contact-cta,
.contact-footer {
    box-sizing: border-box;
}

.contact-hero *,
.contact-section *,
.contact-cta *,
.contact-footer * {
    box-sizing: border-box;
}


/* =========================================================
   CONTACT PAGE BODY
========================================================= */

body {
    overflow-x: hidden;
}


/* =========================================================
   NAVBAR FIX
========================================================= */

/*
   Your screenshot shows the navbar wrapping.
   These rules intentionally override any conflicting
   rules from style.css.
*/

.site-header {
    position: fixed !important;

    top: 0;
    left: 0;
    right: 0;

    width: 100% !important;
    height: 76px !important;

    z-index: 9999;

    display: block !important;

    padding: 0 !important;

    background: rgba(5, 8, 22, 0.78) !important;

    border-bottom: 1px solid rgba(255, 255, 255, 0.07);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}


.nav-container {
    width: min(1400px, calc(100% - 80px)) !important;

    height: 100% !important;

    margin: 0 auto !important;
    padding: 0 !important;

    display: flex !important;
    flex-direction: row !important;

    align-items: center !important;
    justify-content: space-between !important;

    gap: 30px !important;

    flex-wrap: nowrap !important;
}


/* Logo */

.site-header .brand {
    flex-shrink: 0 !important;

    display: inline-flex !important;
    align-items: center !important;

    width: auto !important;

    margin: 0 !important;
    padding: 0 !important;

    color: #f7f7fb !important;

    font-family: "Sora", sans-serif !important;
    font-size: 20px !important;
    font-weight: 600 !important;

    line-height: 1 !important;

    text-decoration: none !important;
}


.brand-dot {
    width: 7px;
    height: 7px;

    margin-right: 8px;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        #8b5cf6,
        #22d3ee
    );

    box-shadow:
        0 0 12px rgba(139, 92, 246, 0.7);
}


/* Navigation */

.site-header .main-nav {
    flex: 1 1 auto !important;

    width: auto !important;

    margin: 0 !important;
    padding: 0 !important;

    display: flex !important;
    flex-direction: row !important;

    align-items: center !important;
    justify-content: center !important;

    gap: 38px !important;

    flex-wrap: nowrap !important;
}


.site-header .main-nav a {
    display: inline-flex !important;
    align-items: center !important;

    width: auto !important;
    min-width: 0 !important;

    margin: 0 !important;
    padding: 8px 2px !important;

    color: #858b9e !important;

    font-family: "Manrope", sans-serif !important;
    font-size: 12px !important;
    font-weight: 600 !important;

    line-height: 1 !important;

    white-space: nowrap !important;

    text-decoration: none !important;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}


.site-header .main-nav a:hover {
    color: #ffffff !important;
    transform: translateY(-1px);
}


.site-header .main-nav a.active {
    color: #ffffff !important;
}


.site-header .main-nav a.active::after {
    content: "";

    width: 4px;
    height: 4px;

    margin-left: 7px;

    border-radius: 50%;

    background: #8b5cf6;

    box-shadow:
        0 0 8px rgba(139, 92, 246, 0.8);
}


/* Let's Talk button */

.site-header .nav-cta {
    flex-shrink: 0 !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: auto !important;

    margin: 0 !important;

    padding: 10px 15px !important;

    border: 1px solid rgba(255, 255, 255, 0.11) !important;
    border-radius: 100px !important;

    background: rgba(255, 255, 255, 0.045) !important;

    color: #ffffff !important;

    font-family: "Manrope", sans-serif !important;
    font-size: 11px !important;
    font-weight: 700 !important;

    line-height: 1 !important;

    white-space: nowrap !important;

    text-decoration: none !important;

    backdrop-filter: blur(12px);

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}


.site-header .nav-cta span {
    margin-left: 6px;
}


.site-header .nav-cta:hover {
    transform: translateY(-2px);

    border-color: rgba(139, 92, 246, 0.45) !important;

    background: rgba(139, 92, 246, 0.10) !important;
}


/* =========================================================
   CONTACT HERO
========================================================= */

.contact-hero {
    position: relative;

    min-height: 100vh;

    display: flex;
    align-items: center;

    overflow: hidden;

    padding:
        140px 7%
        100px;

    background:
        radial-gradient(
            circle at 80% 35%,
            rgba(139, 92, 246, 0.15),
            transparent 32%
        ),
        radial-gradient(
            circle at 20% 80%,
            rgba(34, 211, 238, 0.08),
            transparent 28%
        ),
        #050816;
}


.contact-hero-inner {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1400px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(420px, 0.95fr);

    gap: 70px;

    align-items: center;
}


/* =========================================================
   HERO GLOW
========================================================= */

.contact-hero-glow {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    filter: blur(100px);
}

.glow-one {
    width: 350px;
    height: 350px;

    top: 10%;
    right: 15%;

    background: rgba(139, 92, 246, 0.13);
}

.glow-two {
    width: 250px;
    height: 250px;

    bottom: 5%;
    left: 10%;

    background: rgba(34, 211, 238, 0.08);
}


/* =========================================================
   SECTION LABEL
========================================================= */

.contact-hero .section-label,
.contact-section .section-label,
.contact-cta .section-label {
    display: flex;

    align-items: center;

    gap: 10px;

    color: var(--contact-purple-light);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2.5px;
}


.contact-hero .section-label > span:first-child,
.contact-section .section-label > span:first-child {
    width: 28px;
    height: 1px;

    flex-shrink: 0;

    background:
        linear-gradient(
            90deg,
            var(--contact-purple),
            var(--contact-cyan)
        );
}


/* =========================================================
   HERO CONTENT
========================================================= */

.contact-intro {
    position: relative;
    z-index: 3;
}


.contact-intro h1 {
    max-width: 800px;

    margin: 28px 0;

    color: var(--contact-text);

    font-family: "Sora", sans-serif;

    font-size: clamp(50px, 5.7vw, 82px);

    font-weight: 600;

    line-height: 1.05;

    letter-spacing: -4px;
}


.contact-intro h1 span {
    background:
        linear-gradient(
            100deg,
            #a78bfa,
            #c084fc,
            #22d3ee
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}


.contact-intro-text {
    max-width: 650px;

    margin: 0;

    color: var(--contact-muted);

    font-size: 17px;

    line-height: 1.8;
}


/* =========================================================
   AVAILABILITY
========================================================= */

.contact-availability {
    display: inline-flex;

    align-items: center;

    gap: 13px;

    margin-top: 34px;

    padding: 12px 17px;

    border: 1px solid rgba(255, 255, 255, 0.09);

    border-radius: 100px;

    background: rgba(255, 255, 255, 0.035);

    backdrop-filter: blur(15px);
}


.availability-dot {
    width: 8px;
    height: 8px;

    flex-shrink: 0;

    border-radius: 50%;

    background: #4ade80;

    box-shadow:
        0 0 0 5px rgba(74, 222, 128, 0.08),
        0 0 18px rgba(74, 222, 128, 0.75);
}


.contact-availability strong {
    display: block;

    color: #f3f4f6;

    font-size: 12px;
}


.contact-availability small {
    display: block;

    margin-top: 3px;

    color: #777d91;

    font-size: 10px;
}


/* =========================================================
   HERO VISUAL
========================================================= */

.contact-visual {
    position: relative;

    min-height: 590px;

    display: flex;

    align-items: center;
    justify-content: center;
}


.portrait-card {
    position: relative;

    z-index: 3;

    width: min(390px, 70%);

    aspect-ratio: 0.78;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.13);

    border-radius: 28px;

    background: #0b0d1b;

    transform: rotate(3deg);

    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.55),
        0 0 80px rgba(139, 92, 246, 0.12);
}


.portrait-card img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


.portrait-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 45%,
            rgba(5, 8, 22, 0.92) 100%
        );
}


.portrait-info {
    position: absolute;

    left: 28px;
    right: 28px;
    bottom: 28px;

    display: flex;

    flex-direction: column;

    gap: 5px;
}


.portrait-info span {
    color: #aaa4c7;

    font-size: 10px;

    letter-spacing: 1.8px;

    text-transform: uppercase;
}


.portrait-info strong {
    color: #ffffff;

    font-family: "Sora", sans-serif;

    font-size: 21px;
}


/* =========================================================
   ORBITS
========================================================= */

.visual-orbit {
    position: absolute;

    border: 1px solid rgba(139, 92, 246, 0.15);

    border-radius: 50%;

    pointer-events: none;
}


.orbit-one {
    width: 500px;
    height: 500px;
}


.orbit-two {
    width: 620px;
    height: 300px;

    transform: rotate(-35deg);

    border-color: rgba(34, 211, 238, 0.11);
}


.orbit-three {
    width: 330px;
    height: 620px;

    transform: rotate(35deg);

    border-color: rgba(139, 92, 246, 0.09);
}


.portrait-glow {
    position: absolute;

    width: 300px;
    height: 300px;

    border-radius: 50%;

    background: rgba(139, 92, 246, 0.20);

    filter: blur(90px);
}


/* =========================================================
   FLOATING CARDS
========================================================= */

.floating-card {
    position: absolute;

    z-index: 5;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 13px 16px;

    border: 1px solid rgba(255, 255, 255, 0.10);

    border-radius: 14px;

    background: rgba(12, 15, 30, 0.78);

    backdrop-filter: blur(20px);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.3);
}


.floating-top {
    top: 90px;
    right: 2%;
}


.floating-bottom {
    bottom: 85px;
    left: 1%;
}


.floating-icon {
    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            rgba(139, 92, 246, 0.2),
            rgba(34, 211, 238, 0.12)
        );

    color: #c4b5fd;

    font-size: 16px;
}


.floating-card strong {
    display: block;

    color: #ffffff;

    font-size: 12px;
}


.floating-card small {
    display: block;

    margin-top: 3px;

    color: #777d91;

    font-size: 10px;
}


/* =========================================================
   CONTACT SECTION
========================================================= */

.contact-section {
    position: relative;

    padding: 120px 7%;

    background:
        linear-gradient(
            180deg,
            #050816,
            #070a18
        );
}


.contact-wrapper {
    width: 100%;
    max-width: 1250px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 0.8fr)
        minmax(0, 1.2fr);

    gap: 80px;

    align-items: start;
}


/* =========================================================
   CONTACT DETAILS
========================================================= */

.contact-details h2 {
    margin: 24px 0 20px;

    color: #ffffff;

    font-family: "Sora", sans-serif;

    font-size: clamp(40px, 4vw, 60px);

    line-height: 1.08;

    letter-spacing: -2.5px;
}


.contact-details h2 span {
    color: #9f8cff;
}


.contact-details > p {
    max-width: 480px;

    margin: 0;

    color: var(--contact-muted);

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================================
   CONTACT METHODS
========================================================= */

.contact-method {
    position: relative;

    margin-top: 18px;

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 18px;

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 16px;

    background: rgba(255, 255, 255, 0.025);

    color: inherit;

    text-decoration: none;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}


.contact-method:hover {
    transform: translateX(6px);

    border-color: rgba(139, 92, 246, 0.35);

    background: rgba(139, 92, 246, 0.055);
}


.method-icon {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    color: #c4b5fd;

    font-size: 17px;

    font-weight: 800;

    background:
        linear-gradient(
            135deg,
            rgba(139, 92, 246, 0.18),
            rgba(34, 211, 238, 0.08)
        );
}


.method-content {
    flex: 1;
}


.method-content span {
    display: block;

    margin-bottom: 3px;

    color: #70778c;

    font-size: 10px;

    letter-spacing: 1px;

    text-transform: uppercase;
}


.method-content strong {
    color: #e7e8ee;

    font-size: 13px;
}


.method-arrow {
    color: #777d91;

    transition: transform 0.3s ease;
}


.contact-method:hover .method-arrow {
    transform: translate(3px, -3px);
}


.static-method:hover {
    transform: none;
}


.contact-note {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-top: 35px;

    color: #70778c;

    font-size: 12px;
}


.contact-note span {
    color: #a78bfa;
}


.contact-note p {
    margin: 0;
}


/* =========================================================
   FORM CARD
========================================================= */

.contact-form-card {
    position: relative;

    padding: 42px;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.10);

    border-radius: 26px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.065),
            rgba(255, 255, 255, 0.025)
        );

    backdrop-filter: blur(24px);

    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.25);
}


.contact-form-card::before {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    top: -120px;
    right: -80px;

    border-radius: 50%;

    background: rgba(139, 92, 246, 0.13);

    filter: blur(70px);

    pointer-events: none;
}


.form-card-top {
    position: relative;

    display: flex;

    justify-content: space-between;

    margin-bottom: 35px;
}


.form-eyebrow {
    color: #8f86ad;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;
}


.form-card-top h3 {
    margin: 10px 0 0;

    color: #ffffff;

    font-family: "Sora", sans-serif;

    font-size: 30px;

    line-height: 1.25;
}


.form-card-top h3 span {
    color: #a78bfa;
}


.form-number {
    color: rgba(255, 255, 255, 0.16);

    font-family: "Sora", sans-serif;

    font-size: 38px;

    font-weight: 600;
}


/* =========================================================
   FORM ELEMENTS
========================================================= */

.form-group {
    margin-bottom: 24px;
}


.form-group > label {
    display: block;

    margin-bottom: 9px;

    color: #b7bac7;

    font-size: 12px;

    font-weight: 700;
}


.form-group input,
.form-group textarea {
    width: 100%;

    display: block;

    padding: 15px 16px;

    border: 1px solid rgba(255, 255, 255, 0.09);

    border-radius: 11px;

    outline: none;

    background: rgba(0, 0, 0, 0.16);

    color: #ffffff;

    font-family: "Manrope", sans-serif;

    font-size: 13px;

    transition:
        border-color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}


.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #555b6e;
}


.form-group input:focus,
.form-group textarea:focus {
    border-color: rgba(139, 92, 246, 0.55);

    background: rgba(139, 92, 246, 0.035);

    box-shadow:
        0 0 0 3px rgba(139, 92, 246, 0.07);
}


.form-group textarea {
    min-height: 130px;

    resize: vertical;

    line-height: 1.6;
}


/* =========================================================
   SERVICE OPTIONS
========================================================= */

.service-options {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;
}


.service-option {
    position: relative;
}


.service-option input {
    position: absolute;

    opacity: 0;

    pointer-events: none;
}


.service-option span {
    display: inline-flex;

    align-items: center;

    padding: 9px 13px;

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 100px;

    background: rgba(255, 255, 255, 0.025);

    color: #8e94a7;

    cursor: pointer;

    font-size: 11px;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease;
}


.service-option span:hover {
    border-color: rgba(139, 92, 246, 0.35);

    color: #c9c2e7;
}


.service-option input:checked + span {
    border-color: rgba(139, 92, 246, 0.55);

    background:
        linear-gradient(
            135deg,
            rgba(139, 92, 246, 0.18),
            rgba(34, 211, 238, 0.08)
        );

    color: #e6e0ff;
}


/* =========================================================
   SUBMIT
========================================================= */

.submit-button {
    width: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 16px 18px;

    border: 0;

    border-radius: 12px;

    background:
        linear-gradient(
            100deg,
            #7c3aed,
            #8b5cf6,
            #06b6d4
        );

    color: #ffffff;

    font-family: "Manrope", sans-serif;

    font-size: 13px;

    font-weight: 800;

    cursor: pointer;

    box-shadow:
        0 15px 35px rgba(124, 58, 237, 0.18);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.submit-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 20px 45px rgba(124, 58, 237, 0.28);
}


.submit-arrow {
    width: 30px;
    height: 30px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 8px;

    background: rgba(255, 255, 255, 0.13);
}


.form-disclaimer {
    margin: 14px 0 0;

    color: #60677a;

    font-size: 10px;

    line-height: 1.6;

    text-align: center;
}


/* =========================================================
   FINAL CTA
========================================================= */

.contact-cta {
    position: relative;

    min-height: 520px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    padding: 100px 7%;

    background: #060817;
}


.cta-grid {
    position: absolute;

    inset: 0;

    opacity: 0.35;

    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: 70px 70px;

    mask-image:
        radial-gradient(
            circle at center,
            black,
            transparent 75%
        );
}


.cta-glow {
    position: absolute;

    width: 600px;
    height: 300px;

    border-radius: 50%;

    background:
        linear-gradient(
            90deg,
            rgba(139, 92, 246, 0.17),
            rgba(34, 211, 238, 0.12)
        );

    filter: blur(100px);
}


.contact-cta-content {
    position: relative;

    max-width: 900px;

    text-align: center;
}


.center-label {
    justify-content: center;
}


.contact-cta-content h2 {
    margin: 25px 0 20px;

    color: #ffffff;

    font-family: "Sora", sans-serif;

    font-size: clamp(42px, 5vw, 72px);

    line-height: 1.08;

    letter-spacing: -3px;
}


.contact-cta-content h2 span {
    display: block;

    background:
        linear-gradient(
            100deg,
            #a78bfa,
            #c084fc,
            #22d3ee
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}


.contact-cta-content p {
    max-width: 560px;

    margin: 0 auto;

    color: #7e8498;

    font-size: 16px;

    line-height: 1.8;
}


.cta-button {
    display: inline-flex;

    align-items: center;

    gap: 15px;

    margin-top: 35px;

    padding: 14px 18px 14px 22px;

    border: 1px solid rgba(255, 255, 255, 0.12);

    border-radius: 100px;

    background: rgba(255, 255, 255, 0.055);

    color: #ffffff;

    text-decoration: none;

    font-size: 12px;

    font-weight: 800;

    backdrop-filter: blur(14px);

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}


.cta-button span {
    width: 28px;
    height: 28px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #8b5cf6,
            #06b6d4
        );
}


.cta-button:hover {
    transform: translateY(-3px);

    border-color: rgba(139, 92, 246, 0.4);

    background: rgba(139, 92, 246, 0.08);
}


/* =========================================================
   FOOTER
========================================================= */

.contact-footer {
    padding: 35px 7% 25px;

    background: #040610;

    border-top: 1px solid rgba(255, 255, 255, 0.06);
}


.footer-inner {
    max-width: 1400px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}


.footer-brand {
    color: #ffffff;

    font-family: "Sora", sans-serif;

    font-size: 20px;

    text-decoration: none;
}


.footer-brand span {
    color: #8b5cf6;
}


.footer-inner p {
    margin: 0;

    color: #5f6578;

    font-size: 11px;
}


.footer-links {
    display: flex;

    gap: 22px;
}


.footer-links a {
    color: #73798b;

    font-size: 11px;

    text-decoration: none;

    transition: color 0.25s ease;
}


.footer-links a:hover {
    color: #ffffff;
}


.footer-bottom {
    max-width: 1400px;

    margin: 25px auto 0;

    padding-top: 20px;

    display: flex;

    justify-content: space-between;

    border-top: 1px solid rgba(255, 255, 255, 0.05);

    color: #4e5364;

    font-size: 10px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .nav-container {
        width: calc(100% - 40px) !important;
    }

    .site-header .main-nav {
        gap: 22px !important;
    }

    .contact-hero {
        padding-top: 130px;
    }

    .contact-hero-inner {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .contact-intro {
        display: flex;

        flex-direction: column;

        align-items: center;
    }

    .contact-intro-text {
        max-width: 700px;
    }

    .contact-visual {
        min-height: 520px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .contact-details {
        max-width: 700px;

        margin: 0 auto;
    }

    .contact-form-card {
        width: 100%;

        max-width: 750px;

        margin: 0 auto;
    }
}


/* =========================================================
   MOBILE NAVIGATION
========================================================= */

@media (max-width: 760px) {

    .site-header {
        height: 68px !important;
    }

    .nav-container {
        width: calc(100% - 30px) !important;

        gap: 12px !important;
    }

    .site-header .brand {
        font-size: 17px !important;
    }

    .site-header .main-nav {
        display: none !important;
    }

    .site-header .nav-cta {
        padding: 9px 13px !important;

        font-size: 10px !important;
    }


    .contact-hero {
        min-height: auto;

        padding:
            120px 22px
            70px;
    }

    .contact-intro h1 {
        font-size: 48px;

        letter-spacing: -2.5px;
    }

    .contact-intro-text {
        font-size: 15px;

        line-height: 1.7;
    }

    .contact-availability {
        text-align: left;
    }

    .contact-visual {
        min-height: 470px;
    }

    .portrait-card {
        width: 270px;
    }

    .orbit-one {
        width: 360px;
        height: 360px;
    }

    .orbit-two {
        width: 400px;
        height: 220px;
    }

    .orbit-three {
        width: 260px;
        height: 420px;
    }

    .floating-top {
        top: 55px;
        right: 0;
    }

    .floating-bottom {
        bottom: 55px;
        left: 0;
    }

    .contact-section {
        padding: 80px 22px;
    }

    .contact-details h2 {
        font-size: 42px;

        letter-spacing: -2px;
    }

    .contact-form-card {
        padding: 25px 20px;

        border-radius: 20px;
    }

    .form-card-top h3 {
        font-size: 24px;
    }

    .form-number {
        font-size: 25px;
    }

    .contact-cta {
        min-height: 430px;

        padding: 80px 22px;
    }

    .contact-cta-content h2 {
        font-size: 44px;

        letter-spacing: -2px;
    }

    .contact-cta-content p {
        font-size: 14px;
    }

    .footer-inner {
        flex-direction: column;

        align-items: flex-start;
    }

    .footer-links {
        flex-wrap: wrap;
    }

    .footer-bottom {
        flex-direction: column;

        gap: 8px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .contact-intro h1 {
        font-size: 41px;
    }

    .contact-visual {
        min-height: 410px;
    }

    .portrait-card {
        width: 235px;
    }

    .floating-card {
        padding: 10px 12px;
    }

    .floating-top {
        right: -8px;
    }

    .floating-bottom {
        left: -8px;
    }

    .contact-details h2 {
        font-size: 37px;
    }

    .contact-cta-content h2 {
        font-size: 38px;
    }
}