﻿/* Bloom Hosting - Futuristic Theme */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary: #00d4ff;
    --secondary: #9d4edd;
    --accent: #f72585;
    --dark: #0a0e27;
    --darker: #050816;
    --light: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--light);
    background: var(--darker);
    overflow-x: hidden;
    position: relative;
    min-width: 320px;
}

/* Prevent content overflow on all elements */
img, video, iframe, embed, object {
    max-width: 100%;
    height: auto;
}

/* Word break for long text */
h1, h2, h3, h4, h5, h6, p, a, span, td, th, li {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Background gradient - static, no parallax */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(120, 9, 183, 0.15), transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.15), transparent 50%);
    z-index: -1;
    pointer-events: none;
    background-attachment: scroll;
    will-change: auto;
}

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

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
}

/* Navigation */
.navbar {
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    padding: 1rem 0;
    position: sticky; top: 0; z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    z-index: 1001;
    padding: 0.5rem 0;
    position: relative;
}

.logo-image {
    height: 28px;
    width: auto;
    transition: all 0.5s ease;
    filter: brightness(1.1) drop-shadow(0 0 10px rgba(0, 212, 255, 0.3));
}

/* Bloom/Flourish effect on logo hover */
.logo::before,
.logo::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: radial-gradient(circle, #00d4ff, transparent);
    opacity: 0;
    transition: all 0.6s ease;
    pointer-events: none;
}

.logo::before {
    left: 50%;
    top: 50%;
    box-shadow: 
        0 0 0 0 rgba(0, 212, 255, 0.4),
        -15px -20px 0 rgba(0, 212, 255, 0),
        15px -18px 0 rgba(157, 78, 221, 0),
        -20px 5px 0 rgba(0, 212, 255, 0),
        20px 8px 0 rgba(157, 78, 221, 0),
        -10px 20px 0 rgba(0, 212, 255, 0),
        12px 22px 0 rgba(157, 78, 221, 0);
}

.logo:hover::before {
    opacity: 1;
    box-shadow: 
        0 0 20px 5px rgba(0, 212, 255, 0.3),
        -25px -30px 0 rgba(0, 212, 255, 0.8),
        25px -28px 0 rgba(157, 78, 221, 0.7),
        -35px 8px 0 rgba(0, 212, 255, 0.6),
        35px 12px 0 rgba(157, 78, 221, 0.8),
        -18px 32px 0 rgba(0, 212, 255, 0.7),
        20px 35px 0 rgba(157, 78, 221, 0.6);
}

.logo:hover .logo-image {
    transform: translateY(-2px) scale(1.05);
    filter: brightness(1.3) drop-shadow(0 0 20px rgba(0, 212, 255, 0.6));
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
    justify-content: center;
}

.nav-item {
    position: relative;
}

.nav-item.has-dropdown .nav-link {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-item.has-dropdown .nav-link i {
    font-size: 0.75rem;
    transition: transform 0.3s;
}

.nav-item.has-dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

.nav-link {
    color: var(--light);
    font-weight: 500;
    position: relative;
    transition: all 0.3s;
    text-decoration: none;
    padding: 0.5rem 0;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width 0.3s;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover::before {
    width: 100%;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(10, 14, 39, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 10px;
    padding: 0.5rem 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    margin-top: 0.5rem;
}

.nav-item.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--light);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.dropdown-item:hover {
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary);
    padding-left: 2rem;
}

.nav-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.nav-actions .btn {
    padding: 0.75rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.nav-actions .btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.nav-actions .btn-secondary:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
    transform: translateY(-2px);
}

.nav-actions .btn-primary {
    background: linear-gradient(135deg, #00d4ff, #7b3ff2);
    color: white;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.4);
}

.nav-actions .btn-primary:hover {
    background: linear-gradient(135deg, #00e5ff, #9d4edd);
    box-shadow: 0 6px 30px rgba(0, 212, 255, 0.6);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: all 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Alerts */
.alert {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    border-left: 4px solid;
}

.alert-success {
    background: rgba(0, 255, 136, 0.1);
    border-color: #00ff88;
    color: #00ff88;
}

.alert-error, .alert-danger {
    background: rgba(255, 68, 68, 0.1);
    border-color: #ff4444;
    color: #ff4444;
}

.alert-info {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--primary);
    color: var(--primary);
}

.alert-warning {
    background: rgba(255, 193, 7, 0.1);
    border-color: #ffc107;
    color: #ffc107;
}

.hero {
    position: relative; padding: 8rem 0 12rem; overflow: hidden;
    background: var(--darker);
    margin-bottom: 0;
}

.hero::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at top, rgba(102, 126, 234, 0.15), transparent 70%);
    pointer-events: none;
}

/* Bloom Particles - Disabled */
.bloom-particles {
    display: none;
}

.bloom-particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.8), rgba(157, 78, 221, 0.4), transparent);
    animation: bloomFloat 15s ease-in-out infinite;
    opacity: 0;
}

.bloom-particle:nth-child(1) {
    width: 20px; height: 20px;
    left: 10%; top: 20%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.bloom-particle:nth-child(2) {
    width: 15px; height: 15px;
    left: 20%; top: 60%;
    animation-delay: 2s;
    animation-duration: 14s;
}

.bloom-particle:nth-child(3) {
    width: 25px; height: 25px;
    left: 70%; top: 30%;
    animation-delay: 4s;
    animation-duration: 16s;
}

.bloom-particle:nth-child(4) {
    width: 12px; height: 12px;
    left: 80%; top: 70%;
    animation-delay: 1s;
    animation-duration: 13s;
}

.bloom-particle:nth-child(5) {
    width: 18px; height: 18px;
    left: 50%; top: 10%;
    animation-delay: 3s;
    animation-duration: 15s;
}

.bloom-particle:nth-child(6) {
    width: 22px; height: 22px;
    left: 90%; top: 40%;
    animation-delay: 5s;
    animation-duration: 11s;
}

.bloom-particle:nth-child(7) {
    width: 14px; height: 14px;
    left: 30%; top: 80%;
    animation-delay: 2.5s;
    animation-duration: 14s;
}

.bloom-particle:nth-child(8) {
    width: 16px; height: 16px;
    left: 60%; top: 50%;
    animation-delay: 4.5s;
    animation-duration: 12s;
}

@keyframes bloomFloat {
    0% {
        opacity: 0;
        transform: scale(0) translateY(0) rotate(0deg);
    }
    10% {
        opacity: 0.8;
        transform: scale(1) translateY(-20px) rotate(45deg);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2) translateY(-60px) rotate(180deg);
    }
    90% {
        opacity: 0.3;
        transform: scale(0.8) translateY(-100px) rotate(315deg);
    }
    100% {
        opacity: 0;
        transform: scale(0) translateY(-120px) rotate(360deg);
    }
}

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

.hero-title {
    font-size: 4rem; font-weight: 900; margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff, #00d4ff, #9d4edd);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    animation: fadeInUp 0.8s ease; line-height: 1.2;
}

@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

.hero-subtitle { font-size: 1.5rem; margin-bottom: 3rem; opacity: 0.9; animation: fadeInUp 0.8s ease 0.2s both; }
.hero-cta { display: flex; gap: 1.5rem; justify-content: center; margin-bottom: 4rem; animation: fadeInUp 0.8s ease 0.4s both; flex-wrap: wrap; }

a {
    text-decoration: none;
    color: inherit;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #00d4ff, #9d4edd);
    color: white;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.5);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #00d4ff, #9d4edd);
    transform: translateY(-3px) scale(1.05);
}

.btn-lg {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

/* Enhanced Contact Sales Button */
.cta-buttons .btn-outline.btn-lg {
    padding: 1.2rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

.cta-buttons .btn-outline.btn-lg i {
    font-size: 1.2rem;
}

.cta-buttons .btn-outline.btn-lg:hover {
    animation: slideInGlow 0.6s ease;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Scroll Animations */
.fade-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

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

.mt-4 {
    margin-top: 3rem;
}

.mb-4 {
    margin-bottom: 3rem;
}

.mt-2 {
    margin-top: 1.5rem;
}

.mb-2 {
    margin-bottom: 1.5rem;
}

.domain-search-box {
    background: rgb(10, 14, 39);
    padding: 3rem; border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    max-width: 700px; margin: 0 auto;
    border: 1px solid rgba(0, 212, 255, 0.2);
    animation: fadeInUp 0.8s ease 0.6s both;
    position: relative;
}

.domain-search-box h2 { color: var(--light); margin-bottom: 2rem; font-size: 1.8rem; }

.search-input-group { display: flex; gap: 1rem; margin-bottom: 1.5rem; }

.search-input-group input {
    flex: 1; padding: 1.2rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 15px; color: var(--light);
    transition: all 0.3s; outline: none;
}

.search-input-group input:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.domain-extensions { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }

.domain-extensions span {
    color: rgba(255, 255, 255, 0.7); padding: 0.5rem 1rem;
    background: rgba(0, 212, 255, 0.1); border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s; cursor: pointer;
}

.domain-extensions span:hover {
    background: rgba(0, 212, 255, 0.2);
    transform: translateY(-2px); color: var(--primary);
}

.section { padding: 6rem 0; position: relative; background: var(--darker); }
.features.section { padding-top: 4rem; background: var(--darker); }

.page-header {
    text-align: center;
    padding: 6rem 0 5rem;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.8), rgba(79, 39, 131, 0.3));
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid rgba(0, 212, 255, 0.3);
    box-shadow: inset 0 -2px 30px rgba(0, 212, 255, 0.1);
}

/* Animated background elements */
.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.15), transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(157, 78, 221, 0.15), transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(247, 37, 133, 0.1), transparent 50%);
    animation: pageHeaderShift 8s ease-in-out infinite;
    pointer-events: none;
}

.page-header::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1), transparent 70%);
    border-radius: 50%;
    animation: floatAround 20s ease-in-out infinite;
    pointer-events: none;
}

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

@keyframes floatAround {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(-30px, -40px); }
    50% { transform: translate(40px, -20px); }
    75% { transform: translate(20px, 30px); }
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 50%, #9d4edd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 0.8s ease-out;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
    letter-spacing: -1px;
}

@keyframes titleGlow {
    from {
        opacity: 0;
        transform: translateY(-20px);
        text-shadow: 0 0 10px rgba(0, 212, 255, 0.1);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        text-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
    }
}

.page-header p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    letter-spacing: 0.5px;
    margin-bottom: 3rem;
}

/* Header Badge */
.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.8rem 1.5rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50px;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out both;
    font-size: 0.95rem;
    font-weight: 600;
    color: #00d4ff;
    backdrop-filter: blur(10px);
}

.header-badge i {
    font-size: 1.1rem;
}

/* Header Stats */
.header-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.header-stats .stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 1.5rem;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
    min-width: 180px;
    cursor: default;
}

.header-stats .stat i {
    font-size: 2.5rem;
    color: #00d4ff;
    animation: statIconFloat 3s ease-in-out infinite;
    display: block;
    margin-bottom: 0.5rem;
    opacity: 1;
    visibility: visible;
    line-height: 1;
}

.header-stats .stat:nth-child(1) i {
    animation-delay: 0s;
}

.header-stats .stat:nth-child(2) i {
    animation-delay: 0.5s;
}

.header-stats .stat:nth-child(3) i {
    animation-delay: 1s;
}

/* Ensure fa-world icon specifically displays */
.header-stats .stat:nth-child(1) i::before {
    content: '\f0ac';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

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

.header-stats .stat span {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
}

.header-stats .stat:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--light);
    text-align: center;
}

.section-header { text-align: center; margin-bottom: 4rem; }

.section-header h2 {
    font-size: 3rem; margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff, #00d4ff);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.section-header p { color: rgba(255, 255, 255, 0.7); font-size: 1.2rem; max-width: 600px; margin: 0 auto; }

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

.feature-card {
    padding: 2.5rem; background: rgba(10, 14, 39, 0.6);
    backdrop-filter: blur(10px); border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.4s; position: relative; overflow: hidden;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
    border-color: var(--primary);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(157, 76, 221, 0.2));
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

/* Bloom/Flourish ring effect */
.feature-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: all 0.5s ease;
}

.feature-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s ease;
}

.feature-icon i {
    color: #00d4ff;
    transition: all 0.4s ease;
    z-index: 1;
}

/* Flourish animation on hover */
.feature-card:hover .feature-icon {
    transform: scale(1.15);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.35), rgba(157, 76, 221, 0.35));
    box-shadow: 
        0 0 30px rgba(0, 212, 255, 0.4),
        0 0 60px rgba(157, 78, 221, 0.2);
}

.feature-card:hover .feature-icon::before {
    border-color: rgba(0, 212, 255, 0.5);
    transform: scale(1.3);
    opacity: 0;
    animation: bloomRing 1s ease-out infinite;
}

.feature-card:hover .feature-icon::after {
    opacity: 1;
    transform: scale(1.5);
}

.feature-card:hover .feature-icon i {
    transform: scale(1.1);
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.8);
}

@keyframes bloomRing {
    0% {
        transform: scale(1);
        opacity: 0.6;
        border-color: rgba(0, 212, 255, 0.6);
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
        border-color: rgba(157, 78, 221, 0);
    }
}

.feature-card h3 { margin-bottom: 1rem; color: var(--light); font-size: 1.5rem; font-weight: 700; }
.feature-card p { color: rgba(255, 255, 255, 0.7); line-height: 1.8; }

.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2.5rem; max-width: 1200px; margin: 0 auto; }

.pricing-card {
    background: rgba(10, 14, 39, 0.6); backdrop-filter: blur(10px);
    border-radius: 20px; padding: 3rem 2rem;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.4s; position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px); box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
}

.plan-name { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; color: var(--light); }

.plan-price {
    font-size: 3rem; font-weight: 900; margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #00d4ff, #9d4edd);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.plan-features { list-style: none; margin: 2rem 0; flex-grow: 1; }
.plan-features li { padding: 0.75rem 0; color: rgba(255, 255, 255, 0.8); }
.plan-features li i { color: var(--primary); margin-right: 0.75rem; }

/* Auth Pages (Login/Register) */
.auth-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.auth-form-container {
    background: rgba(10, 14, 39, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 3rem;
}

.auth-form-container h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: var(--light);
}

.auth-form .form-group {
    margin-bottom: 1.5rem;
}

.auth-form label {
    display: block;
    color: var(--light);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"],
.auth-form input[type="tel"],
.auth-form select {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 10px;
    color: #1a1a2e;
    font-size: 1rem;
    transition: all 0.3s;
}

.auth-form input::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.auth-form input:focus,
.auth-form select:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.auth-form small {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
    font-size: 0.875rem;
}

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

.auth-form .btn {
    width: 100%;
    margin-top: 1rem;
}

.auth-links {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.auth-links p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    text-align: center;
}

.auth-links a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 600;
    display: inline-block;
}

.auth-links a:hover {
    color: var(--light);
    text-decoration: underline;
}

.remember-me-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.remember-me-wrapper input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary);
}

.remember-me-wrapper label {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
    cursor: pointer;
    font-weight: normal;
}

.auth-social {
    margin-top: 2rem;
}

