/* 
====================================================================
  HOSTFLOW - WEB HOSTING SALES PAGE STYLES
  CSS-Only, No JavaScript dependencies.
==================================================================== 
*/

/* 
  THEME CONFIGURATION
*/
:root {
    /* Colors */
    --bg-dark: #0a0a1f;
    --bg-darker: #050510;
    --bg-card: #0e0e24;
    --primary: #00f3ff;
    --primary-glow: rgba(0, 243, 255, 0.4);
    --secondary: #bd00ff;
    --secondary-glow: rgba(189, 0, 255, 0.4);
    --text-main: #ffffff;
    --text-muted: #94a3b8;
    --border-color: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(10, 10, 31, 0.8);
    --accent-surface: rgba(255, 255, 255, 0.03);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --container-width: 1200px;
    --header-height: 80px;
    --top-bar-height: 40px;
}

/* Reset & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

ul {
    list-style: none;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* 
====================================================================
  CURRENCY SWITCHER LOGIC (CSS-ONLY)
==================================================================== 
*/
.currency-checkbox {
    display: none;
}

/* Default: Show USD, Hide INR */
.currency-inr, .price-inr-inline {
    display: none;
}
.currency-usd, .price-usd-inline {
    display: inline-block;
}

/* Checked State: Hide USD, Show INR */
/* We use sibling combinator ~ to target content inside .page-wrapper */
#currency-switch:checked ~ .page-wrapper .currency-usd {
    display: none;
}
#currency-switch:checked ~ .page-wrapper .price-usd-inline {
    display: none;
}
#currency-switch:checked ~ .page-wrapper .currency-inr {
    display: inline-block;
}
#currency-switch:checked ~ .page-wrapper .price-inr-inline {
    display: inline-block;
}

/* 
====================================================================
  TOP BAR
==================================================================== 
*/
.top-bar {
    background-color: var(--bg-darker);
    border-bottom: 1px solid var(--border-color);
    height: var(--top-bar-height);
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    position: sticky;
    top: 0;
    z-index: 101;
}

.top-bar-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
}

.btn-signin {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-main);
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 4px;
    transition: background 0.2s;
}

.btn-signin:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary);
}

/* Toggle Switch UI */
.currency-toggle-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.currency-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* Active label highlighting */
#currency-switch:not(:checked) ~ .page-wrapper .currency-toggle-wrapper .currency-label:first-child {
    color: var(--primary);
}
#currency-switch:checked ~ .page-wrapper .currency-toggle-wrapper .currency-label:last-child {
    color: var(--primary);
}

.toggle-switch {
    position: relative;
    width: 36px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.toggle-slider {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    background-color: var(--text-main);
    border-radius: 50%;
    transition: transform 0.3s;
}

/* Move slider when checkbox is checked */
#currency-switch:checked ~ .page-wrapper .toggle-slider {
    transform: translateX(16px);
    background-color: var(--primary);
}

/* 
====================================================================
  MAIN HEADER
==================================================================== 
*/
.main-header {
    position: sticky;
    top: var(--top-bar-height);
    left: 0;
    width: 100%;
    z-index: 100;
    height: var(--header-height);
    background: rgba(10,10,31,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 102;
}

.logo img {
    border-radius: 8px;
    /*box-shadow: 0 0 15px var(--primary-glow);*/
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--text-main);
}

/* Navigation */
.nav-toggle { display: none; }
.nav-toggle-label { display: none; cursor: pointer; padding: 10px; z-index: 102; }
.nav-toggle-label span { display: block; width: 25px; height: 2px; background-color: var(--text-main); margin-bottom: 5px; transition: all 0.3s; }

.main-nav { height: 100%; }
.nav-list { display: flex; height: 100%; align-items: center; gap: 32px; }
.nav-item { position: relative; height: 100%; display: flex; align-items: center; }

