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

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #070b14;
    color: #f4f7fb;
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
}

::selection {
    background: #00e5ff;
    color: #070b14;
}


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

.background-grid {
    position: fixed;
    inset: 0;
    z-index: -3;

    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 {
    position: fixed;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.12;
    z-index: -2;
    pointer-events: none;
}

.glow-one {
    background: #00e5ff;
    top: -200px;
    left: -150px;
}

.glow-two {
    background: #7c3aed;
    right: -200px;
    top: 400px;
}


/* =========================================
   NAVBAR
========================================= */

.navbar {
    width: min(1200px, 90%);
    margin: 0 auto;

    min-height: 100px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    position: relative;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;

    transition: transform 0.3s ease;
}

.logo:hover {
    transform: rotate(-4deg) scale(1.05);
}

.mylogo,
.logo img {
    width: 65px;
    height: 65px;
    object-fit: cover;
    border-radius: 50%;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 12px;

    list-style: none;
}

.nav-links a {
    position: relative;

    display: block;

    padding: 10px 16px;

    color: #9da8ba;

    font-size: 0.9rem;
    font-weight: 600;

    text-transform: lowercase;

    transition:
        color 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease;
}

.nav-links a:hover {
    color: white;
    transform: translateY(-2px);
}

.nav-links a.active {
    color: white;
}

.nav-links a.active::after {
    content: "";

    position: absolute;

    left: 16px;
    right: 16px;
    bottom: 2px;

    height: 2px;

    background: #00e5ff;

    box-shadow: 0 0 10px #00e5ff;
}

.nav-contact {
    border: 1px solid #26364d;
    border-radius: 8px;
}

.nav-contact:hover {
    border-color: #00e5ff;
    background: rgba(0, 229, 255, 0.06);
}


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

.menu-toggle {
    display: none;

    width: 45px;
    height: 45px;

    background: transparent;

    border: 1px solid #26364d;
    border-radius: 8px;

    cursor: pointer;

    align-items: center;
    justify-content: center;

    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    width: 20px;
    height: 2px;

    background: white;

    transition: 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* =========================================
   GENERAL
========================================= */

main {
    width: min(1200px, 90%);
    margin: 0 auto;
}

.section-label {
    color: #00e5ff;

    font-family: monospace;

    font-size: 0.8rem;
    font-weight: bold;

    letter-spacing: 2px;
    text-transform: uppercase;
}


/* =========================================
   HERO
========================================= */

.hero {
    min-height: calc(100vh - 100px);

    display: grid;
    grid-template-columns: 1fr 0.85fr;

    align-items: center;

    gap: 80px;

    padding: 70px 0 120px;
}

.hero-content {
    animation: fadeUp 0.8s ease forwards;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;

    color: #8d99aa;

    font-family: monospace;
    font-size: 0.8rem;

    margin-bottom: 20px;
}

.status-dot {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #43e97b;

    box-shadow: 0 0 12px #43e97b;

    animation: pulse 2s infinite;
}

.hero h1 {
    max-width: 750px;

    font-size: clamp(3rem, 7vw, 6rem);

    line-height: 0.98;

    letter-spacing: -4px;

    font-weight: 800;
}

.hero h1 span {
    display: block;

    color: transparent;

    -webkit-text-stroke: 1px #00e5ff;

    text-shadow:
        0 0 30px rgba(0,229,255,0.15);
}

.hero h2 {
    color: #c5cedb;

    font-size: clamp(1.3rem, 3vw, 2rem);

    margin-top: 25px;

    font-weight: 500;
}

.hero-description {
    max-width: 600px;

    margin-top: 22px;

    color: #8d99aa;

    font-size: 1.05rem;
}

.hero-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;

    margin-top: 35px;
}


/* =========================================
   BUTTONS
========================================= */

.primary-btn,
.secondary-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    min-height: 52px;

    padding: 0 23px;

    border-radius: 8px;

    font-weight: 700;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.primary-btn {
    background: #00e5ff;
    color: #061018;

    box-shadow: 0 0 25px rgba(0,229,255,0.15);
}

.primary-btn span {
    font-size: 1.2rem;

    transition: transform 0.25s ease;
}

.primary-btn:hover {
    transform: translateY(-3px);

    box-shadow:
        0 0 30px rgba(0,229,255,0.35);
}

.primary-btn:hover span {
    transform: translateX(4px);
}

.secondary-btn {
    border: 1px solid #26364d;
    color: #dbe3ed;
}

.secondary-btn:hover {
    border-color: #00e5ff;

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

    transform: translateY(-3px);
}


/* =========================================
   TECH STACK
========================================= */

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;

    margin-top: 35px;
}

