/* =========================================
   NEXASEVA — DIGITAL PORTFOLIO
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, Arial, sans-serif;
    background: #050708;
    color: #f5f7f8;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

/* =========================================
   NAVBAR
========================================= */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 7%;

    background: rgba(5, 7, 8, 0.78);
    backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    width: 135px;
    height: 55px;
}

.logo img {
    width: 125px;
    height: auto;
    display: block;
    object-fit: contain;
}

nav {
    display: flex;
    align-items: center;
    gap: 42px;
}

nav a {
    font-size: 14px;
    color: #9ba3a8;
    transition: 0.3s ease;
}

nav a:hover {
    color: #08e0ef;
}

.nav-btn {
    padding: 13px 22px;

    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 9px;

    font-size: 14px;
    font-weight: 600;

    transition: 0.3s ease;
}

.nav-btn:hover {
    border-color: #08e0ef;
    color: #08e0ef;
}

/* =========================================
   HERO
========================================= */

.hero {
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: space-between;

    position: relative;

    padding: 150px 7% 90px;

    overflow: hidden;
}

.hero::before {
    content: "";

    position: absolute;
    width: 650px;
    height: 650px;

    right: -180px;
    top: 80px;

    background: radial-gradient(
        circle,
        rgba(0, 225, 239, 0.12),
        transparent 68%
    );

    pointer-events: none;
}

.hero-content {
    width: 52%;
    position: relative;
    z-index: 5;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 10px 17px;

    border: 1px solid rgba(0, 225, 239, 0.25);
    border-radius: 30px;

    color: #aeb9bd;

    font-size: 10px;
    letter-spacing: 2px;

    margin-bottom: 35px;
}

.badge span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #08e0ef;

    box-shadow: 0 0 12px #08e0ef;
}

.hero h1 {
    font-size: clamp(70px, 8vw, 125px);

    line-height: 0.91;
    letter-spacing: -5px;

    font-weight: 800;

    margin-bottom: 35px;
}

.hero h1 span {
    color: #08dce9;
}

.hero p {
    max-width: 590px;

    color: #8f9ba0;

    font-size: 17px;
    line-height: 1.7;

    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 16px 23px;

    border-radius: 8px;

    font-size: 14px;
    font-weight: 600;

    transition: 0.3s ease;
}

.primary-btn {
    background: #08dce9;
    color: #021012;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(8, 220, 233, 0.22);
}

.secondary-btn {
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #d9e0e2;
}

.secondary-btn:hover {
    border-color: #08dce9;
    color: #08dce9;
}

/* =========================================
   HERO VISUAL
========================================= */

.hero-visual {
    width: 42%;
    height: 560px;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
}

.main-circle {
    width: 390px;
    height: 390px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;

    background:
        radial-gradient(
            circle at 50% 40%,
            rgba(0, 225, 239, 0.12),
            rgba(5, 7, 8, 0.95) 65%
        );

    border: 1px solid rgba(0, 225, 239, 0.18);

    box-shadow:
        0 0 80px rgba(0, 225, 239, 0.08),
        inset 0 0 50px rgba(255, 255, 255, 0.02);

    animation: floating 6s ease-in-out infinite;
}

.main-circle::before {
    content: "";

    position: absolute;
    inset: -25px;

    border: 1px solid rgba(0, 225, 239, 0.07);

    border-radius: 50%;
}

.main-circle::after {
    content: "";

    position: absolute;
    inset: 35px;

    border: 1px dashed rgba(0, 225, 239, 0.10);

    border-radius: 50%;

    animation: rotate 25s linear infinite;
}

.main-circle img {
    width: 235px;
    height: 235px;

    object-fit: contain;

    border-radius: 28px;

    position: relative;
    z-index: 2;

    filter: drop-shadow(
        0 0 30px rgba(0, 225, 239, 0.12)
    );
}

.glow {
    position: absolute;

    width: 300px;
    height: 300px;

    border-radius: 50%;

    background: rgba(0, 225, 239, 0.08);

    filter: blur(80px);
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-14px) rotate(1deg);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* =========================================
   GENERAL SECTIONS
========================================= */

section {
    padding: 130px 7%;
}

.intro {
    max-width: 1000px;
}

.small-title {
    color: #08dce9;

    font-size: 11px;
    letter-spacing: 3px;

    margin-bottom: 22px;
}