.nav-link {
    font-weight: 500;
    color: var(--text-muted);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link:hover, .nav-item:hover .nav-link { color: var(--primary); }
.arrow-icon { font-size: 0.7rem; transition: transform 0.2s; }
.nav-item:hover .arrow-icon { transform: rotate(180deg); }

.submenu {
    position: absolute;
    top: 100%; left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #0e0e24;
    min-width: 200px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 8px 0;
    opacity: 0; visibility: hidden;
    transition: all 0.2s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.nav-item:hover .submenu, .nav-item:focus-within .submenu {
    opacity: 1; visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.submenu li a {
    display: block; padding: 10px 20px;
    color: var(--text-muted); font-size: 0.9rem;
}
.submenu li a:hover { background: rgba(255, 255, 255, 0.05); color: var(--text-main); }

/* 
====================================================================
  HERO SECTION
==================================================================== 
*/
.hero {
    position: relative;
    min-height: 550px;
    display: flex;
    align-items: center;
    padding-top: 60px;
    /*padding-bottom: 60px;*/
    overflow: hidden;
    isolation: isolate; /* Create new stacking context to prevent z-index issues */
}

.hero-bg {
    display: none; /* Replaced by video */
}

.hero-video {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0; /* Layer 0: Bottom */
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(0, 243, 255, 0.05), transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(189, 0, 255, 0.05), transparent 50%),
                linear-gradient(to bottom, rgba(10,10,31,0.85), #0a0a1f);
    z-index: 1; /* Layer 1: Above video */
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2; /* Layer 2: Above overlay */
    pointer-events: none;
    opacity: 0.8;
}

/* Dynamic Text Cursor Effect */
#dynamic-text {
    position: relative;
    white-space: nowrap;
}

#dynamic-text::after {
    content: '|';
    position: absolute;
    right: -10px;
    color: var(--primary);
    animation: blink 1s infinite;
    font-weight: 400;
}

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

.hero-container { 
    position: relative; 
    z-index: 3; /* Layer 3: Top (Content) */
    width: 100%; 
}
.hero-content { max-width: 800px; }

.badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px; border-radius: 50px;
    font-size: 0.85rem; font-weight: 500; color: var(--primary);
    margin-bottom: 24px;
}
.badge-dot { width: 6px; height: 6px; background: var(--primary); border-radius: 50%; box-shadow: 0 0 8px var(--primary); }

.hero-title {
    font-family: var(--font-heading); font-size: 4rem; line-height: 1.1;
    font-weight: 800; margin-bottom: 20px; letter-spacing: -1.5px;
}
.text-gradient {
    background: linear-gradient(135deg, var(--text-main) 30%, var(--primary) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.15rem; color: var(--text-muted);
    margin-bottom: 40px; max-width: 600px; line-height: 1.7;
}

.hero-actions { display: flex; gap: 16px; margin-bottom: 50px; }

.btn {
    padding: 14px 30px; border-radius: 6px;
    font-weight: 600; font-size: 1rem;
    text-align: center; cursor: pointer; transition: all 0.3s;
}
.btn-primary {
    background: var(--primary); color: #050510;
    border: 1px solid var(--primary);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.2);
}
.btn-primary:hover { background: #33f6ff; transform: translateY(-2px); }

.btn-secondary {
    background: rgba(255, 255, 255, 0.05); color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.1); backdrop-filter: blur(5px);
}
.btn-secondary:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-2px); }

.tech-stats {
    display: flex; align-items: center; gap: 40px;
    padding-top: 30px; border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.stat-item { display: flex; flex-direction: column; }
.stat-value { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--text-main); }
.stat-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.stat-divider { width: 1px; height: 40px; background: rgba(255, 255, 255, 0.1); }

/* 
====================================================================
  PRICING SECTION
==================================================================== 
*/
.pricing-section {
    padding: 40px 0 100px;
    background-color: var(--bg-dark);
}
.section-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.section-badge {
    display: inline-block; color: var(--secondary); font-weight: 600;
    text-transform: uppercase; letter-spacing: 1.5px;
    font-size: 0.85rem; margin-bottom: 16px;
}
.section-title { font-family: var(--font-heading); font-size: 2.5rem; margin-bottom: 10px; }

.pricing-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px; margin-top: 40px;
}
.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px; padding: 40px;
    position: relative; transition: all 0.3s ease;
}
.pricing-card:hover { border-color: var(--primary); transform: translateY(-5px); }

