:root {
    /* Dark Theme Colors */
    --bg-dark: #0a0e23;
    --bg-dark-secondary: #161b33;
    --text-dark: #e0e0e0;
    --text-dark-secondary: #a0a0a0;
    --accent-purple: #6c4df2;
    --accent-orange: #f9a825;
    --accent-gradient: linear-gradient(145deg, #6c4df2, #f9a825);
    --card-bg-dark: rgba(30, 35, 70, 0.5);
    
    /* Light Theme Colors */
    --bg-light: #f8f9fa;
    --bg-light-secondary: #ffffff;
    --text-light:  #333333;
    --text-light-secondary: #666666;
    --card-bg-light: rgba(255, 255, 255, 0.9);
    
    /* Common */
    --font-primary: 'Inter', sans-serif;
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    --box-shadow-light: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Base Styles */
body.light-mode .hero-title {
    color: #ffffff !important; /* stays white even in light mode */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-dark);
    color: var(--text-dark);
    line-height: 1.6;
    transition: var(--transition);
}

body.light-mode {
    background-color: var(--bg-light);
    color: var(--text-light);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-dark-secondary);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

body.light-mode .section-subtitle {
    color: var(--text-light-secondary);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    text-align: center;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--accent-purple);
    color: white;
}

.btn-primary:hover {
    background-color: #5a3fd8;
    transform: translateY(-2px);
}

.btn-gradient {
    background: var(--accent-gradient);
    color: white;
    position: relative;
    overflow: hidden;
    z-index: 1;
}


.btn-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #f9a825, #6c4df2);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.btn-gradient:hover::before {
    opacity: 1;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(108, 77, 242, 0.3);
}

.btn-outline {
    border: 2px solid var(--accent-purple);
    color: var(--accent-purple);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--accent-purple);
    color: white;
    transform: translateY(-2px);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(10, 14, 35, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: var(--transition);
}

body.light-mode .header {
    background-color: rgba(248, 249, 250, 0.9);
    box-shadow: var(--box-shadow-light);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 60px;
    transition: var(--transition);
}

.logo:hover {
    transform: rotate(5deg);
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav li {
    margin-left: 30px;
}

.main-nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

body.light-mode .main-nav a {
    color: var(--text-light);
}

.main-nav a:hover {
    color: var(--accent-purple);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: var(--transition);
}

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

.theme-toggle {
    margin-left: 30px;
}

.theme-switch {
    display: none;
}

.theme-label {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
    background-color: var(--bg-dark-secondary);
    border-radius: 15px;
    cursor: pointer;
    padding: 0 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

body.light-mode .theme-label {
    background-color: #e0e0e0;
}

.theme-label i {
    font-size: 14px;
    color: var(--text-dark);
}

.theme-label .fa-sun {
    color: var(--accent-orange);
}

.theme-label .fa-moon {
    color: var(--accent-purple);
}

.theme-ball {
    position: absolute;
    left: 5px;
    width: 20px;
    height: 20px;
    background: var(--accent-gradient);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.theme-switch:checked + .theme-label .theme-ball {
    transform: translateX(30px);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 60vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

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

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 35, 0.7);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Rest of your existing hero styles remain the same */

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--text-dark-secondary);
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
}

body.light-mode .hero-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    animation: fadeInUp 1s ease 0.4s forwards;
    opacity: 0;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    cursor: pointer;
}

.scroll-down i {
    font-size: 1.5rem;
    color: white;
}

/* Services Section */
.services {
    background-color: var(--bg-dark-secondary);
}

body.light-mode .services {
    background-color: #f0f0f0;
}

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

.service-card {
    background-color: var(--card-bg-dark);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(108, 77, 242, 0.1);
}

body.light-mode .service-card {
    background-color: var(--card-bg-light);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--box-shadow-light);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(108, 77, 242, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gradient);
    border-radius: 50%;
}

.service-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}

body.light-mode .service-card h3 {
    color: var(--text-light);
}

.service-card p {
    color: var(--text-dark-secondary);
}

body.light-mode .service-card p {
    color: var(--text-light-secondary);
}

