/*
10425c dark blue
41E2CC light blue
*/
/* Reset */

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, #0C1F2A 0%, #000000 100%);
    font-family: monospace;
    color: black;
    line-height: 1.6;
    overflow-x: hidden;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    height: 70px;
    background-color: #000000;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 0;
    z-index: 100;
}

header nav {
    display: flex;
    color: white;
    gap: 25px;
}

nav a {
    position: relative;
    padding: 8px 14px;
    border-radius: 6px;
    text-decoration: none;
    color: #f8f9fa;
    font-size: 20px;
}

nav a::before,
nav a::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 2px solid #41E2CC;
    border-radius: 6px;
    opacity: 0;
    transform: scale(0.85);
    transition: 0.3s ease;
}

nav a:hover::before,
nav a:hover::after {
    opacity: 1;
    transform: scale(1);
}

header nav a:hover {
    color: #41E2CC;
}

header img {
    width: 50px;
    height: 50px;
}

.menu {
    display: none;
    flex-direction: column;
    gap: 5px;
}

.menu div {
    width: 30px;
    height: 3px;
    background-color: #41E2CC;
    transition: all 0.3s ease;
}

.menu.active div:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    transform-origin: center;
}

.menu.active div:nth-child(2) {
    opacity: 0;
}

.menu.active div:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    transform-origin: center;
}

#menu {
    border: 2px solid rgba(65, 226, 204, 0.4);
    padding: 8px 10px;
    border-radius: 10px;
    transition: 0.3s ease;
}

#menu:hover {
    border-color: #41E2CC;
    background: rgba(65, 226, 204, 0.1);
}

.hero {
    height: 85vh;
    background: linear-gradient(135deg, #0C1F2A 0%, #000000 100%);
    color: #f8f9fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 5vh;
    font-weight: 800;
    z-index: 2;
    position: relative;
}

.hero p {
    font-size: 1.5rem;
    font-weight: 400;
    z-index: 2;
    position: relative;
}

.hero-logo {
    width: 80px;
    height: 80px;
}

.social-icons {
    margin-top: 30px;
}

.social-icons a {
    font-size: 2rem;
    margin: 0 15px;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #41E2CC;
}

.scroll-indicator {
    position: fixed;
    bottom: 13%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: bounce 1.5s infinite;
    opacity: 1;
    cursor: pointer;
    z-index: 10;
}

.arrow {
    display: inline-block;
    font-size: 5vh;
    color: white;
}

@keyframes bounce {

    0%,
    50%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    75% {
        transform: translateX(-50%) translateY(5px);
    }
}

#about {
    position: relative;
    background-color: #000;
    padding: 8vh 5vw;
    text-align: center;
    overflow: hidden;
    scroll-margin-top: 12vh;
    box-shadow: 0 4vh 6vh rgba(0, 0, 0, 0.4);
}

#about * {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.aboutText {
    width: 55vw;
    max-width: 750px;
    min-width: 280px;
    margin: 0 auto;
}

.about h2 {
    font-size: clamp(1.8rem, 3vw, 3rem);
    margin-bottom: 2vh;
    font-weight: 600;
    color: #f8f9fa;
}

.about p {
    font-size: clamp(1rem, 1.5vw, 1.4rem);
    line-height: 1.7;
    color: #f8f9fa;
    opacity: 0.9;
    margin-top: 2vh;
    text-align: center;
}

.about {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#pricing {
    background: linear-gradient(135deg, #0E3647, #2BCAB3);
    font-family: Roboto;
    text-align: center;
    scroll-margin-top: 10vh;
    padding-top: 30px;
    padding-bottom: 30px;
}

.pricing-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #f5f5f5;
}

.offers-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 0 auto;
}

.offer-box {
    display: flex;
    flex-direction: column;
    width: 15vw;
    background: #000000;
    color: #f5f5f5;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.title-underline {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #41E2CC, #00A890);
    margin: 5px auto 15px auto;
    border-radius: 5px;
}

.offer-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(65, 226, 204, 0.5);
}

.offer-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #41E2CC;
}

.offer-box ul,
.custom-package ul {
    list-style: none;
    margin: 0 0 20px 0;
    padding: 0;
    text-align: center;
}

.offer-box ul li,
.custom-package ul li {
    margin: 8px 0;
    color: #f5f5f5;
}

.offer-bottom {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.price {
    font-size: 1.1rem;
}

.price-alt {
    font-size: 0.85rem;
    color: #9faeb3;
}

.offer-box button {
    background: #41E2CC;
    color: #000;
    border: none;
    border-radius: 8px;
    padding: 10px 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: auto;
}

.offer-box button:hover {
    background: #fff;
}

.custom-package {
    border: 2px dashed #41E2CC;
}

/*///////////////////// 
//////MAINTENANCE//////
/////////////////////*/

.maintenance-section {
    text-align: center;
    padding: 80px 20px;
    background: #000;
}

.maintenance-section h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.maintenance-subtitle {
    color: #cccccc;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.maintenance-card {
    max-width: 600px;
    margin: 0 auto;
    padding: 35px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(65, 226, 204, 0.25);
    /* your accent */
    box-shadow: 0 0 25px rgba(65, 226, 204, 0.15);
}

.maintenance-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    text-align: left;
}