.intro h2,
.section-heading h2 {
    font-size: clamp(42px, 5vw, 72px);

    line-height: 1;

    letter-spacing: -3px;

    margin-bottom: 25px;
}

.intro h2 span {
    color: #08dce9;
}

.intro p {
    max-width: 700px;

    color: #879297;

    line-height: 1.8;

    font-size: 17px;
}

/* =========================================
   FOCUS
========================================= */

.focus {
    background: #070a0b;
}

.section-heading {
    margin-bottom: 55px;
}

.section-heading > p {
    color: #879297;

    max-width: 600px;

    line-height: 1.7;

    margin-top: 18px;
}

.focus-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;
}

.focus-card {
    min-height: 330px;

    padding: 40px;

    position: relative;

    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.045),
        rgba(255, 255, 255, 0.015)
    );

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 18px;

    overflow: hidden;

    transition: 0.4s ease;
}

.focus-card:hover {
    transform: translateY(-8px);

    border-color: rgba(0, 225, 239, 0.35);

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.35),
        0 0 35px rgba(0, 225, 239, 0.05);
}

.number {
    position: absolute;

    top: 30px;
    right: 35px;

    color: #566064;

    font-size: 13px;
}

.focus-icon {
    font-size: 38px;

    margin-bottom: 50px;
}

.focus-card h3 {
    font-size: 30px;

    margin-bottom: 15px;
}

.focus-card p {
    max-width: 480px;

    color: #8b969a;

    line-height: 1.7;
}

/* =========================================
   PORTFOLIO
========================================= */

.portfolio {
    min-height: 700px;
}

.empty-box {
    min-height: 360px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 50px;

    border: 1px dashed rgba(255, 255, 255, 0.13);

    border-radius: 20px;

    background: rgba(255, 255, 255, 0.015);
}

.empty-icon {
    width: 65px;
    height: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    border: 1px solid rgba(0, 225, 239, 0.2);

    border-radius: 50%;

    color: #08dce9;

    font-size: 22px;
}

.empty-box h3 {
    font-size: 25px;

    margin-bottom: 10px;
}

.empty-box p {
    color: #727d81;
}

/* =========================================
   REVIEWS
========================================= */

.reviews {
    background: #070a0b;
}

/* =========================================
   CONTACT
========================================= */

.contact {
    padding-top: 100px;
    padding-bottom: 150px;
}

.contact-box {
    padding: 80px;

    border: 1px solid rgba(0, 225, 239, 0.18);

    border-radius: 25px;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(0, 225, 239, 0.10),
            transparent 35%
        ),
        rgba(255, 255, 255, 0.02);
}

.contact-box h2 {
    font-size: clamp(55px, 7vw, 95px);

    line-height: 0.92;

    letter-spacing: -4px;

    margin-bottom: 25px;
}

.contact-box p {
    color: #8b969a;

    margin-bottom: 30px;

    font-size: 17px;
}

/* =========================================
   FOOTER
========================================= */

footer {
    padding: 55px 7% 35px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    background: #030505;
}

.footer-logo {
    font-size: 26px;
    font-weight: 700;

    margin-bottom: 8px;
}

.footer-logo span {
    color: #08dce9;
}

footer p {
    color: #687277;

    font-size: 14px;
}

.footer-line {
    height: 1px;

    background: rgba(255, 255, 255, 0.08);

    margin: 30px 0;
}

footer small {
    color: #555f63;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 900px) {

    header {
        padding: 0 5%;
    }

    nav {
        gap: 18px;
    }

    nav a {
        font-size: 12px;
    }

    .nav-btn {
        display: none;
    }

    .hero {
        flex-direction: column;

        align-items: flex-start;

        padding: 140px 6% 80px;
    }

    .hero-content {
        width: 100%;
    }

    .hero h1 {
        font-size: clamp(58px, 14vw, 90px);
        letter-spacing: -3px;
    }

    .hero-visual {
        width: 100%;
        height: 430px;

        margin-top: 20px;
    }

    .main-circle {
        width: 300px;
        height: 300px;
    }

    .main-circle img {
        width: 175px;
        height: 175px;
    }

    .focus-grid {
        grid-template-columns: 1fr;
    }

    .contact-box {
        padding: 50px 30px;
    }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 600px) {

    header {
        height: 72px;
    }

    .logo {
        width: 110px;
    }

    .logo img {
        width: 105px;
    }

    nav {
        display: none;
    }

    section {
        padding: 90px 6%;
    }

    .hero {
        min-height: auto;

        padding-top: 125px;
    }

    .badge {
        font-size: 8px;
        letter-spacing: 1.5px;
    }

    .hero p {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
    }

    .hero-visual {
        height: 350px;
    }

    .main-circle {
        width: 260px;
        height: 260px;
    }

    .main-circle img {
        width: 150px;
        height: 150px;
    }

    .intro h2,
    .section-heading h2 {
        letter-spacing: -2px;
    }

    .focus-card {
        min-height: 290px;
        padding: 30px;
    }

    .contact-box h2 {
        letter-spacing: -2px;
    }
}/* =========================
   SCROLL REVEAL
========================= */

