/* ========================
   GLOBAL RESET & BASE
======================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}
html, body {
    height: 100%; /* full viewport height */
    margin: 0;
    display: flex;
    flex-direction: column;
    background-color: #0b0b0b;
    color: #fff;
}
body {
    background-color: #0b0b0b;
    color: #fff;
    line-height: 1.6;
    font-size: 16px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ========================
   TOP NAVIGATION
======================== */
.nalo-top-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(15, 15, 15, 0.95);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 30px;
    z-index: 999;
    backdrop-filter: blur(6px);
}

.nav-left .logo {
    display: flex;
    align-items: center;
}

.nav-left .nalo-logo-standard {
    width: 80px;
    height: 80px;
    background: url('images/nalo.png') no-repeat center/contain;
}

.nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-links-wrapper {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-item {
    padding: 8px 16px;
    border-radius: 999px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-item:hover, .nav-item.active {
    background-color: rgba(0, 255, 255, 0.1);
    color: #00fbff;
}

/* Small links like TOS/Privacy */
.nav-item.small-link {
    font-size: 12px;
    opacity: 0.7;
}

/* ========================
   DROPDOWN MENU
======================== */
.nav-item.dropdown {
    position: relative;
}

.dropdown-trigger i {
    margin-left: 5px;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 120%;
    left: 0;
    background-color: rgba(25, 25, 25, 0.95);
    border-radius: 12px;
    min-width: 250px;
    padding: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
    z-index: 999;
    flex-direction: column;
    gap: 10px;
}

.dropdown-content a {
    padding: 10px 15px;
    border-radius: 999px;
    transition: all 0.3s ease;
    display: block;
}

.dropdown-content a:hover {
    background-color: #00fbff;
    color: #000;
}

.mega-dropdown .service-header {
    font-weight: 700;
    margin-bottom: 8px;
    color: #00fbff;
}

.close-x {
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
    font-size: 18px;
    color: #fff;
}

/* ========================
   MOBILE TOGGLE
======================== */
.nav-mobile-toggle {
    display: none;
    cursor: pointer;
    font-size: 22px;
    color: #fff;
}

/* ========================
   CONTAINER & LOGO
======================== */
.container {
    flex: 1; /* fills remaining space above footer */
    max-width: 1200px;
    margin: 120px auto 0; /* leave space for top nav */
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Rainbow Logo */
.rainbow-logo {
    width: 200px;
    height: 200px;
    -webkit-mask: url('images/nalo.png') no-repeat center/contain;
    mask: url('images/nalo.png') no-repeat center/contain;
    background: linear-gradient(90deg, #00fbff, #7000ff, #ff00d0);
    background-size: 300% 100%;
    animation: rainbow-blue-purple-pink 4s linear infinite;
    margin: 0 auto;
}

@keyframes rainbow-blue-purple-pink {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ========================
   HEADINGS & TEXT
======================== */
h1, h2, h3 {
    font-weight: 700;
}

h1 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #aaa;
    max-width: 650px;
    margin: 0 auto;
}

/* ========================
   FEATURES
======================== */
.feature-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
    gap: 40px;
    flex-wrap: wrap;
    background-color: rgba(25, 25, 25, 0.75);
    border-radius: 16px;
}

.feature-content {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: center;
}

.feature-content.reverse {
    flex-direction: row-reverse;
}

.feature-image-wrapper {
    flex: 1 1 300px;
}

.feature-image-wrapper img.popout-img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.7);
    transition: transform 0.3s ease;
}

.feature-image-wrapper img.popout-img:hover {
    transform: scale(1.05);
}

.feature-text {
    flex: 1 1 300px;
}

.feature-text h2 {
    margin-bottom: 15px;
    color: #00fbff;
}

.feature-text p {
    margin-bottom: 15px;
    color: #ccc;
}

/* ========================
   BUTTONS
======================== */
.btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 999px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: #fff;
    color: #000;
}

.btn-primary:hover {
    background-color: #00fbff;
    color: #000;
}

.btn-outline {
    border: 2px solid #00fbff;
    color: #00fbff;
    background: transparent;
}

.btn-outline:hover {
    background-color: #00fbff;
    color: #000;
}

/* Appeal Box */
.appeal-box {
    margin-top: 20px;
}

/* ========================
   TRUSTED BY SECTION
======================== */
section img {
    max-width: 240px;
    display: block;
    margin: 0 auto;
}

/* ========================
   FOOTER FIX - FULL WIDTH
======================== */
/* ========================
   FOOTER FULL-WIDTH BACKGROUND
======================== */
footer {
    width: 100%; /* stretch full width */
    text-align: center;
    padding: 40px 20px;
    background-color: rgba(15, 15, 15, 0.95);
    border-top: 1px solid #222;
    position: relative;
}

footer > * {
    max-width: 1200px; /* keep content aligned like container */
    margin: 0 auto;    /* center content horizontally */
}

footer .social-group {
    margin-bottom: 15px;
}

footer .social-btn {
    margin: 0 8px;
    color: #00fbff;
    font-size: 18px;
    transition: all 0.3s ease;
}

footer .social-btn:hover {
    color: #fff;
}

footer .footer-links a {
    margin: 0 10px;
    font-size: 14px;
    color: #888;
    transition: all 0.3s ease;
}

footer .footer-links a:hover {
    color: #00fbff;
}

footer .copyright {
    margin-top: 10px;
    font-size: 13px;
    color: #555;
}

/* ========================
   RESPONSIVE
======================== */
@media screen and (max-width: 1024px) {
    .feature-section {
        flex-direction: column;
    }

    .feature-content.reverse {
        flex-direction: column;
    }

    .nav-links-wrapper {
        display: none;
        flex-direction: column;
        background-color: rgba(15, 15, 15, 0.95);
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        padding: 20px;
        border-radius: 0 0 12px 12px;
        gap: 10px;
    }

    .nav-links-wrapper.active {
        display: flex;
    }

    .nav-mobile-toggle {
        display: block;
    }
}