.auth-social h3 {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.social-login-buttons {
    display: flex;
    gap: 1rem;
}

.social-login-buttons .btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Footer */
.footer {
    background: rgba(5, 8, 22, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    padding: 4rem 0 1.5rem;
    margin-top: 6rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: block;
    margin-bottom: 1.5rem;
}

.footer-logo-image {
    height: 32px;
    width: auto;
}

.footer-col h3 {
    font-size: 1.5rem;
    color: var(--light);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #00d4ff, #9d4edd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-col h4 {
    font-size: 1.1rem;
    color: var(--light);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    transition: all 0.3s;
}

.social-links a:hover {
    background: linear-gradient(135deg, #00d4ff, #9d4edd);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    margin: 0;
}

.payment-methods {
    display: flex;
    gap: 1rem;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.5);
}

.payment-methods i {
    transition: all 0.3s;
}

.payment-methods i:hover {
    color: var(--primary);
    transform: scale(1.1);
}

/* Domain Search */
.domain-search { padding: 4rem 0; }
.search-box-large { max-width: 900px; margin: 0 auto; }
.domain-search-form { position: relative; }
.search-input-wrapper {
    display: flex; gap: 1rem; align-items: center;
    background: rgba(10, 14, 39, 0.6); backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 15px; padding: 1rem 1.5rem;
    transition: all 0.3s;
}
.search-input-wrapper:focus-within { border-color: var(--primary); box-shadow: 0 0 30px rgba(0, 212, 255, 0.3); }
.search-input-wrapper i { color: var(--primary); font-size: 1.5rem; }
.search-input-wrapper input {
    flex: 1; border: none; background: transparent; color: var(--light);
    font-size: 1.1rem; padding: 0.5rem;
}
.search-input-wrapper input:focus { outline: none; }

/* Domain Pricing Table */
.domain-pricing { padding: 4rem 0; }
.pricing-table { overflow-x: auto; margin-top: 2rem; }
.table-responsive { width: 100%; overflow-x: auto; }
table {
    width: 100%; border-collapse: collapse;
    background: rgba(10, 14, 39, 0.6); backdrop-filter: blur(10px);
    border-radius: 15px; overflow: hidden;
}
thead { background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(157, 78, 221, 0.2)); }
thead th {
    padding: 1.5rem 1rem; text-align: left; color: var(--light);
    font-weight: 700; font-size: 1rem; text-transform: uppercase; letter-spacing: 1px;
}
tbody tr {
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    transition: all 0.3s;
}
tbody tr:hover { background: rgba(0, 212, 255, 0.05); }
tbody td {
    padding: 1.25rem 1rem; color: rgba(255, 255, 255, 0.8);
}
tbody td:first-child { font-weight: 600; color: var(--primary); }
.featured-tld { background: rgba(0, 212, 255, 0.08); }
.btn-sm { padding: 0.5rem 1.5rem; font-size: 0.9rem; }

/* FAQ Section */
.domain-faq { padding: 4rem 0; }
.faq-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 2rem; }
.faq-item {
    background: rgba(10, 14, 39, 0.6); backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px; padding: 2rem;
    transition: all 0.3s;
}
.faq-item:hover { transform: translateY(-5px); border-color: var(--primary); box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2); }
.faq-item h4 { color: var(--light); margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem; }
.faq-item h4 i { color: var(--primary); }
.faq-item p { color: rgba(255, 255, 255, 0.7); line-height: 1.8; }

/* Plan Pricing Additional */
.plan-price-annual { font-size: 1rem; color: rgba(255, 255, 255, 0.6); margin-bottom: 1rem; }
.savings { color: var(--accent); font-weight: 600; }
.plan-description { color: rgba(255, 255, 255, 0.7); margin-bottom: 1.5rem; min-height: 3rem; }
.featured-badge {
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    color: var(--light); padding: 0.5rem 1.5rem; border-radius: 20px;
    font-size: 0.85rem; font-weight: 700; text-transform: uppercase;
}
.pricing-card.featured {
    border-color: var(--secondary); box-shadow: 0 0 40px rgba(157, 78, 221, 0.3);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    background: rgba(10, 14, 39, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 2.5rem;
    transition: all 0.4s;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(157, 78, 221, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    transition: all 0.4s;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--light);
}

.service-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.service-link:hover {
    gap: 1rem;
    color: var(--secondary);
}

.service-link i {
    transition: transform 0.3s;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Testimonials Section */
.bg-light {
    background: rgba(10, 14, 39, 0.4);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 2.5rem;
    transition: all 0.4s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
}

.testimonial-stars {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
    color: #ffc107;
    font-size: 1.2rem;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.testimonial-author strong {
    color: var(--light);
    font-size: 1.1rem;
}

.testimonial-author span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(157, 78, 221, 0.15));
    border-top: 1px solid rgba(0, 212, 255, 0.3);
    border-bottom: 1px solid rgba(0, 212, 255, 0.3);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(157, 78, 221, 0.1) 0%, transparent 50%);
    animation: ctaGlow 10s ease-in-out infinite;
    pointer-events: none;
}

@keyframes ctaGlow {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(2%, 2%) rotate(1deg); }
}

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

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(157, 78, 221, 0.2));
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #00d4ff;
    margin-bottom: 1.5rem;
    animation: badgePulse 3s ease-in-out infinite;
}

.cta-badge i {
    font-size: 1rem;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 212, 255, 0.2); }
    50% { box-shadow: 0 0 30px rgba(0, 212, 255, 0.4); }
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-buttons .btn {
    min-width: 180px;
}

.cta-buttons .btn i {
    margin-right: 0.5rem;
}

.cta-buttons .btn-primary {
    animation: ctaPulse 2s infinite;
}

.cta-buttons .btn-outline {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(0, 212, 255, 0.1));
    border: 2px solid rgba(0, 212, 255, 0.5);
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.cta-buttons .btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.cta-buttons .btn-outline:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 212, 255, 0.15));
    border-color: #00d4ff;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4), inset 0 0 20px rgba(0, 212, 255, 0.1);
    transform: translateY(-2px);
}

.cta-buttons .btn-outline:hover::before {
    left: 100%;
}

@keyframes ctaPulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
    }
    50% {
        box-shadow: 0 10px 40px rgba(0, 212, 255, 0.5);
    }
}

@keyframes slideInGlow {
    0% {
        transform: translateY(-2px);
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.4), inset 0 0 20px rgba(0, 212, 255, 0.1);
    }
    50% {
        box-shadow: 0 0 30px rgba(0, 212, 255, 0.6), inset 0 0 30px rgba(0, 212, 255, 0.15);
    }
    100% {
        transform: translateY(-2px);
        box-shadow: 0 0 25px rgba(0, 212, 255, 0.5), inset 0 0 25px rgba(0, 212, 255, 0.12);
    }
}

.cta-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.cta-features i {
    color: #00ff88;
    font-size: 1rem;
}

.cta-content .btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
    }
    50% {
        box-shadow: 0 10px 40px rgba(0, 212, 255, 0.5);
    }
}

/* Search Results */
.search-results {
    margin-top: 2rem; display: none;
}
.search-results.active { display: block; }
.domain-results {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.domain-result {
    background: rgba(10, 14, 39, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}
.domain-result:hover { 
    border-color: var(--primary); 
    background: rgba(0, 212, 255, 0.08);
    transform: translateX(5px);
}
.domain-result.available { 
    border-left: 4px solid #00ff88;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.08), rgba(10, 14, 39, 0.9));
}
.domain-result.available:hover {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.15), rgba(10, 14, 39, 0.95));
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
}
.domain-result.unavailable,
.domain-result.taken { 
    border-left: 4px solid rgba(255, 100, 100, 0.5);
    background: rgba(15, 20, 45, 0.85);
}
.domain-result.unavailable:hover,
.domain-result.taken:hover {
    background: rgba(20, 25, 55, 0.9);
    border-color: rgba(0, 212, 255, 0.3);
}
.domain-result .domain-name {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}
.domain-result .domain-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--light);
}
.domain-result.taken .domain-text,
.domain-result.unavailable .domain-text {
    color: rgba(255, 255, 255, 0.5);
}
.domain-result .availability-badge {
    font-size: 0.8rem;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-weight: 500;
}
.domain-result .badge-available {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
    border: 1px solid rgba(0, 255, 136, 0.3);
}
.domain-result .badge-taken {
    background: rgba(255, 100, 100, 0.15);
    color: rgba(255, 150, 150, 0.8);
    border: 1px solid rgba(255, 100, 100, 0.2);
}
.domain-result .domain-action {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.domain-result .domain-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}
.search-loading, .search-error {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    background: rgba(10, 14, 39, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}
.search-loading {
    color: var(--primary);
}
.search-error {
    color: #ff6666;
    background: rgba(255, 68, 68, 0.1);
    border-color: rgba(255, 68, 68, 0.3);
}
.suggestions-prompt {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: rgba(157, 78, 221, 0.1);
    border: 1px solid rgba(157, 78, 221, 0.3);
    border-radius: 12px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.suggestions-prompt i {
    color: #ffd700;
}
.suggestions-section {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: rgba(10, 14, 39, 0.8);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
}
.suggestions-section h4 {
    margin-bottom: 1rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 968px) {
    .mobile-menu-toggle {
        display: flex;
        position: relative;
        z-index: 1002;
    }
    
    .nav-menu {
        display: flex !important;
        position: fixed;
        top: 0;
        right: 0;
        width: 300px;
        max-width: 85vw;
        height: 100vh;
        height: 100dvh;
        background: rgba(10, 14, 39, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding-top: 5rem;
        padding-left: 0;
        padding-right: 0;
        transition: transform 0.3s ease, visibility 0.3s ease;
        transform: translateX(100%);
        border-left: 1px solid rgba(0, 212, 255, 0.2);
        overflow-y: auto;
        visibility: hidden;
        z-index: 1001;
        pointer-events: none;
        gap: 0;
    }
    
    .nav-menu.active {
        transform: translateX(0);
        visibility: visible;
        pointer-events: auto;
    }
    
    .nav-menu .nav-item,
    .nav-menu > .nav-link,
    .nav-menu .nav-actions {
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
        position: relative !important;
        transform: none !important;
    }
    
    .nav-item {
        width: 100%;
        display: block;
    }
    
    .nav-item.has-dropdown {
        display: block !important;
    }
    
    .nav-menu > .nav-link,
    .nav-item > .nav-link {
        padding: 1rem 2rem !important;
        width: 100%;
        display: block !important;
        color: #ffffff !important;
        font-size: 1rem;
        text-decoration: none;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transform: none;
        transition: max-height 0.3s, opacity 0.3s;
        background: rgba(0, 0, 0, 0.3);
        border: none;
        border-radius: 0;
        margin: 0;
    }
    
    .nav-item.has-dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 300px;
    }
    
    .dropdown-item {
        padding: 0.75rem 3rem;
    }
    
    .nav-actions {
        flex-direction: column;
        width: 100%;
        padding: 1rem 2rem;
        margin-top: auto;
    }
    
    .nav-actions .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .logo-image { height: 22px; }
    .hero-title { font-size: 2.5rem; }
    .features-grid, .pricing-grid { grid-template-columns: 1fr; }
    .search-input-wrapper { flex-direction: column; align-items: stretch; }
    .search-input-wrapper .btn { width: 100%; }
    table { font-size: 0.85rem; }
    thead th, tbody td { padding: 0.75rem 0.5rem; }
    .hero-cta { flex-direction: column; align-items: center; }
    .hero-cta .btn { width: 100%; max-width: 300px; }
    
    /* Page Header Mobile Styles */
    .page-header {
        padding: 4rem 0 3rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }
    
    .page-header p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }
    
    .header-badge {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }
    
    .header-stats {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .header-stats .stat {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .domain-search-box {
        padding: 2rem 1.5rem;
        margin: 0 1rem 2rem;
        position: static;
    }
    
    .domain-search-box h2 {
        font-size: 1.5rem;
    }
    
    .search-input-group {
        flex-direction: column;
    }
    
    .search-input-group .btn {
        width: 100%;
    }
    
    .domain-extensions {
        gap: 0.75rem;
    }
    
    .domain-extensions span {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
    
    .features-grid {
        padding: 0 1rem;
    }
    
    .section {
        position: relative;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Tech Specs Grid */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.tech-category {
    padding: 2.5rem;
    background: rgba(10, 14, 39, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.4s;
}

.tech-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
    border-color: var(--primary);
}

.tech-category h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.tech-category ul {
    list-style: none;
    padding: 0;
}

.tech-category ul li {
    padding: 0.75rem 0;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.tech-category ul li:last-child {
    border-bottom: none;
}

.tech-category ul li:hover {
    color: var(--primary);
    padding-left: 0.5rem;
}

/* Use Cases Grid */
.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.use-case-card {
    padding: 2.5rem;
    background: rgba(10, 14, 39, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(157, 78, 221, 0.2);
    transition: all 0.4s;
    text-align: center;
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(157, 78, 221, 0.3);
    border-color: var(--secondary);
}

.use-case-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #9d4edd, #f72585);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.use-case-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--light);
}

.use-case-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

/* Cloud Architecture Grid */
.architecture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.arch-card {
    padding: 2.5rem;
    background: rgba(10, 14, 39, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.4s;
}

.arch-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
    border-color: var(--primary);
}

.arch-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.arch-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.bg-light {
    background: rgba(255, 255, 255, 0.02);
    position: relative;
}

.bg-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.05), transparent 70%);
    pointer-events: none;
}

/* Domain Pricing Grid */
.domain-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.domain-price-card {
    padding: 2.5rem;
    background: rgba(10, 14, 39, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.4s;
    text-align: center;
}

.domain-price-card.featured {
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.3);
}

.domain-price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
    border-color: var(--primary);
}

.domain-price-card .tld {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
}

.domain-price-card .price {
    margin: 1.5rem 0;
}

.domain-price-card .price .amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--light);
}

.domain-price-card .price .period {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
}

.domain-price-card .tld-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.domain-price-card .tld-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

.domain-price-card .tld-features li {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.domain-price-card .tld-features i {
    color: var(--primary);
    margin-right: 0.5rem;
}

/* Transfer Page Styles */
.transfer-intro {
    padding: 4rem 0;
}

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

.intro-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.transfer-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    padding: 2rem;
    background: rgba(10, 14, 39, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.4s;
}

.benefit-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #00d4ff, #9d4edd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.benefit-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--light);
}

.benefit-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Process Steps */
.process-steps {
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00d4ff, #9d4edd);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--light);
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.step-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* Transfer Form */
.transfer-form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(10, 14, 39, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.transfer-form-container h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--light);
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 10px;
    color: var(--light);
    font-size: 1rem;
    transition: all 0.3s;
}

select.form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: rgba(255, 255, 255, 0.05);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23ffffff' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
    padding-right: 2.5rem;
    cursor: pointer;
}