/* Plans Section */
.plans {
    position: relative;
    overflow: hidden;
}

.plans::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(108, 77, 242, 0.2) 0%, rgba(108, 77, 242, 0) 70%);
    z-index: -1;
}

/* Plan Tabs */
.plan-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    background-color: var(--bg-dark-secondary);
    padding: 5px;
    border-radius: var(--border-radius);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.plan-tab {
    padding: 10px 20px;
    border: none;
    background: none;
    color: var(--text-dark-secondary);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border-radius: calc(var(--border-radius) - 2px);
}

.plan-tab.active {
    background: var(--accent-gradient);
    color: white;
}

body.light-mode .plan-tabs {
    background-color: #e0e0e0;
}


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

.plan-card {
    background-color: var(--card-bg-dark);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    transition: var(--transition);
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(108, 77, 242, 0.1);
}

body.light-mode .plan-card {
    background-color: var(--card-bg-light);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--box-shadow-light);
}

.plan-card.featured {
    border: 2px solid var(--accent-purple);
    transform: scale(1.05);
}

.plan-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent-gradient);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.plan-header {
    text-align: center;
    margin-bottom: 30px;
}

.plan-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: white;
}

body.light-mode .plan-header h3 {
    color: var(--text-light);
}

.plan-price {
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
}

body.light-mode .price {
    color: var(--text-light);
}

.period {
    font-size: 1rem;
    color: var(--text-dark-secondary);
    margin-left: 5px;
}

body.light-mode .period {
    color: var(--text-light-secondary);
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
}

.plan-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: var(--text-dark-secondary);
}

body.light-mode .plan-features li {
    color: var(--text-light-secondary);
}

.plan-features i {
    margin-right: 10px;
    color: var(--accent-purple);
}

.plan-card .btn {
    width: 100%;
}

/* VPS Wizard */
.vps-wizard {
    background-color: var(--bg-dark-secondary);
}

body.light-mode .vps-wizard {
    background-color: #f0f0f0;
}

.wizard-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.wizard-step {
    background-color: var(--card-bg-dark);
    border-radius: var(--border-radius);
    padding: 30px;
    transition: var(--transition);
    opacity: 0.5;
}

body.light-mode .wizard-step {
    background-color: var(--card-bg-light);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--box-shadow-light);
}
	
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Server Tabs Styling */

/* Enhanced Dedicated Servers Section */
.dedicated {
    background-color: var(--bg-dark);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.dedicated::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(249, 168, 37, 0.2) 0%, rgba(249, 168, 37, 0) 70%);
    z-index: -1;
}