.maintenance-card ul li {
    padding: 8px 0;
    color: #e0e0e0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.maintenance-card ul li:last-child {
    border-bottom: none;
}

.maintenance-price {
    margin-top: 20px;
    font-size: 1.2rem;
    color: #41E2CC;
}

.maintenance-price p {
    font-size: 0.9rem;
    color: #bbbbbb;
    margin-top: 5px;
}

.maintenance-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    background: #041419;
    border: 1px solid rgba(65, 226, 204, 0.4);
    padding: 15px;
    border-radius: 10px;

    text-decoration: none;
    color: #f5f5f5;
    font-size: 1.1rem;
    font-weight: 500;

    transition: 0.25s ease;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;

    margin: 25px auto 0;
}

.maintenance-button i {
    font-size: 1.3rem;
    color: #41E2CC;
}

.maintenance-button:hover {
    background: #062125;
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(65, 226, 204, 0.4);
}

/*///////////////// 
//////CONTACT//////
/////////////////*/

#contact {
    background: linear-gradient(135deg, #0C1F2A 0%, #000000 100%);
    padding: 8vh 5vw;
    text-align: center;
}

#contact h2 {
    color: #f5f5f5;
    font-size: 2.4rem;
    margin-bottom: 12px;
}

.contact-subtitle {
    color: #cfcfcf;
    font-size: 1rem;
    margin-bottom: 40px;
}

.contact-panel {
    background: #0b0f12;
    border: 1px solid rgba(65, 226, 204, 0.25);
    border-radius: 15px;
    width: 40%;
    margin: 0 auto;
    padding: 4vh 3vw;

    display: flex;
    flex-direction: column;
    gap: 20px;

    box-shadow: 0 0 20px rgba(65, 226, 204, 0.15);
}

.contact-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    background: #041419;
    border: 1px solid rgba(65, 226, 204, 0.4);
    padding: 15px;
    border-radius: 10px;

    text-decoration: none;
    color: #f5f5f5;
    font-size: 1.1rem;
    font-weight: 500;

    transition: 0.25s ease;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;

    width: 100%;
}

.contact-button i {
    font-size: 1.3rem;
    color: #41E2CC;
}

.contact-button:hover {
    background: #062125;
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(65, 226, 204, 0.4);
}

/*////////////////// 
///////FOOTER///////
//////////////////*/

/* General Footer */
footer {
    width: 100%;
    background-color: #000;
    color: #41E2CC;
    padding: 20px 2%;
    box-shadow: 0 -15px 35px rgba(0, 0, 0, 0.35);
    position: relative;
    font-family: monospace;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* Footer Logo */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    width: 80px;
    height: 80px;
    /*border: 2px solid #41E2CC;*/
}

/* Desktop Layout */
.footer-desktop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer-nav a {
    font-size: 20px;
    color: #41E2CC;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: white;
}

.f-socials a {
    font-size: 20px;
    margin: 0 10px;
    color: #41E2CC;
    transition: color 0.3s ease;
}

.f-socials a:hover {
    color: white;
}

/* HR Styling */
footer hr {
    border-color: #41E2CC;
    margin: 10px 0;
}

/* Copyright */
.copyright {
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
    margin-top: 10px;
}

.c-text {
    font-size: 0.9rem;
}

@media (max-width: 450px) {
    header nav {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        background-color: #000000;
        padding: 0 20px;
        gap: 15px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
        transition: max-height 0.5s ease, padding 0.3s ease;
    }

    header nav.show {
        max-height: 500px;
        padding: 20px;
    }

    .menu {
        display: flex;
    }

    .hero h1 {
        font-size: 1.7vh;
    }

    .hero p {
        font-size: 1.7vh;
    }

    .hero-logo {
        width: 50px;
        height: 50px;
        margin-top: 5%;
    }

    .social-icons a {
        font-size: 3vh;
    }

    .aboutText {
        width: 90%;
        text-align: center;
    }

    .about p {
        text-align: center;
    }

    .text {
        width: 90%;
    }

    #pricing * {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .pricing-title {
        font-size: 200%;
    }

    .offers-container {
        flex-direction: column;
    }

    .maintenance-section h2 {
        font-size: 1.8rem;
    }

    .maintenance-subtitle {
        font-size: 0.9rem;
    }

    .contact-panel {
        width: 90%;
        padding: 5vh 4vw;
    }

    .contact-button {
        font-size: 1rem;
        padding: 12px;
    }

    #contact h2 {
        font-size: 2rem;
    }

    .offer-box {
        width: 90vw;
    }

    .footer-nav {
        display: none;
    }

    .footer-logo {
        align-items: center;
        gap: 10px;
        margin-bottom: 15px;
    }

    .footer-logo h2 {
        font-size: 0.8rem;
    }

    .logo {
        width: 50px;
        height: 50px;
    }

    .f-socials {
        display: flex;
        justify-content: center;
        gap: 15px;
        width: 100%;
    }

    .f-socials a {
        font-size: 20px;
        color: #41E2CC;
    }

    footer hr {
        margin: 15px 0;
    }

    .copyright .c-text {
        font-size: 0.7rem;
        color: #41E2CC;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
    }
}