.pricing-card.popular {
    background: linear-gradient(180deg, rgba(189, 0, 255, 0.05), var(--bg-card));
    border: 1px solid var(--secondary);
    box-shadow: 0 0 30px rgba(189, 0, 255, 0.15);
    transform: scale(1.05); z-index: 2;
}

.popular-tag {
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
    background: var(--secondary); color: white;
    padding: 6px 16px; border-radius: 20px;
    font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
}

.plan-name { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 10px; }
.plan-price { font-family: var(--font-heading); font-size: 3rem; font-weight: 800; color: var(--text-main); margin-bottom: 20px; }
.plan-price .period { font-size: 1rem; color: var(--text-muted); font-weight: 400; }

.plan-features { margin: 30px 0; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; }
.plan-features li { margin-bottom: 16px; display: flex; align-items: center; gap: 12px; color: var(--text-muted); font-size: 0.95rem; }
.check-icon { color: var(--primary); font-size: 0.9rem; }

.btn-plan {
    width: 100%; padding: 14px; border-radius: 8px; font-weight: 600;
    background: rgba(255, 255, 255, 0.05); color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.1); transition: all 0.2s;
    display: block;
}
.pricing-card.popular .btn-plan { background: var(--secondary); border-color: var(--secondary); }
.btn-plan:hover { background: rgba(255, 255, 255, 0.1); border-color: var(--text-main); }
.pricing-card.popular .btn-plan:hover { background: #d04fff; }

/* 
====================================================================
  FEATURES SECTION
==================================================================== 
*/
.features-section { padding: 100px 0; background-color: var(--bg-darker); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 16px; padding: 30px;
    transition: all 0.3s ease;
}
.feature-card:hover { transform: translateY(-5px); border-color: var(--primary); }

.feature-icon {
    width: 50px; height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px; color: var(--primary); font-size: 1.2rem;
    transition: all 0.3s;
}
.feature-card:hover .feature-icon { background: var(--primary); color: #000; }

.feature-title { font-family: var(--font-heading); font-size: 1.2rem; margin-bottom: 10px; font-weight: 700; }
.feature-desc { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }

/* 
====================================================================
  TESTIMONIALS SECTION
==================================================================== 
*/
.testimonials-section { padding: 100px 0; background-color: var(--bg-dark); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }

.testimonial-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    border: 1px solid var(--border-color);
    border-radius: 16px; padding: 30px;
    display: flex; flex-direction: column;
}
.quote-icon { color: var(--secondary); font-size: 1.5rem; margin-bottom: 16px; opacity: 0.5; }
.testimonial-text { font-size: 1rem; font-style: italic; color: var(--text-muted); margin-bottom: 24px; line-height: 1.6; flex-grow: 1; }

.testimonial-author { display: flex; align-items: center; gap: 16px; }
.testimonial-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--border-color); }
.testimonial-author h4 { font-size: 0.95rem; font-weight: 600; color: var(--text-main); }
.testimonial-author span { font-size: 0.8rem; color: var(--primary); }

/* 
====================================================================
  PAYMENTS SECTION (New Styles)
==================================================================== 
*/
.payments-section {
    padding: 60px 0;
    background-color: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.payments-grid {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 30px;
    max-width: 900px; margin: 0 auto;
}
.payment-item {
    display: flex; align-items: center; gap: 10px;
    color: var(--text-muted); font-size: 1.1rem;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid transparent;
    transition: all 0.3s;
}
.payment-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--border-color);
    color: var(--text-main);
    transform: translateY(-2px);
}
.payment-item i { font-size: 1.5rem; }

/* 
====================================================================
  FAQ SECTION (Revamped)
==================================================================== 
*/
.faq-section { padding: 100px 0; background-color: var(--bg-dark); }
.faq-grid { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px; overflow: hidden;
    transition: all 0.3s;
}
.faq-item:hover { border-color: var(--primary); }
.faq-item[open] { background: rgba(255, 255, 255, 0.04); border-color: var(--border-color); }

.faq-item summary {
    padding: 20px 24px; cursor: pointer;
    font-weight: 600; font-size: 1.05rem;
    list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }

