:root {
    --primary: #00f3ff;
    --secondary: #bc13fe;
    --bg-dark: #050505;
    --bg-card: rgba(255, 255, 255, 0.05);
    --text-light: #ffffff;
    --text-gray: #a0a0a0;
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Custom Cursor */
.cursor {
    width: 10px;
    height: 10px;
    border: 1px solid var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.2s;
}

.cursor-follower {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(0, 243, 255, 0.3);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.1s;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    font-size: 1.1rem;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.btn-glow {
    padding: 8px 20px;
    border: 1px solid var(--primary);
    border-radius: 5px;
    color: var(--primary) !important;
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.2);
}

.btn-glow:hover {
    background: var(--primary);
    color: var(--bg-dark) !important;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.6);
}

.btn-glow::after {
    display: none;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10%;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 50%, rgba(188, 19, 254, 0.15), transparent 50%);
    z-index: -1;
}

.hero-content {
    max-width: 600px;
    z-index: 1;
}

.glitch {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 900;
    position: relative;
    color: var(--text-light);
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 2px;
    text-shadow: -1px 0 var(--primary);
    clip: rect(24px, 550px, 90px, 0);
    animation: glitch-anim-2 3s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -1px 0 var(--secondary);
    clip: rect(85px, 550px, 140px, 0);
    animation: glitch-anim 2.5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% {
        clip: rect(14px, 9999px, 127px, 0);
    }

    20% {
        clip: rect(8px, 9999px, 16px, 0);
    }

    40% {
        clip: rect(138px, 9999px, 86px, 0);
    }

    60% {
        clip: rect(24px, 9999px, 108px, 0);
    }

    80% {
        clip: rect(65px, 9999px, 34px, 0);
    }

    100% {
        clip: rect(109px, 9999px, 56px, 0);
    }
}

@keyframes glitch-anim-2 {
    0% {
        clip: rect(129px, 9999px, 36px, 0);
    }

    20% {
        clip: rect(36px, 9999px, 4px, 0);
    }

    40% {
        clip: rect(82px, 9999px, 122px, 0);
    }

    60% {
        clip: rect(11px, 9999px, 110px, 0);
    }

    80% {
        clip: rect(74px, 9999px, 83px, 0);
    }

    100% {
        clip: rect(145px, 9999px, 96px, 0);
    }
}

.subtitle {
    font-size: 1.5rem;
    color: var(--primary);
    letter-spacing: 3px;
    margin-bottom: 20px;
    font-weight: 600;
}

.description {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--secondary), var(--primary));
    z-index: -1;
    transition: var(--transition);
    opacity: 0;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(188, 19, 254, 0.4);
}

.btn-secondary {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    color: var(--text-light);
    text-decoration: none;
    border: 2px solid var(--secondary);
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--secondary);
    box-shadow: 0 0 20px rgba(188, 19, 254, 0.4);
}

/* Hero Visual Animation */
.hero-visual {
    position: relative;
    width: 400px;
    height: 400px;
}

.sphere {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(0, 243, 255, 0.2), rgba(0, 0, 0, 0.8));
    box-shadow: 0 0 50px rgba(0, 243, 255, 0.3), inset 0 0 50px rgba(188, 19, 254, 0.3);
    animation: float 6s ease-in-out infinite;
    position: relative;
}

.sphere::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: pulse 4s infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.5;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
}

/* Packages Section */
.packages {
    padding: 100px 10%;
    background: #050505;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.package-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}

.package-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(0, 243, 255, 0.1);
}

.package-card.popular {
    border-color: var(--secondary);
    background: linear-gradient(180deg, rgba(188, 19, 254, 0.05) 0%, rgba(5, 5, 5, 0) 100%);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--secondary);
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.package-header h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 10px;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 30px;
    font-family: var(--font-heading);
}

.price span {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 400;
}

.package-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.package-features li {
    margin-bottom: 15px;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-features li i {
    color: var(--secondary);
}

/* Speed Test Section */
.speedtest {
    padding: 100px 10%;
    background: linear-gradient(to right, #080808, #050505);
    position: relative;
    overflow: hidden;
}

.speedtest-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.speedtest-content {
    flex: 1;
}

.speedtest-content h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 20px;
}

.speedtest-content p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.speedtest-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.meter {
    width: 300px;
    height: 150px;
    background: linear-gradient(to right, var(--secondary), var(--primary));
    border-top-left-radius: 150px;
    border-top-right-radius: 150px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(0, 243, 255, 0.2);
}

.meter::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 260px;
    height: 130px;
    background: #080808;
    border-top-left-radius: 130px;
    border-top-right-radius: 130px;
}

