/**
 * VPS Game Theme - Custom Styles
 * Bao gồm: Nền động theo chuột, animations, màu nâu sang trọng
 */

/* ===================================
   GLOBAL STYLES & RESET
=================================== */
:root {
    /* Royal Purple Elite Color Palette */
    --color-primary: #7c3aed;
    --color-primary-dark: #6d28d9;
    --color-primary-darker: #5b21b6;
    --color-secondary: #a855f7;
    --color-gold: #f0abfc;
    --color-gold-light: #fae8ff;
    --color-gold-bright: #e879f9;
    
    /* Background Colors */
    --color-bg-light: #1a0b2e;
    --color-bg-white: #FFFFFF;
    --color-bg-dark: #1a0b2e;
    --color-bg-card: #2d1b4e;
    
    /* Text colors */
    --color-text-primary: #faf5ff;
    --color-text-secondary: rgba(250, 245, 255, 0.8);
    --color-text-light: rgba(250, 245, 255, 0.6);
    --color-text-white: #faf5ff;
    
    /* Font families */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --font-accent: 'Inter', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    
    /* Border radius */
    --radius-sm: 8px;
    --radius-md: 15px;
    --radius-lg: 25px;
    --radius-xl: 50px;
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(124, 58, 237, 0.2);
    --shadow-md: 0 5px 20px rgba(124, 58, 237, 0.25);
    --shadow-lg: 0 10px 40px rgba(124, 58, 237, 0.35);
    --shadow-glow: 0 0 30px rgba(240, 171, 252, 0.4);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-primary);
    background: rgba(26, 11, 46, 0.95);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: #faf5ff;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition-normal);
}

a:hover {
    color: var(--color-gold);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-main {
    padding: 0;
}

.site-main.vps-home-page {
    padding: 0;
}

.vps-home-page .hero-section {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* ===================================
   ANIMATED BACKGROUND
=================================== */
/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #1a0b2e;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    border-radius: 10px;
    border: 2px solid #1a0b2e;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #a855f7, #f0abfc);
}

@media (max-width: 768px) {
    ::-webkit-scrollbar {
        width: 6px;
        height: 6px;
    }
}

#mouse-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

@media (max-width: 768px) {
    #mouse-canvas {
        display: none !important;
    }
    
    .scroll-indicator,
    .scroll-down,
    .mouse-scroll,
    .hero-scroll-indicator {
        display: none !important;
    }
}

.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.bg-gradient-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        #1a0b2e 0%,
        #2d1b4e 25%,
        #1a0b2e 50%,
        #3730a3 75%,
        #1a0b2e 100%);
    background-size: 400% 400%;
    animation: gradientFlow 20s ease infinite;
}

@keyframes gradientFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.bg-particles-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 15% 30%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 85% 70%, rgba(168, 85, 247, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(240, 171, 252, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 25% 80%, rgba(124, 58, 237, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 20%, rgba(168, 85, 247, 0.13) 0%, transparent 50%);
    background-size: 80% 80%;
    animation: particlesFloat 30s ease-in-out infinite;
}

@keyframes particlesFloat {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.6;
    }
    25% { 
        transform: translate(50px, -50px) rotate(90deg);
        opacity: 0.8;
    }
    50% { 
        transform: translate(0, -100px) rotate(180deg);
        opacity: 0.5;
    }
    75% { 
        transform: translate(-50px, -50px) rotate(270deg);
        opacity: 0.7;
    }
}

.bg-glow-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle 800px at var(--mouse-x, 50%) var(--mouse-y, 50%), 
            rgba(167, 139, 250, 0.15) 0%, 
            rgba(167, 139, 250, 0.05) 40%,
            transparent 70%);
    transition: background 0.3s ease;
    pointer-events: none;
}