select.form-control option {
    background: #0a0e27;
    color: var(--light);
    padding: 0.75rem 1rem;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

select.form-control:focus {
    background-color: rgba(255, 255, 255, 0.08);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%239d4edd' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
}

.form-text {
    display: block;
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.transfer-note {
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(247, 37, 133, 0.1);
    border-left: 3px solid var(--accent);
    border-radius: 5px;
}

.transfer-note p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.faq-item {
    padding: 2rem;
    background: rgba(10, 14, 39, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.4s;
}

.faq-item:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.faq-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0;
}

/* WHOIS Page Styles */
.whois-search-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.whois-search-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.whois-form {
    margin: 2rem 0;
}

.whois-loading {
    text-align: center;
    padding: 3rem;
    background: rgba(10, 14, 39, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    margin-top: 2rem;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(0, 212, 255, 0.2);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

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

.whois-loading p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

.whois-results {
    margin-top: 2rem;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.whois-result {
    padding: 3rem;
    background: rgba(10, 14, 39, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    text-align: center;
}

.whois-result.available {
    border-color: #00ff88;
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.2);
}

.whois-result.registered {
    border-color: var(--primary);
    text-align: left;
}

.whois-result.error {
    border-color: var(--accent);
}

.result-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.whois-result.available .result-icon {
    background: linear-gradient(135deg, #00ff88, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.whois-result.registered .result-icon {
    background: linear-gradient(135deg, #00d4ff, #9d4edd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 3rem;
}

.whois-result.error .result-icon {
    color: var(--accent);
}

.whois-result h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--light);
}

.whois-result p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.result-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.result-header .result-icon {
    margin: 0;
    font-size: 3rem;
}

.result-header h3 {
    flex: 1;
    margin: 0;
    font-size: 1.8rem;
    text-align: left;
}

.status-registered {
    padding: 0.5rem 1rem;
    background: rgba(0, 212, 255, 0.2);
    border: 1px solid var(--primary);
    border-radius: 20px;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
}

.whois-details {
    margin: 2rem 0;
}

.detail-row {
    display: flex;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    align-items: flex-start;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    flex: 0 0 200px;
    font-weight: 600;
    color: var(--primary);
}

.detail-value {
    flex: 1;
    color: rgba(255, 255, 255, 0.9);
}

.status-codes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.status-badge {
    padding: 0.35rem 0.75rem;
    background: rgba(157, 78, 221, 0.2);
    border: 1px solid var(--secondary);
    border-radius: 15px;
    color: var(--secondary);
    font-size: 0.85rem;
    font-weight: 500;
}

.nameservers {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.ns-item {
    padding: 0.5rem 1rem;
    background: rgba(0, 212, 255, 0.1);
    border-left: 3px solid var(--primary);
    border-radius: 5px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

.whois-actions {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-card {
    padding: 2.5rem;
    background: rgba(10, 14, 39, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.4s;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
    border-color: var(--primary);
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #00d4ff, #9d4edd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--light);
}

.info-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* Data Grid */
.data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.data-item {
    padding: 2rem;
    background: rgba(10, 14, 39, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(157, 78, 221, 0.2);
    text-align: center;
    transition: all 0.4s;
}

.data-item:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
    box-shadow: 0 10px 30px rgba(157, 78, 221, 0.2);
}

.data-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #9d4edd, #f72585);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.data-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--light);
}

.data-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* About Page */
.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    text-align: left;
}

.about-text p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.stat-card {
    padding: 2rem;
    background: rgba(10, 14, 39, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    text-align: center;
    transition: all 0.4s;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00d4ff, #9d4edd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    font-weight: 600;
}

.values-grid,
.infrastructure-grid,
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.value-card,
.infra-card,
.team-card {
    padding: 2.5rem;
    background: rgba(10, 14, 39, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    text-align: center;
    transition: all 0.4s;
}

.value-card:hover,
.infra-card:hover,
.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
    border-color: var(--primary);
}

.value-icon,
.infra-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #00d4ff, #9d4edd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.value-card h3,
.infra-card h3,
.team-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--light);
}

.value-card p,
.infra-card p,
.team-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.team-avatar {
    font-size: 5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.team-role {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-bio {
    font-size: 0.95rem;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-card {
    padding: 2.5rem;
    background: rgba(10, 14, 39, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    text-align: center;
    transition: all 0.4s;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
    border-color: var(--primary);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #00d4ff, #9d4edd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--light);
}

.contact-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.contact-link {
    color: var(--primary);
    font-weight: 600;
    transition: all 0.3s;
}

.contact-link:hover {
    color: var(--secondary);
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(10, 14, 39, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.form-intro {
    text-align: center;
    margin-bottom: 2rem;
}

.form-intro h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.form-intro p {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.channels-grid,
.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.channel-card,
.office-card {
    padding: 2.5rem;
    background: rgba(10, 14, 39, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(157, 78, 221, 0.2);
    text-align: center;
    transition: all 0.4s;
}

.channel-card:hover,
.office-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
    box-shadow: 0 10px 30px rgba(157, 78, 221, 0.2);
}

.channel-icon,
.office-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #9d4edd, #f72585);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.channel-card h3,
.office-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--light);
}

.channel-card p,
.office-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Responsive adjustments for new grids */
@media (max-width: 768px) {
    .tech-grid,
    .use-cases-grid,
    .architecture-grid,
    .domain-pricing-grid,
    .transfer-benefits,
    .info-grid,
    .data-grid,
    .values-grid,
    .infrastructure-grid,
    .team-grid,
    .contact-grid,
    .channels-grid,
    .offices-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto;
    }
    
    .result-header {
        flex-direction: column;
        text-align: center;
    }
    
    .result-header h3 {
        text-align: center;
    }
    
    .detail-row {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .detail-label {
        flex: none;
    }
    
    .whois-actions {
        flex-direction: column;
    }
    
    .whois-actions .btn {
        width: 100%;
    }
}

/* ============================================
   LEGAL PAGES (Terms of Service, Privacy Policy)
   ============================================ */

.legal-content {
    padding: 4rem 0;
}

.legal-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
}

.legal-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.legal-nav {
    background: rgba(10, 14, 39, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(157, 78, 221, 0.2);
    border-radius: 15px;
    padding: 2rem;
}

.legal-nav h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--light);
}

.legal-nav ul {
    list-style: none;
    padding: 0;
}

.legal-nav ul li {
    margin-bottom: 0.75rem;
}

.legal-nav ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s;
    display: block;
    padding: 0.5rem 0;
    border-left: 2px solid transparent;
    padding-left: 1rem;
}

.legal-nav ul li a:hover {
    color: var(--primary);
    border-left-color: var(--primary);
    transform: translateX(5px);
}

.legal-main {
    background: rgba(10, 14, 39, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(157, 78, 221, 0.2);
    border-radius: 20px;
    padding: 3rem;
}

.legal-intro {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(157, 78, 221, 0.2);
}

.legal-intro h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--light);
}

.legal-intro p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.8;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--light);
    background: linear-gradient(135deg, #00d4ff, #9d4edd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.legal-section h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--light);
}

.legal-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-section ul li {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-section ul li strong {
    color: var(--light);
}

.legal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(157, 78, 221, 0.2);
    text-align: center;
}

.legal-footer p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.legal-footer strong {
    color: var(--light);
}

/* ============================================
   KNOWLEDGE BASE
   ============================================ */

.kb-search {
    padding: 3rem 0;
}

.kb-search-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.kb-search-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--light);
}

.kb-search-form {
    margin-bottom: 1.5rem;
}

.search-input-wrapper {
    display: flex;
    gap: 1rem;
    background: rgba(10, 14, 39, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(157, 78, 221, 0.2);
    border-radius: 50px;
    padding: 0.5rem;
    align-items: center;
}

.search-input-wrapper i {
    margin-left: 1.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.2rem;
}

.search-input {
    flex: 1;
    border: none;
    background: transparent;
    color: var(--light);
    font-size: 1.1rem;
    padding: 0.75rem 1rem;
    outline: none;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.popular-searches {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.popular-searches span {
    color: rgba(255, 255, 255, 0.7);
}

.search-tag {
    background: rgba(157, 78, 221, 0.2);
    color: var(--secondary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid rgba(157, 78, 221, 0.3);
}

.search-tag:hover {
    background: rgba(157, 78, 221, 0.3);
    transform: translateY(-2px);
}

.kb-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.kb-category-card {
    background: rgba(10, 14, 39, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(157, 78, 221, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s;
}

.kb-category-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
    box-shadow: 0 10px 30px rgba(157, 78, 221, 0.2);
}

/* KB Category Icon - See updated version at line 5461 */

.kb-category-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--light);
}

.kb-category-card > p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.kb-article-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.kb-article-list li {
    margin-bottom: 0.75rem;
}

.kb-article-list li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.kb-article-list li a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.kb-article-list li a i {
    color: var(--primary);
    font-size: 0.9rem;
}

.kb-view-all {
    color: var(--secondary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    transition: all 0.3s;
}

.kb-view-all:hover {
    color: var(--primary);
    gap: 1rem;
}

.kb-popular-grid {
    display: grid;
    gap: 2rem;
}

.kb-popular-article {
    background: rgba(10, 14, 39, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(157, 78, 221, 0.2);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    transition: all 0.4s;
}

.kb-popular-article:hover {
    transform: translateX(5px);
    border-color: var(--secondary);
}

.kb-article-icon {
    font-size: 2.5rem;
    color: var(--primary);
    flex-shrink: 0;
}

.kb-article-content {
    flex: 1;
}

.kb-article-content h3 {
    margin-bottom: 0.75rem;
}

.kb-article-content h3 a {
    color: var(--light);
    text-decoration: none;
    font-size: 1.3rem;
    transition: all 0.3s;
}

.kb-article-content h3 a:hover {
    color: var(--primary);
}

.kb-article-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.kb-article-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
}

.kb-article-meta span {
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.kb-article-meta .kb-helpful {
    color: var(--success);
}

.kb-video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.kb-video-card {
    background: rgba(10, 14, 39, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(157, 78, 221, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s;
}

.kb-video-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
}

.kb-video-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(157, 78, 221, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
}

.kb-video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kb-video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    transition: all 0.3s;
}

.kb-video-card:hover .kb-video-overlay {
    background: rgba(0, 0, 0, 0.3);
}

.kb-video-overlay i {
    font-size: 4rem;
    color: var(--light);
    transition: all 0.3s;
}

.kb-video-card:hover .kb-video-overlay i {
    transform: scale(1.2);
    color: var(--primary);
}

.kb-video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--light);
    padding: 0.25rem 0.5rem;
    border-radius: 5px;
    font-size: 0.85rem;
}

.kb-video-content {
    padding: 1.5rem;
}

.kb-video-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--light);
}

.kb-video-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.kb-video-views {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.kb-cta {
    padding: 4rem 0;
}

.kb-cta-wrapper {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(157, 78, 221, 0.1));
    border: 1px solid rgba(157, 78, 221, 0.3);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
}

.kb-cta-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--light);
}

.kb-cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.kb-cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   SUPPORT TICKETS
   ============================================ */

.tickets-dashboard {
    padding: 3rem 0;
}

.tickets-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.tickets-filters {
    display: flex;
    gap: 0.5rem;
}

.filter-btn {
    background: rgba(10, 14, 39, 0.6);
    border: 1px solid rgba(157, 78, 221, 0.2);
    color: rgba(255, 255, 255, 0.7);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--secondary);
    color: var(--light);
    border-color: var(--secondary);
}

.tickets-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.ticket-stat-card {
    background: rgba(10, 14, 39, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(157, 78, 221, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

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

.stat-icon.active {
    color: var(--warning);
    background: rgba(255, 193, 7, 0.1);
}

.stat-icon.warning {
    color: var(--warning);
    background: rgba(255, 193, 7, 0.1);
}

.stat-icon.success {
    color: var(--success);
    background: rgba(40, 167, 69, 0.1);
}

.stat-content h3 {
    font-size: 2rem;
    color: var(--light);
    margin-bottom: 0.25rem;
}

.stat-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.tickets-table-wrapper {
    background: rgba(10, 14, 39, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(157, 78, 221, 0.2);
    border-radius: 20px;
    overflow: hidden;
}

.tickets-table {
    width: 100%;
    border-collapse: collapse;
}

.tickets-table thead {
    background: rgba(157, 78, 221, 0.1);
}

.tickets-table th {
    padding: 1.25rem;
    text-align: left;
    color: var(--light);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tickets-table td {
    padding: 1.25rem;
    border-top: 1px solid rgba(157, 78, 221, 0.1);
}

.ticket-row {
    transition: all 0.3s;
}

.ticket-row:hover {
    background: rgba(157, 78, 221, 0.05);
}

.ticket-id {
    color: var(--primary);
    font-weight: 600;
    font-family: 'Courier New', monospace;
}

.ticket-subject strong {
    color: var(--light);
    display: block;
    margin-bottom: 0.5rem;
}

.ticket-preview {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    display: block;
}

.badge {
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.badge-technical {
    background: rgba(0, 212, 255, 0.2);
    color: var(--primary);
}

.badge-billing {
    background: rgba(157, 78, 221, 0.2);
    color: var(--secondary);
}

.badge-sales {
    background: rgba(40, 167, 69, 0.2);
    color: var(--success);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-open {
    background: rgba(0, 212, 255, 0.2);
    color: var(--primary);
}

.status-pending {
    background: rgba(255, 193, 7, 0.2);
    color: var(--warning);
}

.status-resolved {
    background: rgba(40, 167, 69, 0.2);
    color: var(--success);
}

.status-badge i {
    font-size: 0.6rem;
}

.priority-badge {
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.priority-high {
    background: rgba(220, 53, 69, 0.2);
    color: #ff4d6d;
}

.priority-medium {
    background: rgba(255, 193, 7, 0.2);
    color: var(--warning);
}

.priority-low {
    background: rgba(40, 167, 69, 0.2);
    color: var(--success);
}

.btn-icon {
    background: rgba(157, 78, 221, 0.1);
    border: 1px solid rgba(157, 78, 221, 0.2);
    color: var(--light);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    margin: 0 0.25rem;
}

.btn-icon:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: scale(1.1);
}

.tickets-help {
    padding: 3rem 0;
}

.help-resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.help-resource-card {
    background: rgba(10, 14, 39, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(157, 78, 221, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.4s;
}

.help-resource-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
}

.help-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #9d4edd, #f72585);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.help-resource-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--light);
}

.help-resource-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.help-link {
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    transition: all 0.3s;
}

.help-resource-card:hover .help-link {
    color: var(--primary);
    gap: 1rem;
}

/* Domain Features Section */
.domain-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.domain-feature-card {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.8), rgba(20, 25, 50, 0.6));
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.domain-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.4s;
}

.domain-feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.15);
}

.domain-feature-card:hover::before {
    opacity: 1;
}

.domain-feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(157, 78, 221, 0.15));
    border: 2px solid rgba(0, 212, 255, 0.3);
    color: var(--primary);
    transition: all 0.4s;
}

.domain-feature-card:hover .domain-feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.25), rgba(157, 78, 221, 0.25));
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.domain-feature-card h4 {
    color: var(--light);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.domain-feature-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1024px) {
    .domain-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .domain-features-grid {
        grid-template-columns: 1fr;
    }
    
    .domain-feature-card {
        padding: 2rem 1.5rem;
    }
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--dark);
    border: 1px solid rgba(157, 78, 221, 0.3);
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    padding: 2rem 2rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(157, 78, 221, 0.2);
}

.modal-header h2 {
    color: var(--light);
    font-size: 1.5rem;
}

.modal-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    color: var(--light);
    background: rgba(157, 78, 221, 0.2);
}

.modal-body {
    padding: 2rem;
}

.ticket-form .form-group {
    margin-bottom: 1.5rem;
}

.ticket-form label {
    display: block;
    color: var(--light);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.8);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-label a {
    color: var(--primary);
}

/* ============================================
   SERVER STATUS
   ============================================ */

.status-overview {
    padding: 2rem 0 3rem;
}

.status-banner {
    background: rgba(10, 14, 39, 0.6);
    backdrop-filter: blur(10px);
    border: 2px solid;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.status-banner.operational {
    border-color: var(--success);
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.15), rgba(10, 14, 39, 0.8));
}

.status-banner.degraded {
    border-color: var(--warning);
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15), rgba(10, 14, 39, 0.8));
}

.status-banner.outage {
    border-color: #ff4d6d;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.15), rgba(10, 14, 39, 0.8));
}

.status-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.status-banner.operational .status-icon {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
    border: 3px solid #28a745;
    box-shadow: 0 0 20px rgba(40, 167, 69, 0.4);
}