.tech-stack span,
.project-tech span {
    padding: 6px 10px;

    border: 1px solid #202e43;

    border-radius: 5px;

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

    color: #8290a4;

    font-family: monospace;
    font-size: 0.75rem;
}

.tech-stack small {
    color: #00e5ff;
}


/* =========================================
   HERO IMAGE
========================================= */

.hero-image-wrapper {
    position: relative;

    display: flex;
    justify-content: center;

    animation: float 5s ease-in-out infinite;
}

.image-glow {
    position: absolute;

    width: 70%;
    height: 70%;

    background: #00e5ff;

    filter: blur(100px);

    opacity: 0.12;
}

.hero-image-card {
    position: relative;

    width: min(420px, 100%);

    padding: 10px;

    border: 1px solid #25354c;

    border-radius: 16px;

    background: rgba(11,18,31,0.85);

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

    overflow: hidden;
}

.hero-image-card::before {
    content: "";

    position: absolute;
    inset: 0;

    border-radius: inherit;

    background:
        linear-gradient(
            135deg,
            rgba(0,229,255,0.12),
            transparent 40%
        );

    pointer-events: none;
}

.window-top {
    height: 40px;

    display: flex;
    align-items: center;

    gap: 15px;

    padding: 0 12px;

    color: #66758a;

    font-family: monospace;
    font-size: 0.7rem;
}

.window-dots {
    display: flex;
    gap: 5px;
}

.window-dots span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #435064;
}

.hero-image-card img {
    width: 100%;

    display: block;

    aspect-ratio: 4 / 5;

    object-fit: cover;

    border-radius: 10px;

    filter: saturate(0.85);
}

.image-code {
    display: flex;
    flex-direction: column;

    padding: 15px;

    gap: 3px;

    font-family: monospace;
    font-size: 0.7rem;

    color: #64758c;
}

.image-code span:first-child,
.image-code span:last-child {
    color: #00e5ff;
}

.cursor {
    color: #00e5ff;

    animation: blink 1s infinite;
}


/* =========================================
   ABOUT
========================================= */

.about-section {
    padding: 100px 0;
}

.section-heading h2 {
    max-width: 600px;

    margin-top: 12px;

    font-size: clamp(2.3rem, 5vw, 4rem);

    line-height: 1.05;

    letter-spacing: -2px;
}

.section-heading h2 span,
.contact-card h2 span,
.page-header h1 span,
.resume-header h1 span,
.resume-cta h2 span {
    color: #00e5ff;
}

.about-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;

    margin-top: 50px;
}

.about-card {
    position: relative;

    min-height: 280px;

    padding: 30px;

    border: 1px solid #202e43;

    border-radius: 12px;

    background: rgba(10,17,29,0.7);

    overflow: hidden;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.about-card:hover {
    transform: translateY(-8px);

    border-color: #00e5ff;

    background: rgba(0,229,255,0.03);
}

.card-number {
    color: #35445a;

    font-family: monospace;

    font-size: 0.8rem;

    margin-bottom: 55px;
}

.about-card h3 {
    font-size: 1.3rem;

    margin-bottom: 12px;
}

.about-card p {
    color: #7e8da2;

    font-size: 0.95rem;
}

.featured-card {
    transform: translateY(-15px);

    border-color: rgba(0,229,255,0.3);
}

.featured-card:hover {
    transform: translateY(-23px);
}


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

.contact-section {
    padding: 80px 0 120px;
}

.contact-card {
    position: relative;

    text-align: center;

    padding: 80px 30px;

    border: 1px solid #26364d;

    border-radius: 16px;

    background:
        radial-gradient(
            circle at center,
            rgba(0,229,255,0.07),
            transparent 60%
        );

    overflow: hidden;
}

.contact-card::before,
.contact-card::after {
    content: "";

    position: absolute;

    width: 100px;
    height: 100px;

    border: 1px solid rgba(0,229,255,0.2);
}

.contact-card::before {
    top: -50px;
    left: -50px;

    transform: rotate(45deg);
}

.contact-card::after {
    right: -50px;
    bottom: -50px;

    transform: rotate(45deg);
}

.contact-card h2 {
    max-width: 750px;

    margin: 12px auto 15px;

    font-size: clamp(2.5rem, 6vw, 5rem);

    line-height: 1;

    letter-spacing: -3px;
}

.contact-card > p:not(.section-label) {
    max-width: 550px;

    margin: 0 auto 30px;

    color: #8996a8;
}


/* =========================================
   PAGE HEADER
========================================= */

.page-header {
    padding: 100px 0 70px;

    max-width: 800px;
}

.page-header h1,
.resume-header h1 {
    margin-top: 12px;

    font-size: clamp(3rem, 7vw, 6rem);

    line-height: 1;

    letter-spacing: -4px;
}

.page-header > p:last-child {
    max-width: 600px;

    margin-top: 25px;

    color: #8b98aa;

    font-size: 1.05rem;
}


/* =========================================
   PROJECTS
========================================= */

.projects-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 22px;

    padding-bottom: 80px;
}