.reveal {
    opacity: 0;
    transform: translateY(45px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}/* =========================================
   HERO LIVE ANIMATION
========================================= */

.main-circle {
    animation:
        heroFloat 4s ease-in-out infinite,
        heroTilt 7s ease-in-out infinite alternate;
}

.main-circle img {
    animation: logoPulse 3s ease-in-out infinite;
}

.hero-visual .glow {
    animation: glowPulse 3s ease-in-out infinite;
}

/* Outer rotating ring */
.main-circle::before {
    animation: ringRotate 12s linear infinite;
}

/* Inner dashed ring */
.main-circle::after {
    animation: ringRotateReverse 18s linear infinite;
}


/* Floating movement */
@keyframes heroFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-18px);
    }
}


/* Slight 3D tilt */
@keyframes heroTilt {

    0% {
        rotate: -1deg;
    }

    100% {
        rotate: 1.5deg;
    }
}


/* Logo breathing effect */
@keyframes logoPulse {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 15px rgba(0, 225, 239, 0.08));
    }

    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 30px rgba(0, 225, 239, 0.25));
    }
}


/* Glow breathing */
@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.45;
        transform: scale(0.9);
    }

    50% {
        opacity: 0.9;
        transform: scale(1.15);
    }
}


/* Outer ring */
@keyframes ringRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


/* Inner ring */
@keyframes ringRotateReverse {

    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}.airplane-canvas {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    z-index: 4;

    pointer-events: none;
}

.hero-visual .main-circle {
    z-index: 3;
}

.hero-visual .glow {
    z-index: 1;
}

.hero-visual {
    position: relative;
}/* =========================================
   AIRPLANE TRANSITION
========================================= */

.flight-transition {
    position: fixed;

    inset: 0;

    z-index: 99999;

    pointer-events: none;

    overflow: hidden;

    opacity: 0;
}


/* Airplane */

.transition-plane {
    position: absolute;

    left: -120px;
    top: 50%;

    font-size: 58px;

    color: #08dce9;

    filter:
        drop-shadow(0 0 8px rgba(8, 220, 233, 0.8))
        drop-shadow(0 0 25px rgba(8, 220, 233, 0.4));

    transform:
        translateY(-50%)
        rotate(0deg);

    opacity: 0;
}


/* Cyan light trail */

.flight-trail {
    position: absolute;

    left: -40%;

    top: calc(50% + 8px);

    width: 45%;

    height: 2px;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(8, 220, 233, 0.15),
        #08dce9
    );

    box-shadow:
        0 0 10px rgba(8, 220, 233, 0.7),
        0 0 30px rgba(8, 220, 233, 0.35);

    transform: translateY(-50%);

    opacity: 0;
}


/* =========================================
   FLY ANIMATION
========================================= */

.flight-transition.fly {
    opacity: 1;
}


.flight-transition.fly .transition-plane {

    animation:
        airplaneFly 0.85s
        cubic-bezier(0.65, 0, 0.2, 1)
        forwards;

}


.flight-transition.fly .flight-trail {

    animation:
        trailFly 0.85s
        ease-out
        forwards;

}


/* Plane movement */

@keyframes airplaneFly {

    0% {

        left: -120px;

        top: 55%;

        opacity: 0;

        transform:
            translateY(-50%)
            rotate(-5deg)
            scale(0.75);

    }

    15% {

        opacity: 1;

    }

    45% {

        top: 48%;

        transform:
            translateY(-50%)
            rotate(-2deg)
            scale(1);

    }

    75% {

        top: 45%;

        transform:
            translateY(-50%)
            rotate(2deg)
            scale(1.08);

    }

    100% {

        left: calc(100% + 150px);

        top: 38%;

        opacity: 0;

        transform:
            translateY(-50%)
            rotate(6deg)
            scale(1.15);

    }

}