.status-banner.degraded .status-icon {
    background: rgba(255, 193, 7, 0.2);
    color: var(--warning);
    border: 3px solid var(--warning);
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.4);
}

.status-banner.outage .status-icon {
    background: rgba(220, 53, 69, 0.2);
    color: #ff4d6d;
    border: 3px solid #ff4d6d;
    box-shadow: 0 0 20px rgba(220, 53, 69, 0.4);
}

.status-text {
    flex: 1;
}

.status-text h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--light);
}

.status-text p {
    color: rgba(255, 255, 255, 0.7);
}

.status-banner .btn {
    margin-top: 0.5rem;
}

.uptime-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.uptime-card {
    background: rgba(10, 14, 39, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(157, 78, 221, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.uptime-card h3 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.uptime-card p {
    color: rgba(255, 255, 255, 0.7);
}

.services-grid {
    display: grid;
    gap: 2rem;
}

.service-card {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.8), rgba(10, 14, 39, 0.6));
    backdrop-filter: blur(10px);
    border: 1px solid;
    border-radius: 20px;
    padding: 1.5rem;
    transition: all 0.4s;
}

.service-card.operational {
    border-color: rgba(40, 167, 69, 0.4);
}

.service-card.degraded {
    border-color: rgba(255, 193, 7, 0.4);
}

.service-card.outage {
    border-color: rgba(220, 53, 69, 0.4);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.service-header {
    margin-bottom: 1.5rem;
}

.service-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.service-icon {
    font-size: 1.8rem;
    color: var(--primary);
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 12px;
}

.service-info h3 {
    font-size: 1.2rem;
    color: var(--light);
    margin-bottom: 0.2rem;
}

.service-location {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.75rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    white-space: nowrap;
}

.service-card.operational .status-indicator {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
}

.service-card.degraded .status-indicator {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
}

.service-card.outage .status-indicator {
    background: rgba(220, 53, 69, 0.2);
    color: #ff4d6d;
}

.status-indicator i {
    font-size: 0.45rem;
}

.service-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.metric {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.metric-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
}

.metric-value {
    color: var(--light);
    font-size: 1.3rem;
    font-weight: 600;
}

.uptime-chart {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.chart-days {
    flex: 1;
    display: flex;
    gap: 0.5rem;
    height: 40px;
}

.chart-bar {
    flex: 1;
    background: var(--success);
    border-radius: 5px;
    transition: all 0.3s;
    cursor: pointer;
}

.chart-bar.degraded {
    background: var(--warning);
}

.chart-bar.outage {
    background: #ff4d6d;
}

.chart-bar:hover {
    transform: scaleY(1.2);
}

.chart-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    white-space: nowrap;
}

/* Service card responsive styles */
@media (max-width: 600px) {
    .service-card {
        padding: 1.25rem;
    }
    
    .service-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1.4rem;
    }
    
    .service-info {
        gap: 0.75rem;
    }
    
    .service-info h3 {
        font-size: 1rem;
    }
    
    .service-location {
        font-size: 0.7rem;
    }
    
    .status-indicator {
        font-size: 0.65rem;
        padding: 0.3rem 0.6rem;
    }
    
    .service-metrics {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    .metric-value {
        font-size: 1rem;
    }
    
    .metric-label {
        font-size: 0.65rem;
    }
    
    .chart-days {
        height: 25px;
    }
}

.status-history {
    padding: 3rem 0;
}

.timeline {
    max-width: 900px;
    margin: 0 auto 2rem;
}

.timeline-item {
    position: relative;
    padding-left: 3rem;
    padding-bottom: 2rem;
    border-left: 2px solid rgba(157, 78, 221, 0.2);
}

.timeline-item:last-child {
    border-left-color: transparent;
}

.timeline-marker {
    position: absolute;
    left: -8px;
    top: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--success);
    border: 3px solid var(--dark);
}

.timeline-item.resolved .timeline-marker {
    background: var(--success);
}

.timeline-content {
    background: rgba(10, 14, 39, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(157, 78, 221, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.timeline-header h3 {
    color: var(--light);
    font-size: 1.2rem;
}

.timeline-date {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.timeline-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
}

.timeline-duration,
.timeline-impact {
    color: rgba(255, 255, 255, 0.6);
}

.badge-success {
    background: rgba(40, 167, 69, 0.2);
    color: var(--success);
}

.badge-warning {
    background: rgba(255, 193, 7, 0.2);
    color: var(--warning);
}

.status-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.status-subscribe {
    padding: 3rem 0;
}

.subscribe-wrapper {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(157, 78, 221, 0.15));
    border: 1px solid rgba(157, 78, 221, 0.3);
    border-radius: 20px;
    padding: 3.5rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
}

.subscribe-content {
    max-width: 600px;
}

.subscribe-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.subscribe-content h2::before {
    content: '\f0f3';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--primary);
}

.subscribe-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
}

.subscribe-form {
    display: flex;
    gap: 1rem;
    width: 100%;
    max-width: 500px;
    justify-content: center;
}

.subscribe-form .form-control {
    flex: 1;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border-radius: 50px;
    border: 2px solid rgba(157, 78, 221, 0.3);
    background: rgba(10, 14, 39, 0.6);
    color: var(--light);
    transition: all 0.3s ease;
}

.subscribe-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(157, 78, 221, 0.3);
    outline: none;
}

.subscribe-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.subscribe-form .btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-notification {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--success);
    color: var(--light);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: slideIn 0.3s ease;
    z-index: 1000;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ============================================
   AFFILIATE PROGRAM
   ============================================ */

.affiliate-hero {
    padding: 3rem 0;
}

.affiliate-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--light);
    line-height: 1.2;
}

.hero-text > p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}

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

.hero-stat h3 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.hero-stat p {
    color: rgba(255, 255, 255, 0.7);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.earnings-card {
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    width: 100%;
    max-width: 450px;
}

.earnings-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--light);
    text-align: center;
}

.earnings-calc {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.calc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    background: rgba(157, 78, 221, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(157, 78, 221, 0.2);
}

.calc-row.highlight {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(157, 78, 221, 0.2));
    border: 2px solid var(--primary);
}

.calc-row span:first-child {
    color: rgba(255, 255, 255, 0.8);
}

