/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #000 0%, #121212 50%, #000 100%);
    color: #fff;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #121212;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #0ff, #8a2be2);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #8a2be2, #0ff);
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000 0%, #121212 50%, #000 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease;
}

.loading-content {
    text-align: center;
}

.loading-animation {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    position: relative;
}

.loading-text {
    font-size: 1.2rem;
    color: #0ff;
    text-shadow: 0 0 10px #0ff;
    animation: pulse 2s infinite;
}

/* Matrix Animation */
.matrix-rain {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.matrix-char {
    position: absolute;
    color: #0ff;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    animation: matrixFall 3s linear infinite;
}

@keyframes matrixFall {
    0% {
        transform: translateY(-100px);
        opacity: 1;
    }
    100% {
        transform: translateY(200px);
        opacity: 0;
    }
}

/* Particle Animation */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    background: #0ff;
    border-radius: 50%;
    animation: particleFloat 4s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-30px) scale(1.2);
        opacity: 1;
    }
}

/* Server Core Animation */
.server-core {
    width: 80px;
    height: 80px;
    border: 3px solid #0ff;
    border-radius: 50%;
    position: relative;
    animation: coreRotate 2s linear infinite;
}

.server-core::before,
.server-core::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 60%;
    border: 2px solid #8a2be2;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.server-core::after {
    width: 40%;
    height: 40%;
    border-color: #0ff;
    animation: coreRotateReverse 1.5s linear infinite;
}

@keyframes coreRotate {
    0% {
        transform: rotate(0deg);
        box-shadow: 0 0 20px #0ff;
    }
    100% {
        transform: rotate(360deg);
        box-shadow: 0 0 30px #0ff;
    }
}

@keyframes coreRotateReverse {
    0% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 255, 255, 0.3);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #0ff;
    text-shadow: 0 0 5px #0ff;
}

.nav-logo i {
    margin-right: 10px;
    font-size: 1.8rem;
}

.logo-img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    border-radius: 8px;
    filter: drop-shadow(0 0 8px rgba(0, 255, 255, 0.5));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #0ff;
    background: rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.ai-link {
    background: linear-gradient(45deg, #8a2be2, #0ff) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    animation: aiGlow 2s ease-in-out infinite alternate;
    font-weight: bold;
}

.ai-link:hover {
    background: linear-gradient(45deg, #0ff, #8a2be2) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    text-shadow: 0 0 10px #0ff !important;
}

@keyframes aiGlow {
    0% {
        filter: drop-shadow(0 0 2px #8a2be2);
    }
    100% {
        filter: drop-shadow(0 0 5px #0ff);
    }
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 8px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 12px 20px;
    border-radius: 0;
    margin: 0;
}

.dropdown-content a:hover {
    background: rgba(0, 255, 255, 0.1);
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #0ff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(138, 43, 226, 0.3) 50%,
        rgba(0, 255, 255, 0.2) 100%
    );
    z-index: -1;
}

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero-3d {
    perspective: 1000px;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 20px;
    transform: rotateX(15deg);
    animation: heroFloat 6s ease-in-out infinite;
}

.glitch {
    position: relative;
    color: #0ff;
    text-shadow: 
        0 0 5px #0ff,
        0 0 10px #0ff;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    animation: glitch-1 0.5s infinite linear alternate-reverse;
    color: #ff0040;
    z-index: -1;
}

.glitch::after {
    animation: glitch-2 0.5s infinite linear alternate-reverse;
    color: #00ff40;
    z-index: -2;
}

@keyframes glitch-1 {
    0% {
        transform: translateX(0);
    }
    20% {
        transform: translateX(-2px);
    }
    40% {
        transform: translateX(-2px);
    }
    60% {
        transform: translateX(2px);
    }
    80% {
        transform: translateX(2px);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes glitch-2 {
    0% {
        transform: translateX(0);
    }
    20% {
        transform: translateX(2px);
    }
    40% {
        transform: translateX(2px);
    }
    60% {
        transform: translateX(-2px);
    }
    80% {
        transform: translateX(-2px);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes heroFloat {
    0%, 100% {
        transform: rotateX(15deg) translateY(0);
    }
    50% {
        transform: rotateX(15deg) translateY(-10px);
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
    animation: fadeInUp 1s ease 0.5s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 1s both;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* Page Hero */
.page-hero {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}

.page-hero-content {
    text-align: center;
    z-index: 1;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #0ff;
    text-shadow: 0 0 20px #0ff;
}

.page-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: transparent;
    border: 2px solid #0ff;
    color: #0ff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    background: rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(45deg, #0ff, #8a2be2);
    border: none;
    color: #000;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #8a2be2, #0ff);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.7);
}

.btn-secondary {
    border-color: #8a2be2;
    color: #8a2be2;
}

.btn-secondary:hover {
    background: rgba(138, 43, 226, 0.1);
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.5);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #0ff;
    color: #0ff;
}

/* Glass Card Effect */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: 0 12px 40px rgba(0, 255, 255, 0.2);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #0ff;
    text-shadow: 0 0 20px #0ff;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, #0ff, #8a2be2);
    border-radius: 2px;
}

.section-description {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Section */
.features {
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.8) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.feature-card:hover::before {
    transform: translateX(100%);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #0ff;
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.2);
}

.feature-icon {
    font-size: 3rem;
    color: #0ff;
    margin-bottom: 20px;
    text-shadow: 0 0 20px #0ff;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Hosting Preview */
.hosting-preview {
    background: rgba(138, 43, 226, 0.1);
}

.hosting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.hosting-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hosting-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.3);
    border-color: #8a2be2;
}

.hosting-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.hosting-card:hover img {
    transform: scale(1.1);
}

.hosting-content {
    padding: 25px;
}

.hosting-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #0ff;
}

.hosting-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Services Section */
.services-section {
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.8) 0%, rgba(0, 0, 0, 0.9) 100%);
    margin-bottom: 30px;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.plan-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.1), rgba(138, 43, 226, 0.1));
    opacity: 0;
    transition: opacity 0.3s;
}