/* Trail */

@keyframes trailFly {

    0% {

        left: -40%;

        opacity: 0;

    }

    15% {

        opacity: 1;

    }

    70% {

        left: 45%;

        opacity: 0.8;

    }

    100% {

        left: 110%;

        opacity: 0;

    }

}


/* =========================================
   CIRCLE MOUSE MOVEMENT
========================================= */

.main-circle {

    transform:
        translate(
            var(--mouse-x, 0px),
            var(--mouse-y, 0px)
        );

}


/* =========================================
   SCROLL REVEAL
========================================= */

.reveal {

    opacity: 0;

    transform: translateY(40px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;

}


.reveal.show {

    opacity: 1;

    transform: translateY(0);

}


/* =========================================
   NAVBAR
========================================= */

header {

    transition:
        background 0.3s ease,
        backdrop-filter 0.3s ease;

}


header.scrolled {

    background: rgba(3, 5, 6, 0.92);

    backdrop-filter: blur(14px);

}/* =========================================
   PREMIUM PREVIOUS WORK
========================================= */

.portfolio {
    padding: 140px 7vw;
    position: relative;
    overflow: hidden;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 70px;
}

.section-tag {
    display: inline-block;
    margin-bottom: 22px;

    font-size: 11px;
    letter-spacing: 3px;
    color: #08dce9;
}

.section-heading h2 {
    margin: 0;

    font-size: clamp(55px, 8vw, 105px);
    line-height: 0.9;
    letter-spacing: -5px;
    font-weight: 800;
}

.section-heading h2 span {
    color: #08dce9;
}

.section-heading p {
    margin-top: 28px;

    max-width: 600px;

    color: #8f9a9d;

    font-size: 17px;
    line-height: 1.7;
}


/* =========================================
   WORK GRID
========================================= */

.work-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 28px;
}


/* =========================================
   WORK CARD
========================================= */

.work-card {
    position: relative;

    border: 1px solid rgba(255,255,255,0.08);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.045),
            rgba(255,255,255,0.015)
        );

    border-radius: 24px;

    overflow: hidden;

    transition:
        transform 0.5s ease,
        border-color 0.5s ease,
        box-shadow 0.5s ease;
}


.work-card:hover {

    transform: translateY(-10px);

    border-color:
        rgba(8,220,233,0.45);

    box-shadow:
        0 25px 80px
        rgba(0, 225, 239, 0.12);
}


/* =========================================
   WORK IMAGE
========================================= */

.work-image {
    height: 330px;

    position: relative;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 40%,
            rgba(8,220,233,0.16),
            transparent 45%
        ),
        #050708;
}


.work-placeholder {

    position: absolute;

    inset: 18px;

    border-radius: 18px;

    border:
        1px solid
        rgba(255,255,255,0.07);

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 10px;

    background:
        radial-gradient(
            circle,
            rgba(8,220,233,0.08),
            transparent 60%
        );

    transition:
        transform 0.6s ease;
}


.work-card:hover .work-placeholder {

    transform: scale(1.04);

}


.work-placeholder span {

    font-size: 12px;

    letter-spacing: 4px;

    color: #08dce9;

}


.work-placeholder small {

    color: #697477;

    font-size: 13px;

}


/* =========================================
   WORK INFO
========================================= */

.work-info {

    padding: 28px;

    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    gap: 20px;
}


.work-number {

    display: block;

    margin-bottom: 10px;

    color: #08dce9;

    font-size: 11px;

    letter-spacing: 2px;
}


.work-info h3 {

    margin: 0;

    font-size: 25px;

    font-weight: 700;
}


.work-info p {

    margin-top: 10px;

    max-width: 420px;

    color: #7f8a8d;

    font-size: 14px;

    line-height: 1.6;
}


.work-arrow {

    flex-shrink: 0;

    width: 45px;

    height: 45px;

    border: 1px solid
        rgba(255,255,255,0.12);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #08dce9;

    font-size: 20px;

    transition:
        transform 0.4s ease,
        background 0.4s ease;
}