.calc-result {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

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

.benefit-card {
    background: rgba(10, 14, 39, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(157, 78, 221, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s;
}

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

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #9d4edd, #f72585);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--light);
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.step-card {
    background: rgba(10, 14, 39, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(157, 78, 221, 0.2);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.4s;
}

.step-card:hover {
    transform: scale(1.05);
    border-color: var(--secondary);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-icon {
    font-size: 3rem;
    margin: 1rem 0 1.5rem;
    background: linear-gradient(135deg, #9d4edd, #f72585);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.step-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--light);
}

.step-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.step-arrow {
    font-size: 2rem;
    color: var(--primary);
}

.commission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.commission-card {
    background: rgba(10, 14, 39, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(157, 78, 221, 0.2);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s;
    position: relative;
}

.commission-card.featured {
    border: 2px solid var(--primary);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(157, 78, 221, 0.1));
    transform: scale(1.05);
}

.commission-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--dark);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.commission-card:hover {
    transform: scale(1.05);
    border-color: var(--secondary);
}

.commission-header h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--light);
}

.commission-rate {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.rate-percentage {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
}

.rate-label {
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.commission-details {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-top: 2rem;
}

.commission-details li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.75rem;
}

.commission-details li i {
    color: var(--success);
}

.commission-note {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(157, 78, 221, 0.1));
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.commission-note i {
    color: var(--primary);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.commission-note p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

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

.tool-card {
    background: rgba(10, 14, 39, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(157, 78, 221, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s;
}

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

.tool-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #9d4edd, #f72585);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tool-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--light);
}

.tool-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.tool-link {
    color: var(--secondary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    transition: all 0.3s;
}

.tool-link:hover {
    color: var(--primary);
    gap: 1rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: rgba(10, 14, 39, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(157, 78, 221, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s;
}

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

.testimonial-rating {
    margin-bottom: 1.5rem;
}

.testimonial-rating i {
    color: #ffc107;
    font-size: 1.1rem;
    margin-right: 0.25rem;
}

.testimonial-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: rgba(157, 78, 221, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
}

.testimonial-author strong {
    display: block;
    color: var(--light);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: rgba(10, 14, 39, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(157, 78, 221, 0.2);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--secondary);
}

.faq-item h3 {
    color: var(--light);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.faq-item h3 i {
    color: var(--primary);
}

.faq-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.affiliate-signup {
    padding: 4rem 0;
}

.signup-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.signup-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--light);
}

.signup-content > p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.signup-benefits {
    list-style: none;
    padding: 0;
}

.signup-benefits li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.signup-benefits li i {
    color: var(--success);
    font-size: 1.3rem;
}

.signup-form-wrapper {
    background: rgba(10, 14, 39, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(157, 78, 221, 0.2);
    border-radius: 20px;
    padding: 3rem;
}

.affiliate-signup-form h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--light);
    text-align: center;
}

.signup-note {
    text-align: center;
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.signup-note a {
    color: var(--primary);
    text-decoration: none;
}

.signup-note a:hover {
    text-decoration: underline;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS FOR NEW PAGES
   ============================================ */

@media (max-width: 1024px) {
    .legal-wrapper {
        grid-template-columns: 1fr;
    }
    
    .legal-sidebar {
        position: static;
    }
    
    .affiliate-hero-content,
    .signup-wrapper {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .hero-text h2 {
        font-size: 2rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .tickets-table-wrapper {
        overflow-x: auto;
    }
    
    .tickets-filters {
        width: 100%;
        flex-wrap: wrap;
    }
    
    .subscribe-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .subscribe-form {
        flex-direction: column;
        width: 100%;
    }
    
    .subscribe-form .btn {
        justify-content: center;
    }
    
    .commission-grid {
        grid-template-columns: 1fr;
    }
    
    .commission-card.featured {
        transform: scale(1);
    }
}

/* ===========================
   Hosting Page Styles
   =========================== */

/* Hosting Navigation Tabs */
.hosting-nav {
    background: rgba(10, 14, 39, 0.6);
    padding: 2rem 0;
    margin-bottom: 3rem;
    position: sticky;
    top: 70px;
    z-index: 100;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.hosting-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hosting-tab {
    background: rgba(10, 14, 39, 0.8);
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: var(--light);
    font-size: 1rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.hosting-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.hosting-tab i {
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.hosting-tab:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.hosting-tab:hover::before {
    opacity: 0.1;
}

.hosting-tab:hover i {
    transform: scale(1.2);
}

.hosting-tab.active {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(157, 78, 221, 0.2));
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.4);
}

.hosting-tab.active::before {
    opacity: 0.15;
}

.hosting-tab.active i {
    color: var(--primary);
}

/* Hosting Sections */
.hosting-section {
    display: none;
    animation: fadeInUp 0.6s ease;
}

.hosting-section.active {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hosting-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.hosting-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.hosting-section .section-header h2 i {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hosting-section .section-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Comparison Table */
.comparison-section {
    background: rgba(10, 14, 39, 0.4);
    padding: 4rem 0;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 2rem;
    border-radius: 15px;
    background: rgba(10, 14, 39, 0.6);
    padding: 2rem;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.comparison-table thead {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(157, 78, 221, 0.2));
}

.comparison-table thead th {
    padding: 1.5rem 1rem;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
}

.comparison-table tbody tr {
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    transition: background 0.3s ease;
}

.comparison-table tbody tr:hover {
    background: rgba(0, 212, 255, 0.05);
}

.comparison-table tbody td {
    padding: 1.25rem 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

.comparison-table tbody td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--light);
}

.comparison-table .text-success {
    color: #00ff88;
    font-size: 1.3rem;
}

.comparison-table .text-danger {
    color: #ff4444;
    font-size: 1.3rem;
}

/* Responsive Hosting Page */
@media (max-width: 1024px) {
    .hosting-tabs {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hosting-section .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hosting-nav {
        top: 60px;
        padding: 1.5rem 0;
    }
    
    .hosting-tabs {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .hosting-tab {
        padding: 1.25rem 1rem;
        flex-direction: row;
        justify-content: center;
    }
    
    .hosting-tab i {
        font-size: 1.5rem;
    }
    
    .hosting-section .section-header h2 {
        font-size: 1.75rem;
        flex-direction: column;
    }
    
    .comparison-table-wrapper {
        padding: 1rem;
    }
    
    .comparison-table thead th,
    .comparison-table tbody td {
        padding: 1rem 0.5rem;
        font-size: 0.9rem;
    }
}

/* ===========================
   Shared Hosting Page Styles
   =========================== */

/* Shared Features Section */
.shared-features {
    background: rgba(10, 14, 39, 0.4);
    padding: 5rem 0;
}

.shared-features .feature-item {
    background: rgba(10, 14, 39, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.shared-features .feature-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--light);
    transition: all 0.3s ease;
}

.shared-features .feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.5);
}

.shared-features .feature-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.shared-features .feature-item p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Technical Specifications */
.tech-specs {
    padding: 5rem 0;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.spec-category {
    background: rgba(10, 14, 39, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.spec-category:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.spec-category h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.spec-category h3 i {
    font-size: 1.5rem;
}

.spec-category ul {
    list-style: none;
}

.spec-category ul li {
    padding: 0.75rem 0;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.spec-category ul li:last-child {
    border-bottom: none;
}

.spec-category ul li i {
    color: var(--primary);
    font-size: 0.9rem;
}

/* Perfect For Section */
.perfect-for {
    background: rgba(10, 14, 39, 0.4);
    padding: 5rem 0;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.use-case {
    background: rgba(10, 14, 39, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.use-case:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.3);
}

.use-case i {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    display: block;
}

.use-case h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--light);
}

.use-case p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: rgba(10, 14, 39, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.faq-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.faq-item h3 i {
    font-size: 1.2rem;
    margin-top: 0.1rem;
}

.faq-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

/* Responsive Shared Hosting */
@media (max-width: 1024px) {
    .specs-grid,
    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .shared-features,
    .tech-specs,
    .perfect-for,
    .faq-section {
        padding: 3rem 0;
    }
    
    .specs-grid,
    .use-cases-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .use-case i {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

/* ===========================
   Ticket System Styles
   =========================== */

/* Client Area Layout */
.client-area {
    padding: 3rem 0;
    min-height: calc(100vh - 200px);
}

.client-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    align-items: start;
}

.client-sidebar {
    background: rgba(10, 14, 39, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    position: sticky;
    top: 100px;
}

.sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sidebar-menu .menu-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.sidebar-menu .menu-item:hover {
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary);
}

.sidebar-menu .menu-item.active {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(157, 78, 221, 0.2));
    color: var(--primary);
    border-left: 3px solid var(--primary);
}

.sidebar-menu .menu-item i {
    font-size: 1.2rem;
    width: 24px;
}

.client-content {
    min-height: 500px;
}

/* Page Header Client */
.page-header-client {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.page-header-client h1 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.page-header-client p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.header-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Alerts */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
}

.alert i {
    font-size: 1.3rem;
}

.alert-success {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: #00ff88;
}

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

.alert-info {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: var(--primary);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(10, 14, 39, 0.4);
    border: 2px dashed rgba(0, 212, 255, 0.2);
    border-radius: 15px;
}

.empty-state i {
    font-size: 4rem;
    color: rgba(0, 212, 255, 0.3);
    margin-bottom: 1.5rem;
}

.empty-state h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--light);
}

.empty-state p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
}

.empty-state .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    border-radius: 12px;
    background: linear-gradient(135deg, #00d4ff 0%, #9d4edd 50%, #7b2cbf 100%);
    background-size: 200% 200%;
    border: none;
    color: white;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.25), 
                0 4px 12px rgba(123, 44, 191, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: none;
    text-align: center;
    line-height: 1.2;
}

.empty-state .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s ease;
}

.empty-state .btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 212, 255, 0.35), 
                0 6px 20px rgba(123, 44, 191, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
    background-position: 100% 100%;
}

.empty-state .btn:hover::before {
    left: 100%;
}

.empty-state .btn:active {
    transform: translateY(-2px) scale(1);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.3), 
                0 3px 10px rgba(123, 44, 191, 0.2);
}

.empty-state .btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.empty-state .btn:hover i {
    transform: scale(1.1);
}

/* ===== DASHBOARD SECTION TITLES ===== */
.dashboard-section {
    background: rgba(10, 14, 39, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 16px;
    padding: 1.75rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 212, 255, 0.15);
}

.section-header-flex h2 {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.section-header-flex h2::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 1.2em;
    background: linear-gradient(180deg, #00d4ff, #9d4edd);
    border-radius: 4px;
    flex-shrink: 0;
}

.section-header-flex h2 i {
    color: #00d4ff;
    font-size: 1.1rem;
    filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.4));
}

/* Quick Actions Section Title */
.quick-actions {
    background: rgba(10, 14, 39, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 16px;
    padding: 1.75rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.quick-actions h2 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 212, 255, 0.15);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.quick-actions h2::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 1.2em;
    background: linear-gradient(180deg, #00d4ff, #9d4edd);
    border-radius: 4px;
    flex-shrink: 0;
}

.quick-actions h2 i {
    color: #00d4ff;
    font-size: 1.1rem;
    filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.4));
}

/* Dashboard Header */
.dashboard-header {
    margin-bottom: 2rem;
}

.dashboard-header h1 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dashboard-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

/* Dashboard Stats Grid */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

/* Ticket List */
.tickets-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ticket-card {
    background: rgba(10, 14, 39, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.ticket-card:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
    transform: translateY(-2px);
}

.ticket-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1.5rem;
}

.ticket-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.ticket-info h3 a {
    color: var(--light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.ticket-info h3 a:hover {
    color: var(--primary);
}

.ticket-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.ticket-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ticket-number {
    font-family: monospace;
    font-weight: 600;
    color: var(--primary);
}

.ticket-badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.ticket-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    font-size: 0.9rem;
}

.reply-count, .last-reply {
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Badges */
.badge {
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.badge-open {
    background: rgba(0, 212, 255, 0.2);
    color: var(--primary);
}

.badge-answered {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
}

.badge-customer-reply {
    background: rgba(255, 165, 0, 0.2);
    color: #ffa500;
}

.badge-on-hold {
    background: rgba(255, 255, 0, 0.2);
    color: #ffff00;
}

.badge-closed {
    background: rgba(128, 128, 128, 0.2);
    color: #999;
}

.badge-priority-low {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
}

.badge-priority-medium {
    background: rgba(0, 212, 255, 0.2);
    color: var(--primary);
}

.badge-priority-high {
    background: rgba(255, 165, 0, 0.2);
    color: #ffa500;
}

.badge-priority-urgent {
    background: rgba(255, 68, 68, 0.2);
    color: #ff4444;
}

.badge-staff {
    background: rgba(157, 78, 221, 0.2);
    color: var(--secondary);
}

.badge-customer {
    background: rgba(0, 212, 255, 0.2);
    color: var(--primary);
}

/* Ticket Form */
.ticket-form-card {
    background: rgba(10, 14, 39, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
}

.ticket-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.ticket-form .form-group {
    margin-bottom: 1.5rem;
}

.ticket-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ticket-form label i {
    color: var(--primary);
}

.ticket-form input[type="text"],
.ticket-form select,
.ticket-form textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 10px;
    color: var(--light);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.ticket-form input[type="text"]:focus,
.ticket-form select:focus,
.ticket-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.ticket-form select option {
    background: #1a1a2e;
    color: #fff;
    padding: 10px;
}

.ticket-form textarea {
    resize: vertical;
    min-height: 150px;
}

.ticket-form small {
    display: block;
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* Ticket Details */
.ticket-details-card {
    background: rgba(10, 14, 39, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.ticket-meta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.meta-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.meta-value {
    font-size: 1rem;
    color: var(--light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Ticket Conversation */
.ticket-conversation {
    background: rgba(10, 14, 39, 0.4);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.ticket-conversation h3 {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary);
}

.reply-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.reply-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.reply-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--light);
    flex-shrink: 0;
}

.reply-staff .reply-avatar {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
}

.reply-content {
    flex: 1;
}

.reply-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.reply-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reply-time {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.reply-message {
    background: rgba(10, 14, 39, 0.6);
    padding: 1.25rem;
    border-radius: 10px;
    border-left: 3px solid rgba(0, 212, 255, 0.3);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.reply-staff .reply-message {
    border-left-color: rgba(157, 78, 221, 0.5);
    background: rgba(157, 78, 221, 0.05);
}

/* Ticket Reply Form */
.ticket-reply-form {
    background: rgba(10, 14, 39, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 2.5rem;
    margin-top: 2rem;
}

.ticket-reply-form h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary);
}

.reply-textarea-container {
    margin-bottom: 1.5rem;
}

.reply-textarea {
    width: 100%;
    min-height: 200px;
    padding: 1.5rem;
    background: rgba(10, 14, 39, 0.8);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    color: var(--light);
    font-size: 1rem;
    line-height: 1.6;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    resize: vertical;
    transition: all 0.3s ease;
}

.reply-textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.95rem;
}

.reply-textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(10, 14, 39, 0.9);
    box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.1), 0 8px 24px rgba(0, 212, 255, 0.2);
}

.reply-textarea:hover {
    border-color: rgba(0, 212, 255, 0.5);
}

/* Responsive Ticket System */
@media (max-width: 1024px) {
    .client-wrapper {
        grid-template-columns: 1fr;
    }
    
    .client-sidebar {
        position: static;
    }
    
    .sidebar-menu {
        flex-direction: row;
        overflow-x: auto;
    }
    
    .sidebar-menu .menu-item span {
        display: none;
    }
    
    .ticket-meta-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .client-area {
        padding: 2rem 0;
    }
    
    .page-header-client {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .header-actions {
        width: 100%;
        flex-direction: column;
    }
    
    .header-actions .btn {
        width: 100%;
    }
    
    .ticket-header {
        flex-direction: column;
    }
    
    .ticket-badges {
        width: 100%;
    }
    
    .ticket-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .ticket-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .ticket-meta-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .reply-item {
        gap: 1rem;
    }
    
    .reply-avatar {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .reply-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn {
        width: 100%;
    }
}

/* ===== KNOWLEDGE BASE ===== */
.hero-small {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.95), rgba(20, 25, 60, 0.9));
    text-align: center;
}

.hero-small h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #00d4ff, #9d4edd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.kb-search-box {
    max-width: 700px;
    margin: 2rem auto 0;
}

.kb-search-form .search-input-group {
    position: relative;
    display: flex;
    gap: 0.5rem;
    background: rgba(10, 14, 39, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50px;
    padding: 0.5rem;
}

.kb-search-form .fa-search {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(0, 212, 255, 0.5);
    font-size: 1.2rem;
}

.kb-search-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0.75rem 1rem 0.75rem 3rem;
    color: var(--light);
    font-size: 1rem;
}

.kb-search-form input:focus {
    outline: none;
}

.kb-search-form .btn {
    border-radius: 50px;
    padding: 0.75rem 2rem;
}

.kb-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.kb-category-card {
    background: rgba(10, 14, 39, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s;
}

.kb-category-card:hover {
    border-color: rgba(0, 212, 255, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.kb-category-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(157, 76, 221, 0.2));
}

.kb-category-icon i {
    color: #00d4ff;
}

.kb-category-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--light);
}

.kb-category-card > p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
}

.kb-article-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.kb-article-list li {
    margin-bottom: 0.75rem;
}

.kb-article-list a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.kb-article-list a:hover {
    color: #00d4ff;
}

.kb-article-list i {
    color: rgba(0, 212, 255, 0.5);
    font-size: 0.9rem;
}

.kb-view-all {
    color: #00d4ff;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s;
}

.kb-view-all:hover {
    gap: 1rem;
}

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

.popular-article {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(10, 14, 39, 0.4);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s;
}

.popular-article:hover {
    border-color: rgba(0, 212, 255, 0.5);
    transform: translateX(5px);
}

.popular-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(157, 76, 221, 0.2));
}

.popular-icon i {
    color: #00d4ff;
}

.popular-content h4 {
    color: var(--light);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.popular-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.popular-views {
    color: rgba(0, 212, 255, 0.6);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.kb-support {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(157, 76, 221, 0.1));
}

.support-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 3rem;
    background: rgba(10, 14, 39, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
}

.support-content h2 {
    margin-bottom: 0.5rem;
    color: var(--light);
}

.support-content p {
    color: rgba(255, 255, 255, 0.7);
}

.support-actions {
    display: flex;
    gap: 1rem;
}

.kb-article .container {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    align-items: start;
}

.kb-article-content {
    background: rgba(10, 14, 39, 0.4);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 3rem;
}

.kb-breadcrumb {
    padding: 1rem 0;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.kb-breadcrumb a {
    color: #00d4ff;
    text-decoration: none;
}

.kb-article-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--light);
}

.kb-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.kb-article-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.kb-article-body {
    padding: 2rem 0;
}

.kb-article-body .lead {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.kb-article-body h2 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: var(--light);
}

.kb-article-body h3 {
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem;
    color: var(--light);
}

.kb-article-body p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.kb-article-body ul,
.kb-article-body ol {
    margin: 1rem 0 1rem 2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.kb-article-body code {
    background: rgba(0, 212, 255, 0.1);
    color: #00d4ff;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.kb-article-body pre {
    background: rgba(10, 14, 39, 0.8);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    padding: 1rem;
    margin: 1.5rem 0;
}

.kb-alert {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    display: flex;
    gap: 1rem;
}

.kb-alert-info {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.kb-alert-info i {
    color: #00d4ff;
}

.kb-alert-warning {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.kb-alert-warning i {
    color: #ffc107;
}

.kb-related-articles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.kb-related-card {
    padding: 1.5rem;
    background: rgba(10, 14, 39, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    color: var(--light);
    transition: all 0.3s;
}

.kb-related-card:hover {
    transform: translateY(-3px);
}

.kb-related-card i {
    font-size: 2rem;
    color: #00d4ff;
    margin-bottom: 0.75rem;
    display: block;
}

.kb-article-footer {
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.kb-vote-buttons,
.kb-share-buttons {
    display: flex;
    gap: 0.5rem;
}

.kb-share-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50%;
    color: #00d4ff;
    text-decoration: none;
    transition: all 0.3s;
}

.kb-share-btn:hover {
    transform: scale(1.1);
}

.kb-sidebar {
    position: sticky;
    top: 2rem;
}

.kb-widget {
    background: rgba(10, 14, 39, 0.4);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.kb-widget h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--light);
}

.kb-toc,
.kb-related-list {
    list-style: none;
}

.kb-toc a,
.kb-related-list a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.kb-toc a:hover,
.kb-related-list a:hover {
    color: #00d4ff;
}

.kb-widget-contact {
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(157, 76, 221, 0.1));
}

.kb-widget-contact i {
    font-size: 3rem;
    color: #00d4ff;
    margin-bottom: 1rem;
}

@media (max-width: 968px) {
    .kb-article .container {
        grid-template-columns: 1fr;
    }
    
    .support-box {
        flex-direction: column;
        text-align: center;
    }
    
    .support-actions {
        flex-direction: column;
        width: 100%;
    }
}

/* ===== INVOICES ===== */
.invoice-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.6), rgba(10, 14, 39, 0.4));
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    min-height: 100px;
}

.stat-card:hover {
    border-color: rgba(0, 212, 255, 0.6);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.stat-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.3), rgba(0, 212, 255, 0.1));
    color: #00d4ff;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.2);
}

.stat-icon.stat-success {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.3), rgba(40, 167, 69, 0.1));
    color: #28a745;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.2);
}

.stat-icon.stat-warning {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.3), rgba(255, 193, 7, 0.1));
    color: #ffc107;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.2);
}

.stat-icon.stat-danger {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.3), rgba(220, 53, 69, 0.1));
    color: #dc3545;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.2);
}

.stat-content h3 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: #fff;
    font-weight: 700;
    line-height: 1;
}

.stat-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin: 0;
}

.invoice-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.invoice-action-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.invoice-container {
    background: rgba(255, 255, 255, 0.98);
    color: #333;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.invoice-header-section {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e0e0e0;
}

.invoice-company .invoice-logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 0.5rem;
    filter: brightness(0);
}

.invoice-company h2 {
    color: #00d4ff;
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.invoice-company p {
    color: #666;
    line-height: 1.6;
}

.invoice-details {
    text-align: right;
}

.invoice-details h1 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.invoice-details p {
    margin-bottom: 0.5rem;
    color: #666;
}

.invoice-customer {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.invoice-customer h3 {
    color: #333;
    margin-bottom: 0.75rem;
}

.invoice-customer p {
    color: #666;
    line-height: 1.6;
}

.invoice-table {
    width: 100%;
    margin-bottom: 2rem;
    border-collapse: collapse;
}

.invoice-table thead {
    background: #f8f9fa;
}

.invoice-table th,
.invoice-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
    color: #333;
}

.invoice-table th {
    font-weight: 600;
    color: #333;
}

.invoice-table tbody tr:hover {
    background: #f8f9fa;
}

.invoice-table tfoot td {
    padding: 0.75rem 1rem;
    border-bottom: none;
}

.invoice-table .invoice-total td {
    padding-top: 1rem;
    border-top: 2px solid #333;
    font-size: 1.2rem;
}

.invoice-table .invoice-balance td {
    border-top: 2px solid #333;
    font-size: 1.3rem;
    padding-top: 1rem;
}

.invoice-notes {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-left: 4px solid #00d4ff;
    border-radius: 4px;
}

.invoice-notes h3 {
    color: #333;
    margin-bottom: 0.75rem;
}

.invoice-notes p {
    color: #666;
    line-height: 1.8;
}

.invoice-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e0e0e0;
    text-align: center;
}

.invoice-footer p {
    color: #666;
    margin-bottom: 0.5rem;
}

.text-muted {
    color: #999 !important;
}

.text-success {
    color: #28a745 !important;
}

.text-danger {
    color: #dc3545 !important;
}

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

.text-right {
    text-align: right;
}

.table-responsive {
    overflow-x: auto;
}

.data-table {
    width: 100%;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.6), rgba(10, 14, 39, 0.4));
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border-collapse: separate;
    border-spacing: 0;
}

.data-table thead {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 212, 255, 0.1));
}

.data-table th,
.data-table td {
    padding: 1.5rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(0, 212, 255, 0.08);
}

.data-table th {
    color: #00d4ff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    padding: 1.25rem 1.5rem;
}

.data-table td {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    vertical-align: middle;
}

.data-table tbody tr {
    transition: all 0.2s;
}

.data-table tbody tr:hover {
    background: rgba(0, 212, 255, 0.06);
}

.data-table tbody tr:last-child td {
    border-bottom: none;
}

.invoice-link {
    color: #00d4ff;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    display: inline-block;
    font-size: 1.05rem;
}

.invoice-link:hover {
    color: #4ae1ff;
    text-decoration: underline;
}

.action-buttons {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
}