.needle {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 4px;
    height: 140px;
    background: white;
    transform-origin: bottom center;
    transform: rotate(-90deg);
    z-index: 10;
    transition: transform 2s cubic-bezier(0.1, 0, 0.1, 1);
    animation: speedtest-anim 4s infinite alternate;
}

@keyframes speedtest-anim {
    0% {
        transform: rotate(-80deg);
    }

    30% {
        transform: rotate(-20deg);
    }

    60% {
        transform: rotate(40deg);
    }

    100% {
        transform: rotate(80deg);
    }
}

/* Infrastructure Section */
.infrastructure {
    padding: 100px 10%;
    background: #050505;
    text-align: center;
}

.infra-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 60px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.infra-container h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.infra-container p {
    color: var(--text-gray);
    margin-bottom: 40px;
}

.infra-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.infra-form .form-group {
    margin: 0;
}

.infra-form select {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 1rem;
    cursor: pointer;
}

.infra-form select:focus {
    outline: none;
    border-color: var(--primary);
}

.infra-form button {
    grid-column: span 2;
    margin-top: 20px;
    border: none;
    cursor: pointer;
}

/* Features Section */
.features {
    padding: 100px 10%;
    background: #080808;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 60px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 243, 255, 0.1);
}

.feature-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-gray);
}

/* About Section */
.about {
    padding: 100px 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, #080808, #050505);
}

.about-content {
    max-width: 800px;
    text-align: center;
}

.about-content h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 30px;
    color: var(--secondary);
}

.about-content p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 50px;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.stat-item {
    text-align: center;
}

.count {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--primary);
    font-weight: 700;
}

.label {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Contact Section */
.contact {
    padding: 100px 10%;
    background: #050505;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: var(--bg-card);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--secondary);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #080808;
    border: 1px solid var(--primary);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    position: relative;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 0 50px rgba(0, 243, 255, 0.2);
    animation: modalSlideIn 0.4s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    color: var(--text-gray);
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--primary);
}

.modal-icon {
    font-size: 4rem;
    color: #00ff88;
    margin-bottom: 20px;
}

.modal h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.modal p {
    color: var(--text-gray);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.modal-speed {
    font-size: 1.5rem !important;
    color: var(--primary) !important;
    font-weight: 700;
    margin-bottom: 30px !important;
}


/* Hosting Section */
.hosting {
    padding: 100px 10%;
    background: linear-gradient(to bottom, #050505, #080808);
}

.hosting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.hosting-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.hosting-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
    box-shadow: 0 10px 30px rgba(188, 19, 254, 0.15);
}

.hosting-card i {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.hosting-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.hosting-card p {
    color: var(--text-gray);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.hosting-price {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 25px;
}

.hosting-price span {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 400;
}

/* Fix Infrastructure Form Selects */
.infra-form select {
    width: 100%;
    padding: 15px;
    background: #0a0a0a;
    /* Dark background */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-light);
    /* White text */
    font-family: var(--font-body);
    font-size: 1rem;
    cursor: pointer;
    appearance: none;
    /* Remove default arrow */
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%2300f3ff%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: right 15px top 50%;
    background-size: 12px auto;
}

.infra-form select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.1);
}

.infra-form select option {
    background: #0a0a0a;
    color: var(--text-light);
}


/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: #FFF;
}


/* Error & Status Pages */
.full-screen-page {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #050505;
    position: relative;
    overflow: hidden;
}

.page-content {
    z-index: 2;
    padding: 2rem;
    max-width: 600px;
}

.page-content h1 {
    font-size: 8rem;
    font-family: var(--font-heading);
    color: transparent;
    -webkit-text-stroke: 2px var(--primary);
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(0, 243, 255, 0.3);
}

.page-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.page-content p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.page-icon {
    font-size: 5rem;
    color: var(--secondary);
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}

/* Hotspot Login */
.hotspot-container {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 400px;
}

.hotspot-form input {
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    margin-bottom: 15px;
    font-family: var(--font-body);
}

.hotspot-form input:focus {
    outline: none;
    border-color: var(--primary);
}


/* Bank Accounts Page */
.bank-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.bank-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.bank-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 243, 255, 0.15);
}

.bank-logo {
    height: 60px;
    margin-bottom: 20px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    /* Make logos white */
}

.bank-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.account-info {
    color: var(--text-gray);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.iban-container {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: var(--transition);
}

.iban-container:hover {
    border-color: var(--secondary);
    background: rgba(188, 19, 254, 0.1);
}

.iban-text {
    font-family: 'Courier New', monospace;
    color: var(--primary);
    font-weight: 700;
    font-size: 1rem;
}

.copy-icon {
    color: var(--text-gray);
}

.copy-tooltip {
    position: absolute;
    background: var(--secondary);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    top: -30px;
    right: 0;
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.1);
}

