/* ============================================
   WEBSHOST VPS - Custom CSS
   ============================================ */

:root {
    --primary: #6c5ce7;
    --primary-dark: #5a4bd1;
    --secondary: #00b894;
    --dark: #0a0a1a;
    --gray: #6c757d;
    --light-gray: #f8f9fa;
}

* {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    padding-top: 72px;
    background: #ffffff;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    background: rgba(10, 10, 26, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    padding: 12px 0;
}

.navbar-brand {
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

.navbar-nav .nav-link {
    color: rgba(255,255,255,0.7) !important;
    font-weight: 500;
    padding: 8px 16px;
    transition: all 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #ffffff !important;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3e 50%, #0a0a1a 100%);
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

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

.text-gradient {
    background: linear-gradient(135deg, #6c5ce7, #00b894);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-image {
    position: relative;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.float-el {
    position: absolute;
    font-size: 2rem;
    animation: float 3s ease-in-out infinite;
}

.float-el:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.float-el:nth-child(2) { top: 60%; right: 20%; animation-delay: 1s; }
.float-el:nth-child(3) { bottom: 20%; left: 30%; animation-delay: 2s; }

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* ============================================
   PLANS SECTION
   ============================================ */
.plans-section {
    background: #f8f9fa;
}

.plan-card {
    border: 1px solid #e9ecef;
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(108, 92, 231, 0.15);
    border-color: var(--primary);
}

.plan-card.featured-card {
    border: 2px solid var(--primary);
    box-shadow: 0 10px 40px rgba(108, 92, 231, 0.15);
}

.featured-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #6c5ce7, #00b894);
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.plan-price {
    padding: 8px 0;
}

.plan-features li {
    padding: 6px 0;
    font-size: 0.9rem;
    color: #495057;
}

.plan-features i {
    width: 20px;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
    background: #f8f9fa;
}

.feature-card {
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: #e9ecef;
}

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

/* ============================================
   ABOUT SECTION
   ============================================ */
.stat-card {
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: scale(1.02);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #0a0a1a !important;
}

.footer .social-icons a {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    transition: all 0.3s;
}

.footer .social-icons a:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        min-height: 70vh;
    }
    
    .hero-section .display-3 {
        font-size: 2.5rem;
    }
    
    .plan-card {
        margin-bottom: 20px;
    }
    
    .stats-grid .col-6 {
        margin-bottom: 12px;
    }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
    background: linear-gradient(135deg, #6c5ce7, #5a4bd1);
    border: none;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(108, 92, 231, 0.3);
    background: linear-gradient(135deg, #5a4bd1, #4a3db8);
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 8px;
    transition: all 0.3s;
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(108, 92, 231, 0.2);
}