.badge {
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 80px;
    text-align: center;
}

.badge-success {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.3), rgba(40, 167, 69, 0.15));
    color: #5fd97a;
    border: 1px solid rgba(40, 167, 69, 0.4);
    box-shadow: 0 2px 10px rgba(40, 167, 69, 0.2);
}

.badge-warning {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.3), rgba(255, 193, 7, 0.15));
    color: #ffd54f;
    border: 1px solid rgba(255, 193, 7, 0.4);
    box-shadow: 0 2px 10px rgba(255, 193, 7, 0.2);
}

.badge-danger {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.3), rgba(220, 53, 69, 0.15));
    color: #ff6b7a;
    border: 1px solid rgba(220, 53, 69, 0.4);
    box-shadow: 0 2px 10px rgba(220, 53, 69, 0.2);
}

.badge-info {
    background: linear-gradient(135deg, rgba(23, 162, 184, 0.3), rgba(23, 162, 184, 0.15));
    color: #4dd0e1;
    border: 1px solid rgba(23, 162, 184, 0.4);
    box-shadow: 0 2px 10px rgba(23, 162, 184, 0.2);
}

.badge-secondary {
    background: linear-gradient(135deg, rgba(108, 117, 125, 0.3), rgba(108, 117, 125, 0.15));
    color: #adb5bd;
    border: 1px solid rgba(108, 117, 125, 0.4);
    box-shadow: 0 2px 10px rgba(108, 117, 125, 0.2);
}

.btn-sm {
    padding: 0.65rem 1.25rem;
    font-size: 0.95rem;
    min-width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media print {
    .client-sidebar,
    .client-header,
    .invoice-actions,
    .btn,
    button {
        display: none !important;
    }
    
    .client-main {
        margin: 0;
        padding: 0;
    }
    
    .invoice-container {
        box-shadow: none;
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    .invoice-header-section {
        flex-direction: column;
        gap: 2rem;
    }
    
    .invoice-details {
        text-align: left;
    }
    
    .invoice-stats {
        grid-template-columns: 1fr;
    }
    
    .invoice-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .invoice-action-buttons {
        width: 100%;
    }
    
    .invoice-action-buttons .btn {
        flex: 1;
    }
}

/* ===== KNOWLEDGE BASE ADDITIONAL STYLES ===== */
.kb-featured {
    padding: 3rem 0;
}

.kb-featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.kb-featured-card {
    background: rgba(10, 14, 39, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.kb-featured-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.kb-featured-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.kb-category-badge {
    background: rgba(157, 78, 221, 0.2);
    color: var(--secondary);
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.kb-views {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.kb-featured-card h3 {
    color: var(--light);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.kb-featured-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    flex-grow: 1;
}

.kb-read-more {
    color: #00d4ff;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s;
}

.kb-featured-card:hover .kb-read-more {
    gap: 1rem;
}

.kb-article-page {
    background: var(--dark);
    min-height: 100vh;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.breadcrumb-nav a {
    color: #00d4ff;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-nav a:hover {
    color: var(--secondary);
}

.breadcrumb-nav .separator {
    color: rgba(255, 255, 255, 0.3);
}

.breadcrumb-nav .current {
    color: rgba(255, 255, 255, 0.8);
}

.kb-article-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    padding: 3rem 0;
}

.kb-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: 2rem;
}

.kb-sidebar-card {
    background: rgba(10, 14, 39, 0.6);
    border: 1px solid rgba(157, 78, 221, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
}

.kb-sidebar-card h3 {
    color: var(--light);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.kb-category-badge-large {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(157, 78, 221, 0.1);
    border-radius: 10px;
}

.kb-category-badge-large i {
    font-size: 2rem;
    color: var(--secondary);
}

.kb-category-badge-large span {
    color: var(--light);
    font-weight: 600;
}

.kb-article-meta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.meta-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.meta-item i {
    color: rgba(0, 212, 255, 0.6);
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

.meta-item label {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    margin-bottom: 0.2rem;
}

.meta-item span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.kb-feedback {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-feedback {
    width: 100%;
    justify-content: center;
}

.kb-support-card {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(157, 78, 221, 0.1));
    border-color: rgba(0, 212, 255, 0.3);
}

.kb-support-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.kb-article-content article {
    background: rgba(10, 14, 39, 0.4);
    border: 1px solid rgba(157, 78, 221, 0.2);
    border-radius: 15px;
    padding: 3rem;
}

.kb-article-header {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(157, 78, 221, 0.2);
}

.kb-article-header h1 {
    color: var(--light);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.kb-article-excerpt {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    line-height: 1.6;
}

.kb-article-body h2 {
    color: var(--light);
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    padding-top: 1rem;
}

.kb-article-body h3 {
    color: var(--light);
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem;
}

.kb-article-body h4 {
    color: var(--light);
    font-size: 1.2rem;
    margin: 1.2rem 0 0.8rem;
}

.kb-article-body p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.kb-article-body ul,
.kb-article-body ol {
    margin: 1rem 0 1rem 2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.kb-article-body li {
    margin-bottom: 0.5rem;
}

.kb-article-body strong {
    color: var(--light);
    font-weight: 600;
}

.kb-article-body code {
    background: rgba(0, 212, 255, 0.1);
    color: #00d4ff;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

.kb-article-body pre {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.kb-article-body pre code {
    background: none;
    padding: 0;
}

.kb-article-body .alert {
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    border-left: 4px solid;
}

.kb-article-body .alert-info {
    background: rgba(0, 212, 255, 0.1);
    border-color: #00d4ff;
    color: rgba(255, 255, 255, 0.9);
}

.kb-article-body .alert-success {
    background: rgba(40, 167, 69, 0.1);
    border-color: var(--success);
    color: rgba(255, 255, 255, 0.9);
}

.kb-article-body .alert-warning {
    background: rgba(255, 193, 7, 0.1);
    border-color: var(--warning);
    color: rgba(255, 255, 255, 0.9);
}

.kb-article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(157, 78, 221, 0.2);
    flex-wrap: wrap;
    gap: 1rem;
}

.kb-tags {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.kb-tags i {
    color: rgba(0, 212, 255, 0.6);
}

.kb-tags .tag {
    background: rgba(157, 78, 221, 0.2);
    color: var(--secondary);
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.85rem;
}

.kb-share {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.kb-share span {
    color: rgba(255, 255, 255, 0.6);
}

.share-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(157, 78, 221, 0.2);
    border: 1px solid rgba(157, 78, 221, 0.3);
    border-radius: 50%;
    color: var(--secondary);
    text-decoration: none;
    transition: all 0.3s;
}

.share-btn:hover {
    background: rgba(157, 78, 221, 0.3);
    transform: translateY(-2px);
}

.kb-related {
    margin-top: 3rem;
}

.kb-related h2 {
    color: var(--light);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.kb-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.kb-related-card {
    background: rgba(10, 14, 39, 0.4);
    border: 1px solid rgba(157, 78, 221, 0.2);
    border-radius: 10px;
    padding: 1.5rem;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.kb-related-card:hover {
    border-color: rgba(0, 212, 255, 0.5);
    transform: translateY(-3px);
}

.kb-related-card h3 {
    color: var(--light);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.kb-related-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.kb-category-page {
    background: var(--dark);
    min-height: 100vh;
}

.kb-category-header {
    padding: 3rem 0;
}

.kb-category-hero {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.kb-category-icon-large {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(157, 78, 221, 0.2));
}

.kb-category-icon-large i {
    color: #00d4ff;
}

.kb-category-hero h1 {
    color: var(--light);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.kb-category-hero > p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.kb-category-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: rgba(255, 255, 255, 0.6);
}

.kb-category-stats span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.kb-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.kb-article-card {
    background: rgba(10, 14, 39, 0.6);
    border: 1px solid rgba(157, 78, 221, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.kb-article-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.kb-article-card-header h3 {
    color: var(--light);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.kb-article-card > p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    flex-grow: 1;
    line-height: 1.6;
}

.kb-article-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(157, 78, 221, 0.2);
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.kb-date {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.kb-empty {
    text-align: center;
    padding: 4rem 2rem;
}

.kb-empty i {
    font-size: 4rem;
    color: rgba(157, 78, 221, 0.3);
    margin-bottom: 1.5rem;
}

.kb-empty h3 {
    color: var(--light);
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
}

.kb-empty p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
}

@media (max-width: 1024px) {
    .kb-article-layout {
        grid-template-columns: 1fr;
    }
    
    .kb-sidebar {
        position: static;
        grid-row: 1;
    }
}

@media (max-width: 768px) {
    .kb-categories-grid {
        grid-template-columns: 1fr;
    }
    
    .kb-featured-grid {
        grid-template-columns: 1fr;
    }
    
    .kb-articles-grid {
        grid-template-columns: 1fr;
    }
    
    .kb-article-content article {
        padding: 1.5rem;
    }
    
    .kb-article-header h1 {
        font-size: 1.8rem;
    }
    
    .kb-article-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ===== MOBILE PERFORMANCE OPTIMIZATIONS ===== */
/* Disable parallax, heavy animations, and fixed backgrounds on mobile */
@media (max-width: 1024px) {
    /* Disable fixed backgrounds (parallax) */
    *,
    *::before,
    *::after {
        background-attachment: scroll !important;
    }
    
    /* Disable bloom particles and decorative animations */
    .bloom-particles,
    .bloom-particle {
        display: none !important;
    }
    
    /* Simplify hero section */
    .hero::before,
    .hero::after {
        animation: none !important;
    }
    
    /* Reduce animation complexity */
    .fade-on-scroll,
    .feature-card,
    .pricing-card,
    .service-card {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

@media (max-width: 768px) {
    /* Completely disable decorative animations on mobile */
    @keyframes bloomFloat {
        from, to { transform: none; opacity: 0; }
    }
    
    @keyframes float {
        from, to { transform: none; }
    }
    
    @keyframes pulse {
        from, to { transform: none; }
    }
    
    /* Simplify gradients for performance */
    .hero,
    .page-header {
        background-attachment: scroll !important;
        transform: none !important;
    }
    
    .hero::before {
        display: none !important;
    }
    
    .page-header {
        background: linear-gradient(135deg, #0a0e27 0%, #1a1045 40%, #0d1f3c 70%, #0a0e27 100%) !important;
        background-attachment: scroll !important;
        border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    }
    
    .page-header::before {
        background: radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.1), transparent 70%) !important;
        animation: none !important;
    }
    
    .page-header::after {
        display: none !important;
    }
    
    /* Disable scroll-based transforms */
    .hero-content,
    .hero-title,
    .hero-subtitle,
    .hero-cta {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
    
    /* Simplify card hover effects */
    .pricing-card:hover,
    .feature-card:hover,
    .service-card:hover {
        transform: none !important;
    }
    
    /* Disable floating animations */
    [class*="float"],
    [class*="pulse"],
    [class*="bounce"] {
        animation: none !important;
    }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
        background-attachment: scroll !important;
    }
    
    .bloom-particles,
    .bloom-particle {
        display: none !important;
    }
}

/* ============================================
   ENHANCED DOMAIN SEARCH STYLES
   ============================================ */

.domain-results-container {
    margin-top: 2rem;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.search-loading-inline,
.search-error-inline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 12px;
}

.search-loading-inline {
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary);
}

.search-error-inline {
    background: rgba(255, 68, 68, 0.1);
    color: #ff4444;
}

/* Primary Result */
.primary-result {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.primary-result.available {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.15), rgba(0, 212, 255, 0.1));
    border: 2px solid rgba(0, 255, 136, 0.4);
}

.primary-result.taken {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.3);
}

.primary-result .result-icon {
    font-size: 2rem;
}

.primary-result.available .result-icon {
    color: #00ff88;
}

.primary-result.taken .result-icon {
    color: #ff6666;
}

.primary-result .result-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.primary-result .result-domain {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--light);
}

.primary-result .result-status {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.primary-result .result-action {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.primary-result .result-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

.primary-result .result-price small {
    font-size: 0.8rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
}

/* Other Domains Grid */
.other-domains-section {
    margin-top: 1.5rem;
}

.other-domains-section h4 {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.other-domains-section h4 i {
    color: var(--primary);
}

.other-domains-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.75rem;
}

.other-domain-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 10px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.other-domain-card:hover {
    border-color: var(--primary);
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-2px);
}

.other-domain-card .domain-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.other-domain-card .domain-name {
    font-weight: 600;
    color: var(--light);
    font-size: 0.95rem;
}

.other-domain-card .domain-price {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--dark);
}

/* All Taken Message */
.all-taken-message {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 165, 0, 0.1);
    border: 1px solid rgba(255, 165, 0, 0.3);
    border-radius: 12px;
    margin-bottom: 1rem;
}

.all-taken-message i {
    font-size: 1.5rem;
    color: #ffa500;
    flex-shrink: 0;
}

.all-taken-message strong {
    color: var(--light);
}

.all-taken-message span {
    display: block;
    margin-top: 0.25rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Alternative Suggestions */
.alternative-suggestions {
    margin-top: 1rem;
}

.suggestion-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.suggestion-label i {
    color: var(--primary);
}

.suggestion-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.suggestion-chip {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.suggestion-chip:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* More Options Link */
.more-options {
    margin-top: 1.5rem;
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.btn-link {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-link:hover {
    color: var(--primary);
}

/* Hosting Modal */
.hosting-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fadeIn 0.3s ease;
}

.hosting-modal-content {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.98), rgba(20, 25, 60, 0.95));
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    max-width: 1000px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hosting-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.hosting-modal-header h3 {
    font-size: 1.5rem;
    color: var(--light);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0;
}

.hosting-modal-header h3 i {
    color: var(--primary);
}

.modal-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: rgba(255, 255, 255, 0.7);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 68, 68, 0.2);
    color: #ff6666;
}

.hosting-modal-body {
    padding: 2rem;
    overflow-y: auto;
    flex: 1;
}

.selected-domain-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(157, 78, 221, 0.1));
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    margin-bottom: 2rem;
}

.selected-domain-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.selected-domain-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    flex: 1;
}

.selected-domain-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--light);
    background: rgba(0, 255, 136, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.hosting-modal-body h4 {
    font-size: 1.2rem;
    color: var(--light);
    margin-bottom: 0.5rem;
}

.hosting-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* Hosting Options Grid */
.hosting-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.hosting-option {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(0, 212, 255, 0.15);
    border-radius: 15px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.hosting-option:hover {
    border-color: rgba(0, 212, 255, 0.4);
    background: rgba(0, 212, 255, 0.05);
    transform: translateY(-3px);
}

.hosting-option.selected {
    border-color: var(--primary);
    background: rgba(0, 212, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.hosting-option.recommended {
    border-color: rgba(0, 255, 136, 0.4);
}

.hosting-option.recommended.selected {
    border-color: #00ff88;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.option-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 212, 255, 0.2);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
}

.option-badge.popular {
    background: linear-gradient(135deg, #00ff88, #00d4ff);
    color: var(--dark);
}

.hosting-option h5 {
    font-size: 1.1rem;
    color: var(--light);
    margin: 0.5rem 0;
}

.hosting-option .option-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0.5rem 0;
}

.hosting-option .option-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
}

.hosting-option .option-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
}

.hosting-option ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hosting-option ul li {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    padding: 0.35rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hosting-option ul li i {
    color: #00ff88;
    font-size: 0.75rem;
}

/* Modal Footer */
.hosting-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.98), rgba(20, 25, 60, 0.95));
    border-radius: 0 0 20px 20px;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .primary-result {
        flex-direction: column;
        text-align: center;
    }
    
    .primary-result .result-action {
        flex-direction: column;
        width: 100%;
    }
    
    .primary-result .result-action .btn {
        width: 100%;
    }
    
    .other-domains-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .hosting-modal {
        padding: 1rem;
    }
    
    .hosting-modal-content {
        max-height: 95vh;
    }
    
    .hosting-options-grid {
        grid-template-columns: 1fr;
    }
    
    .hosting-modal-footer {
        flex-direction: column;
    }
    
    .hosting-modal-footer .btn {
        width: 100%;
    }
    
    .selected-domain-info {
        flex-direction: column;
        text-align: center;
    }
}

/* ===========================
   Client Layout Styles
   =========================== */

.client-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    align-items: start;
}

.sidebar-user {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.sidebar-user .user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-user .user-avatar i {
    font-size: 1.5rem;
    color: #fff;
}

.sidebar-user .user-info h4 {
    margin: 0;
    font-size: 1rem;
    color: #fff;
    font-weight: 600;
}

.sidebar-user .user-info span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.sidebar-nav a:hover {
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary);
}

.sidebar-nav a.active {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(157, 78, 221, 0.2));
    color: var(--primary);
    border-left: 3px solid var(--primary);
}

.sidebar-nav a i {
    font-size: 1.1rem;
    width: 24px;
}

.client-main {
    min-height: 500px;
}

.content-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.content-header h1 {
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.content-header h1 i {
    font-size: 1.5rem;
}

@media (max-width: 992px) {
    .client-layout {
        grid-template-columns: 1fr;
    }
    
    .client-sidebar {
        position: relative;
        top: 0;
    }
}

/* Client Sidebar Unified Styles */
.client-sidebar {
    background: rgba(10, 14, 39, 0.95);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    position: sticky;
    top: 100px;
    height: fit-content;
    z-index: 10;
}

.client-user-info {
    text-align: center;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.client-avatar {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(157, 78, 221, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    border: 2px solid rgba(0, 212, 255, 0.3);
}

.client-avatar i {
    font-size: 1.8rem;
    color: #00d4ff;
}

.client-user-info h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.client-user-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.client-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.client-nav-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

.client-nav-item:hover {
    background: rgba(0, 212, 255, 0.1);
    color: #00d4ff;
}

.client-nav-item.active {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(157, 78, 221, 0.2));
    color: #00d4ff;
    border-left: 3px solid #00d4ff;
}

.client-nav-item i {
    font-size: 1.1rem;
    width: 22px;
}

.client-main {
    min-height: 500px;
}

.client-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.client-header h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.client-header h1 i {
    color: #00d4ff;
    margin-right: 0.5rem;
}

.client-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .content-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .content-header h1 {
        font-size: 1.5rem;
    }
}

/* ==========================================
   Server Locations Section - OPTIMIZED
   ========================================== */

.server-locations {
    background: linear-gradient(180deg, var(--darker) 0%, rgba(10, 14, 39, 1) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    contain: layout style paint;
    content-visibility: auto;
    contain-intrinsic-size: 0 1200px;
}

/* Pause animations when section is not in viewport */
.server-locations:not(.in-viewport) .connection-path,
.server-locations:not(.in-viewport) .particle,
.server-locations:not(.in-viewport) .marker-glow {
    animation-play-state: paused !important;
}

.server-locations::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(0, 212, 255, 0.06), transparent 40%),
        radial-gradient(circle at 70% 80%, rgba(157, 78, 221, 0.06), transparent 40%);
    pointer-events: none;
}

/* Location Tabs */
.location-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.location-tab {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(10, 14, 39, 0.8);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.location-tab:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.5);
    color: var(--primary);
}

.location-tab.active {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(157, 78, 221, 0.2));
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.location-tab i {
    font-size: 1.1rem;
}

/* World Map Container */
.world-map-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 4rem;
    padding: 2.5rem;
    background: rgba(10, 14, 39, 0.9);
    border-radius: 24px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    overflow: visible;
    min-height: 350px;
}

.world-map {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 300px;
}

.world-map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.world-map-container::after {
    content: '';
    position: absolute;
    top: -1px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.4), transparent);
    border-radius: 50%;
}

/* Floating Particles - Reduced for performance */
.map-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.map-particles .particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(0, 212, 255, 0.5);
    border-radius: 50%;
    will-change: transform;
    animation: floatParticle 25s infinite linear;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.map-particles .particle:nth-child(1) { left: 15%; top: 25%; animation-delay: 0s; }
.map-particles .particle:nth-child(2) { left: 50%; top: 60%; animation-delay: 8s; }
.map-particles .particle:nth-child(3) { left: 80%; top: 35%; animation-delay: 16s; }

@keyframes floatParticle {
    0%, 100% {
        transform: translate3d(0, 0, 0);
        opacity: 0.3;
    }
    50% {
        transform: translate3d(0, -25px, 0);
        opacity: 0.5;
    }
}

.dotted-world-map {
    width: 100%;
    height: auto;
    min-height: 280px;
    display: block;
}

/* Map Continent Shapes */
.map-continents path {
    transition: opacity 0.3s ease;
}

/* Ambient dots on map */
.ambient-dots circle {
    animation: ambientPulse 6s ease-in-out infinite;
}

.ambient-dots circle:nth-child(odd) {
    animation-delay: 1s;
}

.ambient-dots circle:nth-child(3n) {
    animation-delay: 2s;
}

@keyframes ambientPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* Connection Lines Animation */
.connection-lines .connection-path {
    animation: dashFlow 30s linear infinite;
}

@keyframes dashFlow {
    0% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -100; }
}

/* Location Markers with Glowing Effect */
.location-marker {
    cursor: pointer;
}

.location-marker .marker-glow {
    animation: markerGlow 3s ease-in-out infinite;
}

.location-marker .marker-dot {
    transition: all 0.2s ease-out;
    filter: drop-shadow(0 0 4px #00ffff);
}

.location-marker:hover .marker-dot,
.location-marker.active .marker-dot {
    r: 8;
    filter: drop-shadow(0 0 8px #00ffff);
}

.location-marker:hover .marker-glow,
.location-marker.active .marker-glow {
    opacity: 1;
    animation: markerGlowHover 1.5s ease-in-out infinite;
}

@keyframes markerGlow {
    0%, 100% { 
        opacity: 0.4;
        r: 12;
    }
    50% { 
        opacity: 0.7;
        r: 16;
    }
}

@keyframes markerGlowHover {
    0%, 100% { 
        opacity: 0.7;
        r: 16;
    }
    50% { 
        opacity: 1;
        r: 20;
    }
}

/* Location Tooltip - Simplified */
.location-tooltip {
    position: absolute;
    background: rgba(10, 14, 39, 0.95);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    min-width: 180px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-100%);
    transition: opacity 0.2s ease, visibility 0.2s ease;
    pointer-events: none;
}

.location-tooltip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff, #a855f7);
    border-radius: 12px 12px 0 0;
}

.location-tooltip.visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-110%);
}

.location-tooltip::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid rgba(0, 212, 255, 0.4);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.tooltip-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.tooltip-header i {
    color: #00d4ff;
    font-size: 0.9rem;
}

.tooltip-city {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--light);
}

