* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    min-height: 100vh;
    color: white;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(0, 170, 255, 0.15),
            transparent 30%
        ),
        radial-gradient(
            circle at 85% 30%,
            rgba(124, 58, 237, 0.15),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #050816,
            #080d1c,
            #050816
        );
}


/* ================= HEADER ================= */

.header {
    height: 80px;
    padding: 0 8%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    position: sticky;
    top: 0;
    z-index: 100;

    background: rgba(5, 8, 22, 0.75);
    backdrop-filter: blur(20px);

    border-bottom: 1px solid rgba(255,255,255,0.08);
}


/* LOGO */

.h1 {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 3px;
}

.h1 span {
    color: #00aaff;

    text-shadow:
        0 0 15px rgba(0,170,255,0.6);
}


/* NAV */

.header nav {
    display: flex;
    gap: 35px;
}

.header nav a {
    position: relative;

    color: #aab4c8;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    transition: 0.3s;
}

.header nav a:hover {
    color: white;
}

.header nav a::after {
    content: "";

    position: absolute;

    width: 0;
    height: 2px;

    left: 50%;
    bottom: -8px;

    transform: translateX(-50%);

    background: linear-gradient(
        90deg,
        #00aaff,
        #7c3aed
    );

    transition: 0.3s;
}

.header nav a:hover::after {
    width: 100%;
}


/* ================= CONTACT ================= */

main {
    width: 100%;

    padding: 100px 8%;
}

.contact {
    max-width: 850px;

    margin: auto;

    padding: 55px;

    border-radius: 30px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.07),
            rgba(255,255,255,0.025)
        );

    border: 1px solid rgba(255,255,255,0.09);

    box-shadow:
        0 30px 80px rgba(0,0,0,0.35);

    backdrop-filter: blur(20px);
}


/* CONTACT TITLE */

.contact-title {
    text-align: center;

    margin-bottom: 45px;
}

.contact-title p:first-child {
    color: #00aaff;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 3px;

    margin-bottom: 15px;
}

