/* Style Sheet for Purple Proxy Theme */

:root {
    --primary-color: #6366f1; /* Indigo */
    --secondary-color: #4f46e5; /* Deep Indigo */
    --accent-purple: #a855f7; /* Vibrant Purple */
    --bg-dark: #080c14; /* Deep Dark Space */
    --bg-card: rgba(17, 24, 39, 0.75); /* Dark Glass Card */
    --bg-card-hover: rgba(23, 37, 84, 0.4); /* Dark Blue/Purple card hover */
    --text-primary: #f3f4f6; /* Off-White */
    --text-secondary: #9ca3af; /* Gray */
    --border-color: rgba(99, 102, 241, 0.15); /* Light Indigo Border */
    --border-glow: rgba(168, 85, 247, 0.4); /* Glowing purple border */
}

/* Base resets & Fonts */
body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    position: relative;
}

.font-outfit {
    font-family: 'Outfit', sans-serif;
}

.font-inter {
    font-family: 'Inter', sans-serif;
}

/* Background Glowing Orbs */
.bg-glow-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, rgba(168, 85, 247, 0.05) 50%, rgba(0,0,0,0) 70%);
    z-index: -1;
    pointer-events: none;
}

.orb-1 { top: -100px; right: -100px; }
.orb-2 { top: 600px; left: -200px; }
.orb-3 { bottom: 100px; right: -100px; }

/* Custom Navbar */
.custom-navbar {
    background-color: rgba(8, 12, 20, 0.8) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.logo-icon {
    font-size: 24px;
    filter: drop-shadow(0 0 8px rgba(99, 102, 241, 0.6));
}

.navbar-logo {
    height: 32px;
}

.logo-text {
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -0.5px;
    background: linear-gradient(to right, #ffffff, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.custom-navbar .nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 16px !important;
    transition: all 0.2s ease;
}

.custom-navbar .nav-link:hover, 
.custom-navbar .nav-link.active {
    color: var(--primary-color) !important;
}

/* Buttons */
.btn-purple {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white !important;
    border: none;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.35);
}

.btn-purple:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.5);
    filter: brightness(1.1);
}

.btn-purple-outline {
    background: transparent;
    color: var(--text-primary) !important;
    border: 1.5px solid var(--primary-color);
    font-weight: 600;
    padding: 8px 22px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-purple-outline:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: var(--accent-purple);
    transform: translateY(-2px);
}

/* Text & Title styling */
.text-gradient {
    background: linear-gradient(135deg, #ffffff 30%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-purple {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-purple {
    color: var(--accent-purple) !important;
}

/* Sections */
.hero-section {
    padding: 100px 0 140px 0;
    position: relative;
}

.section-padding {
    padding: 100px 0;
}

/* Custom Glassmorphic Cards */
.custom-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    height: 100%;
}

.custom-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-glow);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.15);
    background: var(--bg-card-hover);
}

.card-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(99, 102, 241, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--accent-purple);
    margin-bottom: 20px;
    border: 1px solid rgba(99, 102, 241, 0.2);
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.1);
}

/* Pricing Section */
.price-card {
    position: relative;
    overflow: hidden;
}

.price-card.featured {
    border-color: var(--accent-purple);
    box-shadow: 0 15px 40px rgba(168, 85, 247, 0.15);
}

.price-card.featured::before {
    content: "POPULAR";
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--primary-color) 100%);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 6px 40px;
    transform: rotate(45deg);
    box-shadow: 0 2px 10px rgba(168, 85, 247, 0.3);
}

.price-value {
    font-size: 38px;
    font-weight: 800;
    color: white;
    margin: 15px 0;
}

.price-period {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 400;
}

.spec-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.spec-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
}

.spec-list li i {
    color: var(--accent-purple);
    margin-right: 12px;
}

/* Interactive Filter / Tab */
.custom-nav-pills {
    background: rgba(17, 24, 39, 0.8);
    border: 1px solid var(--border-color);
    padding: 6px;
    border-radius: 50px;
    display: inline-flex;
}

.custom-nav-pills .nav-link {
    border-radius: 50px;
    color: var(--text-secondary);
    font-weight: 600;
    padding: 10px 24px;
    transition: all 0.3s ease;
    border: none;
}

.custom-nav-pills .nav-link:hover {
    color: white;
}

.custom-nav-pills .nav-link.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-purple) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

/* Stats Section */
.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 5px;
    background: linear-gradient(to bottom, #ffffff, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Testimonials & FAQ Accordions */
.faq-accordion .accordion-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    margin-bottom: 15px;
    border-radius: 12px !important;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    background-color: transparent;
    color: white;
    font-weight: 600;
    box-shadow: none !important;
    padding: 20px;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--accent-purple);
    background-color: rgba(99, 102, 241, 0.05);
}

.faq-accordion .accordion-button::after {
    filter: invert(1);
}

.faq-accordion .accordion-body {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
    padding: 20px;
    border-top: 1px solid var(--border-color);
}

/* Footer Section */
.footer-section {
    background-color: #04060a;
    border-top: 1px solid var(--border-color);
    padding: 80px 0 0 0;
}

.footer-desc {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.footer-title {
    color: white;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent-purple);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
}

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

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

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

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

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
}

.border-dark-purple {
    border-color: rgba(99, 102, 241, 0.1) !important;
}

/* Hero Globe / Animated Element on index */
.cyber-globe-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cyber-globe {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, rgba(99, 102, 241, 0) 70%);
    border: 2px dashed rgba(99, 102, 241, 0.3);
    position: absolute;
    animation: rotate 20s linear infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.1), inset 0 0 30px rgba(168, 85, 247, 0.1);
}

.cyber-globe::before {
    content: '';
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 2px solid rgba(168, 85, 247, 0.3);
    position: absolute;
    animation: rotate-reverse 15s linear infinite;
}

.cyber-globe-core {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-purple) 0%, var(--primary-color) 100%);
    box-shadow: 0 0 40px var(--accent-purple), 0 0 80px rgba(99, 102, 241, 0.4);
    position: relative;
    z-index: 2;
    animation: pulse 3s infinite alternate;
}

.floating-node {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 0 10px #ffffff;
}

.node-1 { top: 20%; left: 30%; animation: float 4s infinite ease-in-out; }
.node-2 { top: 70%; left: 80%; animation: float 5s infinite ease-in-out 1s; }
.node-3 { top: 50%; left: 10%; animation: float 6s infinite ease-in-out 2s; }
.node-4 { top: 80%; left: 40%; animation: float 5s infinite ease-in-out 1.5s; }

/* Animations */
@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes rotate-reverse {
    0% { transform: rotate(360deg); }
    100% { transform: rotate(0deg); }
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 30px var(--accent-purple); }
    100% { transform: scale(1.1); box-shadow: 0 0 50px var(--accent-purple), 0 0 80px rgba(99, 102, 241, 0.6); }
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.5; }
    50% { transform: translateY(-20px) scale(1.2); opacity: 1; }
}

/* Feature tags */
.feature-badge {
    background: rgba(168, 85, 247, 0.1);
    color: var(--accent-purple);
    border: 1px solid rgba(168, 85, 247, 0.2);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.badge-vps {
    background: rgba(99, 102, 241, 0.1);
    color: #a5b4fc;
    border-color: rgba(99, 102, 241, 0.2);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .hero-section {
        padding: 60px 0 80px 0;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .cyber-globe-wrapper {
        margin-top: 50px;
    }
}