.tooltip-country {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.6rem;
    padding-left: 1.4rem;
}

.tooltip-features {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding-top: 0.4rem;
    border-top: 1px solid rgba(0, 212, 255, 0.15);
}

.tooltip-features span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
}

.tooltip-features i {
    color: #00ff88;
    font-size: 0.7rem;
    margin-right: 0.4rem;
}

/* Location Cards Grid */
.location-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    contain: layout style;
}

.location-region {
    background: rgba(10, 14, 39, 0.6);
    border-radius: 16px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    padding: 1.5rem;
    contain: layout style paint;
    transform: translateZ(0);
}

.location-region:hover {
    border-color: rgba(0, 212, 255, 0.35);
}

.location-region h4 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.location-region h4 i {
    font-size: 1.25rem;
}

.region-locations {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.location-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: background 0.15s ease-out, border-color 0.15s ease-out;
    contain: layout style;
    transform: translateZ(0);
}

.location-card:hover,
.location-card.highlighted {
    background: rgba(0, 212, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.25);
}

.location-card.pulse {
    animation: cardPulse 0.6s ease;
}

@keyframes cardPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 212, 255, 0);
    }
    50% {
        box-shadow: 0 0 20px 5px rgba(0, 212, 255, 0.4);
    }
}

.location-flag {
    font-size: 1.75rem;
    line-height: 1;
}

.location-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.location-city {
    font-weight: 600;
    font-size: 1rem;
    color: var(--light);
}

.location-country {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.location-status {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
}

.location-status.online {
    background: rgba(0, 255, 136, 0.15);
    color: #00ff88;
}

.location-status.online i {
    font-size: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .location-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .location-tab {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .world-map-container {
        padding: 1rem;
        margin-bottom: 2rem;
    }
    
    .location-cards {
        grid-template-columns: 1fr;
    }
    
    .location-card {
        padding: 0.875rem;
    }
    
    .location-flag {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .server-locations {
        padding: 4rem 0;
    }
    
    .server-locations .section-header h2 {
        font-size: 1.75rem;
    }
    
    .location-region {
        padding: 1rem;
    }
}

/* Respect reduced motion preference for accessibility and performance */
@media (prefers-reduced-motion: reduce) {
    .server-locations .particle,
    .server-locations .connection-path,
    .server-locations .marker-glow {
        animation: none !important;
    }
    
    .location-card,
    .location-tab,
    .location-tooltip {
        transition-duration: 0.01ms !important;
    }
}

/* ==========================================
   Free Migration Section
   ========================================== */

.free-migration {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
    background: linear-gradient(180deg, var(--darker) 0%, #1a1a4e 50%, var(--darker) 100%);
}

.migration-bg-shape {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 50%, #3730a3 100%);
    clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
    z-index: 0;
}

.migration-bg-shape::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.15), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(157, 78, 221, 0.15), transparent 40%);
    pointer-events: none;
}

.free-migration .container {
    position: relative;
    z-index: 1;
}

.migration-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Migration Visual / Illustration */
.migration-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.migration-illustration {
    position: relative;
    width: 400px;
    height: 350px;
}

/* Central Server Box */
.migration-server.central {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.server-box {
    width: 120px;
    height: 140px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 50%, #1e40af 100%);
    border-radius: 12px;
    position: relative;
    transform: perspective(500px) rotateY(-15deg) rotateX(5deg);
    box-shadow: 
        -20px 20px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(59, 130, 246, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem 1rem;
    animation: serverFloat 4s ease-in-out infinite;
}

@keyframes serverFloat {
    0%, 100% {
        transform: perspective(500px) rotateY(-15deg) rotateX(5deg) translateY(0);
    }
    50% {
        transform: perspective(500px) rotateY(-15deg) rotateX(5deg) translateY(-10px);
    }
}

.server-box::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.5), rgba(157, 78, 221, 0.5));
    border-radius: 14px;
    z-index: -1;
    opacity: 0.5;
}

.server-logo {
    text-align: center;
}

.bloom-text {
    font-size: 1rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

.bloom-logo-icon {
    width: 60px;
    height: auto;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.3));
}

.server-lights {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.server-lights span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00ff88;
    box-shadow: 0 0 10px #00ff88;
    animation: serverBlink 1.5s ease-in-out infinite;
}

.server-lights span:nth-child(2) {
    animation-delay: 0.3s;
    background: #00d4ff;
    box-shadow: 0 0 10px #00d4ff;
}

.server-lights span:nth-child(3) {
    animation-delay: 0.6s;
    background: #ff9f43;
    box-shadow: 0 0 10px #ff9f43;
}

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

