/* ========================================
   XHosting Store - Modern Homepage Styles
   ======================================== */

/* Particles Background */
#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #16213e 100%);
}

/* ========================================
   Neon Title Animation
   ======================================== */
.neon-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    text-shadow: 
        0 0 5px rgba(0, 212, 255, 0.5),
        0 0 10px rgba(0, 212, 255, 0.3),
        0 0 20px rgba(0, 212, 255, 0.2);
    animation: neonPulse 2s ease-in-out infinite alternate;
}

.neon-title .neon-text {
    background: linear-gradient(90deg, #00d4ff, #00ff88, #00d4ff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: neonFlow 3s linear infinite;
}

@keyframes neonPulse {
    0% {
        text-shadow: 
            0 0 5px rgba(0, 212, 255, 0.5),
            0 0 10px rgba(0, 212, 255, 0.3),
            0 0 20px rgba(0, 212, 255, 0.2);
    }
    100% {
        text-shadow: 
            0 0 10px rgba(0, 212, 255, 0.8),
            0 0 20px rgba(0, 212, 255, 0.6),
            0 0 40px rgba(0, 212, 255, 0.4),
            0 0 60px rgba(0, 212, 255, 0.2);
    }
}

@keyframes neonFlow {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

.neon-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    background: linear-gradient(90deg, #00ff88, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        filter: hue-rotate(0deg);
    }
    50% {
        filter: hue-rotate(20deg);
    }
}

/* ========================================
   Glassmorphism Effects
   ======================================== */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 
        0 8px 32px 0 rgba(0, 0, 0, 0.37),
        inset 0 0 32px rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.3);
    box-shadow: 
        0 8px 32px 0 rgba(0, 0, 0, 0.4),
        0 0 40px rgba(0, 212, 255, 0.1),
        inset 0 0 32px rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.glass-nav {
    background: rgba(10, 10, 15, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-button {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 255, 136, 0.2));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.4);
    color: #00d4ff;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.glass-button:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.4), rgba(0, 255, 136, 0.4));
    border-color: rgba(0, 255, 136, 0.6);
    color: #fff;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
    transform: scale(1.05);
}

.glass-button-primary {
    background: linear-gradient(135deg, #00d4ff, #00ff88);
    border: none;
    color: #0a0a0f;
}

.glass-button-primary:hover {
    background: linear-gradient(135deg, #00ff88, #00d4ff);
    color: #0a0a0f;
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.6);
}

.glass-input {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px 20px;
    color: #fff;
    transition: all 0.3s ease;
}

.glass-input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
    outline: none;
}

.glass-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   Enhanced Navigation
   ======================================== */
.navbar {
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    background: linear-gradient(90deg, #00d4ff, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
    padding: 10px 15px !important;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #00d4ff !important;
    background: rgba(0, 212, 255, 0.1);
}

.nav-link::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff, #00ff88);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* ========================================
   Hero Section Enhancements
   ======================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 0;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.hero-stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.hero-stat-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 50%;
    font-size: 1.2rem;
    color: #00d4ff;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

/* ========================================
   Server Mockup - Enhanced
   ======================================== */
.server-mockup {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(0, 212, 255, 0.1);
}

.mockup-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mockup-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.mockup-title {
    margin-left: 15px;
    font-family: 'Courier New', monospace;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.mockup-content {
    padding: 25px;
    background: rgba(0, 0, 0, 0.3);
    min-height: 300px;
}

.command-line {
    display: flex;
    align-items: center;
    gap: 10px;
}

.prompt {
    color: #00d4ff;
    font-family: 'Courier New', monospace;
    font-weight: 600;
}

.cursor {
    color: #00ff88;
    font-family: 'Courier New', monospace;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.command-output {
    font-family: 'Courier New', monospace;
}

.command-output p {
    margin: 8px 0;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ========================================
   Feature Cards - Glassmorphism
   ======================================== */
.feature-card {
    padding: 30px;
    transition: all 0.3s ease;
}

.feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

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

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

/* ========================================
   Service Cards
   ======================================== */
.service-card {
    padding: 40px;
    transition: all 0.3s ease;
}

.service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.service-card h3 {
    color: #fff;
    font-size: 1.5rem;
}

.service-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.service-card ul li {
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 0;
}

/* ========================================
   Pricing Cards
   ======================================== */
.pricing-card {
    padding: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    border: 2px solid rgba(0, 212, 255, 0.5) !important;
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.2);
}

.pricing-card .card-header {
    padding: 30px;
    background: rgba(255, 255, 255, 0.03) !important;
}

.pricing-card .card-body {
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
}

.pricing-card .card-footer {
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
}

.pricing-card h4 {
    color: #fff;
    font-size: 1.4rem;
}

.price-wrapper {
    margin-top: 20px;
}

.price-currency {
    font-size: 1.5rem;
    color: #00d4ff;
    vertical-align: top;
}

.price-value {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
}

.price-period {
    color: rgba(255, 255, 255, 0.5);
}

.pricing-features li {
    color: rgba(255, 255, 255, 0.8);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* ========================================
   Contact Form
   ======================================== */
.contact-card {
    padding: 50px;
    border-radius: 20px;
}

.contact-card label {
    color: rgba(255, 255, 255, 0.8);
}

.contact-card .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px 20px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-card .form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
    outline: none;
}

.contact-card .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* ========================================
   Footer
   ======================================== */
.footer-section {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-section h5 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-section h6 {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 15px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    padding: 5px 0;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: #00d4ff;
    transform: translateX(5px);
}

.footer-section ul li i {
    color: #00d4ff;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
}

.footer-bottom {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #00d4ff;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-link:hover {
    background: rgba(0, 212, 255, 0.2);
    color: #00d4ff;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.3);
}

/* ========================================
   Section Styling
   ======================================== */
.section-dark {
    background: rgba(0, 0, 0, 0.2);
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 50px;
}

/* ========================================
   Badge Styling
   ======================================== */
.badge {
    padding: 8px 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.75rem;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 992px) {
    .neon-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .mockup-content {
        min-height: 250px;
    }
}

@media (max-width: 768px) {
    .neon-title {
        font-size: 2rem;
    }
    
    .neon-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-section {
        padding: 80px 0;
        text-align: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .server-mockup {
        margin-top: 40px;
    }
    
    .contact-card {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .neon-title {
        font-size: 1.6rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .price-value {
        font-size: 2.5rem;
    }
}

/* ========================================
   Scroll Animations
   ======================================== */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

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

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #00d4ff, #00ff88);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #00ff88, #00d4ff);
}

/* ========================================
   Selection Color
   ======================================== */
::selection {
    background: rgba(0, 212, 255, 0.3);
    color: #fff;
}