.toggle-icon {
    width: 24px; height: 24px; display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.1); border-radius: 50%;
    color: var(--primary); transition: all 0.3s;
}
.faq-item[open] .toggle-icon { transform: rotate(45deg); background: var(--primary); color: #000; }

.faq-content { padding: 0 24px 24px; color: var(--text-muted); line-height: 1.6; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 20px; }

/* 
====================================================================
  CTA SECTION (Redesigned)
==================================================================== 
*/
.cta-section-new { padding: 100px 0; background-color: var(--bg-darker); }

.cta-box {
    background: linear-gradient(90deg, #0f0f2d 0%, #1a1a3a 100%);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 60px;
    display: flex; align-items: center; justify-content: space-between;
    position: relative; overflow: hidden;
    box-shadow: 0 20px 50px -10px rgba(0,0,0,0.3);
}

.cta-box::before {
    content: ''; position: absolute; top: 0; right: 0;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(0, 243, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%; transform: translate(30%, -30%);
}

.cta-content { max-width: 500px; position: relative; z-index: 2; }

.cta-title { font-family: var(--font-heading); font-size: 2.5rem; margin-bottom: 16px; line-height: 1.2; }
.cta-desc { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 32px; }

.cta-buttons { display: flex; gap: 16px; }
.btn-outline {
    padding: 14px 30px; border-radius: 6px; font-weight: 600;
    border: 2px solid var(--border-color); color: var(--text-main);
    transition: all 0.3s; display: inline-block;
}
.btn-outline:hover { border-color: var(--text-main); background: rgba(255,255,255,0.05); }

.cta-visual {
    font-size: 10rem; color: rgba(255,255,255,0.03);
    transform: rotate(-15deg); margin-right: 40px;
}

/* 
====================================================================
  MIGRATION SECTION
==================================================================== 
*/
.migration-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #060624 0%, #1a0b36 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

/* Background overlay for depth */
.migration-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 50%, rgba(0, 243, 255, 0.05), transparent 60%);
    pointer-events: none;
}

.migration-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.migration-text {
    flex: 1;
    max-width: 650px;
}

.migration-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-main);
}

.migration-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.7;
}

.migration-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    min-height: 300px;
    background: radial-gradient(circle at center, rgba(0, 243, 255, 0.03) 0%, transparent 70%); /* Subtle glow */
}

/* Abstract Tech Visualization */
.migration-pattern-dots {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 200px;
    height: 200px;
    background-image: radial-gradient(rgba(255, 255, 255, 0.15) 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.6;
}

.migration-pattern-wave {
    position: absolute;
    top: 30%;
    left: 10%;
    width: 150px;
    height: 150px;
    border: 1px solid rgba(189, 0, 255, 0.3);
    border-radius: 50%;
    animation: pulse 4s infinite;
}

.migration-pattern-circle-2 {
    position: absolute;
    bottom: 20%;
    right: 15%;
    width: 100px;
    height: 100px;
    border: 1px dashed rgba(0, 243, 255, 0.3);
    border-radius: 50%;
    animation: rotate 10s linear infinite;
}

.migration-icon-large {
    font-size: 10rem; /* Increased size */
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 40px rgba(0, 243, 255, 0.4));
    animation: float 6s ease-in-out infinite;
    z-index: 2;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@media screen and (max-width: 992px) {
    .migration-content {
        flex-direction: column;
        text-align: center;
    }

    .migration-text {
        max-width: 100%;
    }
    
    .migration-visual {
        min-height: 250px;
        width: 100%;
    }
    
    .migration-pattern-dots {
        right: 50%;
        transform: translateX(50%) translateY(-50%);
    }
}

/* 
====================================================================
  FOOTER
==================================================================== 
*/
.footer { background: #02020a; padding: 80px 0 40px; border-top: 1px solid var(--border-color); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 60px; }

.footer-brand p { color: var(--text-muted); margin-top: 20px; font-size: 0.9rem; max-width: 300px; }
.social-links {
    margin-top: 20px;
}

.telegram-contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 1rem;
    padding: 10px 20px;
    border-radius: 50px;
    /* transition: all 0.3s ease; */
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.telegram-contact i {
    font-size: 1.4rem;
    color: #0088cc; /* Telegram Color */
    transition: transform 0.3s ease;
}

.telegram-contact:hover {
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.2), rgba(0, 136, 204, 0.1));
    border-color: #0088cc;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
}