/* Server Tabs - Enhanced */
.server-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.server-tab {
    padding: 15px 25px;
    border: none;
    background-color: var(--bg-dark-secondary);
    color: var(--text-dark-secondary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.server-tab i {
    font-size: 1.2rem;
}

.server-tab:hover:not(.active) {
    background: rgba(108, 77, 242, 0.2);
    transform: translateY(-3px);
}

.server-tab.active {
    background: linear-gradient(145deg, #6c4df2, #f9a825);
    color: white;
    box-shadow: 0 8px 25px rgba(108, 77, 242, 0.4);
    transform: translateY(-3px);
}

.server-tab .tab-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #f9a825;
    color: #0a0e23;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 700;
}

body.light-mode .server-tab {
    background-color: #e0e0e0;
    color: #666666;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Server Offer - Enhanced */
.server-offer {
    display: none;
    animation: fadeIn 0.5s ease;
    background-color: rgba(30, 35, 70, 0.5);
    border-radius: 8px;
    padding: 40px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(108, 77, 242, 0.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.server-offer.active {
    display: block;
}

body.light-mode .server-offer {
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Offer Badge - Enhanced */
.offer-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(145deg, #6c4df2, #f9a825);
    color: white;
    padding: 8px 25px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(108, 77, 242, 0.3);
}

/* Server Specs - Enhanced */
.server-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.spec {
    background-color: rgba(108, 77, 242, 0.1);
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
}

.spec:hover {
    transform: translateY(-5px);
    background-color: rgba(108, 77, 242, 0.2);
}

body.light-mode .spec {
    background-color: rgba(108, 77, 242, 0.05);
}

.spec-name {
    display: block;
    font-size: 0.9rem;
    color: #a0a0a0;
    margin-bottom: 10px;
    font-weight: 600;
}

body.light-mode .spec-name {
    color: #666666;
}

.spec-value {
    font-size: 1.2rem;
    font-weight: 600;
    color: #e0e0e0;
    line-height: 1.4;
}

.spec-value span {
    display: block;
    font-size: 0.9rem;
    color: #a0a0a0;
    font-weight: normal;
    margin-top: 5px;
}

body.light-mode .spec-value {
    color: #333333;
}

body.light-mode .spec-value span {
    color: #666666;
}

/* Server Price - Enhanced */
.server-price {
    text-align: center;
    margin: 40px 0;
    padding: 20px 0;
    border-top: 1px solid rgba(108, 77, 242, 0.1);
    border-bottom: 1px solid rgba(108, 77, 242, 0.1);
}

.old-price {
    font-size: 1.8rem;
    color: #a0a0a0;
    text-decoration: line-through;
    margin-right: 15px;
}

body.light-mode .old-price {
    color: #666666;
}

.new-price {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(145deg, #6c4df2, #f9a825);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    margin: 0 10px;
}

.price-note {
    display: block;
    font-size: 0.9rem;
    color: #a0a0a0;
    margin-top: 10px;
}

/* Order Button - Enhanced */
.dedicated .btn {
    display: block;
    margin: 0 auto;
    max-width: 350px;
    padding: 15px 30px;
    font-size: 1.1rem;
    overflow: visible; /* Ensures badge isn't clipped */
    padding-bottom: 10px; /* Makes space for the badge */
}

.dedicated .btn i {
    margin-right: 10px;
}


.dedicated .btn .btn-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #f9a825;
    color: #0a0e23;
    padding: 2px 10px; /* Increased right/left padding */
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 700;
    transform: translate(10px, 10px); /* Better than negative positioning */
    white-space: nowrap; /* Prevents text wrapping */
    z-index: 2; /* Ensures it stays above other elements */
}
/* Performance Meter Styles */
.performance-meter {
    width: 100%;
    height: 8px;
    background-color: #161b33;
    border-radius: 4px;
    margin-top: 10px;
    overflow: hidden;
}

body.light-mode .performance-meter {
    background-color: #e0e0e0;
}

.meter-fill {
    height: 100%;
    background: linear-gradient(145deg, #6c4df2, #f9a825);
    border-radius: 4px;
    transition: width 0.5s ease;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .server-specs {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .server-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .server-tab {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .server-offer {
        padding: 30px 20px;
    }
    
    .server-specs {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .server-price {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .old-price, .new-price {
        display: block;
        margin: 0;
    }
    
    .server-tab {
        padding: 12px 20px;
        font-size: 1rem;
    }
}

.server-tab:hover:not(.active) {
    background: rgba(108, 77, 242, 0.1);
}


/* Data Center Section */
.datacenter {
    background-color: var(--bg-dark-secondary);
}

body.light-mode .datacenter {
    background-color: #f0f0f0;
}

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

.datacenter-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.datacenter-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.datacenter-image:hover img {
    transform: scale(1.05);
}

.datacenter-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-dark-secondary);
}

body.light-mode .stat-label {
    color: var(--text-light-secondary);
}

/* About Us Section */
.about {
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(108, 77, 242, 0.2) 0%, rgba(108, 77, 242, 0) 70%);
    z-index: -1;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin: 50px auto;
    max-width: 800px;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    margin-bottom: 20px;
    color: var(--text-dark-secondary);
}

body.light-mode .about-content p {
    color: var(--text-light-secondary);
}

/* FAQs Section */
.faqs {
    background-color: var(--bg-dark-secondary);
}

body.light-mode .faqs {
    background-color: #f0f0f0;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: var(--border-radius);
    overflow: hidden;
    background-color: var(--card-bg-dark);
    border: 1px solid rgba(108, 77, 242, 0.1);
}

body.light-mode .faq-item {
    background-color: var(--card-bg-light);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

body.light-mode .faq-question {
    color: var(--text-light);
}

.faq-question i:first-child {
    margin-right: 15px;
    color: var(--accent-purple);
}

.faq-question i:last-child {
    transition: var(--transition);
}

.faq-question.active i:last-child {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 25px;
}

.faq-answer p {
    padding: 0 0 20px 35px;
    color: var(--text-dark-secondary);
}

body.light-mode .faq-answer p {
    color: var(--text-light-secondary);
}

/* Supporter Badge */
.supporter {
    padding: 40px 0;
}

.supporter-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background-color: var(--card-bg-dark);
    border-radius: var(--border-radius);
    padding: 20px;
    max-width: 500px;
    margin: 0 auto;
    border: 1px solid rgba(108, 77, 242, 0.1);
}

body.light-mode .supporter-badge {
    background-color: var(--card-bg-light);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.supporter-badge img {
    height: 40px;
    width: auto;
}

.supporter-text {
    text-align: center;
}

.supporter-text span {
    display: block;
    font-size: 0.9rem;
    color: var(--text-dark-secondary);
}

body.light-mode .supporter-text span {
    color: var(--text-light-secondary);
}

.supporter-text strong {
    font-size: 1.2rem;
    color: white;
}

body.light-mode .supporter-text strong {
    color: var(--text-light);
}

/* Footer */
.footer {
    background-color: var(--bg-dark-secondary);
    padding: 80px 0 0;
}

body.light-mode .footer {
    background-color: #e0e0e0;
}

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

.footer-col {
    padding: 0 15px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 20px;
}

.footer-about {
    color: var(--text-dark-secondary);
    margin-bottom: 20px;
}

body.light-mode .footer-about {
    color: var(--text-light-secondary);
}

/* Footer Social Icons - Clean Version */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 20px;
    padding: 0;
    width: 100%;
}

.footer-social a {
    color: var(--text-dark-secondary);
    font-size: 1.5rem;
    transition: var(--transition);
    text-decoration: none;
    line-height: 1;
}

.footer-social a:hover {
    color: var(--accent-purple);
    transform: translateY(-3px);
}

/* Light mode */
body.light-mode .footer-social a {
    color: var(--text-light-secondary);
}

body.light-mode .footer-social a:hover {
    color: var(--accent-orange);
}

.social-icon {
    color: var(--text-dark-secondary);
    font-size: 1.5rem;
    transition: var(--transition);
    display: inline-flex;
}

.social-icon:hover {
    color: var(--accent-purple);
    transform: translateY(-3px);
}

/* Light mode adjustment */
body.light-mode .social-icon {
    color: var(--text-light-secondary);
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
}

body.light-mode .footer-col h3 {
    color: var(--text-light);
}

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

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a, .footer-col li {
    color: var(--text-dark-secondary);
    transition: var(--transition);
    text-decoration: none;
}

body.light-mode .footer-col a,
body.light-mode .footer-col li {
    color: var(--text-light-secondary);
}

.footer-col a:hover {
    color: var(--accent-purple);
}

.footer-col i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
    color: var(--accent-purple);
}

.footer-bottom {
    border-top: 1px solid rgba(108, 77, 242, 0.1);
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

body.light-mode .footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.copyright {
    color: var(--text-dark-secondary);
}

body.light-mode .copyright {
    color: var(--text-light-secondary);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--text-dark-secondary);
    text-decoration: none;
    transition: var(--transition);
}

body.light-mode .footer-links a {
    color: var(--text-light-secondary);
}

.footer-links a:hover {
    color: var(--accent-purple);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .datacenter .container {
        grid-template-columns: 1fr;
    }
    
    .datacenter-image {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .main-nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--bg-dark-secondary);
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        transform: translateY(-150%);
        transition: var(--transition);
        z-index: 999;
    }
    
    body.light-mode .main-nav {
        background-color: #f0f0f0;
    }
    
    .main-nav.active {
        transform: translateY(0);
    }
    
    .main-nav ul {
        flex-direction: column;
    }
    
    .main-nav li {
        margin: 10px 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .plan-card.featured {
        transform: scale(1);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

/* Additional Utility Classes */
.text-center {
    text-align: center;
}

.mb-30 {
    margin-bottom: 30px;
}

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

::-webkit-scrollbar-track {
    background: var(--bg-dark-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-purple);
    border-radius: 5px;
}

body.light-mode ::-webkit-scrollbar-track {
    background: #e0e0e0;
}

body.light-mode ::-webkit-scrollbar-thumb {
    background: var(--accent-orange);
}	

/* VPS Plans Section */
.vps-plans {
    background-color: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.vps-plans::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(108, 77, 242, 0.2) 0%, rgba(108, 77, 242, 0) 70%);
    z-index: 0;
}

/* Location Selector */
.location-selector {
    background-color: var(--card-bg-dark);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(108, 77, 242, 0.1);
}

body.light-mode .location-selector {
    background-color: var(--card-bg-light);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.location-selector h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

body.light-mode .location-selector h3 {
    color: var(--text-light);
}

.location-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.location-badge {
    padding: 8px 15px;
    background-color: var(--bg-dark-secondary);
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.location-badge.active {
    background: var(--accent-gradient);
    color: white;
}

body.light-mode .location-badge {
    background-color: #e0e0e0;
}

/* Plans Grid */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.plan-card {
    background-color: var(--card-bg-dark);
    border-radius: var(--border-radius);
    padding: 30px;
    transition: var(--transition);
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(108, 77, 242, 0.1);
}

body.light-mode .plan-card {
    background-color: var(--card-bg-light);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--box-shadow-light);
}

.plan-card.featured {
    border: 2px solid var(--accent-purple);
    transform: scale(1.03);
}

.plan-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent-gradient);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.plan-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(108, 77, 242, 0.1);
}

.plan-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: white;
}

body.light-mode .plan-header h3 {
    color: var(--text-light);
}

.plan-price {
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
}

body.light-mode .price {
    color: var(--text-light);
}

.period {
    font-size: 1rem;
    color: var(--text-dark-secondary);
    margin-left: 5px;
}

body.light-mode .period {
    color: var(--text-light-secondary);
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
}

.plan-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: var(--text-dark-secondary);
}

body.light-mode .plan-features li {
    color: var(--text-light-secondary);
}

.plan-features i {
    margin-right: 10px;
    color: var(--accent-purple);
    width: 20px;
    text-align: center;
}

.plan-card .btn {
    width: 100%;
}

/* OS Selection */
.os-selection {
    background-color: var(--card-bg-dark);
    border-radius: var(--border-radius);
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(108, 77, 242, 0.1);
}

body.light-mode .os-selection {
    background-color: var(--card-bg-light);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.os-selection h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

body.light-mode .os-selection h3 {
    color: var(--text-light);
}

.os-tabs {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(108, 77, 242, 0.1);
}

.os-tab {
    padding: 10px 20px;
    background: none;
    border: none;
    color: var(--text-dark-secondary);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

body.light-mode .os-tab {
    color: var(--text-light-secondary);
}

.os-tab.active {
    color: var(--accent-purple);
}

.os-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-gradient);
}

.os-content {
    display: none;
}

.os-content.active {
    display: block;
}

.os-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.os-option {
    background-color: var(--bg-dark-secondary);
    border-radius: var(--border-radius);
    padding: 20px;
    transition: var(--transition);
}

body.light-mode .os-option {
    background-color: #f0f0f0;
}

.os-option i {
    font-size: 2rem;
    color: var(--accent-purple);
    margin-bottom: 10px;
    display: block;
}

.os-option h4 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

body.light-mode .os-option h4 {
    color: var(--text-light);
}

.os-option ul {
    list-style: none;
}

.os-option li {
    color: var(--text-dark-secondary);
    font-size: 0.9rem;
    margin-bottom: 5px;
    padding-left: 20px;
    position: relative;
}

body.light-mode .os-option li {
    color: var(--text-light-secondary);
}

.os-option li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-purple);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .plan-card.featured {
        transform: scale(1);
    }
    
    .os-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

@media (max-width: 576px) {
    .location-badges {
        justify-content: center;
    }
    
    .os-tabs {
        justify-content: center;
    }
}