.project-card {
    border: 1px solid #202e43;

    border-radius: 14px;

    background: #0a111d;

    overflow: hidden;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.project-card:hover {
    transform: translateY(-10px);

    border-color: rgba(0,229,255,0.5);

    box-shadow:
        0 25px 60px rgba(0,0,0,0.3);
}

.project-card:nth-child(3) {
    grid-column: span 2;
}


/* =========================================
   PROJECT PREVIEWS
========================================= */

.project-preview {
    height: 280px;

    padding: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.ecommerce-preview {
    background:
        radial-gradient(
            circle at 30% 30%,
            rgba(0,229,255,0.13),
            transparent 50%
        );
}

.landing-preview {
    background:
        radial-gradient(
            circle at 70% 50%,
            rgba(124,58,237,0.15),
            transparent 55%
        );
}

.coffee-preview {
    background:
        radial-gradient(
            circle at center,
            rgba(255,170,80,0.08),
            transparent 55%
        );
}

.mock-browser {
    width: 85%;

    border: 1px solid #304058;

    border-radius: 8px;

    background: #0e1725;

    box-shadow: 0 20px 40px rgba(0,0,0,0.3);

    transform: perspective(800px) rotateX(3deg);
}

.mock-top {
    height: 25px;

    display: flex;
    align-items: center;

    gap: 4px;

    padding-left: 10px;

    border-bottom: 1px solid #26354a;
}

.mock-top span {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #53647a;
}

.mock-content {
    padding: 15px;
}

.mock-nav {
    display: flex;
    gap: 12px;

    align-items: center;

    color: #65758b;

    font-size: 0.45rem;
}

.mock-nav b {
    color: #00e5ff;

    margin-right: auto;
}

.mock-products {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 7px;

    margin-top: 15px;
}

.mock-products div {
    height: 90px;

    border-radius: 4px;

    background: linear-gradient(
        135deg,
        #19283b,
        #0c1624
    );
}

.landing-mock {
    width: 85%;
    height: 190px;

    position: relative;

    border: 1px solid #304058;

    border-radius: 8px;

    background: #0d1624;

    overflow: hidden;
}

.landing-text {
    position: absolute;

    left: 30px;
    top: 50px;

    width: 35%;
}

.landing-text span {
    display: block;

    height: 8px;

    margin-bottom: 7px;

    border-radius: 3px;

    background: #33445b;
}

.landing-text span:first-child {
    width: 100%;

    background: #00e5ff;
}

.landing-text span:nth-child(2) {
    width: 80%;
}

.landing-text span:nth-child(3) {
    width: 60%;
}

.landing-button {
    width: 55px;
    height: 18px;

    margin-top: 20px;

    border-radius: 3px;

    background: #00e5ff;
}

.landing-shape {
    position: absolute;

    right: 50px;
    top: 35px;

    width: 120px;
    height: 120px;

    border-radius: 50%;

    border: 1px solid #00e5ff;

    box-shadow:
        0 0 40px rgba(0,229,255,0.15);

    transform: rotate(20deg);
}

.coffee-mock {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 35px;
}

.coffee-cup {
    font-size: 6rem;

    filter: grayscale(1);

    transition: transform 0.4s ease;
}

.project-card:hover .coffee-cup {
    transform: translateY(-10px) rotate(-5deg);
}

.coffee-lines {
    width: 120px;
}

.coffee-lines span {
    display: block;

    height: 7px;

    margin: 12px 0;

    border-radius: 5px;

    background: #39495d;
}

.coffee-lines span:first-child {
    width: 100%;

    background: #00e5ff;
}

.coffee-lines span:nth-child(2) {
    width: 80%;
}

.coffee-lines span:nth-child(3) {
    width: 60%;
}


/* =========================================
   PROJECT INFO
========================================= */

.project-info {
    padding: 28px;
}

.project-top {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 15px;
}

.project-type {
    color: #00e5ff;

    font-family: monospace;

    font-size: 0.7rem;
}

.project-status {
    color: #627086;

    font-family: monospace;

    font-size: 0.65rem;

    border: 1px solid #26364d;

    padding: 4px 7px;

    border-radius: 4px;
}

.project-info h2 {
    font-size: 1.7rem;

    margin-bottom: 10px;
}

.project-info p {
    color: #7f8da1;

    font-size: 0.9rem;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;

    gap: 7px;

    margin-top: 20px;
}

.project-link {
    display: inline-block;

    margin-top: 25px;

    color: #dce5ef;

    font-weight: bold;

    transition: color 0.25s ease;
}

.project-link:hover {
    color: #00e5ff;
}


/* =========================================
   RESUME HEADER
========================================= */

.resume-header {
    padding: 100px 0 70px;

    border-bottom: 1px solid #1d2a3d;
}

.resume-header > p:not(.section-label) {
    color: #8c99ab;

    font-size: 1.2rem;

    margin: 20px 0 30px;
}


/* =========================================
   RESUME
========================================= */

.resume-container {
    padding: 70px 0;
}

.resume-section {
    display: grid;

    grid-template-columns: 220px 1fr;

    gap: 50px;

    padding: 55px 0;

    border-bottom: 1px solid #1d2a3d;
}

.resume-label {
    color: #748196;

    font-family: monospace;

    font-size: 0.75rem;
    font-weight: bold;

    letter-spacing: 1px;
}

.resume-label span {
    color: #00e5ff;

    margin-right: 10px;
}

.resume-content {
    max-width: 750px;
}

.resume-content > p {
    color: #8b98aa;

    margin-bottom: 18px;

    font-size: 1rem;
}

.skills-list {
    display: flex;
    flex-direction: column;
}

.skill {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 18px 0;

    border-bottom: 1px solid #172335;
}

.skill h3 {
    font-size: 1rem;

    margin-bottom: 3px;
}

.skill p {
    color: #69778b;

    font-size: 0.8rem;
}

.skill > span {
    color: #35445a;

    font-family: monospace;
}

.tool-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 10px;
}

.tool-grid div {
    padding: 20px;

    border: 1px solid #202e43;

    border-radius: 7px;

    color: #c7d0dc;

    font-family: monospace;

    transition: 0.25s ease;
}

.tool-grid div:hover {
    border-color: #00e5ff;

    color: #00e5ff;

    transform: translateY(-3px);
}

.timeline-item {
    position: relative;

    display: flex;

    gap: 20px;

    padding-bottom: 40px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    width: 10px;
    height: 10px;

    flex-shrink: 0;

    margin-top: 7px;

    border-radius: 50%;

    background: #00e5ff;

    box-shadow: 0 0 12px rgba(0,229,255,0.5);
}

.timeline-item h3 {
    margin: 5px 0;

    font-size: 1.15rem;
}

.timeline-item p {
    color: #7c899d;

    font-size: 0.9rem;
}

.timeline-date {
    color: #00e5ff;

    font-family: monospace;

    font-size: 0.7rem;
}

.resume-cta {
    padding: 100px 0 30px;
}

.resume-cta h2 {
    max-width: 700px;

    margin: 12px 0 30px;

    font-size: clamp(2.5rem, 5vw, 4.5rem);

    line-height: 1;
}


/* =========================================
   FOOTER
========================================= */

footer {
    width: min(1200px, 90%);

    margin: 0 auto;

    padding: 30px 0 45px;

    display: flex;
    justify-content: space-between;

    border-top: 1px solid #172335;

    color: #56657a;

    font-family: monospace;

    font-size: 0.7rem;
}

.footer__left{
    display: flex;
    align-items: center;
}

.footer__logo{
    width: 30px;
    margin: 0 12px;
    filter: invert(1);
}

/* =========================================
   ANIMATIONS
========================================= */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 12px #43e97b;
    }

    50% {
        opacity: 0.5;
        box-shadow: 0 0 4px #43e97b;
    }
}