.telegram-contact:hover i {
    transform: scale(1.1);
    color: #fff;
}

.footer-col h4 { color: var(--text-main); margin-bottom: 24px; font-weight: 600; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { color: var(--text-muted); font-size: 0.9rem; }
.footer-col ul li a:hover { color: var(--primary); }

.footer-bottom {
    padding-top: 40px; border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex; justify-content: space-between; align-items: center;
    color: var(--text-muted); font-size: 0.85rem;
}
.legal-links { display: flex; gap: 20px; }


/* 
====================================================================
  DATACENTER MAP SECTION
==================================================================== 
*/
.datacenter-section {
    padding: 100px 0;
    background: var(--bg-darker);
    position: relative;
    overflow: hidden;
}

.map-container {
    position: relative;
    max-width: 1000px;
    margin: 60px auto 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(0, 243, 255, 0.05);
    border: 1px solid var(--border-color);
    background: #000;
}

.map-image {
    width: 100%;
    display: block;
    opacity: 0.7;
    transition: opacity 0.3s;
    object-fit: cover;
}

.map-container:hover .map-image {
    opacity: 1;
}

.map-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 0 10px var(--primary);
    animation: pulse 2s infinite;
}

.map-dot::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 30px; height: 30px;
    border: 1px solid var(--primary);
    border-radius: 50%;
    animation: ripple 2s infinite;
}

/* Specific positions for World Map */
.dot-germany { top: 28%; left: 52%; }
.dot-netherlands { top: 27%; left: 51%; }

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 243, 255, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(0, 243, 255, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 243, 255, 0); }
}

@keyframes ripple {
    0% { width: 10px; height: 10px; opacity: 1; }
    100% { width: 50px; height: 50px; opacity: 0; }
}

.map-tooltip {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-card);
    padding: 8px 16px;
    border-radius: 6px;
    border: 1px solid var(--primary);
    color: var(--text-main);
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 3;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.map-dot:hover .map-tooltip {
    opacity: 1;
    visibility: visible;
    bottom: 35px;
}

/* 
====================================================================
  TECH STACK / OS SECTION
==================================================================== 
*/
.tech-stack-section {
    padding: 80px 0;
    background: var(--bg-dark);
    border-top: 1px solid var(--border-color);
}

.tech-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.tech-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    width: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    text-align: center;
}

.tech-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px -10px rgba(0, 243, 255, 0.2);
}

.tech-icon {
    font-size: 2.5rem;
    /*color: var(--text-muted);*/
    margin-bottom: 15px;
    transition: color 0.3s;
}

.tech-card:hover .tech-icon {
    color: var(--primary);
}