.work-card:hover .work-arrow {

    transform:
        translate(4px, -4px);

    background:
        rgba(8,220,233,0.1);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 800px) {

    .portfolio {

        padding:
            100px 6vw;

    }

    .section-heading h2 {

        font-size: 58px;

        letter-spacing:
            -3px;

    }

    .work-grid {

        grid-template-columns: 1fr;

    }

    .work-image {

        height: 260px;

    }

}/* ================================
   REVIEWS SECTION
================================ */

.reviews {
    padding: 140px 7vw;
    position: relative;
    overflow: hidden;
}

.review-empty {
    max-width: 850px;
    min-height: 360px;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 60px 30px;

    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 28px;

    background:
        radial-gradient(
            circle at center,
            rgba(8,220,233,0.08),
            transparent 60%
        ),
        rgba(255,255,255,0.015);

    transition:
        transform 0.5s ease,
        border-color 0.5s ease,
        box-shadow 0.5s ease;
}

.review-empty:hover {
    transform: translateY(-6px);

    border-color: rgba(8,220,233,0.35);

    box-shadow:
        0 25px 80px rgba(8,220,233,0.08);
}

.review-icon {
    width: 64px;
    height: 64px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 24px;

    border-radius: 50%;

    border: 1px solid rgba(8,220,233,0.35);

    background: rgba(8,220,233,0.06);

    color: #08dce9;

    font-size: 25px;

    animation: reviewPulse 2.5s ease-in-out infinite;
}

.review-empty h3 {
    margin: 0;

    font-size: 32px;
    font-weight: 700;
}

.review-empty p {
    max-width: 520px;

    margin-top: 15px;

    color: #858f92;

    line-height: 1.7;

    font-size: 15px;
}

.review-note {
    margin-top: 25px;

    font-size: 10px;

    letter-spacing: 3px;

    color: #08dce9;
}

@keyframes reviewPulse {

    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(8,220,233,0);
    }

    50% {
        transform: scale(1.06);
        box-shadow: 0 0 35px rgba(8,220,233,0.12);
    }
}


/* MOBILE */

@media (max-width: 800px) {

    .reviews {
        padding: 100px 6vw;
    }

    .review-empty {
        min-height: 320px;
        padding: 45px 22px;
    }

    .review-empty h3 {
        font-size: 26px;
    }
}/* =========================================
   CONTACT SECTION
========================================= */

.contact {
    position: relative;
    padding: 150px 7vw 120px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(8,220,233,0.07),
            transparent 45%
        );
}

.contact-inner {
    max-width: 1000px;
    margin: 0 auto;

    text-align: center;
}

.contact-inner .section-tag {
    margin-bottom: 25px;
}

.contact-inner h2 {
    margin: 0;

    font-size: clamp(60px, 9vw, 120px);
    line-height: 0.9;
    letter-spacing: -6px;
    font-weight: 800;
}

.contact-inner h2 span {
    color: #08dce9;
}

.contact-text {
    max-width: 650px;

    margin: 35px auto 0;

    color: #8b9699;

    font-size: 17px;
    line-height: 1.7;
}

.contact-actions {
    display: flex;

    justify-content: center;
    align-items: center;

    gap: 15px;

    margin-top: 40px;
}

.contact-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 170px;

    padding: 16px 25px;

    border-radius: 10px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease;
}

.contact-btn.primary {
    background: #08dce9;
    color: #031012;

    box-shadow:
        0 10px 35px
        rgba(8,220,233,0.15);
}

.contact-btn.primary:hover {
    transform: translateY(-4px);

    box-shadow:
        0 15px 45px
        rgba(8,220,233,0.28);
}

.contact-btn.secondary {
    color: #ffffff;

    border: 1px solid
        rgba(255,255,255,0.15);

    background:
        rgba(255,255,255,0.02);
}

.contact-btn.secondary:hover {
    transform: translateY(-4px);

    border-color:
        rgba(8,220,233,0.4);

    background:
        rgba(8,220,233,0.05);
}

.contact-line {
    width: 100%;

    height: 1px;

    margin-top: 100px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(8,220,233,0.3),
            transparent
        );
}

.contact-small {
    margin-top: 25px;

    color: #5f6a6d;

    font-size: 10px;

    letter-spacing: 3px;
}


/* MOBILE */