.infra-form select option {
    background: #0a0a0a;
    color: var(--text-light);
}


/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: #FFF;
}


/* Error & Status Pages */
.full-screen-page {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #050505;
    position: relative;
    overflow: hidden;
}

.page-content {
    z-index: 2;
    padding: 2rem;
    max-width: 600px;
}

.page-content h1 {
    font-size: 8rem;
    font-family: var(--font-heading);
    color: transparent;
    -webkit-text-stroke: 2px var(--primary);
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(0, 243, 255, 0.3);
}

.page-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.page-content p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.page-icon {
    font-size: 5rem;
    color: var(--secondary);
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}

/* Hotspot Login */
.hotspot-container {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 400px;
}

.hotspot-form input {
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    margin-bottom: 15px;
    font-family: var(--font-body);
}

.hotspot-form input:focus {
    outline: none;
    border-color: var(--primary);
}


/* Bank Accounts Page */
.bank-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.bank-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.bank-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 243, 255, 0.15);
}

.bank-logo {
    height: 60px;
    margin-bottom: 20px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    /* Make logos white */
}

.bank-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.account-info {
    color: var(--text-gray);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.iban-container {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: var(--transition);
}

.iban-container:hover {
    border-color: var(--secondary);
    background: rgba(188, 19, 254, 0.1);
}

.iban-text {
    font-family: 'Courier New', monospace;
    color: var(--primary);
    font-weight: 700;
    font-size: 1rem;
}

.copy-icon {
    color: var(--text-gray);
}

.copy-tooltip {
    position: absolute;
    background: var(--secondary);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    top: -30px;
    right: 0;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.show-tooltip {
    opacity: 1;
    top: 10px;
}

/* Footer */
footer {
    background: #020202;
    padding: 80px 10% 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-section h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-section p {
    color: var(--text-gray);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 15px;
}

.footer-section ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section ul li a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    gap: 20px;
}

.contact-form .form-group {
    margin-bottom: 0;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    background: #ffffff;
    /* White background */
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #000000;
    /* Black text */
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    padding: 15px;
    background: #ffffff;
    /* Keep white on focus */
    border: 1px solid var(--primary);
    /* Highlight border only */
    border-radius: 10px;
    color: #000000;
    margin-bottom: 15px;
    font-family: var(--font-body);
    outline: none;
}

.hotspot-form input:focus {
    outline: none;
    border-color: var(--primary);
}


/* Bank Accounts Page */
.bank-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.bank-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.bank-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 243, 255, 0.15);
}

.bank-logo {
    height: 60px;
    margin-bottom: 20px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    /* Make logos white */
}

.bank-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.account-info {
    color: var(--text-gray);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.iban-container {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: var(--transition);
}

.iban-container:hover {
    border-color: var(--secondary);
    background: rgba(188, 19, 254, 0.1);
}

.iban-text {
    font-family: 'Courier New', monospace;
    color: var(--primary);
    font-weight: 700;
    font-size: 1rem;
}

.copy-icon {
    color: var(--text-gray);
}

.copy-tooltip {
    position: absolute;
    background: var(--secondary);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    top: -30px;
    right: 0;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.show-tooltip {
    opacity: 1;
    top: 10px;
}

/* Footer */
footer {
    background: #020202;
    padding: 80px 10% 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-section h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-section p {
    color: var(--text-gray);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 15px;
}

.footer-section ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section ul li a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    gap: 20px;
}

.contact-form .form-group {
    margin-bottom: 0;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.1);
}

.contact-form button {
    align-self: flex-start;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger .line {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    margin: 5px;
    transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
    .navbar {
        padding: 20px 5%;
    }

    .hamburger {
        display: block;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        right: 0;
        top: 0;
        height: 100vh;
        background: rgba(5, 5, 5, 0.98);
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        z-index: 1000;
    }

    .nav-links.active {
        transform: translateX(0%);
    }

    .nav-links li {
        margin: 20px 0;
        opacity: 0;
        transform: translateX(50px);
        transition: all 0.5s ease;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }

    /* Stagger animation for links */
    .nav-links.active li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-links.active li:nth-child(2) {
        transition-delay: 0.2s;
    }

    .nav-links.active li:nth-child(3) {
        transition-delay: 0.3s;
    }

    .nav-links.active li:nth-child(4) {
        transition-delay: 0.4s;
    }

    .nav-links.active li:nth-child(5) {
        transition-delay: 0.5s;
    }

    .nav-links.active li:nth-child(6) {
        transition-delay: 0.6s;
    }

    .nav-links.active li:nth-child(7) {
        transition-delay: 0.7s;
    }

    .nav-links.active li:nth-child(8) {
        transition-delay: 0.8s;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}