@keyframes blink {
    0%,
    45% {
        opacity: 1;
    }

    46%,
    100% {
        opacity: 0;
    }
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 850px) {

    .navbar {
        min-height: 80px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;

        top: 75px;
        left: 0;
        right: 0;

        display: flex;
        flex-direction: column;
        align-items: stretch;

        padding: 15px;

        border: 1px solid #26364d;
        border-radius: 10px;

        background: rgba(7,11,20,0.97);

        backdrop-filter: blur(15px);

        opacity: 0;
        visibility: hidden;

        transform: translateY(-10px);

        transition:
            opacity 0.25s ease,
            transform 0.25s ease,
            visibility 0.25s ease;
    }

    .nav-links.open {
        opacity: 1;
        visibility: visible;

        transform: translateY(0);
    }

    .nav-links a {
        padding: 14px;
    }

    .nav-links a.active::after {
        display: none;
    }


    /* HERO */

    .hero {
        grid-template-columns: 1fr;

        gap: 60px;

        padding-top: 70px;

        text-align: center;
    }

    .eyebrow {
        justify-content: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .tech-stack {
        justify-content: center;
    }

    .hero-image-wrapper {
        max-width: 430px;

        width: 100%;

        margin: 0 auto;
    }


    /* ABOUT */

    .about-grid {
        grid-template-columns: 1fr;
    }

    .featured-card {
        transform: none;
    }

    .featured-card:hover {
        transform: translateY(-8px);
    }


    /* PROJECTS */

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-card:nth-child(3) {
        grid-column: span 1;
    }


    /* RESUME */

    .resume-section {
        grid-template-columns: 1fr;

        gap: 25px;
    }

}


@media (max-width: 550px) {

    main,
    .navbar,
    footer {
        width: 88%;
    }

    .hero {
        padding-top: 50px;
    }

    .hero h1 {
        font-size: clamp(2.8rem, 13vw, 4rem);

        letter-spacing: -2px;
    }

    .hero h2 {
        font-size: 1.25rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-buttons {
        flex-direction: column;

        width: 100%;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
    }

    .hero-image-card {
        width: 100%;
    }

    .about-section {
        padding: 60px 0;
    }

    .contact-section {
        padding: 50px 0 80px;
    }

    .contact-card {
        padding: 55px 20px;
    }

    .contact-card h2 {
        font-size: 2.5rem;

        letter-spacing: -2px;
    }

    .page-header,
    .resume-header {
        padding: 60px 0 50px;
    }

    .page-header h1,
    .resume-header h1 {
        font-size: 3.2rem;

        letter-spacing: -2px;
    }

    .project-preview {
        height: 220px;
    }

    .mock-browser,
    .landing-mock {
        width: 100%;
    }

    .coffee-cup {
        font-size: 4rem;
    }

    .project-info {
        padding: 22px;
    }

    .tool-grid {
        grid-template-columns: 1fr;
    }

    footer {
        flex-direction: column;

        gap: 8px;
    }

}
/* =========================================
CONTACT PAGE
========================================= */

.contact-page {
min-height: calc(100vh - 180px);

display: grid;
grid-template-columns: 0.9fr 1.1fr;

align-items: center;

gap: 100px;

padding: 80px 0 120px;

}
.contact-active{
    border-color: #00e5ff;
}
/* =========================================
CONTACT INTRO
========================================= */

.contact-intro {
max-width: 520px;
}

.contact-intro h1 {
margin-top: 15px;

font-size: clamp(3.5rem, 7vw, 6rem);

line-height: 0.95;

letter-spacing: -4px;

}

.contact-intro h1 span {
display: block;

color: #00e5ff;

text-shadow:
    0 0 30px rgba(0, 229, 255, 0.15);

}

.contact-description {
max-width: 470px;

margin-top: 30px;

color: #8996a8;

font-size: 1.05rem;

line-height: 1.8;

}

/* =========================================
SOCIAL LINKS
========================================= */

.contact-socials {
display: flex;

align-items: center;

gap: 12px;

margin-top: 35px;

}

.contact-socials a {
width: 45px;
height: 45px;

display: flex;

align-items: center;
justify-content: center;

border: 1px solid #26364d;

border-radius: 8px;

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

transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;

}

.contact-socials a {
transform: translateY(-4px);

border-color: #00e5ff;

background: rgba(0, 229, 255, 0.06);

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

}

.contact-socials img {
width: 20px;
height: 20px;

filter: invert(1);

opacity: 0.75;

transition: opacity 0.25s ease;

}

.contact-socials a img {
opacity: 1;
}

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

.contact-form-card {
position: relative;

padding: 35px;

border: 1px solid #26364d;

border-radius: 16px;

background:
    radial-gradient(
        circle at top right,
        rgba(0, 229, 255, 0.07),
        transparent 45%
    ),
    rgba(10, 17, 29, 0.8);

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

overflow: hidden;

}

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

position: absolute;

top: 0;
left: 0;

width: 100%;
height: 2px;

background: linear-gradient(
    90deg,
    transparent,
    #00e5ff,
    transparent
);

opacity: 0.7;

}

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

.form-header {
display: flex;

align-items: center;

gap: 12px;

margin-bottom: 30px;

color: #728197;

font-family: monospace;

font-size: 0.75rem;

text-transform: uppercase;

letter-spacing: 1px;

}

.form-header span {
color: #00e5ff;
}

.form-header p {
margin: 0;
}

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

.form-group {
display: flex;

flex-direction: column;

gap: 8px;

margin-bottom: 20px;

}

.form-group label {
color: #aab6c7;

font-family: monospace;

font-size: 0.75rem;

text-transform: uppercase;

letter-spacing: 1px;

}

.form-group input,
.form-group textarea {
width: 100%;

padding: 15px 16px;

border: 1px solid #26364d;

border-radius: 8px;

outline: none;

background: rgba(7, 11, 20, 0.8);

color: #f4f7fb;

font-family: Arial, Helvetica, sans-serif;

font-size: 0.95rem;

transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;

}

.form-group input::placeholder,
.form-group textarea::placeholder {
color: #536176;
}

.form-group input,
.form-group textarea {
border-color: #00e5ff;

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

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

}

.form-group textarea {
min-height: 160px;

resize: vertical;

}

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

.contact-submit {
width: 100%;

min-height: 54px;

display: flex;

align-items: center;
justify-content: center;

gap: 12px;

margin-top: 8px;

border: none;

border-radius: 8px;

background: #00e5ff;

color: #061018;

font-family: inherit;

font-size: 0.95rem;

font-weight: 700;

cursor: pointer;

transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;

}

.contact-submit {
transform: translateY(-3px);

box-shadow:
    0 0 30px rgba(0, 229, 255, 0.35);

}

.contact-submit {
transform: translateY(0);
}

.submit-arrow {
font-size: 1.2rem;

transition: transform 0.25s ease;

}

.contact-submit .submit-arrow {
transform: translateX(5px);
}

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

.form-status {
min-height: 24px;

margin-top: 15px;

color: #7f8da1;

font-family: monospace;

font-size: 0.75rem;

text-align: center;

}

.form-status.success {
color: #43e97b;
}

.form-status.error {
color: #ff6b6b;
}

/* =========================================
CONTACT PAGE RESPONSIVE
========================================= */

@media (max-width: 850px) {

.contact-page {
    grid-template-columns: 1fr;

    gap: 55px;

    padding: 60px 0 90px;
}

.contact-intro {
    max-width: 700px;

    text-align: center;

    margin: 0 auto;
}

.contact-description {
    margin-left: auto;
    margin-right: auto;
}

.contact-socials {
    justify-content: center;
}

.contact-form-card {
    width: 100%;

    max-width: 700px;

    margin: 0 auto;
}

}

@media (max-width: 550px) {

.contact-page {
    padding: 45px 0 70px;

    gap: 40px;
}

.contact-intro h1 {
    font-size: clamp(3rem, 15vw, 4.2rem);

    letter-spacing: -2px;
}

.contact-description {
    font-size: 0.95rem;
}

.contact-form-card {
    padding: 25px 20px;
}

.form-group input,
.form-group textarea {
    font-size: 0.9rem;
}

}