.tech-name {
    font-weight: 600;
    color: var(--text-main);
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .hero-title { font-size: 3.5rem; }
    .pricing-card.popular { transform: scale(1); z-index: 1; }
    .cta-box { flex-direction: column; text-align: center; padding: 40px; }
    .cta-content { max-width: 100%; }
    .cta-visual { display: none; }
    .cta-buttons { justify-content: center; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    /* Top Bar - Make visible and stack */
    .top-bar { 
        display: flex; 
        height: auto;
        padding: 10px 0;
        z-index: 1000; /* Ensure high z-index */
    } 
    
    .contact-info {
        display: flex;
        align-items: center;
        gap: 8px;
        color: var(--text-muted);
        width: 100%; /* Take full width */
        justify-content: center; /* Center content */
    }

    .top-bar-actions {
        display: flex;
        align-items: center;
        gap: 20px;
        width: 100%; /* Take full width */
        justify-content: center; /* Center content */
    }
    
    .top-bar-content {
        flex-direction: row; /* Keep in one row */
        gap: 10px;
        justify-content: center;
        flex-wrap: wrap; /* Wrap if screen is extremely small */
    }

    /* Adjust Header Positioning */
    .main-header { 
        position: sticky; /* Stick to top */
        top: 0;
        height: 70px; 
        background: rgba(10,10,31,0.95); /* More opaque on mobile */
        z-index: 999;
    }
    
    /* Adjust Hero Padding since Header is now sticky/relative flow */
    .hero { 
        padding-top: 40px; /* Reduced padding as header takes space */
        min-height: auto; /* Allow height to grow */
    }
    
    /* Mobile Nav */
    .nav-toggle-label { display: block; }
    
    .main-nav {
        position: absolute; /* Absolute to the header */
        top: 100%; 
        left: 0; 
        width: 100%;
        background: var(--bg-darker); 
        border-bottom: 1px solid var(--border-color);
        max-height: 0; 
        overflow: hidden; 
        transition: max-height 0.4s ease-in-out;
        box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        scrollbar-width: thin; /* Firefox */
        scrollbar-color: var(--primary) var(--bg-darker);
    }
    
    #nav-toggle:checked ~ .main-nav { 
        max-height: calc(100vh - 70px); /* Limit height to viewport minus header */
        overflow-y: auto; /* Enable vertical scrolling */
    }
    
    .nav-list { 
        flex-direction: column; 
        align-items: flex-start; 
        padding: 0; 
        height: auto; 
    }
    
    .nav-item { 
        width: 100%; 
        flex-direction: column; 
        align-items: flex-start; 
        height: auto;
    }
    
    .nav-link { 
        width: 100%; 
        padding: 15px 20px; 
        justify-content: space-between; 
        border-bottom: 1px solid rgba(255,255,255,0.05); 
        color: var(--text-main);
    }
    
    /* Submenu Mobile */
    .submenu {
        position: static; 
        transform: none; 
        width: 100%; 
        opacity: 1; 
        visibility: visible;
        background: rgba(0,0,0,0.2); 
        display: block; /* Always show for simplicity or use JS toggle */
        border: none;
        box-shadow: none;
        padding: 0;
    }
    
    .submenu li a {
        padding-left: 40px; /* Indent submenu items */
        border-bottom: 1px solid rgba(255,255,255,0.02);
    }
    
    .hero-title { font-size: 2.5rem; }
    .hero-actions { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
    
    /* Prevent horizontal overflow on small screens */
    .pricing-grid, .features-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-box {
        padding: 30px 20px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .plan-price {
        font-size: 2.5rem;
    }
    
    .container {
        padding: 0 16px;
    }
}
/* 
====================================================================
  CONTENT/POLICY PAGES (Privacy Policy, Terms of Service, etc.)
==================================================================== 
*/

/* Hero variant for inner pages */
.hero-inner {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    padding-bottom: 80px;
    overflow: hidden;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

.hero-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 30% 20%, rgba(0, 243, 255, 0.12), transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(189, 0, 255, 0.1), transparent 50%);
    pointer-events: none;
}

.hero-inner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

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

.hero-inner .hero-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -1px;
    color: #ffffff;
}

.hero-inner .hero-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Content Section */
.content-section {
    background: var(--bg-dark);
    padding: 80px 0;
    border-top: 1px solid var(--border-color);
}

.policy-content {
    background: var(--bg-card);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.3);
}

.policy-content h2 {
    color: var(--text-main);
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 16px;
    padding-left: 16px;
    border-left: 3px solid var(--primary);
    position: relative;
}

.policy-content h2:first-of-type {
    margin-top: 0;
}

.policy-content h3 {
    color: var(--text-main);
    font-size: 1.15rem;
    font-weight: 600;
    margin-top: 28px;
    margin-bottom: 12px;
}

.policy-content h4 {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
}

.policy-content p {
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.8;
    font-size: 1rem;
}