/* Page Cards */
.migration-pages {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.page-card {
    position: absolute;
    width: 80px;
    height: 100px;
    background: white;
    border-radius: 6px;
    padding: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.page-card .page-header {
    height: 15px;
    background: linear-gradient(90deg, #e2e8f0, #cbd5e1);
    border-radius: 3px;
    margin-bottom: 0.5rem;
}

.page-card .page-lines {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.page-card .page-lines span {
    height: 6px;
    background: #e2e8f0;
    border-radius: 2px;
}

.page-card .page-lines span:nth-child(2) {
    width: 80%;
}

.page-card .page-lines span:nth-child(3) {
    width: 60%;
}

.page-card.left-1 {
    left: 0;
    top: 30%;
    transform: perspective(300px) rotateY(20deg);
    animation: pageFloatLeft1 3s ease-in-out infinite;
}

.page-card.left-2 {
    left: 40px;
    top: 55%;
    transform: perspective(300px) rotateY(15deg);
    animation: pageFloatLeft2 3.5s ease-in-out infinite;
    opacity: 0.8;
}

.page-card.right-1 {
    right: 0;
    top: 30%;
    transform: perspective(300px) rotateY(-20deg);
    animation: pageFloatRight1 3s ease-in-out infinite;
}

.page-card.right-2 {
    right: 40px;
    top: 55%;
    transform: perspective(300px) rotateY(-15deg);
    animation: pageFloatRight2 3.5s ease-in-out infinite;
    opacity: 0.8;
}

@keyframes pageFloatLeft1 {
    0%, 100% { transform: perspective(300px) rotateY(20deg) translateX(0); }
    50% { transform: perspective(300px) rotateY(20deg) translateX(-10px); }
}

@keyframes pageFloatLeft2 {
    0%, 100% { transform: perspective(300px) rotateY(15deg) translateX(0); }
    50% { transform: perspective(300px) rotateY(15deg) translateX(-8px); }
}

@keyframes pageFloatRight1 {
    0%, 100% { transform: perspective(300px) rotateY(-20deg) translateX(0); }
    50% { transform: perspective(300px) rotateY(-20deg) translateX(10px); }
}

@keyframes pageFloatRight2 {
    0%, 100% { transform: perspective(300px) rotateY(-15deg) translateX(0); }
    50% { transform: perspective(300px) rotateY(-15deg) translateX(8px); }
}

/* Migration Arrows */
.migration-arrows {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    pointer-events: none;
}

.migration-arrows .arrow-left,
.migration-arrows .arrow-right {
    position: absolute;
    width: 100px;
    height: 50px;
}

.migration-arrows .arrow-left {
    left: 20px;
    transform: scaleX(-1);
}

.migration-arrows .arrow-right {
    right: 20px;
}

/* Migration Info */
.migration-info {
    color: var(--light);
}

.migration-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: rgba(157, 78, 221, 0.2);
    border: 1px solid rgba(157, 78, 221, 0.5);
    border-radius: 50px;
    color: #9d4edd;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.migration-badge i {
    font-size: 1rem;
}

.migration-info h2 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-align: left;
    background: linear-gradient(135deg, #ffffff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.migration-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
}

.migration-info p strong {
    color: #00d4ff;
}

.migration-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.migration-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.migration-feature:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateX(5px);
}

.migration-feature i {
    color: #00ff88;
    font-size: 1.1rem;
}

.migration-feature span {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

/* Accent Button */
.btn-accent {
    background: linear-gradient(135deg, #00d4ff, #9d4edd);
    color: white;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
    border: none;
}

.btn-accent:hover {
    background: linear-gradient(135deg, #00d4ff, #9d4edd);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.5);
}

.btn-accent i {
    margin-right: 0.5rem;
}

/* Responsive */
@media (max-width: 992px) {
    .migration-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .migration-visual {
        order: -1;
    }
    
    .migration-info h2 {
        text-align: center;
    }
    
    .migration-features {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 768px) {
    .free-migration {
        padding: 5rem 0;
    }
    
    .migration-illustration {
        width: 320px;
        height: 280px;
    }
    
    .server-box {
        width: 100px;
        height: 120px;
    }
    
    .page-card {
        width: 65px;
        height: 80px;
    }
    
    .migration-info h2 {
        font-size: 2rem;
    }
    
    .migration-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .migration-illustration {
        width: 280px;
        height: 240px;
    }
    
    .server-box {
        width: 80px;
        height: 100px;
    }
    
    .page-card {
        width: 55px;
        height: 70px;
    }
    
    .bloom-text {
        font-size: 0.85rem;
    }
    
    .migration-info h2 {
        font-size: 1.75rem;
    }
}

/* ===========================
   MOBILE CLIENT AREA OPTIMIZATIONS
   =========================== */

/* Mobile sidebar toggle button */
.mobile-sidebar-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(157, 78, 221, 0.2));
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 10px;
    color: #00d4ff;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 1rem;
    width: 100%;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.mobile-sidebar-toggle:hover,
.mobile-sidebar-toggle:active {
    background: rgba(0, 212, 255, 0.25);
    border-color: rgba(0, 212, 255, 0.5);
}

.mobile-sidebar-toggle i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.mobile-sidebar-toggle.active i {
    transform: rotate(180deg);
}

/* Mobile navigation - Collapsible */
.client-sidebar.mobile-collapsed .client-nav {
    display: none;
}

.client-sidebar.mobile-expanded .client-nav {
    display: flex;
}

/* Mobile card styles for dashboard */
.mobile-service-cards,
.mobile-invoice-cards,
.mobile-ticket-cards {
    display: none;
}

@media (max-width: 768px) {
    .mobile-service-cards,
    .mobile-invoice-cards,
    .mobile-ticket-cards {
        display: block;
    }
}

/* Tablet breakpoint - 769px to 992px */
@media (min-width: 769px) and (max-width: 992px) {
    .client-layout {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        padding: 1.5rem 15px !important;
    }
    
    .client-sidebar {
        position: relative !important;
        top: 0 !important;
        order: -1;
    }
    
    /* Hide toggle on tablet - show horizontal nav instead */
    .mobile-sidebar-toggle {
        display: none !important;
    }
    
    .client-nav {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 0.5rem !important;
        justify-content: center !important;
    }
    
    .client-nav-item {
        padding: 0.65rem 0.85rem !important;
        font-size: 0.85rem !important;
        gap: 0.5rem !important;
        flex: 0 0 auto !important;
        border-radius: 8px !important;
    }
    
    .client-nav-item span {
        display: inline !important;
    }
    
    .client-user-info {
        display: none;
    }
    
    .dashboard-stats {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }
    
    .actions-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .services-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Mobile breakpoint - 768px */
@media (max-width: 768px) {
    /* Base container adjustments */
    .container {
        padding: 0 12px !important;
    }
    
    .client-layout {
        padding: 0.75rem 8px !important;
        gap: 0.75rem !important;
    }
    
    /* Mobile sidebar toggle - show on mobile */
    .mobile-sidebar-toggle {
        display: flex !important;
        margin-bottom: 0 !important;
    }
    
    /* Sidebar as collapsible on mobile - default to collapsed */
    .client-sidebar {
        padding: 0.75rem !important;
        border-radius: 12px !important;
        overflow: hidden !important;
    }
    
    /* Hide user info on mobile */
    .client-sidebar .client-user-info {
        display: none !important;
    }
    
    /* Default state - nav hidden until toggle clicked */
    .client-sidebar .client-nav {
        display: none !important;
        max-height: 0 !important;
        overflow: hidden !important;
    }
    
    /* Collapsed state - nav hidden */
    .client-sidebar.mobile-collapsed .client-nav {
        display: none !important;
        max-height: 0 !important;
        overflow: hidden !important;
    }
    
    /* Expanded state - nav visible */
    .client-sidebar.mobile-expanded .client-nav {
        display: flex !important;
        flex-direction: column !important;
        max-height: 500px !important;
        animation: slideDown 0.3s ease-out !important;
        margin-top: 0.75rem !important;
        padding-top: 0.75rem !important;
        border-top: 1px solid rgba(0, 212, 255, 0.2) !important;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .client-nav {
        flex-direction: column !important;
        gap: 0.4rem !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .client-nav-item {
        padding: 0.75rem 1rem !important;
        font-size: 0.9rem !important;
        border-radius: 10px !important;
        display: flex !important;
        align-items: center !important;
        gap: 0.75rem !important;
    }
    
    .client-nav-item span {
        display: inline !important;
    }
    
    .client-nav-item i {
        font-size: 1.1rem !important;
        width: 22px !important;
        text-align: center !important;
    }
    
    /* Dashboard stats */
    .dashboard-stats {
        grid-template-columns: 1fr 1fr !important;
        gap: 0.75rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .stat-card {
        padding: 1rem !important;
        flex-direction: column !important;
        text-align: center !important;
        gap: 0.75rem !important;
        min-height: auto !important;
    }
    
    .stat-icon {
        width: 50px !important;
        height: 50px !important;
        min-width: 50px !important;
        font-size: 1.3rem !important;
    }
    
    .stat-info h3,
    .stat-content h3 {
        font-size: 1.5rem !important;
    }
    
    .stat-info p,
    .stat-content p {
        font-size: 0.7rem !important;
        letter-spacing: 0.5px !important;
    }
    
    /* Quick actions */
    .quick-actions {
        padding: 1.25rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .quick-actions h2 {
        font-size: 1.2rem !important;
        margin-bottom: 1rem !important;
    }
    
    .actions-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
    }
    
    .action-card {
        padding: 1rem !important;
        font-size: 0.85rem !important;
    }
    
    .action-card i {
        font-size: 1.5rem !important;
    }
    
    /* Dashboard sections */
    .dashboard-section {
        padding: 1.25rem !important;
        margin-bottom: 1rem !important;
        border-radius: 12px !important;
    }
    
    .section-header-flex {
        flex-direction: column !important;
        gap: 0.75rem !important;
        align-items: flex-start !important;
        margin-bottom: 1rem !important;
    }
    
    .section-header-flex h2 {
        font-size: 1.1rem !important;
    }
    
    .section-header-flex .btn {
        width: 100% !important;
        justify-content: center !important;
    }
    
    /* Client header */
    .client-header h1,
    .dashboard-header h1 {
        font-size: 1.4rem !important;
        word-break: break-word !important;
    }
    
    .client-header p,
    .dashboard-header p {
        font-size: 0.9rem !important;
    }
    
    /* Tables - horizontal scroll with min-width */
    .table-responsive {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        margin: 0 -1rem !important;
        padding: 0 1rem !important;
    }
    
    .dashboard-table,
    .data-table {
        min-width: 600px !important;
        font-size: 0.85rem !important;
    }
    
    .dashboard-table th,
    .dashboard-table td,
    .data-table th,
    .data-table td {
        padding: 0.75rem 0.5rem !important;
        white-space: nowrap !important;
    }
    
    .dashboard-table th,
    .data-table th {
        font-size: 0.7rem !important;
    }
    
    /* Services page */
    .services-page {
        padding: 30px 0 !important;
    }
    
    .services-header h1 {
        font-size: 1.5rem !important;
    }
    
    .services-filters {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        flex-wrap: nowrap !important;
        padding-bottom: 0.5rem !important;
    }
    
    .filter-btn {
        white-space: nowrap !important;
        flex-shrink: 0 !important;
    }
    
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .service-card {
        padding: 1.25rem !important;
    }
    
    .service-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.75rem !important;
    }
    
    .service-info h3 {
        font-size: 1rem !important;
    }
    
    /* Invoices */
    .invoice-stats {
        grid-template-columns: 1fr 1fr !important;
        gap: 0.75rem !important;
    }
    
    .invoice-actions {
        flex-direction: column !important;
        gap: 0.75rem !important;
    }
    
    .invoice-action-buttons {
        width: 100% !important;
        flex-direction: column !important;
    }
    
    .invoice-action-buttons .btn {
        width: 100% !important;
        justify-content: center !important;
    }
    
    .invoice-container {
        padding: 1.5rem !important;
        border-radius: 10px !important;
    }
    
    .invoice-header-section {
        flex-direction: column !important;
        gap: 1.5rem !important;
    }
    
    .invoice-details {
        text-align: left !important;
    }
    
    .invoice-details h1 {
        font-size: 1.75rem !important;
    }
    
    .invoice-company .invoice-logo {
        max-width: 140px !important;
    }
    
    .invoice-table th,
    .invoice-table td {
        padding: 0.75rem 0.5rem !important;
        font-size: 0.85rem !important;
    }
    
    /* Tickets */
    .ticket-card {
        padding: 1.25rem !important;
    }
    
    .ticket-header {
        flex-direction: column !important;
        gap: 1rem !important;
    }
    
    .ticket-info h3 {
        font-size: 1rem !important;
    }
    
    .ticket-meta {
        gap: 0.75rem !important;
        font-size: 0.8rem !important;
    }
    
    .ticket-badges {
        width: 100% !important;
    }
    
    .ticket-footer {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.75rem !important;
    }
    
    .ticket-form .form-row {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .ticket-reply-form {
        padding: 1.5rem !important;
    }
    
    .reply-item {
        flex-direction: column !important;
        gap: 1rem !important;
    }
    
    .reply-avatar {
        width: 40px !important;
        height: 40px !important;
        font-size: 1rem !important;
    }
    
    .reply-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.5rem !important;
    }
    
    /* Buttons */
    .form-actions {
        flex-direction: column !important;
    }
    
    .form-actions .btn {
        width: 100% !important;
    }
    
    .btn {
        font-size: 0.9rem !important;
        padding: 0.75rem 1.25rem !important;
    }
    
    .btn-secondary {
        width: 100% !important;
        justify-content: center !important;
    }
    
    /* Page header */
    .page-header-client {
        flex-direction: column !important;
        gap: 1rem !important;
    }
    
    .page-header-client h1 {
        font-size: 1.4rem !important;
    }
    
    .header-actions {
        width: 100% !important;
    }
    
    .header-actions .btn {
        width: 100% !important;
    }
    
    /* Empty state */
    .empty-state {
        padding: 2.5rem 1.5rem !important;
    }
    
    .empty-state i {
        font-size: 3rem !important;
    }
    
    .empty-state h3 {
        font-size: 1.2rem !important;
    }
    
    /* Alerts */
    .alert {
        padding: 0.875rem 1rem !important;
        font-size: 0.9rem !important;
        flex-direction: column !important;
        text-align: center !important;
        gap: 0.5rem !important;
    }
    
    /* Badges */
    .badge {
        padding: 0.35rem 0.75rem !important;
        font-size: 0.7rem !important;
        min-width: 60px !important;
    }
    
    /* Knowledge base */
    .kb-grid {
        grid-template-columns: 1fr !important;
    }
    
    .kb-search-form .search-input-group {
        flex-direction: column !important;
        border-radius: 15px !important;
    }
    
    .kb-search-form .btn {
        width: 100% !important;
        border-radius: 25px !important;
    }
    
    .kb-article .container {
        grid-template-columns: 1fr !important;
    }
    
    .kb-article-content {
        padding: 1.5rem !important;
    }
    
    .kb-article-header h1 {
        font-size: 1.5rem !important;
    }
    
    .kb-article-footer {
        flex-direction: column !important;
        gap: 1.5rem !important;
    }
}

/* Extra small mobile breakpoint - 480px */
@media (max-width: 480px) {
    .client-layout {
        padding: 0.75rem 8px !important;
    }
    
    .client-sidebar {
        padding: 0.75rem !important;
    }
    
    .client-nav-item {
        padding: 0.5rem 0.6rem !important;
    }
    
    .dashboard-stats {
        grid-template-columns: 1fr !important;
        gap: 0.5rem !important;
    }
    
    .stat-card {
        flex-direction: row !important;
        text-align: left !important;
        padding: 0.875rem !important;
    }
    
    .stat-icon {
        width: 45px !important;
        height: 45px !important;
        min-width: 45px !important;
        font-size: 1.2rem !important;
    }
    
    .stat-info h3,
    .stat-content h3 {
        font-size: 1.3rem !important;
    }
    
    .actions-grid {
        grid-template-columns: 1fr !important;
    }
    
    .action-card {
        flex-direction: row !important;
        justify-content: flex-start !important;
        gap: 1rem !important;
    }
    
    .action-card i {
        font-size: 1.25rem !important;
    }
    
    .dashboard-section {
        padding: 1rem !important;
    }
    
    .invoice-stats {
        grid-template-columns: 1fr !important;
    }
    
    .invoice-container {
        padding: 1rem !important;
    }
    
    .invoice-details h1 {
        font-size: 1.5rem !important;
    }
    
    .ticket-form-card,
    .ticket-details-card,
    .ticket-conversation {
        padding: 1.25rem !important;
    }
    
    .quick-actions {
        padding: 1rem !important;
    }
    
    .services-header h1 {
        font-size: 1.3rem !important;
    }
    
    .client-header h1,
    .dashboard-header h1 {
        font-size: 1.25rem !important;
    }
}

/* ===== PWA INSTALL BANNER ===== */
.pwa-install-banner {
    position: fixed;
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 2rem);
    max-width: 600px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 16px;
    padding: 1.5rem;
    z-index: 10001;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 60px rgba(99, 102, 241, 0.15);
    transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pwa-install-banner.show {
    bottom: 1rem;
}

.pwa-install-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.pwa-install-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pwa-install-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.pwa-install-text {
    flex: 1;
    min-width: 200px;
}

.pwa-install-text strong {
    display: block;
    font-size: 1rem;
    color: #fff;
    margin-bottom: 0.25rem;
}

.pwa-install-text p {
    font-size: 0.875rem;
    color: #a0a0a0;
    margin: 0;
    line-height: 1.4;
}

.pwa-install-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.pwa-install-actions .btn {
    padding: 0.6rem 1.25rem;
    font-size: 0.875rem;
    white-space: nowrap;
}

.pwa-close-btn {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: #a0a0a0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.pwa-close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* PWA iOS Banner */
.pwa-ios-banner .pwa-install-text p i {
    color: #6366f1;
}

/* PWA Toast Notification */
.pwa-toast {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: #1a1a2e;
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    z-index: 10002;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #fff;
    font-size: 0.875rem;
}

.pwa-toast.show {
    bottom: 1rem;
}

.pwa-toast.success i {
    color: #10b981;
}

.pwa-toast.error i {
    color: #ef4444;
}

/* PWA Standalone Mode Adjustments */
.pwa-standalone {
    /* Add safe area insets for notched devices */
    padding-top: env(safe-area-inset-top);
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
    padding-bottom: env(safe-area-inset-bottom);
}

.pwa-standalone .navbar {
    padding-top: env(safe-area-inset-top);
}

.pwa-standalone .footer {
    padding-bottom: calc(20px + env(safe-area-inset-bottom));
}

/* PWA Install Banner Mobile Responsive */
@media (max-width: 576px) {
    .pwa-install-banner {
        width: calc(100% - 1rem);
        padding: 1rem;
        bottom: 0;
        border-radius: 16px 16px 0 0;
    }
    
    .pwa-install-banner.show {
        bottom: 0;
    }
    
    .pwa-install-content {
        flex-direction: column;
        text-align: center;
    }
    
    .pwa-install-icon {
        margin: 0 auto;
    }
    
    .pwa-install-text {
        min-width: unset;
    }
    
    .pwa-install-actions {
        width: 100%;
        justify-content: center;
    }
    
    .pwa-install-actions .btn {
        flex: 1;
    }
}