.plan-card:hover::before {
    opacity: 1;
}

.plan-card:hover {
    transform: translateY(-10px);
    border-color: #0ff;
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.3);
}

.plan-title {
    font-size: 1.8rem;
    color: #0ff;
    margin-bottom: 20px;
    text-shadow: 0 0 10px #0ff;
}

.plan-specs {
    list-style: none;
    margin-bottom: 25px;
}

.plan-specs li {
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-specs li:last-child {
    border-bottom: none;
}

.plan-specs li::before {
    content: '✓';
    color: #0ff;
    font-weight: bold;
    margin-right: 10px;
}

.plan-price {
    font-size: 2rem;
    font-weight: bold;
    color: #8a2be2;
    margin-bottom: 25px;
    text-shadow: 0 0 10px #8a2be2;
}

/* About Page */
.about-content {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.2rem;
    color: #0ff;
    margin-bottom: 20px;
    text-shadow: 0 0 15px #0ff;
}

.about-text h3 {
    font-size: 1.5rem;
    color: #8a2be2;
    margin: 30px 0 15px;
}

.about-text p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-list i {
    color: #0ff;
    font-size: 1.2rem;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.3);
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.2) 0%, rgba(0, 255, 255, 0.1) 100%);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 255, 255, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #0ff;
    text-shadow: 0 0 20px #0ff;
    margin-bottom: 10px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

/* Technology Section */
.technology-section {
    padding: 80px 0;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.tech-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(138, 43, 226, 0.2);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-10px);
    border-color: #8a2be2;
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.3);
}

.tech-card i {
    font-size: 3rem;
    color: #8a2be2;
    margin-bottom: 20px;
    text-shadow: 0 0 20px #8a2be2;
}

.tech-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #fff;
}

.tech-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.2rem;
    color: #0ff;
    margin-bottom: 20px;
    text-shadow: 0 0 15px #0ff;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #0ff;
    box-shadow: 0 10px 20px rgba(0, 255, 255, 0.2);
}

.contact-method i {
    font-size: 2rem;
    color: #0ff;
    text-shadow: 0 0 10px #0ff;
}

.contact-method h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 5px;
}

.contact-method p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.contact-link {
    color: #8a2be2;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #0ff;
    text-shadow: 0 0 10px #0ff;
}

/* Contact Form */
.contact-form-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 40px;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.contact-form h3 {
    font-size: 1.8rem;
    color: #0ff;
    margin-bottom: 25px;
    text-align: center;
    text-shadow: 0 0 10px #0ff;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0ff;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Support Hours */
.support-hours {
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.8) 0%, rgba(0, 0, 0, 0.9) 100%);
    padding: 60px 0;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.hours-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.hours-card:hover {
    transform: translateY(-5px);
    border-color: #0ff;
    box-shadow: 0 15px 30px rgba(0, 255, 255, 0.2);
}

.hours-card i {
    font-size: 2.5rem;
    color: #0ff;
    margin-bottom: 15px;
    text-shadow: 0 0 15px #0ff;
}

.hours-card h3 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 10px;
}

.hours-card p {
    color: rgba(255, 255, 255, 0.8);
}

/* AI Interface */
.ai-interface {
    min-height: calc(100vh - 80px);
    margin-top: 80px;
    padding: 40px 0;
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.9) 0%, rgba(0, 0, 0, 0.95) 100%);
}