.contact-title h1 {
    font-size: clamp(40px, 6vw, 65px);

    margin-bottom: 18px;

    background: linear-gradient(
        90deg,
        #ffffff,
        #00aaff,
        #8b5cf6
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-title p:last-child {
    max-width: 600px;

    margin: auto;

    color: #8995a8;

    line-height: 1.8;

    font-size: 15px;
}


/* ================= FORM ================= */

.contact-form {
    display: flex;

    flex-direction: column;

    gap: 22px;
}

.form-group {
    display: flex;

    flex-direction: column;

    gap: 9px;
}

.form-group label {
    color: #dce3ee;

    font-size: 13px;

    font-weight: 700;
}


/* INPUT + TEXTAREA */

.form-group input,
.form-group textarea {
    width: 100%;

    padding: 15px 17px;

    color: white;

    font-family: inherit;

    font-size: 14px;

    outline: none;

    background: rgba(255,255,255,0.045);

    border: 1px solid rgba(255,255,255,0.09);

    border-radius: 13px;

    transition: 0.3s;

    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #59657a;
}


/* FOCUS */

.form-group input:focus,
.form-group textarea:focus {
    border-color: #00aaff;

    background: rgba(0,170,255,0.05);

    box-shadow:
        0 0 0 3px rgba(0,170,255,0.08),
        0 0 25px rgba(0,170,255,0.08);
}


/* ================= BUTTON ================= */

.contact-form button {
    margin-top: 10px;

    padding: 16px 25px;

    border: none;

    border-radius: 13px;

    color: white;

    font-size: 14px;

    font-weight: 800;

    cursor: pointer;

    background:
        linear-gradient(
            135deg,
            #00aaff,
            #7c3aed
        );

    box-shadow:
        0 12px 30px rgba(0,170,255,0.2);

    transition: 0.3s;
}

.contact-form button:hover {
    transform: translateY(-4px);

    box-shadow:
        0 18px 40px rgba(0,170,255,0.3);
}

.contact-form button:active {
    transform: scale(0.98);
}


/* ================= FOOTER ================= */

footer {
    padding: 40px 8%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    flex-wrap: wrap;

    gap: 20px;

    border-top: 1px solid rgba(255,255,255,0.07);
}

.looogo {
    font-size: 20px;

    font-weight: 900;

    letter-spacing: 3px;
}

.looogo::first-letter {
    color: #00aaff;
}

.pp {
    color: #667287;

    font-size: 13px;
}


/* ================= MOBILE ================= */

@media (max-width: 700px) {

    .header {
        padding: 0 5%;
    }

    .h1 {
        font-size: 17px;

        letter-spacing: 2px;
    }

    .header nav {
        gap: 12px;
    }

    .header nav a {
        font-size: 11px;
    }

    main {
        padding: 60px 5%;
    }

    .contact {
        padding: 30px 20px;

        border-radius: 22px;
    }

    .contact-title h1 {
        font-size: 42px;
    }

    footer {
        flex-direction: column;

        text-align: center;

        padding: 35px 5%;
    }
}

footer {
    width: 100%;

    margin-top: 80px;
    padding: 40px 8%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    flex-wrap: wrap;

    background: rgba(5, 8, 22, 0.9);

    border-top: 1px solid rgba(0, 170, 255, 0.2);
}

.footer-logo {
    color: white;

    font-size: 22px;
    font-weight: 900;

    letter-spacing: 3px;
}

.footer-contact {
    display: flex;
    align-items: center;

    gap: 20px;
}

.footer-contact a {
    color: #8e9ab0;

    text-decoration: none;

    font-size: 14px;

    transition: 0.3s;
}

.footer-contact a:hover {
    color: #00aaff;

    text-shadow:
        0 0 15px rgba(0, 170, 255, 0.5);
}

.pp {
    color: #778399;

    font-size: 13px;
}


/* TELEPHONE */

@media (max-width: 700px) {

    footer {
        flex-direction: column;

        text-align: center;

        padding: 35px 5%;
    }

    .footer-contact {
        flex-direction: column;

        gap: 12px;
    }
} 

/* TELEPHONE */

@media (max-width: 700px) {

    footer {
        flex-direction: column;

        text-align: center;

        padding: 35px 5%;
    }

    .footer-contact {
        flex-direction: column;

        gap: 12px;
    }
}

.instagram {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #8e9ab0;

    text-decoration: none;

    transition: 0.3s ease;
}

.instagram:hover {
    color: #e1306c;

    transform: translateY(-2px);
}

.instagram svg {
    transition: 0.3s ease;
}

.instagram:hover svg {
    transform: scale(1.1);
}
/* FOOTER */

    footer {
        flex-direction: column;

        text-align: center;

        padding: 40px 5%;
    }



/* =========================================
   SMALL PHONE
========================================= */

@media (max-width: 420px) {

    .h1 {
        font-size: 15px;

        letter-spacing: 1px;
    }

    .header nav {
        gap: 7px;
    }

    .header nav a {
        font-size: 8px;
    }

    .h11 {
        font-size: 36px;
    }

    .studing {
        flex-direction: column;

        text-align: center;
    }

    .studing > a {
        flex-direction: column;

        text-align: center;
    }

    .studing img {
        width: 90px;

        height: 90px;
    }
}

/* ================================
   INFORMATION
================================ */

.information {
    width: 80%;
    max-width: 1100px;

    margin: auto;

    padding: 80px 0;

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 25px;
}

.info-card {
    padding: 35px;

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.07),
            rgba(255, 255, 255, 0.025)
        );

    border: 1px solid rgba(255, 255, 255, 0.09);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.25);

    backdrop-filter: blur(15px);

    transition: 0.35s ease;
}

.info-card:hover {
    transform: translateY(-8px);

    border-color:
        rgba(0, 170, 255, 0.35);

    box-shadow:
        0 25px 55px rgba(0, 0, 0, 0.35),
        0 0 30px rgba(0, 170, 255, 0.08);
}

.info-card h2 {
    margin-bottom: 15px;

    color: #00aaff;

    font-size: 21px;
}

.info-card p {
    color: #8995a8;

    line-height: 1.8;

    font-size: 15px;
}


/* MOBILE */

@media (max-width: 700px) {

    .information {
        width: 90%;

        grid-template-columns: 1fr;

        padding: 60px 0;
    }

    .info-card {
        padding: 25px;
    }
}

footer {
    width: 100%;

    margin-top: 80px;
    padding: 40px 8%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    flex-wrap: wrap;

    background: rgba(5, 8, 22, 0.9);

    border-top: 1px solid rgba(0, 170, 255, 0.2);
}

.footer-logo {
    color: white;

    font-size: 22px;
    font-weight: 900;

    letter-spacing: 3px;
}

.footer-contact {
    display: flex;
    align-items: center;

    gap: 20px;
}

.footer-contact a {
    color: #8e9ab0;

    text-decoration: none;

    font-size: 14px;

    transition: 0.3s;
}

.footer-contact a:hover {
    color: #00aaff;

    text-shadow:
        0 0 15px rgba(0, 170, 255, 0.5);
}

.pp {
    color: #778399;

    font-size: 13px;
}


/* TELEPHONE */

@media (max-width: 700px) {

    footer {
        flex-direction: column;

        text-align: center;

        padding: 35px 5%;
    }

    .footer-contact {
        flex-direction: column;

        gap: 12px;
    }
}