/* ===================================
   HEADER STYLES
=================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(26, 11, 46, 0.75);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Top Bar */
.top-bar {
    display: none;
    background: linear-gradient(135deg, #1a0b2e 0%, #2d1b4e 100%);
    color: var(--color-text-white);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-item i {
    color: var(--color-gold);
    animation: iconPulseSmall 2s ease-in-out infinite;
}

@keyframes iconPulseSmall {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.top-bar a {
    color: var(--color-text-white);
    transition: var(--transition-fast);
}

.top-bar a:hover {
    color: var(--color-gold);
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--color-text-white);
    transition: var(--transition-normal);
}

.social-link:hover {
    background: var(--color-gold);
    color: var(--color-text-primary);
    transform: translateY(-3px) rotate(360deg);
}

/* Main Header */
.main-header {
    padding: 20px 0;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.site-branding {
    flex-shrink: 0;
    order: 1;
}

.main-navigation {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    order: 2;
}

.header-cta {
    flex-shrink: 0;
    order: 3;
}

.site-branding {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.site-branding .custom-logo-link {
    display: inline-block;
    max-width: 250px;
    line-height: 0;
}

.site-branding .custom-logo {
    width: 100%;
    height: auto;
    max-height: 70px;
    object-fit: contain;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    filter: brightness(1.1) drop-shadow(0 2px 8px rgba(240, 171, 252, 0.3));
}

.site-title {
    margin: 0;
    font-size: 2rem;
    line-height: 1.2;
    font-family: var(--font-heading);
}

.site-title a {
    background: linear-gradient(135deg, #f0abfc, #fae8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    text-decoration: none;
}

.site-description {
    margin: 5px 0 0;
    font-size: 0.875rem;
    color: rgba(250, 245, 255, 0.7);
}

/* Navigation */
.main-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.primary-menu {
    display: flex;
    list-style: none;
    gap: 5px;
    margin: 0;
    padding: 0;
}

.primary-menu > li {
    position: relative;
}

.primary-menu > li > a {
    display: block;
    padding: 12px 20px;
    color: #faf5ff;
    font-weight: 600;
    font-size: 15px;
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.primary-menu > li > a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-bright));
    transition: width var(--transition-normal);
}

.primary-menu > li > a:hover::before,
.primary-menu > li.current-menu-item > a::before {
    width: 100%;
}

.primary-menu > li > a:hover,
.primary-menu > li.current-menu-item > a {
    color: var(--color-gold);
    background: rgba(124, 58, 237, 0.2);
}

/* Submenu */
.primary-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #2d1b4e;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 10px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-normal);
    z-index: 100;
}

.primary-menu > li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.primary-menu .sub-menu li a {
    display: block;
    padding: 10px 20px;
    color: #faf5ff;
    transition: var(--transition-fast);
}

.primary-menu .sub-menu li a:hover {
    background: rgba(124, 58, 237, 0.3);
    color: var(--color-gold);
    padding-left: 25px;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    flex-direction: column;
    gap: 6px;
    z-index: 10001;
    position: relative;
    order: 3;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex !important;
    }
}

.menu-toggle-icon {
    display: block;
    width: 30px;
    height: 3px;
    background: #faf5ff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-toggle:hover .menu-toggle-icon {
    background: var(--color-gold);
}

.menu-toggle.active .menu-toggle-icon:nth-child(1) {
    transform: rotate(45deg) translateY(9px);
}

.menu-toggle.active .menu-toggle-icon:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .menu-toggle-icon:nth-child(3) {
    transform: rotate(-45deg) translateY(-9px);
}

/* Desktop menu - hide on mobile */
.desktop-menu {
    display: flex;
}

/* Mobile menu - hide on desktop */
.mobile-menu-container {
    display: none;
}

/* Hide hamburger when menu open on mobile */
@media (max-width: 992px) {
    .menu-toggle.active {
        opacity: 0;
        pointer-events: none;
    }
    
    /* Hide desktop menu on mobile */
    .desktop-menu {
        display: none !important;
    }
    
    /* Hide main navigation by default on mobile */
    .main-navigation {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        z-index: 99999;
        order: 4;
        pointer-events: none;
        display: none;
    }
    
    .main-navigation.active {
        pointer-events: auto;
        display: block;
    }
    
    /* Show mobile menu container on mobile */
    .mobile-menu-container {
        display: flex !important;
    }
    
    /* Mobile Menu Header */
    .mobile-menu-header {
        padding: 20px 25px;
        background: rgba(255, 255, 255, 0.2);
        border-bottom: 2px solid rgba(255, 255, 255, 0.3);
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        flex-shrink: 0;
    }
    
    .mobile-menu-close {
        background: rgba(255, 255, 255, 0.3);
        border: 2px solid rgba(255, 255, 255, 0.5);
        color: #ffffff;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex !important;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-close:hover {
        background: rgba(255, 255, 255, 0.4);
        border-color: #ffffff;
        transform: rotate(90deg);
    }
    
    .mobile-menu-logo img {
        max-height: 40px;
        width: auto;
    }
    
    .menu-logo-text {
        font-size: 20px;
        font-weight: 800;
        color: #ffffff;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }
}

/* Header CTA */
.header-cta {
    margin-left: auto;
}

.header-cta .btn {
    padding: 12px 30px;
    font-size: 15px;
}

/* ===================================
   BUTTONS
=================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--radius-xl);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #7c3aed 100%);
    background-size: 200% auto;
    color: #faf5ff;
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.5);
    animation: buttonShine 3s linear infinite;
}

@keyframes buttonShine {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.btn-secondary {
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
    color: var(--color-text-white);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #6d28d9 0%, #7c3aed 100%);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-text-white);
    transform: translateY(-3px);
}

/* ===================================
   FOOTER STYLES
=================================== */
.site-footer {
    background: linear-gradient(135deg, #1a0b2e 0%, #2d1b4e 100%);
    color: var(--color-text-white);
    padding: 60px 0 0;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(124, 58, 237, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(240, 171, 252, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-widgets {
    padding-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-widgets-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-widget-area .widget {
    margin-bottom: 30px;
}

.footer-widget-area .widget-title {
    color: var(--color-gold);
    font-size: 1.25rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget-area .widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold), transparent);
}

.footer-widget-area a {
    color: rgba(250, 245, 255, 0.8);
    transition: var(--transition-fast);
}

.footer-widget-area a:hover {
    color: var(--color-gold);
    padding-left: 5px;
}

.footer-widget-area ul {
    list-style: none;
    padding: 0;
}

.footer-widget-area ul li {
    margin-bottom: 10px;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.copyright {
    color: rgba(250, 245, 255, 0.7);
    font-size: 14px;
}

.footer-menu {
    display: flex;
    list-style: none;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.footer-menu a {
    color: rgba(250, 245, 255, 0.7);
    font-size: 14px;
    transition: var(--transition-fast);
}

.footer-menu a:hover {
    color: var(--color-gold);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-bright));
    color: var(--color-text-primary);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
    transition: var(--transition-normal);
    box-shadow: var(--shadow-lg);
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

/* ===================================
   CONTENT STYLES
=================================== */
.site-main {
    min-height: 60vh;
}

.page-header {
    margin-bottom: 50px;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.entry-content {
    line-height: 1.8;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.entry-content p {
    margin-bottom: 1.5rem;
}

.entry-content img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    margin: 2rem 0;
}

/* ===================================
   POSTS GRID
=================================== */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.post-card {
    background: rgba(45, 27, 78, 0.6);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.3);
    transition: var(--transition-normal);
    border: 2px solid rgba(240, 171, 252, 0.2);
    backdrop-filter: blur(10px);
}

.post-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.4);
    border-color: rgba(240, 171, 252, 0.4);
}

.post-thumbnail {
    position: relative;
    overflow: hidden;
    padding-top: 66%;
}

.post-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.post-card:hover .post-thumbnail img {
    transform: scale(1.1);
}

.post-content {
    padding: 25px;
}

.post-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.post-title a {
    color: #faf5ff;
    transition: var(--transition-fast);
}

.post-title a:hover {
    color: #f0abfc;
}

.post-meta {
    display: flex;
    gap: 15px;
    font-size: 0.875rem;
    color: rgba(250, 245, 255, 0.7);
    margin-bottom: 15px;
}

.post-excerpt {
    color: rgba(250, 245, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===================================
   UTILITY CLASSES
=================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }

.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }

.gradient-text {
    background: linear-gradient(135deg, var(--color-primary), var(--color-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* ===================================
   RESPONSIVE
=================================== */
@media (max-width: 1024px) {
    .footer-widgets-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Desktop - Hide mobile menu toggle */
    .menu-toggle {
        display: none;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.75rem; }
    
    .section-padding {
        padding: 50px 0;
    }
    
    .container {
        padding: 0 20px;
    }
    
    /* Header Responsive */
    .top-bar {
        display: none;
    }
    
    .main-header {
        padding: 15px 0;
        background: rgba(26, 11, 46, 0.98) !important;
    }
    
    .header-content {
        position: relative;
    }
    
    .menu-toggle {
        display: flex !important;
        order: 3;
        margin-left: auto;
        z-index: 100000;
    }
    
    .site-branding {
        order: 1;
        max-width: 150px;
    }
    
    .site-branding .custom-logo-link {
        max-width: 150px;
    }
    
    .site-branding .custom-logo {
        max-height: 45px;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Mobile Menu Overlay - Removed */
    .mobile-menu-overlay {
        display: none;
    }
    
    .mobile-menu-container {
        position: fixed;
        top: 0;
        right: -100%;
        width: 90vw;
        max-width: 400px;
        height: 100vh;
        background: linear-gradient(180deg, rgba(139, 92, 246, 0.98) 0%, rgba(168, 139, 250, 0.98) 50%, rgba(196, 181, 253, 0.98) 100%);
        backdrop-filter: blur(10px);
        box-shadow: -10px 0 50px rgba(0, 0, 0, 0.5);
        display: none;
        flex-direction: column;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 99999;
        overflow: hidden;
    }
    
    .main-navigation.active .mobile-menu-container {
        right: 0;
    }
    
    /* Mobile Menu Body */
    .mobile-menu-body {
        flex: 1;
        overflow-y: auto;
        overflow-x: hidden;
        padding: 30px 25px;
    }
    
    .primary-menu {
        flex-direction: column;
        gap: 8px;
        padding: 0;
        margin: 0;
        list-style: none;
    }
    
    .primary-menu > li {
        width: 100%;
        border: none;
        margin: 0;
    }
    
    .primary-menu > li > a {
        padding: 16px 20px;
        display: flex;
        align-items: center;
        color: #ffffff;
        font-size: 16px;
        font-weight: 600;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        transition: all 0.3s ease;
        position: relative;
    }
    
    .primary-menu > li > a::before {
        display: none;
    }
    
    .primary-menu > li > a:hover,
    .primary-menu > li.current-menu-item > a {
        color: #ffffff;
        background: rgba(255, 255, 255, 0.2);
        padding-left: 30px;
    }
    
    .primary-menu > li > a:hover::after {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 4px;
        height: 100%;
        background: linear-gradient(180deg, #ffffff, rgba(255, 255, 255, 0.7));
    }
    
    .primary-menu .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 10px 0 10px 30px;
        margin: 0;
        background: transparent;
        display: none;
        list-style: none;
    }
    
    .primary-menu .sub-menu li {
        border: none;
    }
    
    .primary-menu .sub-menu li a {
        color: rgba(255, 255, 255, 0.85);
        padding: 10px 15px;
        font-size: 14px;
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }
    
    .primary-menu .sub-menu li a:hover {
        color: #ffffff;
        padding-left: 25px;
        background: rgba(255, 255, 255, 0.2);
    }
    
    .primary-menu > li:hover .sub-menu,
    .primary-menu > li.focus .sub-menu {
        display: block;
    }
    
    /* Mobile Menu Footer */
    .mobile-menu-footer {
        padding: 25px;
        background: rgba(255, 255, 255, 0.15);
        border-top: 2px solid rgba(255, 255, 255, 0.3);
        flex-shrink: 0;
    }
    
    .mobile-contact-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 15px;
        color: #ffffff;
        font-size: 14px;
        margin-bottom: 10px;
        background: rgba(255, 255, 255, 0.15);
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .mobile-contact-item:hover {
        background: rgba(124, 58, 237, 0.3);
        color: #f0abfc;
        transform: translateX(5px);
    }
    
    .mobile-contact-item i {
        color: #f0abfc;
        font-size: 16px;
        width: 20px;
        text-align: center;
    }
    
    .mobile-social-links {
        display: flex;
        gap: 15px;
        justify-content: center;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid rgba(240, 171, 252, 0.1);
    }
    
    .mobile-social-links a {
        width: 45px;
        height: 45px;
        background: rgba(124, 58, 237, 0.3);
        border: 2px solid rgba(240, 171, 252, 0.3);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #f0abfc;
        font-size: 18px;
        transition: all 0.3s ease;
    }
    
    .mobile-social-links a:hover {
        background: linear-gradient(135deg, #7c3aed, #a855f7);
        border-color: #f0abfc;
        transform: translateY(-3px);
        box-shadow: 0 5px 20px rgba(240, 171, 252, 0.4);
    }
    
    /* Mobile CTA Button */
    .mobile-cta-wrapper {
        padding: 20px 0;
        border-top: 2px solid rgba(240, 171, 252, 0.2);
        margin-top: 20px;
    }
    
    .mobile-cta-wrapper .btn {
        width: 100%;
        justify-content: center;
        padding: 16px 30px;
        font-size: 16px;
        display: flex;
        background: linear-gradient(135deg, #7c3aed, #a855f7);
        border: none;
        box-shadow: 0 5px 20px rgba(124, 58, 237, 0.5);
    }
    
    .mobile-cta-wrapper .btn:hover {
        background: linear-gradient(135deg, #6d28d9, #7c3aed);
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(124, 58, 237, 0.7);
    }
    
    /* Mobile CTA in menu */
    .primary-menu::after {
        content: '';
        display: block;
        height: 20px;
    }
    
    .header-content {
        gap: 15px;
    }
    
    .header-cta {
        display: none !important;
    }
    
    .mobile-menu-container .header-cta,
    .mobile-cta-wrapper {
        display: block !important;
    }
    
    /* Hero Section Responsive */
    .hero-section {
        min-height: 70vh;
        padding-top: 80px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        gap: 10px;
    }
    
    .hero-buttons .btn {
        flex: 1;
        justify-content: center;
        font-size: 14px;
        padding: 12px 16px;
    }
    
    .hero-image {
        order: -1;
    }
    
    .floating-card {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .floating-card i {
        font-size: 18px;
    }
    
    .card-1,
    .card-2,
    .card-3 {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        display: inline-flex;
        margin: 10px 5px;
    }
    
    /* Features Grid Responsive */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Pricing Responsive */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .pricing-toggle {
        flex-direction: column;
        gap: 10px;
    }
    
    .toggle-btn {
        width: 100%;
    }
    
    .comparison-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .comparison-table {
        min-width: 600px;
    }
    
    /* Testimonials Responsive */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    /* Footer Responsive */
    .footer-widgets-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-menu {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    /* Blog Grid - Mobile Only */
    .posts-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    .section-padding {
        padding: 35px 0;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .btn i {
        font-size: 14px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-features .feature-item {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .feature-box h3 {
        font-size: 1.25rem;
    }
    
    .pricing-card .price .amount {
        font-size: 2.5rem;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
    
    .top-bar-item {
        font-size: 13px;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .main-navigation {
        width: 85%;
        max-width: 300px;
    }
    
    .site-branding .site-title {
        font-size: 1.5rem;
    }
    
    .hero-placeholder i {
        font-size: 60px;
    }
}

/* Mobile Menu Overlay */
@media (max-width: 768px) {
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }
    
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 9999;
        animation: fadeIn 0.3s ease;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    
    .site-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
    }
    
    .site-content {
        margin-top: 0;
    }
}

/* Tablet Landscape */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        max-width: 900px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Large Screens */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    h2 {
        font-size: 3rem;
    }
}

/* ===================================
   HOME PAGE STYLES
=================================== */
/* Hero Section */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    overflow: hidden;
    background: transparent;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #faf5ff;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(250, 245, 255, 0.8);
    margin-bottom: 30px;
}

.hero-features {
    margin-bottom: 40px;
}

.hero-features .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 1rem;
}

.hero-features .feature-item i {
    color: var(--color-gold);
    font-size: 20px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-wrapper .main-image {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: block;
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-placeholder {
    width: 100%;
    max-width: 500px;
    height: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(240, 171, 252, 0.15));
    border: 3px dashed var(--color-gold);
    border-radius: var(--radius-lg);
    text-align: center;
    padding: 40px;
}

.hero-placeholder i {
    font-size: 80px;
    color: var(--color-gold);
    margin-bottom: 20px;
    opacity: 0.5;
}

.hero-placeholder p {
    color: rgba(250, 245, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
}

.floating-card {
    position: absolute;
    background: rgba(45, 27, 78, 0.9);
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    animation: floatCard 4s ease-in-out infinite;
    border: 1px solid rgba(240, 171, 252, 0.3);
    color: #faf5ff;
}

.floating-card i {
    font-size: 24px;
    color: var(--color-gold);
}

.card-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 30%;
    left: -10%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 10%;
    right: 10%;
    animation-delay: 2s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(250, 245, 255, 0.7);
    font-size: 14px;
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid #f0abfc;
    border-radius: 20px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 20px; }
}

/* Section Padding */
.section-padding {
    padding: 60px 0;
}

/* Section Header */
.section-header {
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-block;
    color: var(--color-gold);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #faf5ff;
}

.section-description {
    font-size: 1.1rem;
    color: rgba(250, 245, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-box {
    background: rgba(45, 27, 78, 0.6);
    padding: 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.3);
    transition: var(--transition-normal);
    border: 1px solid rgba(240, 171, 252, 0.2);
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(124, 58, 237, 0.5);
    background: rgba(45, 27, 78, 0.8);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
    color: white;
}

.feature-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #faf5ff;
}

.feature-box p {
    color: rgba(250, 245, 255, 0.8);
    line-height: 1.6;
}

/* Features Horizontal Cards */
.features-horizontal {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-horizontal-card {
    display: flex;
    align-items: center;
    gap: 35px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15) 0%, rgba(168, 85, 247, 0.08) 50%, rgba(139, 92, 246, 0.12) 100%);
    border-radius: 25px;
    padding: 25px;
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.25);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.feature-horizontal-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(240, 171, 252, 0.1) 0%, transparent 70%);
    animation: wave 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes wave {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(10%, 10%) rotate(90deg);
    }
    50% {
        transform: translate(0, 20%) rotate(180deg);
    }
    75% {
        transform: translate(-10%, 10%) rotate(270deg);
    }
}

.feature-horizontal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 60px rgba(124, 58, 237, 0.4);
}

.feature-horizontal-card.highlight {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.25) 0%, rgba(168, 85, 247, 0.15) 50%, rgba(139, 92, 246, 0.2) 100%);
}

.feature-horizontal-card:nth-child(even) {
    flex-direction: row-reverse;
}

.feature-horizontal-image {
    flex: 0 0 350px;
    width: 350px;
    height: 280px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.feature-horizontal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.feature-horizontal-card:hover .feature-horizontal-image img {
    transform: scale(1.1);
}

.feature-horizontal-content {
    flex: 1;
    color: #faf5ff;
}

.feature-horizontal-title {
    font-size: 2rem;
    font-weight: 700;
    color: #f0abfc;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #f0abfc, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-horizontal-description {
    color: rgba(250, 245, 255, 0.9);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 25px;
}

.feature-horizontal-description ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.feature-horizontal-description ul li {
    padding: 8px 0 8px 30px;
    position: relative;
}

.feature-horizontal-description ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 18px;
}

.feature-horizontal-action {
    margin-top: 20px;
}

.feature-horizontal-action .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    font-size: 1rem;
}

.no-features-message {
    text-align: center;
    padding: 60px 20px;
    background: rgba(45, 27, 78, 0.4);
    border-radius: var(--radius-lg);
    border: 2px dashed rgba(240, 171, 252, 0.3);
}

.no-features-message p {
    color: rgba(250, 245, 255, 0.7);
    font-size: 1.1rem;
}

.no-features-message strong {
    color: #f0abfc;
}

/* Tabs Section */
.tabs-section {
    background: transparent;
}

.tabs-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    margin-top: 50px;
}

.tabs-content {
    background: rgba(45, 27, 78, 0.6);
    padding: 40px;
    border: 1px solid rgba(240, 171, 252, 0.2);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.3);
    max-height: 700px;
    overflow-y: auto;
}

.tabs-content::-webkit-scrollbar {
    width: 8px;
}

.tabs-content::-webkit-scrollbar-track {
    background: rgba(26, 11, 46, 0.5);
    border-radius: 10px;
}

.tabs-content::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    border-radius: 10px;
}

.tabs-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #6d28d9, #7c3aed);
}

.tab-pane {
    display: none;
    animation: fadeInTab 0.4s ease;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeInTab {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-pane h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #faf5ff;
    background: linear-gradient(135deg, #f0abfc, #fae8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tab-pane h4 {
    font-size: 1.4rem;
    margin: 25px 0 15px;
    color: #f0abfc;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tab-pane p {
    color: rgba(250, 245, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 20px;
}

.tab-pane ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.tab-pane ul li {
    padding: 12px 0;
    color: rgba(250, 245, 255, 0.85);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-bottom: 1px solid rgba(240, 171, 252, 0.1);
}

.tab-pane ul li:last-child {
    border-bottom: none;
}

.tab-pane ul li i {
    color: var(--color-gold);
    margin-top: 3px;
    flex-shrink: 0;
}

.tab-pane ol {
    padding-left: 20px;
    margin: 15px 0;
}

.tab-pane ol li {
    color: rgba(250, 245, 255, 0.85);
    margin-bottom: 12px;
    line-height: 1.8;
}

.tab-pane code {
    background: rgba(26, 11, 46, 0.8);
    padding: 4px 8px;
    border-radius: 5px;
    color: #f0abfc;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

.tab-pane strong {
    color: #faf5ff;
    font-weight: 700;
}

.alert-info,
.alert-warning,
.alert-success {
    padding: 20px;
    border-radius: var(--radius-md);
    margin-top: 25px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border-left: 4px solid;
}

.alert-info {
    background: rgba(33, 150, 243, 0.15);
    border-color: #2196f3;
}

.alert-info i {
    color: #2196f3;
    font-size: 20px;
}

.alert-warning {
    background: rgba(255, 152, 0, 0.15);
    border-color: #ff9800;
}

.alert-warning i {
    color: #ff9800;
    font-size: 20px;
}

.alert-success {
    background: rgba(76, 175, 80, 0.15);
    border-color: #4caf50;
}

.alert-success i {
    color: #4caf50;
    font-size: 20px;
}

.alert-info p,
.alert-warning p,
.alert-success p {
    margin: 0;
}

.faq-item-tab {
    background: rgba(26, 11, 46, 0.5);
    padding: 20px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    border: 1px solid rgba(240, 171, 252, 0.15);
}

.faq-item-tab h4 {
    color: #f0abfc;
    margin: 0 0 15px 0;
    font-size: 1.15rem;
}

.faq-item-tab h4 i {
    margin-right: 10px;
    color: var(--color-gold);
}

.faq-item-tab p {
    margin-bottom: 10px;
}

.faq-item-tab ul {
    margin-top: 10px;
}

.tabs-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tab-btn {
    background: rgba(45, 27, 78, 0.6);
    border: 2px solid rgba(240, 171, 252, 0.2);
    border-radius: var(--radius-md);
    padding: 20px;
    color: rgba(250, 245, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
}

.tab-btn i {
    font-size: 24px;
    color: var(--color-gold);
    flex-shrink: 0;
}

.tab-btn:hover {
    background: rgba(45, 27, 78, 0.8);
    border-color: var(--color-gold);
    transform: translateX(-5px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
}

.tab-btn.active {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    border-color: transparent;
    color: white;
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.5);
}

.tab-btn.active i {
    color: white;
}

.tab-btn .tab-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.tab-btn .tab-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-image {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 30px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-content {
    margin: 25px 0;
}

.service-action {
    margin-top: 30px;
    text-align: center;
}

.no-services-message {
    text-align: center;
    padding: 60px 20px;
    background: rgba(45, 27, 78, 0.6);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(240, 171, 252, 0.2);
}

.no-services-message p {
    color: rgba(250, 245, 255, 0.8);
    font-size: 1.1rem;
}

.no-services-message strong {
    color: #f0abfc;
}

/* Pricing Section Home */
.pricing-section {
    background: linear-gradient(135deg, #2d1b4e 0%, #1a0b2e 100%);
    color: white;
}

.pricing-section .section-subtitle,
.pricing-section .section-title,
.pricing-section .section-description {
    color: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(45, 27, 78, 0.6);
    border-radius: 24px;
    overflow: visible;
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 3px solid rgba(240, 171, 252, 0.2);
    backdrop-filter: blur(10px);
    margin-top: 30px;
}

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.5);
    border-color: #f0abfc;
}

.pricing-card.featured {
    border-color: #f0abfc;
    background: rgba(45, 27, 78, 0.8);
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(124, 58, 237, 0.5);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-15px);
    box-shadow: 0 25px 70px rgba(124, 58, 237, 0.6);
}

.pricing-card.featured {
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.6);
    border-color: var(--color-gold);
    background: rgba(45, 27, 78, 0.8);
}

.popular-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #a855f7, #f0abfc);
    color: white;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 14px;
    box-shadow: 0 8px 25px rgba(240, 171, 252, 0.6);
    z-index: 100;
    white-space: nowrap;
}

.popular-badge i {
    margin-right: 8px;
    animation: sparkle 1.5s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
}

.pricing-header {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    color: white;
    padding: 35px 30px;
    text-align: center;
    position: relative;
    border-radius: 21px 21px 0 0;
    overflow: hidden;
}

.pricing-header h3 {
    font-size: 1.75rem;
    margin-bottom: 10px;
    font-weight: 800;
    color: white;
}

.pricing-header .price {
    margin-top: 15px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.price .currency {
    font-size: 18px;
    font-weight: 600;
    color: white;
}

.price .amount {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #f0abfc, #fae8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price .period {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.pricing-body {
    padding: 30px;
    color: #faf5ff;
    background: rgba(45, 27, 78, 0.3);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 14px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(240, 171, 252, 0.15);
    color: rgba(250, 245, 255, 0.9);
    font-size: 15px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: #f0abfc;
    font-size: 16px;
    width: 20px;
    flex-shrink: 0;
}

.pricing-footer {
    padding: 0 30px 30px;
    background: rgba(45, 27, 78, 0.3);
}

.pricing-footer .btn {
    width: 100%;
    justify-content: center;
    padding: 15px 30px;
    font-weight: 700;
    font-size: 16px;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    border: none;
    transition: all 0.3s ease;
}

.pricing-footer .btn:hover {
    background: linear-gradient(135deg, #6d28d9, #7c3aed);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.5);
}

/* Blog Posts Grid */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

@media (max-width: 1400px) {
    .posts-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .posts-grid {
        grid-template-columns: repeat(1, 1fr) !important;
        gap: 20px;
    }
}

.posts-grid .post-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.posts-grid .post-excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: rgba(250, 245, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

.posts-grid .post-content {
    padding: 20px;
}

.posts-grid .post-thumbnail {
    height: 120px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.posts-grid .post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: rgba(45, 27, 78, 0.6);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.3);
    transition: var(--transition-normal);
    border: 1px solid rgba(240, 171, 252, 0.2);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(124, 58, 237, 0.5);
    background: rgba(45, 27, 78, 0.8);
}

.testimonial-rating {
    margin-bottom: 20px;
}

.star-rating i {
    color: var(--color-gold);
    font-size: 18px;
    margin-right: 2px;
}

.testimonial-content {
    color: rgba(250, 245, 255, 0.8);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info strong {
    display: block;
    font-size: 16px;
    color: #faf5ff;
}

.author-info span {
    font-size: 14px;
    color: rgba(250, 245, 255, 0.7);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--color-primary), var(--color-gold));
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 18px;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: rgba(250, 245, 255, 0.95);
    color: #1a0b2e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.4);
}

/* Home Page Responsive */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tabs-wrapper {
        grid-template-columns: 1fr;
    }
    
    .tabs-nav {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .tab-btn {
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-lg {
        width: 100%;
    }
    
    .tabs-content {
        padding: 25px 20px;
        max-height: 500px;
    }
    
    .tab-pane h3 {
        font-size: 1.6rem;
    }
    
    .tab-pane h4 {
        font-size: 1.2rem;
    }
    
    .tab-btn {
        padding: 15px;
        min-width: 160px;
    }
    
    .tab-btn span {
        font-size: 0.9rem;
    }
}