@media (max-width: 700px) {

    .contact {
        padding:
            110px 6vw 90px;
    }

    .contact-inner h2 {
        font-size: 58px;
        letter-spacing: -3px;
    }

    .contact-text {
        font-size: 15px;
    }

    .contact-actions {
        flex-direction: column;
    }

    .contact-btn {
        width: 100%;
        max-width: 300px;
    }

}/* =========================================
   MOBILE HAMBURGER MENU
========================================= */

.menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    align-items: center;
    justify-content: center;

    background: rgba(8, 220, 233, 0.04);

    border: 1px solid rgba(8, 220, 233, 0.25);

    border-radius: 10px;

    color: #08dce9;

    font-size: 22px;

    cursor: pointer;

    z-index: 1002;

    transition: 0.3s ease;
}

.menu-toggle:hover {
    background: rgba(8, 220, 233, 0.10);

    border-color: #08dce9;
}


@media (max-width: 700px) {

    .menu-toggle {
        display: flex;
    }

    header {
        position: fixed;
    }

    header nav {
        display: none;

        position: absolute;

        top: 82px;
        left: 5%;
        right: 5%;

        padding: 18px;

        flex-direction: column;

        gap: 5px;

        background:
            rgba(5, 8, 9, 0.97);

        border:
            1px solid
            rgba(8, 220, 233, 0.18);

        border-radius: 15px;

        box-shadow:
            0 20px 60px
            rgba(0, 0, 0, 0.5);

        backdrop-filter: blur(20px);

        z-index: 1001;
    }

    header nav.active {
        display: flex;
    }

    header nav a {
        display: block;

        width: 100%;

        padding: 14px;

        text-align: center;

        border-radius: 8px;

        color: #aeb8bb;
    }

    header nav a:hover {
        color: #08dce9;

        background:
            rgba(8, 220, 233, 0.05);
    }

    header .nav-btn {
        display: none;
    }
}/* =========================================
   PREVIOUS WORK
========================================= */

.work-section {
    padding: 120px 7%;
    position: relative;
}

.section-heading {
    max-width: 700px;
    margin-bottom: 60px;
}

.section-heading h2 {
    font-size: clamp(48px, 7vw, 90px);
    line-height: 0.95;
    margin: 25px 0;
    letter-spacing: -4px;
}

.section-heading h2 span {
    color: #08dce9;
}

.section-heading p {
    color: #8d999d;
    font-size: 17px;
    line-height: 1.7;
    max-width: 620px;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.work-card {
    background: rgba(8, 220, 233, 0.025);
    border: 1px solid rgba(8, 220, 233, 0.14);
    border-radius: 22px;
    overflow: hidden;
    transition: transform 0.4s ease,
                border-color 0.4s ease,
                box-shadow 0.4s ease;
}

.work-card:hover {
    transform: translateY(-8px);
    border-color: rgba(8, 220, 233, 0.5);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
}

.work-image {
    width: 100%;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    background: #050708;
}

.work-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.work-card:hover .work-image img {
    transform: scale(1.05);
}

.work-info {
    padding: 25px;
}

.work-info span {
    color: #08dce9;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.work-info h3 {
    font-size: 25px;
    margin: 10px 0;
}

.work-info p {
    color: #8d999d;
    line-height: 1.6;
    margin: 0;
}


/* MOBILE */

@media (max-width: 700px) {

    .work-section {
        padding: 80px 6%;
    }

    .section-heading h2 {
        letter-spacing: -2px;
    }

    .work-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .work-info {
        padding: 20px;
    }

}/* ==============================
   FULL WORK IMAGE VIEWER
================================ */

.clickable-work {
    cursor: pointer;
}

.image-viewer {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: none;
    align-items: center;
    justify-content: center;

    padding: 30px;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
}

.image-viewer.active {
    display: flex;
}

.image-viewer img {
    max-width: 95%;
    max-height: 92vh;

    width: auto;
    height: auto;

    object-fit: contain;

    border-radius: 12px;
    box-shadow: 0 0 40px rgba(0, 220, 255, 0.15);
}

.image-viewer-close {
    position: absolute;
    top: 20px;
    right: 25px;

    width: 45px;
    height: 45px;

    border: 1px solid rgba(0, 220, 255, 0.5);
    border-radius: 50%;

    background: rgba(0, 0, 0, 0.7);
    color: white;

    font-size: 30px;
    line-height: 1;

    cursor: pointer;
    z-index: 10000;
}

.image-viewer-close:hover {
    background: rgba(0, 220, 255, 0.15);
}