.policy-content ul,
.policy-content ol {
    margin-left: 24px;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.policy-content ul {
    list-style: disc;
}

.policy-content ol {
    list-style: decimal;
}

.policy-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.policy-content strong {
    color: var(--text-main);
    font-weight: 600;
}

.policy-content .important-notice {
    background: rgba(189, 0, 255, 0.05);
    border: 1px solid rgba(189, 0, 255, 0.2);
    border-radius: 12px;
    padding: 20px 24px;
    margin: 24px 0;
    color: var(--text-muted);
    line-height: 1.7;
}

.last-updated {
    margin-top: 50px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
    display: flex;
    align-items: center;
    gap: 8px;
}

.last-updated::before {
    content: '\f017';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
}

/* 
====================================================================
  CONTACT & FORM STYLES
==================================================================== 
*/

/* Contact Page Layout */
.contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 243, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.5rem;
    color: var(--primary);
}

.info-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-main);
}

.info-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.info-card a {
    color: var(--primary);
    font-weight: 500;
    transition: color 0.2s;
}

.info-card a:hover {
    color: #33f6ff;
}

.info-card .highlight {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Form Container */
.form-container {
    background: linear-gradient(145deg, rgba(14, 14, 36, 0.9), rgba(14, 14, 36, 1));
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.form-header {
    text-align: center;
    margin-bottom: 32px;
}

.form-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: #fff;
}

.form-header h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--text-main);
}

.form-header p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Form Elements */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-main);
}

.form-group .required {
    color: #ff4757;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px;
    padding: 16px 20px;
    font-size: 1rem;
    color: #ffffff !important;
    font-family: var(--font-body);
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(148, 163, 184, 0.6);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(0, 243, 255, 0.03);
    box-shadow: 0 0 0 3px rgba(0, 243, 255, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2394a3b8' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group select option {
    background: var(--bg-card);
    color: var(--text-main);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Form Notice */
.form-notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(0, 243, 255, 0.05);
    border: 1px solid rgba(0, 243, 255, 0.2);
    border-radius: 10px;
    padding: 16px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.form-notice i {
    color: var(--primary);
    margin-top: 2px;
}

/* Submit Button */
.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
}

/* Form Alerts */
.form-alert {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 12px;
    font-weight: 500;
    margin-bottom: 24px;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

/* Success Container */
.success-container {
    text-align: center;
    padding: 60px 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 3rem;
    color: #10b981;
}

.success-container h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: var(--text-main);
}

.success-container p {
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Form Styles */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-container {
        padding: 30px 24px;
    }
    
    .contact-info-cards {
        grid-template-columns: 1fr;
    }
    
    .btn-submit {
        max-width: 100%;
    }
}

/* 
====================================================================
  ABOUT US PAGE STYLES
==================================================================== 
*/

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: var(--bg-dark);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

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

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.stat-card.featured {
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.05), rgba(189, 0, 255, 0.05));
    border-color: var(--primary);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.stat-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 12px;
}

.stat-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: var(--bg-darker);
}

.team-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    min-width: 280px;
    max-width: 320px;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px -10px rgba(0, 243, 255, 0.15);
}

.team-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.2);
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
}

.team-role {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 12px;
}

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

.team-social a:hover {
    background: var(--primary);
    color: #000;
}

/* Datacenter Info Section */
.datacenter-info-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

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

.datacenter-text .section-badge {
    margin-bottom: 16px;
}

.datacenter-text .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.datacenter-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.datacenter-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.datacenter-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 1rem;
}

.datacenter-features li i {
    color: var(--primary);
    font-size: 0.9rem;
}

.datacenter-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.dc-icon-wrapper {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.1), rgba(189, 0, 255, 0.1));
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    animation: float 6s ease-in-out infinite;
}

.dc-icon-wrapper i {
    font-size: 5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dc-location-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-card);
    border: 1px solid var(--primary);
    padding: 12px 24px;
    border-radius: 50px;
    color: var(--text-main);
    font-weight: 600;
}

.dc-location-badge i {
    color: var(--primary);
}

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

/* Visit CTA Section */
.visit-section {
    padding: 80px 0;
    background: var(--bg-darker);
}

.visit-card {
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.05), rgba(189, 0, 255, 0.05));
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 50px;
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.visit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    flex-shrink: 0;
}

.visit-content {
    flex: 1;
    min-width: 250px;
}

.visit-content h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: var(--text-main);
}

.visit-content p {
    color: var(--text-muted);
    font-size: 1rem;
}

