/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #e5e7eb;
    background: #0f0f23;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 1rem;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(15, 15, 35, 0.3);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

/* Mobile navigation */
.mobile-nav {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mobile-menu-btn {
    display: none;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 0.5rem;
    color: #e5e7eb;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-logo {
    display: none;
}

.desktop-logo {
    display: block;
}

.nav-logo h2 {
    color: #8b5cf6;
    font-weight: 700;
    font-size: 1.75rem;
    margin: 0;
}

/* Desktop navigation menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 1rem;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
    padding-left: 2rem;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    text-decoration: none;
    color: #e5e7eb;
    font-weight: 700;
    font-size: 1.125rem;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    display: block;
}

.nav-menu a:hover {
    color: #8b5cf6;
    background: rgba(139, 92, 246, 0.1);
}

/* Login button */
.nav-actions {
    display: flex;
    align-items: center;
}

.login-btn {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 0.5rem 1.5rem;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.login-btn:hover {
    background: linear-gradient(135deg, #7c3aed, #9333ea);
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

.login-btn svg {
    width: 20px;
    height: 20px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d1b69 50%, #0f0f23 100%);
    color: white;
    padding-top: 120px;
    padding-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(45, 27, 105, 0.3) 25%, 
        rgba(30, 27, 75, 0.6) 50%, 
        rgba(26, 26, 46, 0.8) 75%, 
        rgba(15, 15, 35, 1) 100%
    );
    pointer-events: none;
    z-index: 2;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}

/* Floating decorative elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    animation: float 6s ease-in-out infinite;
}

.floating-icon i {
    font-size: 1.5rem;
    color: #8b5cf6;
}

.floating-icon-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon-2 {
    top: 30%;
    right: 15%;
    animation-delay: 2s;
}

.floating-icon-3 {
    bottom: 30%;
    right: 10%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Hero content */
.hero-content {
    text-align: center;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.brand {
    color: #8b5cf6;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero feature cards */
.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    width: 100%;
    margin-top: 2rem;
}

.hero-feature-card {
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
}

.hero-feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.1);
}

.feature-icon-hero {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-icon-hero i {
    font-size: 1.5rem;
    color: white;
}

.hero-feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #e5e7eb;
}

.purple-text {
    color: #8b5cf6;
}

.hero-feature-card p {
    color: #9ca3af;
    line-height: 1.6;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.feature-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: rgba(139, 92, 246, 0.2);
    color: #8b5cf6;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.login-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #7c3aed, #9333ea);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: #8b5cf6;
}

.btn-outline {
    background: transparent;
    color: #8b5cf6;
    border-color: #8b5cf6;
}

.btn-outline:hover {
    background: #8b5cf6;
    color: white;
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
}



/* Comparison Section */
.comparison {
    padding: 6rem 0;
    background: #0f0f23;
}

.comparison-header {
    text-align: center;
    margin-bottom: 4rem;
}

.service-tags {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.service-tags .tag {
    background: rgba(139, 92, 246, 0.2);
    color: #8b5cf6;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.comparison-subtitle {
    color: #9ca3af;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0;
    color: #e5e7eb;
}

.comparison-table {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    overflow: hidden;
    background: rgba(15, 15, 35, 0.8);
    backdrop-filter: blur(10px);
}

.comparison-header-row {
    display: contents;
}

.header-cell {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
    background: rgba(139, 92, 246, 0.05);
    font-weight: 600;
    color: #e5e7eb;
    position: relative;
}

.header-cell:first-child {
    text-align: left;
    font-weight: 600;
    color: #e5e7eb;
    font-size: 1rem;
}

.header-cell.featured {
    background: rgba(139, 92, 246, 0.15);
    color: #8b5cf6;
    border-left: 1px solid rgba(139, 92, 246, 0.3);
    border-right: 1px solid rgba(139, 92, 246, 0.3);
}

.comparison-row {
    display: contents;
}

.row-cell {
    padding: 1.2rem 1rem;
    border-bottom: 1px solid rgba(139, 92, 246, 0.08);
    display: flex;
    align-items: center;
    min-height: 70px;
    transition: background 0.2s ease;
}

.comparison-row:hover .row-cell {
    background: rgba(139, 92, 246, 0.03);
}

.row-cell:first-child {
    justify-content: flex-start;
}

.row-cell:not(:first-child) {
    justify-content: center;
    text-align: center;
}

.row-cell.featured {
    background: rgba(139, 92, 246, 0.08);
    border-left: 1px solid rgba(139, 92, 246, 0.3);
    border-right: 1px solid rgba(139, 92, 246, 0.3);
    font-weight: 600;
    color: #8b5cf6;
}

.comparison-row:hover .row-cell.featured {
    background: rgba(139, 92, 246, 0.12);
}

.feature-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.feature-icon-small {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-small i {
    font-size: 1rem;
    color: white;
}

.feature-details h4 {
    color: #e5e7eb;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.feature-details p {
    color: #9ca3af;
    font-size: 0.9rem;
    line-height: 1.5;
}

.company-logo h3 {
    color: #8b5cf6;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.competitor-icon {
    width: 40px;
    height: 40px;
    background: rgba(139, 92, 246, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
}

.competitor-icon i {
    color: #8b5cf6;
    font-size: 1rem;
}

.header-cell h4 {
    color: #e5e7eb;
    font-size: 1rem;
    font-weight: 600;
    margin: 0.5rem 0 0 0;
}

.value {
    color: #9ca3af;
    font-weight: 500;
    font-size: 0.9rem;
}

.comparison-row:last-child .row-cell {
    border-bottom: none;
}

.value.highlight {
    color: #8b5cf6;
    font-weight: 600;
    font-size: 0.95rem;
}

.value-icon i.fa-check {
    color: #83ff64;
    font-size: 1.2rem;
}

.value-icon i.fa-times {
    color: #ef4444;
    font-size: 1.2rem;
}

/* Hosting Plans */
.hosting-plans {
    padding: 6rem 0;
    background: #0f0f23;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 4rem;
}

.plan-card {
    background: rgba(30, 30, 50, 0.8);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15);
}

.plan-title {
    font-size: 2rem;
    font-weight: 700;
    color: #e5e7eb;
    margin-bottom: 0.5rem;
    text-align: center;
}

.availability-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.2rem;
}

.status-dot {
    width: 12px;
    height: 12px;
    background: #83ff64;
    border-radius: 50%;
    position: relative;
    animation: pulse 2s infinite;
}

.status-dot::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    width: 12px;
    height: 12px;
    background: rgba(16, 185, 129, 0.3);
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.status-text {
    color: #83ff64;
    font-size: 0.9rem;
    font-weight: 500;
}

.plan-price {
    font-size: 3.5rem;
    font-weight: 700;
    color: #8b5cf6;
    margin-bottom: 0.5rem;
    text-align: center;
}

.plan-specs {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #9ca3af;
    font-size: 0.95rem;
}

.spec-item i {
    width: 20px;
    color: #6b7280;
    font-size: 1rem;
}

.plan-button {
    width: 100%;
    background: #8b5cf6;
    color: white;
    padding: 1rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: block;
    text-align: center;
}

.plan-button:hover {
    background: #7c3aed;
    transform: translateY(-2px);
}

/* Feature Cards */
.feature-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card-new {
    background: rgba(30, 30, 50, 0.8);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15);
}

.feature-icon-new {
    width: 60px;
    height: 60px;
    background: rgba(107, 114, 128, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon-new i {
    font-size: 1.5rem;
    color: #9ca3af;
}

.feature-card-new h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e5e7eb;
    margin-bottom: 1rem;
}

.feature-card-new p {
    color: #9ca3af;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: #0f0f23;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #e5e7eb;
}

.contact-info p {
    color: #9ca3af;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-method i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
}

.contact-form {
    background: rgba(139, 92, 246, 0.1);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    background: rgba(15, 15, 35, 0.8);
    color: #e5e7eb;
    transition: border-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

/* Footer */
.footer {
    background: #0a0a1a;
    color: white;
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #a855f7;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #a855f7;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(139, 92, 246, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.social-links a:hover {
    background: #8b5cf6;
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }
    
    .nav-container {
        padding: 0.5rem 1rem;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .mobile-logo {
        display: block;
    }
    
    .desktop-logo {
        display: none;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(15, 15, 35, 0.95);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 1rem;
        margin-top: 0.5rem;
        padding: 1rem;
        flex-direction: column;
        gap: 0.5rem;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu a {
        padding: 0.75rem 1rem;
        border-radius: 0.5rem;
        text-align: center;
    }
    
    .login-btn span {
        display: none;
    }
    
    .login-btn {
        padding: 0.5rem;
        min-width: auto;
    }
    
    .hero {
        padding-top: 100px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .floating-icon {
        display: none;
    }
    
    .comparison-table {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .comparison-columns {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .comparison-column.featured {
        transform: none;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .plan-card.featured {
        transform: none;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
}

/* New Pricing Section Styles */
.section-subtitle {
    text-align: center;
    color: #9ca3af;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 900px;
    margin: 1rem auto 3rem;
}

.server-tabs {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.server-tab {
    background: rgba(30, 30, 50, 0.5);
    border: 2px solid rgba(139, 92, 246, 0.3);
    color: #e5e7eb;
    padding: 1rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.server-tab i {
    color: #8b5cf6;
    font-size: 1.2rem;
}

.server-tab:hover {
    background: rgba(30, 30, 50, 0.8);
    border-color: rgba(139, 92, 246, 0.5);
    transform: translateY(-2px);
}

.server-tab.active {
    background: rgba(139, 92, 246, 0.1);
    border-color: #8b5cf6;
}

.server-category-content {
    display: none;
}

.server-category-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.specifications-section {
    background: rgba(20, 20, 35, 0.5);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.specs-title {
    color: #e5e7eb;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.spec-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.spec-detail i {
    font-size: 2rem;
    color: #8b5cf6;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 8px;
}

.spec-label {
    font-size: 0.85rem;
    color: #9ca3af;
    text-transform: uppercase;
    font-weight: 600;
}

.spec-value {
    font-size: 1rem;
    color: #e5e7eb;
    font-weight: 600;
}

.plans-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.plan-card-new {
    background: rgba(20, 20, 35, 0.8);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.plan-card-new:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.plan-header-new {
    margin-bottom: 2rem;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e5e7eb;
    margin-bottom: 1rem;
}

.plan-price-new {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8b5cf6;
}

.plan-features-new {
    margin-bottom: 2rem;
}

.feature-item-new {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
    color: #d1d5db;
}

.feature-item-new:last-child {
    border-bottom: none;
}

.feature-item-new i {
    color: #8b5cf6;
    font-size: 1rem;
    width: 20px;
}

.subscribe-btn {
    width: 100%;
    background: #8b5cf6;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subscribe-btn:hover {
    background: #7c3aed;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
}

/* Responsive Design for New Pricing */
@media (max-width: 768px) {
    .server-tabs {
        flex-direction: column;
    }
    
    .server-tab {
        width: 100%;
        justify-content: center;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .plans-grid-new {
        grid-template-columns: 1fr;
    }
    
    .specifications-section {
        padding: 1.5rem;
    }
}


/* Domains Section */
.domains-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #0f0f23 0%, #1a1a2e 100%);
}

.domain-search-box {
    max-width: 800px;
    margin: 3rem auto;
    padding: 2rem;
    background: rgba(30, 30, 50, 0.5);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(20, 20, 35, 0.8);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.search-input-wrapper:focus-within {
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
}

.search-input-wrapper i {
    color: #8b5cf6;
    font-size: 1.25rem;
}

.domain-search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #e5e7eb;
    font-size: 1.1rem;
    padding: 0.75rem 0;
}

.domain-search-input::placeholder {
    color: #6b7280;
}

.domain-search-btn {
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
    border: none;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.domain-search-btn:hover {
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
}

.popular-extensions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.popular-extensions span {
    color: #9ca3af;
    font-size: 0.9rem;
}

.extension-tag {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: #a855f7;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.extension-tag:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.5);
    transform: translateY(-2px);
}

.domain-pricing-section {
    margin: 4rem 0;
}

.pricing-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #e5e7eb;
    margin-bottom: 2rem;
}

.domain-pricing-table {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(30, 30, 50, 0.5);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 16px;
    overflow: hidden;
}

.domain-price-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 1.25rem 2rem;
    border-bottom: 1px solid rgba(139, 92, 246, 0.15);
    align-items: center;
    transition: all 0.3s ease;
}

.domain-price-row:hover {
    background: rgba(139, 92, 246, 0.08);
}

.domain-price-row:last-child {
    border-bottom: none;
}

.domain-price-header {
    background: rgba(139, 92, 246, 0.15);
    font-weight: 700;
    color: #a855f7;
}

.domain-extension {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #e5e7eb;
}

.domain-extension i {
    color: #8b5cf6;
    font-size: 1.25rem;
}

.domain-price {
    color: #e5e7eb;
    font-weight: 600;
    text-align: center;
}

.domain-price-value {
    color: #10b981;
    font-size: 1.1rem;
}

.domain-order-btn {
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
    border: none;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.domain-order-btn:hover {
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

.domain-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.domain-feature-card {
    background: rgba(30, 30, 50, 0.5);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.domain-feature-card:hover {
    border-color: rgba(139, 92, 246, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.domain-feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(139, 92, 246, 0.3);
}

.domain-feature-icon i {
    font-size: 2rem;
    color: #8b5cf6;
}

.domain-feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #e5e7eb;
    margin-bottom: 1rem;
}

.domain-feature-card p {
    color: #9ca3af;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive Domains Section */
@media (max-width: 768px) {
    .domain-search-box {
        padding: 1.5rem;
    }
    
    .search-input-wrapper {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .domain-search-btn {
        width: 100%;
        justify-content: center;
    }
    
    .domain-price-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        text-align: center;
    }
    
    .domain-extension {
        justify-content: center;
    }
    
    .domain-features-grid {
        grid-template-columns: 1fr;
    }
}


/* Domain Search Animations */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

#domainSearchResult {
    animation: slideDown 0.3s ease;
}