.ai-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
    margin-bottom: 30px;
}

.ai-status {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ai-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #0ff, #8a2be2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #000;
    animation: aiPulse 2s ease-in-out infinite;
}

@keyframes aiPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
    }
    50% {
        box-shadow: 0 0 40px rgba(138, 43, 226, 0.7);
    }
}

.ai-info h1 {
    font-size: 2rem;
    color: #0ff;
    margin: 0;
    text-shadow: 0 0 15px #0ff;
}

.ai-info p {
    color: rgba(255, 255, 255, 0.8);
    margin: 5px 0 0;
}

.ai-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-status {
    padding: 8px 16px;
    background: linear-gradient(45deg, #8a2be2, #0ff);
    border-radius: 20px;
    color: #000;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Admin Controls */
.admin-controls {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

.admin-controls h3 {
    font-size: 1.8rem;
    color: #8a2be2;
    margin-bottom: 25px;
    text-align: center;
    text-shadow: 0 0 15px #8a2be2;
}

.admin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.admin-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
}

.admin-card:hover {
    border-color: #8a2be2;
    box-shadow: 0 10px 20px rgba(138, 43, 226, 0.2);
}

.admin-card h4 {
    font-size: 1.2rem;
    color: #0ff;
    margin-bottom: 15px;
}

.admin-card input,
.admin-card textarea {
    width: 100%;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.admin-card input:focus,
.admin-card textarea:focus {
    outline: none;
    border-color: #0ff;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

/* AI Chat Container */
.ai-chat-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 60vh;
    display: flex;
    flex-direction: column;
}

.ai-chat-messages {
    flex: 1;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 15px 15px 0 0;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ai-message,
.user-message {
    display: flex;
    gap: 15px;
    max-width: 80%;
    animation: messageSlide 0.3s ease;
}

.user-message {
    align-self: flex-end;
    flex-direction: row-reverse;
}

@keyframes messageSlide {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.message-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.ai-message .message-avatar {
    background: linear-gradient(45deg, #0ff, #8a2be2);
    color: #000;
}

.user-message .message-avatar {
    background: linear-gradient(45deg, #8a2be2, #0ff);
    color: #000;
}

.message-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 15px 20px;
    flex: 1;
}

.ai-message .message-content {
    border-color: rgba(0, 255, 255, 0.2);
}

.user-message .message-content {
    border-color: rgba(138, 43, 226, 0.2);
    background: rgba(138, 43, 226, 0.1);
}

.message-content p {
    margin: 0;
    color: #fff;
    line-height: 1.6;
}

.message-content ul {
    margin: 10px 0;
    padding-left: 20px;
}

.message-content li {
    color: rgba(255, 255, 255, 0.9);
    margin: 5px 0;
}

.ai-chat-input {
    display: flex;
    gap: 10px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-top: none;
    border-radius: 0 0 15px 15px;
}

.ai-chat-input input {
    flex: 1;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.ai-chat-input input:focus {
    outline: none;
    border-color: #0ff;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.ai-chat-input button {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #0ff, #8a2be2);
    border: none;
    border-radius: 50%;
    color: #000;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ai-chat-input button:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.4);
}

/* AI Preview */
.ai-preview {
    padding: 80px 0;
}

.ai-preview-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.ai-preview-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.ai-preview-image {
    width: 100%;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.ai-preview-image:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.3);
}

.ai-preview-text h2 {
    font-size: 2.5rem;
    color: #0ff;
    margin-bottom: 20px;
    text-shadow: 0 0 20px #0ff;
}

.ai-preview-text p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.modal-content {
    max-width: 400px;
    width: 90%;
    padding: 40px;
    text-align: center;
}

.modal-content h2 {
    font-size: 2rem;
    color: #0ff;
    margin-bottom: 15px;
    text-shadow: 0 0 15px #0ff;
}

.modal-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.login-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Legal Content */
.legal-content {
    padding: 40px 0 80px;
}

.legal-document {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
}

.legal-header {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
    padding-bottom: 20px;
}

.legal-header h2 {
    font-size: 2.5rem;
    color: #0ff;
    margin-bottom: 10px;
    text-shadow: 0 0 15px #0ff;
}

.last-updated {
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

.legal-section {
    margin-bottom: 30px;
}

.legal-section h3 {
    font-size: 1.5rem;
    color: #8a2be2;
    margin-bottom: 15px;
    text-shadow: 0 0 10px #8a2be2;
}

.legal-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 15px;
}

.legal-section ul {
    margin: 15px 0;
    padding-left: 30px;
}

.legal-section li {
    color: rgba(255, 255, 255, 0.8);
    margin: 8px 0;
    line-height: 1.6;
}

.legal-section a {
    color: #0ff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.legal-section a:hover {
    text-shadow: 0 0 10px #0ff;
}

/* Chat Bubble */
.chat-bubble {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #0ff, #8a2be2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    font-size: 1.5rem;
    color: #000;
    box-shadow: 0 5px 20px rgba(0, 255, 255, 0.3);
    transition: all 0.3s ease;
    animation: chatBubblePulse 2s ease-in-out infinite;
}

.chat-bubble:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 255, 255, 0.5);
}

@keyframes chatBubblePulse {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(0, 255, 255, 0.3);
    }
    50% {
        box-shadow: 0 5px 30px rgba(138, 43, 226, 0.5);
    }
}

/* Chat Window */
.chat-window {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 350px;
    height: 450px;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    display: none;
    flex-direction: column;
    z-index: 1001;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.chat-header {
    background: linear-gradient(45deg, #0ff, #8a2be2);
    color: #000;
    padding: 15px 20px;
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}

.close-chat {
    background: none;
    border: none;
    color: #000;
    font-size: 1.5rem;
    cursor: pointer;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.close-chat:hover {
    background: rgba(0, 0, 0, 0.2);
}

.chat-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chat-input-container {
    display: flex;
    padding: 15px;
    gap: 10px;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
}

.chat-input-container input {
    flex: 1;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    color: #fff;
    font-size: 0.9rem;
}

.chat-input-container input:focus {
    outline: none;
    border-color: #0ff;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.chat-input-container button {
    width: 35px;
    height: 35px;
    background: linear-gradient(45deg, #0ff, #8a2be2);
    border: none;
    border-radius: 50%;
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.chat-input-container button:hover {
    transform: scale(1.1);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.95) 0%, rgba(0, 0, 0, 0.98) 100%);
    border-top: 1px solid rgba(0, 255, 255, 0.2);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.5rem;
    color: #0ff;
    margin-bottom: 20px;
    text-shadow: 0 0 10px #0ff;
}

.footer-section h4 {
    font-size: 1.2rem;
    color: #8a2be2;
    margin-bottom: 15px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: #0ff;
    text-shadow: 0 0 5px #0ff;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(0, 255, 255, 0.2);
    border-color: #0ff;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glow {
    0%, 100% {
        text-shadow: 0 0 20px #0ff;
    }
    50% {
        text-shadow: 0 0 40px #0ff, 0 0 60px #0ff;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(18, 18, 18, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(0, 0, 0, 0.5);
        border: none;
        border-radius: 0;
        box-shadow: none;
        margin-top: 10px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-grid,
    .contact-grid,
    .ai-preview-header {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .chat-window {
        width: calc(100vw - 40px);
        right: 20px;
        bottom: 80px;
    }

    .ai-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .ai-chat-container {
        height: 50vh;
    }

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

    .login-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid,
    .hosting-grid,
    .plans-grid {
        grid-template-columns: 1fr;
    }

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

    .nav-container {
        padding: 0 15px;
    }

    .container {
        padding: 0 15px;
    }

    section {
        padding: 60px 0;
    }

    .chat-bubble {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .chat-bubble,
    .chat-window,
    .loading-screen,
    .hero-particles {
        display: none !important;
    }

    body {
        background: white !important;
        color: black !important;
    }

    .glass-card {
        background: white !important;
        border: 1px solid #ccc !important;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .btn {
        border-width: 3px;
    }

    .glass-card {
        border-width: 2px;
    }

    .feature-card,
    .hosting-card,
    .plan-card {
        border-width: 2px;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .loading-animation {
        animation: none;
    }

    .hero-particles {
        display: none;
    }
}
/* Fix excessive text glow effects */

/* Reduce hero title glow */
.hero h1 {
    text-shadow: 0 0 10px #0ff !important;
}

/* Reduce section heading glow */
.section h2, .section h3 {
    text-shadow: 0 0 8px #0ff !important;
}

/* Reduce button glow */
.btn:hover {
    text-shadow: 0 0 8px currentColor !important;
}

/* Reduce AI animation glow */
@keyframes aiGlow {
    0% {
        text-shadow: 0 0 5px #8a2be2 !important;
    }
    100% {
        text-shadow: 0 0 10px #0ff !important;
    }
}

/* Reduce plan card glow */
.plan-card:hover h3 {
    text-shadow: 0 0 8px #0ff !important;
}

/* Reduce footer heading glow */
.footer h3, .footer h4 {
    text-shadow: 0 0 5px #0ff !important;
}

/* Reduce loading text glow */
.loading-text {
    text-shadow: 0 0 8px #0ff !important;
}