.visit-card .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

/* About Page Responsive */
@media (max-width: 992px) {
    .datacenter-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .datacenter-text .section-title {
        text-align: center;
    }
    
    .datacenter-features {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .visit-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }
    
    .dc-icon-wrapper {
        width: 150px;
        height: 150px;
    }
    
    .dc-icon-wrapper i {
        font-size: 3.5rem;
    }
}

/* Responsive adjustments for content pages */
@media (max-width: 768px) {
    .hero-inner {
        min-height: 220px;
        padding-top: 100px;
        padding-bottom: 40px;
    }
    
    .hero-inner .hero-title {
        font-size: 2.2rem;
    }
    
    .policy-content {
        padding: 30px 24px;
        border-radius: 16px;
    }
    
    .policy-content h2 {
        font-size: 1.25rem;
    }
}

/* Mobile Menu Updates */
.mobile-only { display: none; }
.desktop-only { display: flex; }
.mobile-menu-header { display: none; }
.mobile-menu-footer { display: none; }

/* Drawer Styles (Mobile) */
@media (max-width: 768px) {
    .mobile-only { display: block; }
    .desktop-only { display: none; }
    
    /* Main Nav Drawer Container */
    .main-nav {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        background: var(--bg-darker) !important;
        z-index: 2000 !important;
        display: flex;
        flex-direction: column;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        border-right: 1px solid var(--border-color);
        max-height: none !important; /* Override previous max-height transition */
        box-shadow: none !important;
        overflow-y: auto !important;
    }

    /* When toggle is checked, slide in */
    #nav-toggle:checked ~ .main-nav {
        transform: translateX(0);
        max-height: 100vh !important;
    }

    /* Header inside Drawer */
    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        border-bottom: 1px solid var(--border-color);
        flex-shrink: 0;
    }

    .close-menu-btn {
        color: var(--text-main);
        font-size: 1.5rem;
        cursor: pointer;
        padding: 5px;
    }

    /* Navigation List in Drawer */
    .nav-list {
        flex-direction: column;
        padding: 20px;
        gap: 0;
        width: 100%;
        overflow-y: auto;
        flex-grow: 1;
    }

    .nav-item {
        width: 100%;
        border-bottom: none;
        display: block;
        margin-bottom: 10px;
    }

    /* Links Styling */
    .nav-link {
        font-size: 1rem;
        padding: 10px 0;
        border-bottom: none;
        font-weight: 500;
    }

    /* Group Headers (HOSTING, SERVERS) */
    .nav-group-header {
        color: var(--primary);
        font-weight: 700;
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-top: 20px;
        margin-bottom: 10px;
        padding-top: 10px; /* Slight separation */
    }

    /* Submenu in Mobile (Always Visible/Indented) */
    .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0 0 0 15px; /* Indent */
        min-width: auto;
        display: block;
    }
    
    /* Fix for hover state leaking from desktop */
    .nav-item:hover .submenu, .nav-item:focus-within .submenu {
        transform: none;
        opacity: 1;
        visibility: visible;
    }

    .submenu li a {
        padding: 8px 0;
        font-size: 0.95rem;
        color: var(--text-muted);
        border-bottom: none;
    }
    
    .submenu li a:hover {
        background: transparent;
        color: var(--primary);
        padding-left: 5px; /* Slight movement on hover */
    }

    /* Footer in Drawer */
    .mobile-menu-footer {
        display: block;
        padding: 20px;
        border-top: 1px solid var(--border-color);
        background: var(--bg-dark);
        flex-shrink: 0; /* Keep at bottom */
    }

/* Sticky Header Mobile Fix */
@media (max-width: 768px) {
    /* Unstick top bar on mobile so it scrolls away */
    .top-bar {
        position: relative;
    }
    
    /* Stick main header to the very top when top bar scrolls away */
    .main-header {
        top: 0;
    }
    
    /* Ensure hero content doesn't get hidden behind header */
    .hero-inner {
        padding-top: calc(var(--header-height) + 20px);
    }
}
    /* Hide the original hamburger when menu is open? No, layout covers it */
}
