/* Blog Post: Navigation cards polish */
.blog-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.blog-navigation .nav-item {
    position: relative;
    padding: 20px 24px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(1200px 400px at 30% 20%, rgba(255, 149, 0, 0.06), transparent 60%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(0.5px);
    box-shadow:
        0 6px 20px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.blog-navigation .nav-item:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 149, 0, 0.35);
    box-shadow:
        0 10px 28px rgba(255, 149, 0, 0.12),
        0 6px 20px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.blog-navigation .nav-item .nav-label {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.blog-navigation .nav-item .nav-title {
    display: block;
    margin-top: 10px;
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.35;
}
/* Blog Post: Share section alignment */
.blog-share-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.blog-share-section > h3 {
    margin: 0;
}

.blog-share-section .share-buttons {
    display: flex;
    justify-content: center;
    margin-left: 40px;
    align-items: center;
    gap: 12px;
}

.blog-share-section .share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    line-height: 1;
}


/* Features Section - Moderate 2025 Design */
.features-section {
    padding: 6rem 0; /* Increased from 4rem */
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

/* Hide "Tại Sao Chọn Bowlan?" section on all devices */
#features.features-section {
    display: none;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}



.features-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
    position: relative;
    z-index: 2;
}

.feature-item {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    animation: featureSlideIn 1s ease-out forwards;
}

.feature-item:nth-child(2) {
    animation-delay: 0.3s;
}

.feature-item:nth-child(3) {
    animation-delay: 0.6s;
}

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

.feature-visual {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes floatAnimation {
    0%, 100% { transform: translateY(0px) scale(1); }
    25% { transform: translateY(-20px) scale(1.05); }
    50% { transform: translateY(0px) scale(1); }
    75% { transform: translateY(-10px) scale(0.98); }
}

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

.feature-icon {
    font-size: 2.5rem;

}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.feature-content {
    position: relative;
    z-index: 2;
}


.feature-content h3 {
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary), #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.2;

    position: relative;
}


.feature-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1rem;
    position: relative;
    z-index: 3;
    text-align: center;
}

.feature-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    /* background: var(--bg-light); */
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    z-index: 4;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}


.feature-bullets.no-bullets li::before {
    content: none;
}

.feature-bullets li::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(249, 114, 22, 0.1),
        transparent);
    z-index: -1;
}

.feature-bullets li:hover::after {
    left: 100%;
}



@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
}

.feature-bullets li span {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    transition: color 0.3s ease;
    position: relative;
    z-index: 5;
    margin-left: 1rem;
    display: block;
    padding: 0.6rem 0.85rem;
    border: 2px solid var(--border-color);
    border-radius: 20px;
    background: var(--bg-light);
    transition: all 0.3s ease;
}

.feature-bullets li span:hover {
    border-color: var(--accent-primary);
    background: rgba(249, 115, 22, 0.05);
}

.feature-bullets li:hover span {
    color: var(--text-primary);
}

/* Global Network Section - Enhanced Professional Design */
.global-network-section {
    padding: 8rem 0; /* Increased from 6rem */
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
}

.global-network-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.global-network-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.global-network-section .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
}

.global-network-section .section-title .brand-color {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.6rem;
}

.stat-number.brand-highlight {
    color: #ffffff !important;
    font-weight: 700;
    -webkit-text-fill-color: #ffffff !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
}

/* Brand logo specific styles */
.stat-item img.brand-highlight {
    width: 180px;
    height: 80px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

.global-network-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 2px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 1.8rem 1.3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-light);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 24px;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-number {
    font-size: 1.3rem;
    font-weight: 700;
    background: #ffffff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.6rem;
    line-height: 1.2;
    position: relative;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    letter-spacing: -0.01em;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.75rem;
    line-height: 1.4;
    font-weight: 500;
    position: relative;
    z-index: 2;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

/* Removed animations for cleaner, professional look */

/* Locations Section - Scaled Down */
.locations-section {
    padding: 10rem 0; /* Increased from 8rem */
    background: var(--bg-dark);
}

.locations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
    margin: 2rem 0;
}

.locations-content {
    padding-right: 1.5rem;
    margin-bottom: 1.5rem;
}

.locations-content .feature-bullets {
    padding: 0;
}

.locations-content .feature-bullets li {
    background: var(--bg-light);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 0.75rem;
    border: 1px solid var(--border-color);
}

.locations-content .feature-bullets li:last-child {
    margin-bottom: 0;
}

.locations-content .section-title {
    font-size: 1.6rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.locations-content .section-description {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.locations-list-wrapper {
    background: var(--bg-light);
    border-radius: 10px;
    padding: 1.2rem;
    border: 1px solid var(--border-color);
}

/* Guarantee Section - Scaled Down */
.guarantee-2025 {
    position: relative;
    padding: 5rem 0; /* Increased from 3.5rem */
    overflow: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background: #1a202c;
    color: #e2e8f0;
}

.guarantee-ambient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    opacity: 1;
    z-index: 1;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    justify-items: center;
    position: relative;
    z-index: 2;
}

.guarantee-col.left {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
    text-align: center;
    max-width: 800px;
}

.guarantee-col .title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent-primary);
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin: 0;
}

.guarantee-col .desc {
    font-size: 1.1rem;
    color: #a0aec0;
    line-height: 1.6;
    max-width: 90%;
    margin: 0;
}

.chips {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.chip {
    background: rgba(249, 114, 22, 0.1);
    color: var(--accent-primary);
    padding: 16px 28px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.chip i {
    font-size: 16px;
}

.chip-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.25));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.chip:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 114, 22, 0.2);
    border-color: rgba(249, 114, 22, 0.4);
}

.chip:hover .chip-icon {
    transform: scale(1.15);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
}

.actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-glow { box-shadow: 0 0 0 rgba(0,0,0,0); }
.btn-glow:hover { box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3); }

.note {
    font-size: 12px;
    color: #718096;
    text-align: center;
    max-width: 600px;
    line-height: 1.4;
    margin: 0;
}

:root {
    --bg-dark: #0D0E18; /* Dark charcoal background */
    --bg-light: #1A1B1F; /* Lighter dark for cards */
    --header-bg: #0D0E18;
    --text-primary: #FFFFFF; /* White text for better contrast */
    --text-secondary: #B3B3B3;
    --accent-primary: #E55F00; /* Cosmic Orange: Darker, more vibrant orange */
    --accent-secondary: #FF9A3D; /* Lighter cosmic orange with a glowing touch */
    --border-color: rgba(255, 255, 255, 0.1); /* Subtle white border */
}

/* Mobile Layout Stability Base Rules */
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

@viewport {
    width: device-width;
    zoom: 1.0;
}

/* Prevent horizontal overflow on all elements */
*, *::before, *::after {
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

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

html {
    overflow-x: hidden;
    width: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    min-width: 320px;
    position: relative;
    margin: 0;
    padding: 0;
    padding-top: 80px; /* Add padding to account for fixed navbar */
    font-size: 0.95em;
}

#scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    width: 0%;
    z-index: 999;
    transition: width 0.1s ease-out;
}

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

/* Main Navigation Header Styles */
.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    background-color: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.main-header.scrolled {
    background-color: rgba(18, 18, 18, 0.98);
    /* border-bottom: 1px solid var(--accent-primary); */
}

.main-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Header layout hardening (override Tailwind preflight on pages like anti-ddos.html) */
.main-header > .container {
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
}

.main-header .main-navbar {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

.main-header .main-nav-list {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.main-brand-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-primary);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.main-brand-logo:hover {
    color: var(--accent-secondary);
}

.main-brand-logo .brand-logo-img {
    height: 2.2rem;
    width: auto;
    transition: transform 0.3s ease;
}

.main-brand-logo:hover .brand-logo-img {
    transform: scale(1.05);
}

.main-brand-logo .brand-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
}

.main-nav-list {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.main-nav-item {
    position: relative;
}

.main-nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.main-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-primary);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
}

.main-nav-link:hover,
.main-nav-link.active {
    color: #ffffff;
}

.main-nav-link:hover::after,
.main-nav-link.active::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* Main Navigation Dropdown Menu */
.main-nav-item.dropdown {
    position: relative;
}

.main-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(18, 18, 18, 0.98);
    border-radius: 8px;
    padding: 0.5rem 0;
    list-style: none;
    min-width: 200px;
    z-index: 1000;
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.main-dropdown-menu li a {
    color: rgba(255, 255, 255, 0.9);
    padding: 0.75rem 1.5rem;
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.main-dropdown-menu li a:hover {
    background-color: transparent;
    color: var(--text-primary);
    text-decoration: underline;
    text-decoration-color: var(--accent-primary);
    text-decoration-thickness: 2px;
    text-underline-offset: 5px;
}

.main-dropdown .dropdown-arrow {
    font-size: 0.7em;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.main-nav-item.dropdown:hover .main-dropdown-menu {
    display: block;
}

.main-nav-item.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}



/* Main Navigation Toggle Button */
.main-nav-toggle {
    display: none;
    position: relative;
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    z-index: 1002;
}

/* Hero Section (General) */
.hero {
    text-align: center;
    padding: 5rem 0;
    background-image: url('../images/world.jpg?v=20250919b');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
    opacity: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(13, 14, 24, 0.9) 0%, rgba(13, 14, 24, 1) 70%);
    z-index: -1;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    opacity: 1;
    transform: translateY(0);
}

.hero-description {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto;
    opacity: 1;
    transform: translateY(0);
}

.hero-image {
    margin: 1.8rem auto 1.8rem auto;
    max-width: 500px;
    opacity: 1;
    transform: translateY(0);
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.hero-img:hover {
    transform: scale(1.02);
}

.hero-buttons {
    margin-top: 1.8rem;
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    opacity: 1;
    transform: translateY(0);
}

/* Hero Features Slider - Show on all devices */
.hero-features-slider {
    display: block;
    margin-top: 2.5rem;
    margin-bottom: 2rem;
    opacity: 1;
    transform: translateY(0);
}

.hero-slider-header {
    text-align: center;
    margin-bottom: 2rem;
}

.hero-features-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    text-align: center;
    margin: 0 0 1.25rem 0;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.hero-features-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    text-align: center;
    margin: 0 auto;
    max-width: 700px;
    line-height: 1.6;
}

.hero-slider-container {
    position: relative;
    overflow: hidden;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    max-width: 900px;
    margin: 0 auto;
}

.hero-slider-wrapper {
    position: relative;
    width: 100%;
    min-height: 350px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    position: relative;
}

.hero-slide-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.hero-slide-icon i {
    font-size: 3.5rem;
    color: var(--accent-primary);
    filter: drop-shadow(0 4px 8px rgba(249, 115, 22, 0.3));
}

.hero-slide-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin: 0 0 1.5rem 0;
    letter-spacing: 0.3px;
}

.hero-features-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 700px;
    margin: 0 auto;
}

.hero-feature-check {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    text-align: left;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    transition: background 0.3s ease;
}

.hero-feature-check:hover {
    background: rgba(255, 255, 255, 0.04);
}

.check-icon {
    width: 22px;
    height: 22px;
    min-width: 22px;
    margin-top: 2px;
    color: var(--accent-primary);
    filter: drop-shadow(0 2px 4px rgba(249, 115, 22, 0.3));
}

.hero-feature-check span {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 500;
    flex: 1;
}

/* Slider Navigation Dots */
.hero-slider-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.2);
}

.slider-dot.active {
    width: 28px;
    border-radius: 5px;
    background: var(--accent-primary);
    box-shadow: 0 0 10px rgba(249, 115, 22, 0.5);
}

/* Mobile: Show hero-features-slider */
@media (max-width: 768px) {
    .hero-features-slider {
        display: block;
        margin-top: 2.5rem;
        margin-bottom: 2rem;
        opacity: 1;
    }

    .hero-slider-header {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .hero-features-title {
        font-size: 1.5rem;
        font-weight: 800;
        color: var(--text-primary);
        text-align: center;
        margin: 0 0 1.25rem 0;
        letter-spacing: 0.5px;
        line-height: 1.3;
    }
    
    .hero-features-subtitle {
        font-size: 0.95rem;
        color: var(--text-secondary);
        text-align: center;
        margin: 0 auto 0 auto;
        line-height: 1.6;
    }

    .hero-slider-container {
        position: relative;
        overflow: hidden;
        padding: 2rem 1.5rem;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.05);
    }

    .hero-slider-wrapper {
        position: relative;
        width: 100%;
        min-height: 350px;
    }

    .hero-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        opacity: 0;
        visibility: hidden;
        transform: translateX(20px);
        transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s;
    }

    .hero-slide.active {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
        position: relative;
    }

    .hero-slide-icon {
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .hero-slide-icon i {
        font-size: 3rem;
        color: var(--accent-primary);
        filter: drop-shadow(0 4px 8px rgba(249, 115, 22, 0.3));
    }

    .hero-slide-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--text-primary);
        text-align: center;
        margin: 0 0 1.5rem 0;
        letter-spacing: 0.3px;
    }
    
    .hero-features-grid {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-feature-check {
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
        text-align: left;
        padding: 0.75rem;
        background: rgba(255, 255, 255, 0.02);
        border-radius: 8px;
        transition: background 0.3s ease;
    }

    .hero-feature-check:hover {
        background: rgba(255, 255, 255, 0.04);
    }
    
    .check-icon {
        width: 20px;
        height: 20px;
        min-width: 20px;
        margin-top: 2px;
        color: var(--accent-primary);
        filter: drop-shadow(0 2px 4px rgba(249, 115, 22, 0.3));
    }
    
    .hero-feature-check span {
        color: var(--text-secondary);
        font-size: 0.9rem;
        line-height: 1.5;
        font-weight: 500;
        flex: 1;
    }

    /* Slider Navigation Dots */
    .hero-slider-nav {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.75rem;
        margin-top: 2rem;
    }

    .slider-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        padding: 0;
    }

    .slider-dot:hover {
        background: rgba(255, 255, 255, 0.4);
        transform: scale(1.2);
    }

    .slider-dot.active {
        width: 28px;
        border-radius: 5px;
        background: var(--accent-primary);
        box-shadow: 0 0 10px rgba(249, 115, 22, 0.5);
    }
    
    
    /* Adjust hero-buttons position */
    .hero-buttons {
        margin-top: 0;
    }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
    .hero-features-slider {
        margin-top: 2rem;
        margin-bottom: 1.5rem;
    }

    .hero-slider-header {
        margin-bottom: 1.5rem;
    }
    
    .hero-features-title {
        font-size: 1.2rem;
        letter-spacing: 0.25px;
        line-height: 1.4;
        margin-bottom: 1rem;
    }
    
    .hero-features-subtitle {
        font-size: 0.85rem;
    }

    .hero-slider-container {
        padding: 1.5rem 1rem;
        border-radius: 12px;
    }

    .hero-slider-wrapper {
        min-height: 320px;
    }

    .hero-slide-icon i {
        font-size: 2.5rem;
    }

    .hero-slide-title {
        font-size: 1.3rem;
        margin-bottom: 1.25rem;
    }

    .hero-features-grid {
        gap: 0.75rem;
    }

    .hero-feature-check {
        padding: 0.6rem;
    }
    
    .check-icon {
        width: 18px;
        height: 18px;
        min-width: 18px;
    }
    
    .hero-feature-check span {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .hero-slider-nav {
        margin-top: 1.5rem;
        gap: 0.6rem;
    }

    .slider-dot {
        width: 8px;
        height: 8px;
    }

    .slider-dot.active {
        width: 24px;
    }
}

/* Hero Animation Keyframes */
@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
    .hero,
    .hero-title,
    .hero-description,
    .hero-buttons,
    .section-header {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Improve animation performance */
.hero,
.hero-title,
.hero-description,
.hero-buttons,
.section-header {
    will-change: opacity, transform;
}

.hero.loaded,
.hero-title.loaded,
.hero-description.loaded,
.hero-buttons.loaded,
.section-header.loaded {
    will-change: auto;
}

/* Products Section */
.products {
    padding: 6rem 0; /* Increased from 4rem */
}

.section-header {
    text-align: center;
    margin-bottom: 4rem; /* Increased from 2.5rem */
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.75s ease-out 0.47s forwards;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
}

.section-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    max-width: 550px;
    margin: 0 auto 1.5rem auto;
}

/* Services Section - Brand Colors & Horizontal Layout */
#services.features-section {
    padding: 0.8rem 0;
    background: var(--bg-dark);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem; /* Increased from 1.3rem */
    margin-top: 3rem; /* Increased from 2rem */
    position: relative;
    z-index: 2;
    align-items: stretch;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* OS Support section */
.os-support {
    padding: 5rem 0; /* Increased from 3rem */
    background: var(--bg-dark);
}

.os-support .section-header {
    text-align: center;
    margin-bottom: 1.8rem;
}

.os-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.os-card {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 12px !important;
    padding: 1.5rem 1rem !important;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 120px !important;
}

.os-card i {
    font-size: 1.6rem !important;
    margin-bottom: 0.5rem !important;
    color: var(--accent-primary);
}

.os-card span {
    display: block;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.85rem !important;
    margin-top: auto;
    line-height: 1.3;
}

.os-card:hover {
    transform: translateY(-5px);
    /* border-color: rgba(249, 114, 22, 0.4); */
    /* box-shadow: 0 8px 20px rgba(249, 114, 22, 0.15); */
}

@media (max-width: 992px) {
    .os-grid { grid-template-columns: repeat(3, 1fr); }
}

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

.product-card {
    border: 2px solid var(--border-color);
    border-radius: 18px;
    padding: 1.81rem;
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    perspective: 1000px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 316px;
    margin-bottom: 27px;
}

/* Product Card Icons */
.product-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
    height: 80px;
}

.product-icon-img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.product-card:hover .product-icon-img {
    transform: scale(1.1);
}

/* .product-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg,
        rgba(249, 114, 22, 0.4),
        rgba(255, 158, 74, 0.4),
        rgba(249, 114, 22, 0.4));
    border-radius: 22px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(249, 114, 22, 0.1),
        transparent);
    transition: left 0.6s ease;
    z-index: 1;
} */

.product-card:hover {
    transform: translateY(-12px) scale(1.03);
    border-color: rgba(249, 114, 22, 0.8);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.25),
        0 0 0 2px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    background: transparent;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover::after {
    left: 100%;
}

.product-card h3 {
    font-size: 1.62rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary), #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1.2;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.product-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 54px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 2px;

}

.service-description {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    text-align: center;
    position: relative;
    z-index: 2;
    flex-grow: 1;
    font-weight: 400;
    padding: 0 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.3px;
}

.product-card .btn {
    width: 100%;
    padding: 0.9rem 1.36rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    position: relative;
    z-index: 2;
    overflow: hidden;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: white;
    border: none;
}

.product-card .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
}

/* Blog Categories Section - Enhanced Design */
.blog-categories {
    display: none;
    text-align: center;
    margin: 40px 0;
    padding: 0 20px;
    animation: fadeInScale 0.5s ease-out;
}

.blog-categories h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
}

.blog-categories h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 2px;
}

/* Modern 2025 Category List Layout */
.category-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    padding: 0 1rem;
    perspective: 1200px;
}

.category-item {
    background: rgba(13, 14, 24, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    backdrop-filter: blur(20px);
    transform-style: preserve-3d;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Glassmorphism background */
.category-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0.02) 100%);
    border-radius: 24px;
    z-index: 1;
    transition: all 0.6s ease;
}

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



/* Typography with modern styling */
.category-item h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    position: relative;
    z-index: 3;
    transition: all 0.6s ease;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.category-item:hover h3 {
    color: var(--accent-primary);
}



@keyframes underlineGlow {
    0% { opacity: 0.8; }
    100% { opacity: 1; }
}

.category-item p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 3;
    line-height: 1.6;
    max-width: 280px;
}





/* Modern 2025 Responsive Design */
@media (max-width: 1200px) {
    .category-list {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px; /* Adjust padding for mobile navbar height */
    }

    /* Mobile logo adjustments */
    .main-brand-logo .brand-logo-img {
        height: 1.8rem;
    }
    
    .main-brand-logo .brand-text {
        font-size: 1.5rem;
    }
    
    .footer-company .brand-logo .brand-logo-img {
        height: 2rem;
    }
    
    .footer-company .brand-logo .brand-text {
        font-size: 1.8rem;
    }

    .category-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.5rem;
    }

    .category-item {
        padding: 2.5rem 1.5rem;
        min-height: 180px;
    }

    .category-item h3 {
        font-size: 1.6rem;
    }

    .category-item p {
        font-size: 0.95rem;
    }
    .blog-navigation .nav-item{
        display: none !important;
    }
    .feature-content h3::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 100px;
        height: 3px;
        background: linear-gradient(90deg, var(--accent-primary), transparent);
        border-radius: 2px;
    }
}



.category-item h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: white;
    position: relative;
    z-index: 2;
    font-weight: 700;
    transition: color 0.3s ease;
}

.category-item:hover h3 {
    color: var(--accent-primary);
}

.category-item p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 2;
    line-height: 1.6;
}

/* Toggle Button - Enhanced Design */
#toggle-categories {
    display: block;
    margin: 25px auto;
    padding: 14px 30px;
    font-size: 1.1rem;
    cursor: pointer;
    background: linear-gradient(135deg, #f97316, #ff9e4a);
    color: white;
    border: none;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow:
        0 6px 20px rgba(249, 114, 22, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

#toggle-categories::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

#toggle-categories:hover {
    background: linear-gradient(135deg, #f97316, #ff9e4a);
    box-shadow:
        0 8px 25px rgba(249, 114, 22, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

#toggle-categories:hover::before {
    left: 100%;
}

#toggle-categories:active {
    transform: translateY(-1px);
}

/* View All Posts Button */
#view-all-posts {
    display: none;
    margin: 10px auto;
    padding: 14px 30px;
    font-size: 1.1rem;
    cursor: pointer;
    color: white;
    border: none;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow:
        0 6px 20px rgba(249, 114, 22, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

#view-all-posts::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transition: left 0.6s ease;
}

#view-all-posts:hover {
    box-shadow:
        0 8px 25px rgba(249, 114, 22, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

#view-all-posts:hover::before {
    left: 100%;
}

#view-all-posts:active {
    transform: translateY(-1px);
}

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.product-card .btn:hover::before {
    left: 100%;
}

.product-card .btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow:
        0 12px 25px rgba(0, 0, 0, 0.3),
        0 0 0 3px rgba(255, 255, 255, 0.2),
        0 0 15px rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
}


.card-header {
    /* Ensures the header block has a consistent minimum height */
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.product-card .price {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
}

.product-card:hover .price {
    transform: scale(1.1);
    /* color: #ffd700; */
    /* text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); */
}

.product-card .specs {
    list-style: none;
    margin-bottom: 1.81rem;
    flex-grow: 1;
    color: #fff;
    text-align: center;
    transition: all 0.3s ease;
}

.product-card:hover .specs {
    transform: translateY(-2px);
    color: #f0f0f0;
}

.product-card .specs li {
    padding: 0.46rem 0;
    border-bottom: 1px solid var(--border-color);
}

.floating-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    perspective: 1000px;
}

.floating-feature-card {
    background: linear-gradient(135deg, var(--bg-light), rgba(26, 27, 31, 0.8));
    border: 1px solid rgba(249, 114, 22, 0.2);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    cursor: pointer;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-icon-wrapper {
    position: relative;
    margin-bottom: 2rem;
    z-index: 3;
}

.feature-icon {
    font-size: 4rem;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(249, 114, 22, 0.1), rgba(255, 158, 74, 0.1));
    border: 2px solid rgba(249, 114, 22, 0.3);
    border-radius: 50%;
    position: relative;
    transition: all 0.5s ease;
    backdrop-filter: blur(10px);
}

.floating-feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(10deg);
    border-color: rgba(249, 114, 22, 0.6);
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.floating-feature-card:hover .icon-glow {
    opacity: 0;
}

.floating-feature-card .feature-content {
    flex: 1;
    z-index: 3;
}

.floating-feature-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    position: relative;
}

.feature-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 2px;
    margin: 0 auto 2rem auto;
    transition: width 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}

.floating-feature-card:hover .feature-divider {
    width: 120px;
}

/* Add glow overlay like .feature-line::after */
.feature-divider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.2));
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.floating-feature-card:hover .feature-divider::after,
.feature-card:hover .feature-divider::after {
    opacity: 1;
}

.floating-feature-card .feature-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.floating-feature-card .feature-bullets li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.7;
    padding: 0.8rem 0 0.8rem 2rem;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.floating-feature-card .feature-bullets li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.floating-feature-card:hover .feature-bullets li {
    color: var(--text-primary);
    padding-left: 2.5rem;
}

.floating-feature-card:hover .feature-bullets li::before {
    transform: translateX(5px);
    color: var(--accent-secondary);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    opacity: 0;
    transition: all 0.6s ease;
    border-radius: 24px;
    z-index: 0;
}



@keyframes borderGlow {
    0% {
        background: linear-gradient(45deg,
            rgba(249, 114, 22, 0.4),
            rgba(255, 158, 74, 0.4),
            rgba(249, 114, 22, 0.4));
    }
    100% {
        background: linear-gradient(45deg,
            rgba(255, 158, 74, 0.6),
            rgba(249, 114, 22, 0.6),
            rgba(255, 158, 74, 0.6));
    }
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.6;
    }
}

/* Features Grid - Static Version (No Floating Effects) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    background: linear-gradient(135deg, var(--bg-light), rgba(26, 27, 31, 0.8));
    border: 2px solid var(--border-color);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-height: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.feature-icon-wrapper {
    position: relative;
    margin-bottom: 2rem;
    z-index: 3;
}

.feature-icon {
    font-size: 4rem;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(249, 114, 22, 0.1), rgba(255, 158, 74, 0.1));
    border: 2px solid rgba(249, 114, 22, 0.3);
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.03);
    border-color: rgba(249, 114, 22, 0.8);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.25),
        0 0 0 2px rgba(249, 114, 22, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    background: transparent;
}

.feature-card:hover .feature-icon {
    border-color: rgba(249, 114, 22, 0.6);
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.feature-card:hover .icon-glow {
    opacity: 0;
}

.feature-card .feature-content {
    flex: 1;
    z-index: 3;
}

.feature-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    position: relative;
    transition: all 0.3s ease;
}

.feature-card:hover h3 {
    transform: scale(1.05);
    background: linear-gradient(135deg, #ff6b6b, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #ff6b6b, var(--accent-primary), var(--accent-secondary));
    border-radius: 2px;
    margin: 0 auto 2rem auto;
    transition: width 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}

.feature-card .feature-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-bullets {
    transform: translateY(-2px);
}

.feature-card:hover .feature-divider {
    width: 120px;
}

/* Add glow overlay for non-floating feature cards */
.feature-card .feature-divider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.2));
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.feature-card:hover .feature-divider::after {
    opacity: 1;
}

.feature-card .feature-bullets li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.7;
    padding: 0.8rem 0 0.8rem 2rem;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.feature-card .feature-bullets li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-bullets li {
    color: var(--text-primary);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    opacity: 0;
    transition: all 0.6s ease;
    border-radius: 24px;
    z-index: 0;
}


/* Responsive Adjustments for Features Grid */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
        min-height: 380px;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
        min-height: 350px;
    }
}

@media (max-width: 480px) {
    .feature-card {
        padding: 1.5rem 1rem;
        min-height: 300px;
    }

    /* Extra small screen logo adjustments */
    .main-brand-logo .brand-logo-img {
        height: 1.5rem;
    }
    
    .main-brand-logo .brand-text {
        font-size: 1.3rem;
    }
    
    .footer-company .brand-logo .brand-logo-img {
        height: 1.8rem;
    }
    
    .footer-company .brand-logo .brand-text {
        font-size: 1.6rem;
    }
}

/* Physical Server Features - Horizontal Cards Layout */
.server-features-horizontal {
    padding: 8rem 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.server-features-horizontal .container {
    position: relative;
    z-index: 2;
}

.server-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
    padding-top: 20px;
}

.server-feature-card {
    background: linear-gradient(145deg,
        rgba(26, 27, 31, 0.9),
        rgba(20, 21, 26, 0.95));
    border: 2px solid var(--border-color);
    border-radius: 24px;
    padding: 3rem 2rem;
    position: relative;
    overflow: visible;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-height: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    backdrop-filter: blur(10px);
    margin-top: 20px;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.server-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.7s ease;
    border-radius: 24px;
    z-index: 0;
}


.server-feature-card:hover {
    transform: translateY(-12px) scale(1.03);
    border-color: rgba(249, 114, 22, 0.8);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.25),
        0 0 0 2px rgba(249, 114, 22, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 0 40px rgba(249, 114, 22, 0.4);
    background: linear-gradient(135deg, 
        rgba(249, 114, 22, 0.05) 0%, 
        rgba(255, 158, 74, 0.05) 50%, 
        rgba(249, 114, 22, 0.05) 100%);
}

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

.card-number {
    position: absolute;
    top: -15px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.3rem;
    color: #fff;
    z-index: 10;
    box-shadow:
        0 8px 16px rgba(249, 114, 22, 0.4),
        0 0 0 4px rgba(249, 114, 22, 0.1);
    transition: all 0.5s ease;
}

.server-feature-card:hover .card-number {
    transform: scale(1.15) rotate(10deg);
    z-index: 15;
    box-shadow:
        0 12px 24px rgba(249, 114, 22, 0.6),
        0 0 0 6px rgba(249, 114, 22, 0.2);
}

.feature-icon-container {
    margin: 2rem 0;
    position: relative;
    z-index: 2;
}

.feature-icon-bg {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg,
        rgba(249, 114, 22, 0.15),
        rgba(255, 158, 74, 0.1));
    border: 2px solid rgba(249, 114, 22, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.6s ease;
    backdrop-filter: blur(5px);
}

.feature-icon-bg::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(45deg,
        var(--accent-primary),
        var(--accent-secondary),
        var(--accent-primary));
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: -1;
    animation: rotate 4s linear infinite;
}

.server-feature-card:hover .feature-icon-bg::before {
    opacity: 0.7;
}

.server-feature-card:hover .feature-icon-bg {
    transform: scale(1.1);
    border-color: rgba(249, 114, 22, 0.6);
}

.server-feature-card .feature-icon {
    font-size: 3.5rem;
    transition: all 0.5s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.server-feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(-10deg);
}

.server-feature-card .feature-content {
    flex: 1;
    z-index: 2;
    position: relative;
}

.server-feature-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    transition: all 0.3s ease;
}

.server-feature-card:hover h3 {
    transform: scale(1.05);
    background: linear-gradient(135deg, #ff6b6b, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 2px;
    margin: 0 auto 2rem auto;
    transition: all 0.5s ease;
    position: relative;
}

.feature-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.server-feature-card:hover .feature-line {
    width: 100px;
}

.server-feature-card:hover .feature-line::after {
    opacity: 1;
}

.server-feature-card .feature-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    transition: all 0.3s ease;
}

.server-feature-card:hover .feature-bullets {
    transform: translateY(-2px);
}

.server-feature-card .feature-bullets li {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    padding: 1rem 0 1rem 2.5rem;
    position: relative;
    transition: all 0.4s ease;
    border-radius: 8px;
    margin-bottom: 0.8rem;
}

.server-feature-card .feature-bullets li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
}

.server-feature-card:hover .feature-bullets li {
    color: var(--text-primary);
}

/* CSS for anti-ddos.html bullet points - giống y chang physical-server.html */
.card-hover ul.space-y-3 {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.card-hover ul.space-y-3 li {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.7;
    padding: 1rem 0 1rem 2.5rem;
    position: relative;
    transition: all 0.4s ease;
    border-radius: 8px;
    margin-bottom: 0.8rem;
}

.card-hover ul.space-y-3 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
}



.card-hover:hover ul.space-y-3 li::before {
    transform: scale(1.2);
}

/* CSS cho icon checkmark trong anti-ddos.html - giống y chang physical-server.html */
.card-hover h3 i.fa-check-circle {
    display: none !important;
}

.card-hover:hover h3::before {
    transform: scale(1.2);
}

/* CSS cho tiêu đề "Công Nghệ Nổi Bật" giống y chang "Tài Nguyên Độc Quyền" */
#mechanism h2 {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary), #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4rem;
    line-height: 1.2;
    position: relative;
}

#mechanism h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-primary), transparent);
    border-radius: 2px;
}

.server-feature-card:hover .feature-bullets li::before {
    transform: scale(1.2);
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    opacity: 0;
    transition: all 0.6s ease;
    border-radius: 24px;
    z-index: 1;
}

.server-feature-card:hover .card-glow {
    opacity: 1;
}



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

/* Physical Server Features - Timeline Layout */
.server-features-timeline {
    padding: 8rem 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.server-features-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(110deg, rgba(249, 114, 22, 0.05) 0%, transparent 50%),
        linear-gradient(-110deg, rgba(255, 158, 74, 0.03) 100%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.server-features-timeline .container {
    position: relative;
    z-index: 2;
}

.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 4rem auto 0;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(249, 114, 22, 0.3) 20%,
        rgba(249, 114, 22, 0.6) 50%,
        rgba(249, 114, 22, 0.3) 80%,
        transparent 100%);
    transform: translateX(-50%);
    border-radius: 2px;
    z-index: 1;
}

.timeline-line::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 8px;
    height: 100%;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(249, 114, 22, 0.1) 20%,
        rgba(249, 114, 22, 0.2) 50%,
        rgba(249, 114, 22, 0.1) 80%,
        transparent 100%);
    transform: translateX(-50%);
    border-radius: 4px;
    filter: blur(2px);
}

.timeline-item {
    position: relative;
    margin-bottom: 6rem;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.timeline-item.is-visible {
    opacity: 1;
}

.timeline-item:nth-child(even) .timeline-content {
    animation-delay: 0.2s;
}

.timeline-item:nth-child(odd) .timeline-content {
    animation-delay: 0.4s;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 2rem;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--bg-light), var(--bg-dark));
    border: 4px solid var(--accent-primary);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;

}

.timeline-dot:hover {
    transform: translateX(-50%) scale(1.2);
}

.dot-inner {
    font-size: 2.2rem;
    animation: float 3s ease-in-out infinite;
}

.timeline-content {
    width: 45%;
    position: relative;
}

.left-content {
    left: 0;
    text-align: right;
    padding-right: 3rem;
}

.right-content {
    right: 0;
    text-align: left;
    padding-left: 3rem;
    margin-left: auto;
}

.timeline-card {
    background: linear-gradient(135deg,
        rgba(26, 27, 31, 0.95),
        rgba(26, 27, 31, 0.8));
    border: 1px solid rgba(249, 114, 22, 0.2);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.6s ease;
    backdrop-filter: blur(10px);
    transform: translateY(30px);
    opacity: 0;
}

.timeline-item.is-visible .timeline-card {
    transform: translateY(0);
    opacity: 1;
}

.timeline-card::before {
    content: '';
    position: absolute;
    top: 2rem;
    width: 30px;
    height: 30px;
    background: var(--bg-light);
    border: 2px solid var(--accent-primary);
    transform: rotate(45deg);
    z-index: 1;
}

.left-content .timeline-card::before {
    right: -16px;
}

.right-content .timeline-card::before {
    left: -16px;
}

.timeline-card:hover {
    transform: translateY(-10px);
    border-color: rgba(249, 114, 22, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2),
                0 0 0 1px rgba(249, 114, 22, 0.3);
}

.timeline-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.timeline-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

.content-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 2px;
    margin-bottom: 2rem;
    transition: width 0.5s ease;
}

.left-content .content-divider {
    margin-left: auto;
}

.timeline-card:hover .content-divider {
    width: 80px;
}

.timeline-card .feature-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
}

.timeline-card .feature-bullets li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.7;
    padding: 0.8rem 0;
    position: relative;
    transition: all 0.3s ease;
    margin-bottom: 0.8rem;
}

.timeline-card .feature-bullets li::before {
    content: '●';
    color: var(--accent-primary);
    font-size: 0.8rem;
    margin-right: 1rem;
    transition: all 0.3s ease;
}

.timeline-card:hover .feature-bullets li {
    color: var(--text-primary);
    padding-left: 0.5rem;
}

.timeline-card:hover .feature-bullets li::before {
    color: var(--accent-secondary);
    transform: scale(1.2);
}

.timeline-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center,
        rgba(249, 114, 22, 0.1),
        transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    border-radius: 24px;
    z-index: 1;
}

.timeline-card:hover .timeline-glow {
    opacity: 0;
}

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

/* Mobile Responsive - Revolutionary Design */
@media (max-width: 1024px) {
    .features-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .feature-content::before {
        display: none;
    }

    .feature-content h3::after {
        left: 50% !important;
        transform: translateX(-50%);
    }

    .feature-visual {
        width: 250px;
        height: 250px;
        margin: 0 auto;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        justify-items: center;
        max-width: 800px;
        margin: 0 auto;
    }

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

    .stats-grid::before,
    .stats-grid::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 2rem 0;
    }

    .features-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1.5rem;
    }

    .feature-content h3 {
        font-size: 1.8rem;
    }

    .feature-visual {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .feature-icon {
        font-size: 3rem;
    }

    #services.features-section {
        padding: 2rem 0;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        align-items: stretch;
        justify-items: center;
        max-width: 400px;
        margin: 0 auto;
    }

    .product-card {
        padding: 1.5rem;
        margin: 0 auto;
        min-height: 280px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 100%;
        max-width: 350px;
    }

    .product-card h3 {
        font-size: 1.5rem;
    }

    .global-network-section {
        padding: 2.5rem 0;
    }

    .global-network-section .section-title {
        font-size: 2.2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }

    .stat-item {
        padding: 2.5rem 1.5rem;
    }

    .stat-number {
        font-size: 1.7rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .features-list {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1rem;
    }

    .feature-content h3 {
        font-size: 1.8rem;
    }

    .feature-visual {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .feature-icon {
        font-size: 3rem;
    }

    .feature-bullets li {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .product-card {
        padding: 1.5rem;
        margin: 0 auto;
        width: 100%;
        max-width: 320px;
    }

    .product-card h3 {
        font-size: 1.5rem;
    }

    .global-network-section .section-title {
        font-size: 2rem;
    }

    .stat-item {
        padding: 2rem 1.5rem;
    }

    .stat-number {
        font-size: 1.7rem;
    }

    .product-card .card-decoration {
        display: none;
    }
}

@media (max-width: 768px) {
    /* VPS Floating Cards Mobile */
    .floating-features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 3rem;
    }

    /* Server Features Mobile */
    .server-features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 3rem;
    }

    .server-feature-card {
        padding: 2.5rem 1.5rem;
        min-height: 400px;
        transform: none !important;
    }

    .server-feature-card:hover {
        transform: translateY(-10px) !important;
    }

    .feature-icon-bg {
        width: 100px;
        height: 100px;
    }

    .server-feature-card .feature-icon {
        font-size: 3rem;
    }

    .server-feature-card h3 {
        font-size: 1.6rem;
    }

    .card-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .floating-feature-card {
        padding: 2rem 1.5rem;
        min-height: 350px;
        transform: none !important;
    }

    .floating-feature-card:hover {
        transform: translateY(-5px) !important;
    }

    .feature-icon {
        font-size: 3rem;
        width: 80px;
        height: 80px;
    }

    .floating-feature-card h3 {
        font-size: 1.5rem;
    }

    /* Timeline Mobile */
    .timeline-container {
        margin: 2rem auto 0;
        padding: 1rem 0;
    }

    .timeline-line {
        left: 30px;
        width: 3px;
    }

    .timeline-dot {
        left: 30px;
        width: 60px;
        height: 60px;
        top: 1rem;
    }

    .dot-inner {
        font-size: 1.8rem;
    }

    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px;
        text-align: left !important;
        padding: 0 !important;
    }

    .left-content,
    .right-content {
        left: auto;
        right: auto;
        margin-left: 80px;
        padding: 0;
    }

    .timeline-card::before {
        left: -16px !important;
        right: auto !important;
    }

    .timeline-card {
        padding: 2rem 1.5rem;
    }

    .timeline-card h3 {
        font-size: 1.5rem;
    }

    .content-divider {
        margin-left: 0 !important;
    }

    .timeline-badge {
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .vps-features-floating,
    .server-features-horizontal {
        padding: 2rem 0;
    }

    .floating-feature-card {
        padding: 1.5rem 1rem;
        min-height: 300px;
    }

    .server-feature-card {
        padding: 2rem 1rem;
        min-height: 350px;
    }
}

/* Global Network Section - Enhanced Professional Design (Duplicate removed for consistency) */





.world-map-container {
    position: relative;
    width: 100%;
    height: 450px;
    margin-top: 40px;
    background: linear-gradient(135deg, var(--bg-light), var(--bg-dark));
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.15);
    border-top: 1px solid var(--border-color);
}

.world-map-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.85;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.world-map-container:hover .world-map-img {
    opacity: 1;
    transform: scale(1.02);
}

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

/* Responsive Adjustments for Global Network Section */
@media (max-width: 768px) {
    .global-network-section {
        padding: 40px 0 30px;
    }

    .global-network-section .section-title {
        font-size: 2.2rem;
    }

    .global-network-section .section-description {
        font-size: 1rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin-bottom: 40px;
        padding: 0 15px;
    }

    .stat-item {
        padding: 25px 15px;
    }

    .stat-number {
        font-size: 1.7rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    /* Brand logo mobile styles */
    .stat-item img.brand-highlight {
        width: 140px;
        height: 60px;
    }

    .world-map-container {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .global-network-section .section-title {
        font-size: 2rem;
    }

    /* Brand logo small mobile styles */
    .stat-item img.brand-highlight {
        width: 120px;
        height: 50px;
    }
}

/* Locations Section */
.locations-section {
    position: relative;
    padding: 10rem 0; /* Increased from 8rem */
    background-image: url('../images/datacenter.jpg?v=20250919b');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Creates a parallax effect */
    z-index: 1;
}

.locations-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(13, 14, 24, 0.85); /* This is var(--bg-dark) with opacity */
    z-index: -1;
}

.locations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem; /* Increased from 2.5rem */
    align-items: center;
    margin: 3rem 0; /* Increased from 2rem */
}

.locations-content .section-title {
    font-size: 2.8rem;
    text-align: left;
    margin-bottom: 1.5rem;
}

.locations-content .section-description {
    text-align: left;
    max-width: 100%;
    margin-bottom: 2rem;
}

.locations-list-wrapper {
    background-color: var(--bg-light);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid var(--border-color);
}

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

.location-item {
    margin-bottom: 2rem;
}

.location-item:last-child {
    margin-bottom: 0;
}

.location-item h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.location-item p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.location-item:not(:last-child) {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.location-item h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.location-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6;
}

.feature-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-bullets li {
    color: rgba(255, 255, 255, 0.9);
    /* background-color: var(--bg-light); */
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.8;
    padding-left: 25px;
    position: relative;
}

.feature-bullets li:not(:last-child) {
    margin-bottom: 1rem;
}

/* DDoS Section */
.ddos-protection {
    padding: 6rem 0;
    text-align: center;
    background-color: var(--bg-light);
}

.ddos-content h2 {
    font-size: 2.8rem;
    color: var(--accent-primary);
}

.ddos-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin: 1.5rem 0 2.5rem 0;
}

/* Button */
.btn {
    display: inline-block;
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background-color: var(--accent-primary);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent-primary);
    border-color: var(--accent-primary);
}

.btn-outline {
    background-color: transparent;
    color: var(--accent-primary);
    border-color: var(--accent-primary);
}

.btn-outline:hover {
    background-color: var(--accent-primary);
    color: var(--bg-dark);
}

.btn-lg {
    padding: 0.8rem 2.2rem;
    font-size: 0.95rem;
}

/* Custom Quote Request Button */
.btn-quote-request {
    background-color: #000000;
    color: #ffffff;
    border: 2px solid #393939;
}

.btn-quote-request:hover {
    background-color: #2a2a2a;
    color: #ffffff;
    border-color: #2a2a2a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(57, 57, 57, 0.3);
}

/* Modern Footer Design */
.footer {
    background: #121414;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
}

.footer-main {
    padding: 3rem 0;
    padding-bottom: 20px;
    position: relative;
    z-index: 2;
    text-align: left;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
    justify-items: start;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .brand-logo {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-primary);
    text-decoration: none;
    display: block;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-description {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 0.98rem;
    font-weight: 700;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

/* Brand colors for social icons */
.footer-social .social-link:nth-child(1) { /* Facebook */
    background: #1877F2;
    color: #ffffff;
}
.footer-social .social-link:nth-child(1):hover {
    background: #0f5bd1;
    box-shadow: 0 6px 18px rgba(24, 119, 242, 0.35);
}

.footer-social .social-link:nth-child(3) { /* Telegram */
    background: #27A7E7;
    color: #ffffff;
}
.footer-social .social-link:nth-child(3):hover {
    background: #1d8fcc;
    box-shadow: 0 6px 18px rgba(39, 167, 231, 0.35);
}

.social-link:hover {
    background: var(--accent-primary);
    color: #fff;
    border-color: var(--accent-primary);
    transform: translateY(-2px);
}

.footer-section {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 12px;
}

.footer-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    color: #e9eef2;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    line-height: 1.6;
    white-space: nowrap;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
}

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

.footer-links a {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    color: rgba(255,255,255,.75);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.6;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: 2px 0;
    white-space: nowrap;
}

.footer-links a::after {
    content: '↗';
    font-size: .8rem;
    opacity: 0;
    transform: translateY(-1px);
    transition: opacity .2s ease;
}
.footer-links a:hover {
    color: var(--accent-primary);
}
.footer-links a:hover::after { opacity: 1; }

/* Zalo icon for the middle social button (no HTML change needed) */
.footer-social .social-link:nth-child(2) i { display: none; }
.footer-social .social-link:nth-child(2)::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px 20px;
    /* Official Zalo SVG */
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/9/91/Icon_of_Zalo.svg');
}

/* Zalo button background color to match brand */
.footer-social .social-link:nth-child(2) {
    background: #0068FF;
    color: #ffffff;
}
.footer-social .social-link:nth-child(2):hover {
    background: #0056d6;
    box-shadow: 0 6px 18px rgba(0, 104, 255, 0.35);
}

.footer-contact-info {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    color: var(--text-secondary);
    font-size: 0.93rem;
    font-weight: 500;
    line-height: 1.6;
}

.footer-contact-info strong {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    color: var(--text-primary);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-contact-info a {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    font-weight: 500;
    line-height: 1.6;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    
    .footer-company {
        grid-column: 1 / -1;
        max-width: 100%;
        text-align: center;
        align-items: center;
        margin-bottom: 1rem;
        transform: translateX(0);
    }
    
    .footer-company .brand-logo {
        justify-content: center;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section .footer-links {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 3rem 0;
        text-align: left;
    }

    .footer-grid {
        display: flex;
        flex-direction: column;
        gap: 3rem;
        text-align: flex-start;
        align-items: flex-start;
    }

    .footer-company {
        max-width: 100%;
        width: 100%;
        align-items: center;
        order: 1;
        transform: translateX(0);
    }

    .footer-company .brand-logo {
        justify-content: center;
    }

    .footer-company .company-name {
        text-align: center;
    }

    .footer-company .company-info {
        width: 100%;
    }

    .footer-company .company-info li {
        justify-content: center;
        text-align: left;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-company .company-info .contact-row {
        flex-direction: column;
        gap: 0.75rem;
    }

    .footer-section {
        text-align: left !important;
        width: 100%;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
    }

    .footer-section .footer-title {
        text-align: left !important;
        width: 100%;
        margin-left: 0;
        margin-right: auto;
    }

    .footer-section .footer-links {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        text-align: left !important;
        width: 100%;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-section .footer-links li {
        text-align: left !important;
        margin-left: 0;
        margin-right: auto;
    }

    .footer-section .footer-links a {
        text-align: left !important;
        display: inline-block;
    }

    /* Đặt phần Liên Hệ ngay sau company-info */
    .footer-section.footer-follow {
        order: 2;
    }

    /* Các section khác theo sau */
    .footer-section:not(.footer-follow) {
        order: 3;
    }

    .footer-brand {
        margin-bottom: 2rem;
    }

    .footer-social {
        justify-content: flex-start;
    }

    .follow-buttons {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
        text-align: flex-start;
        align-items: flex-start;
    }
    
    .footer-company {
        max-width: 100%;
        width: 100%;
        align-items: flex-start;
        order: 1;
        transform: translateX(0);
    }

    .footer-company .brand-logo {
        justify-content: flex-start;
    }

    .footer-company .company-name {
        text-align: left;
        font-size: 1.1rem;
    }

    .footer-company .company-info {
        width: 100%;
    }

    .footer-company .company-info li {
        justify-content: flex-start;
        text-align: left;
        max-width: 280px;
        margin-left: 0;
        margin-right: auto;
    }
    
    .footer-company .company-info .contact-row {
        flex-direction: column;
        gap: 0.75rem;
    }

    .footer-section {
        text-align: left !important;
        width: 100%;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
    }

    .footer-section .footer-title {
        text-align: left !important;
        margin-bottom: 1rem;
        width: 100%;
        margin-left: 0;
        margin-right: auto;
    }

    .footer-section .footer-links {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        text-align: left !important;
        width: 100%;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-section .footer-links li {
        text-align: left !important;
        margin-left: 0;
        margin-right: auto;
    }

    .footer-section .footer-links a {
        text-align: left !important;
        display: inline-block;
    }

    /* Đặt phần Liên Hệ ngay sau company-info */
    .footer-section.footer-follow {
        order: 2;
    }

    /* Các section khác theo sau */
    .footer-section:not(.footer-follow) {
        order: 3;
    }
}

/* Redesigned footer layout (company, services, policy, follow) */
.footer-company {
    max-width: 420px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-right: 15px;
    transform: translateX(0);
}
.footer-company .brand-logo {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
	font-size: 2.2rem;
	font-weight: 800;
	letter-spacing: .5px;
	color: #ffffff;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 0.5rem;
}

.footer-company .brand-logo .brand-logo-img {
	height: 2.5rem;
	width: auto;
	transition: transform 0.3s ease;
}

.footer-company .brand-logo:hover .brand-logo-img {
	transform: scale(1.05);
}

.footer-company .brand-logo .brand-text {
	font-size: 2.2rem;
	font-weight: 800;
	letter-spacing: .5px;
	color: inherit;
}
    .company-name {
	margin: 0 0 1.5rem;
	font-weight: 600;
	font-size: 1rem;
	color: rgba(255,255,255,0.7);
	width: 100%;
	letter-spacing: 0.5px;
    margin-left: 0;
    padding-left: 3.5rem;
}
.company-info { 
	list-style: none; 
	padding: 0; 
	margin: 0;
	width: 100%;
}
.company-info li {
	display: flex; 
	align-items: flex-start; 
	gap: 0.75rem;
	color: rgba(255,255,255,.85);
	margin: 0.75rem 0; 
	line-height: 1.6;
	font-size: 0.95rem;
}
.company-info .contact-row {
	display: flex;
	gap: 2rem;
	margin: 0.75rem 0;
}
.company-info .contact-row li {
	margin: 0;
	flex: 1;
}
.company-info li i {
	color: var(--primary-orange);
	font-size: 1rem;
	margin-top: 0.2rem;
	min-width: 1rem;
}
.company-info i { color: rgba(255,255,255,.9); width: 18px; text-align: center; }

.footer-follow .footer-title { margin-bottom: .75rem; }
.follow-buttons { display: flex; gap: .75rem; }
.social-circle {
	display: inline-flex; align-items: center; justify-content: center;
	width: 42px; height: 42px; border-radius: 50%;
	background: #202524; color: #e8eceb; text-decoration: none;
	transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.social-circle:hover { transform: translateY(-2px); background: #2a2f2d; box-shadow: 0 6px 18px rgba(0,0,0,.25); }
.social-circle.zalo { font-size: .9rem; font-weight: 700; }

/* Footer Bottom Section */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 1rem;
}

.copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
}

/* Policy Page Styles */
.policy-content {
    padding: 2rem 0;
    background: var(--bg-dark);
}

.policy-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.policy-section {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    position: relative;
}

.policy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 12px 12px 0 0;
    z-index: 1;
}

.policy-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.policy-content-text h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 1.5rem 0 0.8rem 0;
}

.policy-content-text ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.policy-content-text li {
    padding: 0.4rem 0 0.4rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.5;
    position: relative;
    font-size: 0.9rem;
}

.policy-content-text li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ffffff;
    font-size: 0.7rem;
}



.policy-content-text p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 1rem 0;
    font-size: 0.9rem;
}

.policy-content-text a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}



.update-note {
    font-style: italic;
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin-top: 1.5rem;
    padding-top: 0.8rem;
    border-top: 1px solid var(--border-color);
}

.note a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.note a:hover {
    color: var(--accent-secondary);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .policy-section {
        padding: 1.2rem;
        margin-bottom: 1.2rem;
    }

    .policy-section h2 {
        font-size: 1.3rem;
    }

    .policy-content-text h3 {
        font-size: 1rem;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--accent-primary);
    color: #ffffff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    text-decoration: none;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Scroll-to-Reveal Animation */
.section-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.section-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.3rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
}

/* Hamburger Menu Styles */
.nav-toggle {
    display: none;
    position: relative;
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    z-index: 1002;
}

.hamburger-box {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 24px;
    transform: translate(-50%, -50%);
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 3px;
    transition: transform 0.3s ease;
}

.hamburger-inner {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: '';
}

.hamburger-inner::before {
    top: -10px;
}

.hamburger-inner::after {
    bottom: -10px;
}

.nav-toggle.is-active .hamburger-inner {
    transform: rotate(45deg);
}

.nav-toggle.is-active .hamburger-inner::before {
    transform: translateY(10px) rotate(-90deg);
}

.nav-toggle.is-active .hamburger-inner::after {
    transform: translateY(-10px) rotate(-90deg);
}

/* Guarantee Section Styling */
#money-back {
    position: relative;
    padding: 50px 0;
    overflow: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background: #1a202c;
    color: #e2e8f0;
}

.guarantee-ambient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    opacity: 1;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 35px;
    justify-items: center;
}

.guarantee-col.left {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
    text-align: center;
}

.eyebrow {
    font-size: 11px;
    font-weight: 600;
    color: #60a5fa;
    text-transform: uppercase;
    letter-spacing: 1.3px;
}

.title {
    font-size: 28px;
    font-weight: 700;
    color: #f97316;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.desc {
    font-size: 14px;
    color: #a0aec0;
    line-height: 1.5;
    max-width: 90%;
}

.chips {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.chip {
    background: var(--bg-light);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: #e2e8f0;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: transform 0.3s ease;
}

.chip:hover {
    transform: scale(1.05);
}

.chip i {
    font-style: normal;
    font-size: 14px;
    color: #60a5fa;
}

.actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 11px 22px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: var(--accent-primary);
    color: #fff;
}

.btn-primary.btn-glow:hover {
    transform: translateY(-3px);
}

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

.btn-outline:hover {
    background: var(--accent-primary);
    color: #fff;
}

.note {
    font-size: 11px;
    color: #718096;
    margin-top: 12px;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }

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

    .main-nav-toggle {
        display: block;
    }

    .main-nav-list {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(18, 18, 18, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        will-change: transform;
    }

    .main-nav-list.is-active {
        transform: translateX(0);
    }

    .main-nav-link {
        font-size: 1.5rem;
        padding: 0.5rem 0;
        color: rgba(255, 255, 255, 0.9);
    }

    .main-nav-link.account-button {
        font-size: 1.2rem !important;
        padding: 0.35rem 0.45rem !important;
        min-height: 20px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: auto !important;
        margin: 0.15rem 0 !important;
    }

    /* Mobile dropdown menu - nhỏ hơn và có thể toggle */
    .main-dropdown-menu {
        position: fixed !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) scale(0.8) !important;
        width: 70vw !important;
        max-width: 400px !important;
        height: auto !important;
        min-height: 300px !important;
        background-color: rgba(18, 18, 18, 0.98) !important;
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
        border-radius: 16px !important;
        padding: 2rem 0 !important;
        margin: 0 !important;
        z-index: 1001 !important;
        display: none !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 1.5rem !important;
        transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
                    opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1),
                    visibility 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
        will-change: transform, opacity !important;
        border: 1px solid var(--border-color) !important;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3) !important;
        opacity: 0 !important;
        visibility: hidden !important;
    }

    .main-dropdown-menu.is-active {
        display: flex !important;
        transform: translate(-50%, -50%) scale(1) !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .main-dropdown-menu li {
        width: 100% !important;
        text-align: center !important;
    }

    .main-dropdown-menu li a {
        font-size: 1.2rem !important;
        padding: 1rem 2rem !important;
        color: rgba(255, 255, 255, 0.9) !important;
        display: block !important;
        width: 100% !important;
        text-align: center !important;
        border-radius: 8px !important;
        margin: 0.5rem 0 !important;
        transition: all 0.3s ease !important;
    }

    .main-dropdown-menu li a:hover {
        background-color: rgba(249, 114, 22, 0.1) !important;
        color: var(--accent-primary) !important;
        text-decoration: none !important;
    }

    body.nav-open {
        overflow: hidden;
        width: 100%;
    }

    body.dropdown-open {
        overflow: hidden;
        width: 100%;
    }

    .hero {
        padding: 2.5rem 0;
        overflow-x: hidden;
    }

    .hero-title {
        font-size: 1.9rem;
        animation-delay: 0.38s;
    }

    .hero-description {
        font-size: 0.9rem;
        animation-delay: 0.66s;
    }

    #money-back {
        padding: 30px 0;
    }

    .hero-buttons {
        animation-delay: 0.94s;
    }

    .features-list .feature-item {
        flex-direction: column !important; /* Override inline style for alternating rows */
        text-align: center;
        gap: 1.5rem;
    }

    .feature-content h3 {
        font-size: 1.4rem;
    }

    .hero-image {
        max-width: 350px;
        margin: 1.5rem auto;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }

    .section-header h2 {
        font-size: 1.7rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .product-card {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .global-network-section {
        padding: 60px 0 0;
    }

    .global-network-section .section-title {
        font-size: 2.2rem;
    }

    .global-network-section .section-description {
        font-size: 1rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin-bottom: 40px;
        padding: 0 15px;
    }

    .stat-item {
        padding: 25px 15px;
    }

    .stat-number {
        font-size: 1.7rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .world-map-container {
        height: 350px;
        border-radius: 12px 12px 0 0;
    }

    /* Mobile Responsiveness */
    .guarantee-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .title {
        font-size: 30px;
    }

    .desc {
        font-size: 16px;
        max-width: 100%;
    }

    .btn {
        font-size: 14px;
        padding: 12px 24px;
    }

    .logo-circle {
        width: 120px;
        height: 120px;
    }

    .guarantee-icon-img {
        width: 70px;
        height: 70px;
    }

    .ribbon {
        font-size: 18px;
        padding: 8px 25px;
    }

    .benefits {
        font-size: 14px;
        max-width: 100%;
    }

    .actions {
        flex-direction: column;
        align-items: center;
    }

    .chips {
        justify-content: center;
    }

    /* Global Network Section Mobile */
    .global-network-section {
        padding: 60px 0 0;
    }

    .global-network-section .section-title {
        font-size: 2.2rem;
    }

    .global-network-section .section-description {
        font-size: 1rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin-bottom: 50px;
        padding: 0 15px;
    }

    .stat-item {
        padding: 25px 15px;
    }

    .stat-number {
        font-size: 1.7rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .world-map-container {
        height: 350px;
        border-radius: 15px 15px 0 0;
    }

    /* Locations Section Mobile */
    .locations-section {
        padding: 2rem 0;
        background-attachment: scroll; /* Disable parallax on mobile for better performance */
    }

    .locations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 1rem 0;
    }

    .locations-content {
        padding-right: 0;
        margin-bottom: 0.75rem;
    }

    .locations-content .feature-bullets li {
        padding: 0.75rem;
        margin-bottom: 0.5rem;
    }

    .locations-content .section-title,
    .locations-content .section-description {
        text-align: center;
    }

    .locations-content .section-title {
        margin-bottom: 1.5rem;
    }

    .feature-bullets {
        margin: 0 auto 2rem;
        display: inline-block;
        text-align: left;
    }
}

@media (max-width: 480px) {
    #money-back {
        padding: 25px 0;
    }

    .title {
        font-size: 24px;
    }

    .eyebrow {
        font-size: 12px;
    }

    .chip {
        font-size: 13px;
        padding: 8px 15px;
    }

    .note {
        font-size: 11px;
    }

    /* Global Network Section Mobile - Extra Small Screens */
    .global-network-section .section-header {
        margin-bottom: 60px;
    }

    .global-network-section .section-title {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-item {
        padding: 20px;
    }

    .stat-number {
        font-size: 1.7rem;
    }

    .world-map-container {
        height: 300px;
    }

    /* Locations Section Mobile - Extra Small Screens */
    .locations-section {
        padding: 1.5rem 0;
    }

    .locations-grid {
        gap: 0.75rem;
        margin: 0.5rem 0;
    }

    .locations-content {
        margin-bottom: 0.5rem;
    }

    .locations-content .feature-bullets li {
        padding: 0.5rem;
        margin-bottom: 0.4rem;
    }

    .locations-content .section-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .locations-content .section-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .locations-list-wrapper {
        padding: 1.25rem;
    }

    .location-item {
        margin-bottom: 1.25rem;
    }

    .location-item h3 {
        font-size: 1.1rem;
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .feature-bullets {
        font-size: 0.9rem;
    }

.os-card img {
    height: 35px !important;
    width: 35px !important;
    max-height: 35px !important;
    max-width: 35px !important;
    object-fit: contain;
    margin-bottom: 0.5rem !important;
}


    .feature-bullets li {
        margin-bottom: 0.5rem;
    }
    .global-network-section {
        padding: 40px 0 0;
    }

    .global-network-section .section-title {
        font-size: 1.8rem;
    }

    .global-network-section .section-description {
        font-size: 0.9rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }

    .stat-item {
        padding: 20px;
    }

    .stat-number {
        font-size: 1.7rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .world-map-container {
        height: 300px;
        border-radius: 10px 10px 0 0;
    }
}

/* ---------------------------------- */
/* --- Web Design Page Styles --- */
/* ---------------------------------- */

/* General Animation for Sections */
.section-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.section-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Section for Web Design */
.hero-web-design {
    text-align: center;
    padding: 0;
    background-image: url('../images/world.jpg?v=20250919b');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}



.hero-web-design::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 14, 24, 0.6) 0%, rgba(13, 14, 24, 0.8) 100%);
    z-index: -1;
}

.hero-web-design .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 2rem 0;
}

.hero-title-large {
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    position: relative;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 3rem auto;
    font-weight: 400;
    line-height: 1.6;
}

/* Intro Section */
.web-design-intro {
    padding: 100px 0;
    background-color: var(--bg-light);
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.web-design-intro .section-header {
    margin-bottom: 0; /* No extra margin needed */
}

/* Workflow/Process Section */
.workflow-process {
    padding: 100px 0;
    background-color: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.workflow-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(249, 114, 22, 0.05), transparent 70%);
    z-index: -1;
}

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.workflow-step {
    text-align: center;
    padding: 40px 20px;
    background-color: var(--bg-light);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.workflow-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.workflow-step:hover::before {
    opacity: 1;
}

.workflow-step .step-icon {
    font-size: 3rem;
    color: var(--accent-primary);
    margin-bottom: 25px;
    display: inline-block;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.workflow-step:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
}

.workflow-step h3 {
    font-size: 1.6rem;
    color: var(--text-primary);
    margin-bottom: 15px;
    font-weight: 600;
}

.workflow-step p {
    color: var(--text-secondary);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Services Section */
.web-design-services {
    padding: 100px 0;
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background: var(--bg-dark);
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 100% 100%, var(--accent-primary), transparent 40%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.service-card:hover::before {
    opacity: 0.1;
}

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

.service-card h4 {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    font-weight: 600;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #d85a00, #e67e22);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1), transparent 70%);
    z-index: -1;
}

.cta-section h2 {
    font-size: 2.8rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 5px rgba(0,0,0,0.2);
    position: relative;
    z-index: 2;
}

.cta-section p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.cta-section .btn {
    transform: scale(1.1);
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-section .btn:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Responsive for Web Design Page */
@media (max-width: 992px) {
    .workflow-grid, .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .hero-title-large {
        font-size: 3.2rem;
    }

    .cta-section h2 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .hero-web-design {
        background-attachment: scroll;
        min-height: 320px;
    }

    .hero-web-design .hero-content {
        padding: 3rem 0;
    }

    .hero-title-large {
        font-size: 3.2rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    .workflow-grid, .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .workflow-step, .service-card {
        padding: 30px 20px;
    }

    .cta-section {
        padding: 80px 0;
    }

    .cta-section h2 {
        font-size: 2.2rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    .btn-lg {
        padding: 0.9rem 2.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-web-design {
        background-attachment: scroll;
        min-height: 280px;
    }

    .hero-web-design .hero-content {
        padding: 2rem 0;
    }

    .hero-title-large {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .web-design-intro, .workflow-process, .web-design-services, .cta-section {
        padding: 60px 0;
    }

    .workflow-step h3, .service-card h4 {
        font-size: 1.4rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }
}


/* ---------------------------------- */
/* --- Web Design Page Styles --- */
/* ---------------------------------- */

.section-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.section-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-web-design {
    padding: 4rem 0;
    text-align: center;
    position: relative;
    background-color: var(--bg-dark);
}

.hero-web-design .hero-content {
    position: relative;
    z-index: 2;
}

.hero-title-large, .workflow-step h3, .service-card h4, .cta-section h2 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
}

.hero-title-large {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    font-weight: 400;
}

.web-design-intro, .workflow-process, .web-design-services, .cta-section {
    padding: 100px 0;
}

.web-design-intro { background-color: var(--bg-light); text-align: center; }
.workflow-process { background-color: var(--bg-dark); }
.web-design-services { background-color: var(--bg-light); }

.workflow-grid, .services-grid {
    display: grid;
    gap: 40px;
    margin-top: 60px;
}

.workflow-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.services-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

.workflow-step {
    text-align: center;
    padding: 30px;
}

.workflow-step .step-icon {
    font-size: 3rem;
    color: var(--accent-primary);
    margin-bottom: 25px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.workflow-step:hover .step-icon { transform: scale(1.1) rotate(5deg); }
.workflow-step h3 { font-size: 1.6rem; margin-bottom: 15px; }

.service-card {
    background: var(--bg-dark);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    position: relative;
}

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

.service-card h4 { font-size: 1.8rem; margin-bottom: 15px; }

.cta-section {
    background: linear-gradient(45deg, #d85a00, #e67e22);
    text-align: center;
}

.cta-section h2, .cta-section p {
    color: #fff;
}

.cta-section h2 { font-size: 2.8rem; font-weight: 800; margin-bottom: 1rem; }
.cta-section p { font-size: 1.2rem; max-width: 600px; margin: 0 auto 2.5rem auto; }

@media (max-width: 768px) {
    .hero-title-large { font-size: 2.8rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .workflow-grid, .services-grid { grid-template-columns: 1fr; }
}

/* Mobile Layout Stability Fixes */
@media (max-width: 768px) {
    * {
        max-width: 100%;
    }

    .features-list .feature-item {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .feature-image {
        width: 100%;
        max-width: 100%;
    }

    .locations-grid {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        gap: 2rem;
        margin: 1.5rem 0;
    }

    .locations-list-wrapper {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .hero-buttons {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
}

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

/* Critical Mobile Fixes - Prevent Horizontal Scroll */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        margin: 0 auto;
        justify-items: center;
        max-width: 400px;
    }

    .product-card {
        margin: 0 auto;
        width: 100%;
        min-width: 0;
        max-width: 350px;
    }

    .product-card h3 {
        font-size: 1.2rem !important;
        height: auto !important;
        min-height: 60px;
        padding: 10px 5px;
        line-height: 1.3;
        word-break: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .card-header {
        min-height: auto;
        padding-bottom: 15px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
        margin: 0;
    }

    .stats-grid {
        gap: 1rem;
        margin: 0;
        margin-bottom: 25px;
        padding: 0 10px;
    }

    .section-header {
        padding: 0 10px;
    }

    .features-section, .products, .global-network-section {
        overflow: hidden;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .product-card h3 {
        font-size: 1.1rem !important;
        padding: 8px 3px;
        line-height: 1.2;
    }

    .product-card .price {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
    }

    .product-card .specs {
        font-size: 0.9rem;
    }

    .product-card .specs li {
        padding: 0.4rem 0;
    }
}

/* Blog Styles */
.blog-section {
    padding: 6rem 0;
}

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

.blog-card {
    display: flex;
    flex-direction: column;
}

.blog-card .blog-content {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.blog-card .blog-read-more {
    margin-top: auto;
    align-self: flex-start;
}

/* Blog grid layout */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.blog-card {
    background-color: var(--bg-light);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    user-select: none;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-primary);
}

.blog-card:active {
    transform: translateY(-4px);
    transition: all 0.1s ease;
}

.blog-image {
    height: 200px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.blog-image::before {
    content: '📝';
    font-size: 4rem;
    opacity: 0.3;
}

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--accent-primary);
    padding: 0.5rem 1rem;
    border-radius: 24px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-content {
    padding: 2rem;
    position: relative;
}

.blog-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent, rgba(249, 114, 22, 0.02));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.blog-card:hover .blog-content::after {
    opacity: 1;
}

.blog-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
    color: var(--accent-primary);
}

.blog-excerpt {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-read-more {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    margin-top: 1rem;
    padding: 0.5rem 0;
}

.blog-read-more:hover {
    color: var(--accent-secondary);
    transform: translateX(5px);
}

.blog-read-more i {
    transition: transform 0.3s ease;
}

.blog-read-more:hover i {
    transform: translateX(3px);
}

/* Blog Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.pagination-btn {
    padding: 0.8rem 1.5rem;
    background-color: var(--bg-light);
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    font-weight: 500;
}

.pagination-btn:hover,
.pagination-btn.active {
    background-color: var(--accent-primary);
    color: white;
    border-color: var(--accent-primary);
}

/* Newsletter Section */
.newsletter-section {
    padding: 6rem 0;
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

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

.newsletter-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.newsletter-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    background-color: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--accent-primary);
}

.newsletter-input::placeholder {
    color: var(--text-secondary);
}

/* Responsive Blog Styles */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .blog-pagination {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .pagination-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }

    .newsletter-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .blog-content {
        padding: 1.5rem;
    }

    .blog-title {
        font-size: 1.2rem;
    }

    .blog-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Admin Blog Styles */
.admin-section {
    padding: 6rem 0;
    min-height: 70vh;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.admin-header h1 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin: 0;
}

.admin-blog-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.admin-blog-item {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    transition: all 0.3s ease;
}

.admin-blog-item:hover {
    border-color: var(--accent-primary);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.blog-info {
    flex: 1;
}

.blog-info h3 {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.blog-info .blog-excerpt {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-info .blog-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.blog-meta .category {
    background-color: var(--accent-primary);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-meta .date,
.blog-meta .read-time {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.blog-meta .featured {
    background-color: #ffd700;
    color: #333;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-edit,
.btn-delete {
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

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

.btn-edit:hover {
    background-color: var(--accent-secondary);
    transform: translateY(-2px);
}

.btn-delete {
    background-color: #e74c3c;
    color: white;
}

.btn-delete:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

.no-blogs {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.2rem;
    padding: 4rem 0;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--bg-light);
    margin: 5% auto;
    padding: 0;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h2 {
    color: var(--text-primary);
    margin: 0;
    font-size: 1.8rem;
}

.close {
    color: var(--text-secondary);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: var(--accent-primary);
}

#blogForm {
    padding: 2rem;
}

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

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    background-color: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-primary);
}

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

.blog-categories {
    display: none;
    text-align: center;
    margin: 40px 0;
    padding: 0 15px;
    animation: fadeInScale 0.6s ease-out forwards;
    background: linear-gradient(135deg, rgba(249, 114, 22, 0.05), transparent);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.blog-categories::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(249, 114, 22, 0.1), transparent);
    animation: rotate 15s linear infinite;
    opacity: 0.2;
    z-index: -1;
}

.blog-categories h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--text-primary);
    font-weight: 700;
    background: linear-gradient(135deg, #f97316, #ff9e4a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

}

.blog-categories h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #f97316, #ff9e4a);
    border-radius: 2px;
}

/* Category List Container */
.category-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    z-index: 1;
}

/* Individual Category Item */
.category-item {
    background: var(--bg-light);
    padding: 30px 20px;
    width: calc(33.333% - 20px);
    min-width: 250px;
    color: white;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.2);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}



.category-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: color 0.3s ease;
}

.category-item:hover h3 {
    color: var(--accent-primary);
}

.category-item p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Toggle Button */
#toggle-categories {
    display: block;
    margin: 20px auto;
    padding: 18px 25px;
    font-size: 1rem;
    cursor: pointer;
    background: var(--accent-primary);
    color: white;
    border: none;
    border-radius: 10px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.2);
    box-shadow:
        0 8px 20px rgba(249, 114, 22, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

#toggle-categories:hover {
    background: linear-gradient(135deg, #f97316, #ff9e4a);
    box-shadow:
        0 12px 40px rgba(249, 114, 22, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

#toggle-categories:active {
    transform: translateY(-1px);
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: var(--accent-primary);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1001;
    font-weight: 600;
}

.notification.show {
    transform: translateX(0);
}

/* Blog Post Page Styles - Premium Enhanced */
.loading-container,
.error-container {
    padding: 10rem 0;
    text-align: center;
    background: radial-gradient(circle at center, var(--bg-light) 0%, var(--bg-dark) 70%);
    position: relative;
    overflow: hidden;
}

.loading-container::before,
.error-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(249, 114, 22, 0.1), transparent);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

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

.loading-spinner {
    width: 80px;
    height: 80px;
    border: 6px solid transparent;
    border-top: 6px solid var(--accent-primary);
    border-right: 6px solid var(--accent-secondary);
    border-radius: 50%;
    animation: spin 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
    margin: 0 auto 2rem;
    filter: drop-shadow(0 8px 16px rgba(249, 114, 22, 0.4));
    position: relative;
    z-index: 2;
}

.loading-spinner::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 3px solid transparent;
    border-bottom: 3px solid var(--accent-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite reverse;
}

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

.loading-container p {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.error-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 4rem;
    background: linear-gradient(145deg, var(--bg-light), rgba(249, 114, 22, 0.05));
    border-radius: 24px;
    border: 2px solid var(--border-color);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.error-content::before {
    content: '⚠️';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3rem;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.error-content h2 {
    color: var(--text-primary);
    margin: 2rem 0 1.5rem;
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    background: linear-gradient(135deg, var(--text-primary), var(--accent-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.error-content p {
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.8;
    font-size: 1.1rem;
    text-align: center;
}

.blog-post-container {
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.blog-post-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23f97216" opacity="0.02"/><circle cx="80" cy="80" r="1" fill="%23ff9e4a" opacity="0.01"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
    z-index: 1;
    opacity: 0.5;
}

.breadcrumb {
    margin-bottom: 2rem;
    margin-top: 6rem; /* Add top margin to account for fixed header */
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--bg-light), rgba(249, 114, 22, 0.05));
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.breadcrumb::before {
    content: '🏠';
    font-size: 1rem;
    margin-right: 0.3rem;
}

.breadcrumb a {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.breadcrumb a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    transition: width 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--accent-secondary);
}

.breadcrumb a:hover::before {
    width: 100%;
}

.breadcrumb-separator {
    color: var(--text-secondary);
    font-weight: bold;
}

.blog-post-header {
    margin-bottom: 2rem;
    text-align: center;
    padding: 1.5rem 1.5rem;
    background: var(--bg-light);
    border-radius: 24px;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(10px);
    z-index: 2;
}

.blog-post-header::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: conic-gradient(from 0deg, transparent, rgba(249, 114, 22, 0.02), transparent, rgba(255, 158, 74, 0.01), transparent);
    animation: rotateGlow 40s linear infinite;
    z-index: -1;
}

.blog-post-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(249, 114, 22, 0.05), transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(255, 158, 74, 0.03), transparent 40%);
    z-index: -1;
    animation: pulse 10s ease-in-out infinite;
}

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

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.02); }
}

.blog-post-meta {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 3;
    min-height: 2.4rem;
}

.blog-post-meta .blog-category {
    display: none;
}

.blog-post-meta .blog-date,
.blog-post-meta .blog-read-time {
    color: var(--text-secondary);
    font-size: 0.765rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.4rem;
    padding: 0.6rem 1.2rem;
    border-radius: 24px;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(5px);
    min-height: 2.4rem;
    box-sizing: border-box;
    flex-shrink: 0;
    line-height: 1;
    vertical-align: top;
}

.blog-post-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    position: relative;
    z-index: 3;
    background: linear-gradient(
        135deg,
        var(--text-primary) 0%,
        var(--accent-primary) 30%,
        var(--text-primary) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 6s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.blog-post-excerpt {
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 3;
    font-weight: 400;
    font-style: italic;
}

.blog-post-author {
    color: var(--text-secondary);
    font-size: 0.855rem;
    position: relative;
    z-index: 3;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.6rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(5px);
    margin: 0 auto;
    max-width: fit-content;
}

.blog-post-author::before {
    content: '✍️';
    font-size: 1rem;
}

.blog-post-content {
    max-width: 900px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    font-size: 1.1rem;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    position: relative;
    color: var(--text-secondary);
}

.blog-post-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    z-index: 1;
}

/* Removed decorative shimmer animation for better readability */

.blog-post-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.blog-post-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin: 2rem 0 1rem 0;
}

.blog-post-content p {
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-align: left;
    font-weight: 400;
    line-height: 1.8;
}

.blog-post-content p:first-of-type {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 2rem;
    line-height: 1.7;
    border-left: 3px solid var(--accent-primary);
    padding-left: 1.5rem;
    background: rgba(249, 114, 22, 0.05);
    padding: 1.5rem;
    border-radius: 4px;
}

.blog-post-content ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.blog-post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.blog-post-content li {
    padding: 0.5rem 0 0.5rem 2rem;
    color: var(--text-secondary);
    line-height: 1.6;
    position: relative;
}

.blog-post-content ul li {
    list-style: none;
}

.blog-post-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ffffff;
    font-size: 0.8rem;
}

.blog-post-content ol li {
    list-style-type: decimal;
}

/* Removed decorative blockquote pseudo-elements for better readability */
.blog-post-content blockquote {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(249, 114, 22, 0.05);
    border-left: 4px solid var(--accent-primary);
    border-radius: 4px;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-primary);
    line-height: 1.7;
}

/* Additional readable content styling */
.blog-post-content code {
    background: rgba(249, 114, 22, 0.1);
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
    font-size: 0.9em;
    color: var(--accent-primary);
}

.blog-post-content pre {
    background: var(--bg-dark);
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 1.5rem 0;
    border: 1px solid var(--border-color);
}

.blog-post-content pre code {
    background: none;
    padding: 0;
    color: var(--text-secondary);
}

.blog-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
    border: 1px solid var(--border-color);
}

.blog-post-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.blog-post-content th,
.blog-post-content td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.blog-post-content th {
    background: rgba(249, 114, 22, 0.05);
    font-weight: 600;
    color: var(--text-primary);
}

.blog-post-content a {
    color: var(--accent-primary);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.blog-post-content a:hover {
    color: var(--accent-secondary);
    opacity: 0.4;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1;
}

.blog-post-content blockquote::after {
    content: '”';
    font-size: 3rem;
    color: var(--accent-primary);
    position: absolute;
    right: 1rem;
    bottom: -1.5rem;
    opacity: 0.4;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1;
}

.blog-share-section {
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
    text-align: center;
    position: relative;
    overflow: visible;
    backdrop-filter: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.blog-share-section::before {
    display: none;
}

.blog-share-section::after {
    display: none;
}

/* Removed unused animations */

.blog-share-section h3 {
    color: var(--text-primary);
    font-size: 1.4rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, var(--text-primary), var(--accent-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    width: 100%;
    text-align: center;
}

.blog-share-section h3::before {
    content: '🚀';
    font-size: 1.4rem;
    filter: drop-shadow(0 4px 8px rgba(249, 114, 22, 0.4));
    animation: rocketFloat 3s ease-in-out infinite;
}

@keyframes rocketFloat {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.share-buttons {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0;
}

.share-btn {
    padding: 1rem 2rem;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    border: none;
    cursor: pointer;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

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

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

.share-btn.facebook {
    background: linear-gradient(135deg, #1877f2 0%, #4267B2 50%, #1877f2 100%);
    color: white;
    box-shadow:
        0 8px 25px rgba(24, 119, 242, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.share-btn.twitter {
    background: linear-gradient(135deg, #1da1f2 0%, #0d8bd9 50%, #1da1f2 100%);
    color: white;
    box-shadow:
        0 8px 25px rgba(29, 161, 242, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.share-btn.linkedin {
    background: linear-gradient(135deg, #0077b5 0%, #005885 50%, #0077b5 100%);
    color: white;
    box-shadow:
        0 8px 25px rgba(0, 119, 181, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.share-btn.copy {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 50%, var(--accent-primary) 100%);
    color: white;
    box-shadow:
        0 8px 25px rgba(249, 114, 22, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.share-btn:hover {
    transform: translateY(-8px) scale(1.08);
    box-shadow:
        0 15px 50px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.share-btn:active {
    transform: translateY(-4px) scale(1.05);
}

.blog-share-section .back-to-blog {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
}

.blog-navigation {
    max-width: 800px;
    margin: 0 auto 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    position: relative;
}

/* Removed decorative pseudo-elements for .blog-navigation */

@keyframes navPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes sparkle {
    0%, 100% { transform: translate(-50%, -50%) rotate(0deg) scale(1); }
    50% { transform: translate(-50%, -50%) rotate(180deg) scale(1.2); }
}

.nav-item {
    padding: 2rem;
    background:
        linear-gradient(145deg, var(--bg-light) 0%, rgba(249, 114, 22, 0.05) 50%, var(--bg-light) 100%),
        radial-gradient(circle at 20% 80%, rgba(249, 114, 22, 0.08), transparent 50%);
    border: 2px solid var(--border-color);
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.nav-item::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(249, 114, 22, 0.1), transparent 70%);
    border-radius: 50%;
    transition: all 0.4s ease;
    opacity: 0;
}

.nav-item:hover {
    border-color: var(--accent-primary);
    transform: translateY(-12px) scale(1.02);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(249, 114, 22, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.nav-item:hover::before {
    transform: scaleX(1);
}

.nav-item:hover::after {
    opacity: 1;
    transform: scale(1.5);
}

.nav-item.next {
    text-align: right;
}

.nav-item.prev::before {
    transform-origin: right;
}

.nav-label {
    display: block;
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    position: relative;
}


.nav-item.prev .nav-label::after {
    right: 0;
}

.nav-item.next .nav-label::after {
    left: 0;
}

.nav-title {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.4;
    transition: all 0.3s ease;
    display: block;
}

.nav-title:hover {
    color: var(--accent-primary);
    transform: translateX(10px);
}

.nav-item.prev .nav-title:hover {
    transform: translateX(-10px);
}

.back-to-blog {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    position: relative;
}

.back-to-blog::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(249, 114, 22, 0.1), transparent 70%);
    border-radius: 50%;
    animation: backGlow 4s ease-in-out infinite;
    z-index: 0;
}

@keyframes backGlow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.2; }
}

.back-to-blog .btn {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
    overflow: hidden;
    background: linear-gradient(135deg, transparent, rgba(249, 114, 22, 0.05));
    border: 3px solid var(--accent-primary);
    color: var(--accent-primary);
    box-shadow:
        0 8px 25px rgba(249, 114, 22, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.back-to-blog .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 114, 22, 0.3), transparent);
    transition: left 0.6s ease;
}

.back-to-blog .btn:hover {
    transform: translateY(-8px) scale(1.05);
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: white;
    border-color: var(--accent-secondary);
    box-shadow:
        0 20px 50px rgba(249, 114, 22, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.back-to-blog .btn:hover::before {
    left: 100%;
}

.back-to-blog .btn i {
    transition: transform 0.3s ease;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.back-to-blog .btn:hover i {
    transform: translateX(-5px);
}

.related-posts-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--bg-light), var(--bg-dark));
    border-top: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.related-posts-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(249, 114, 22, 0.1), transparent 50%);
    pointer-events: none;
}

.related-post-card {
    background: linear-gradient(135deg, var(--bg-dark), var(--bg-light));
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.8rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.related-post-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

/* Responsive Styles for Admin and Blog Post */
@media (max-width: 768px) {
    .admin-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .admin-blog-item {
        flex-direction: column;
        gap: 1rem;
    }

    .blog-actions {
        justify-content: center;
    }

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

    .modal-content {
        margin: 2% auto;
        width: 95%;
    }

    .blog-post-title {
        font-size: 2rem;
    }

    .blog-post-meta {
        gap: 0.8rem;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }

    .blog-post-meta .blog-category,
    .blog-post-meta .blog-date,
    .blog-post-meta .blog-read-time {
        font-size: 0.675rem;
        padding: 0.5rem 0.8rem;
        height: auto;
        min-height: 2rem;
        flex-shrink: 0;
    }

    .blog-navigation {
        grid-template-columns: 1fr;
    }

    .share-buttons {
        justify-content: center;
    }

    .related-posts-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .blog-post-content {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .blog-post-content h2 {
        font-size: 1.6rem;
    }

    .blog-post-content h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .blog-post-content {
        font-size: 0.9rem;
        padding: 1.5rem;
    }

    .blog-post-title {
        font-size: 1.8rem;
    }

    .share-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
        gap: 0.5rem;
    }

    /* Mobile share section - hide container, show only h3 and button centered */
    .blog-share-section {
        background: none !important;
        padding: 1.5rem 0 !important;
        margin: 2rem auto !important;
        border: none !important;
        box-shadow: none !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
    }

    .blog-share-section::before,
    .blog-share-section::after {
        display: none !important;
    }

    .blog-share-section h3 {
        margin: 0 0 1.5rem 0 !important;
        font-size: 1.2rem !important;
        text-align: center !important;
        width: 100% !important;
        padding: 0 !important;
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
    }

    .blog-share-section .share-buttons {
        margin: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 0 !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
    }

    .blog-share-section .share-btn {
        margin: 0 !important;
        padding: 0.8rem 1.5rem !important;
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
    }
}

/* Copy success animation */
.share-btn.copy.copied {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 50%, #3b82f6 100%) !important;
    box-shadow:
        0 8px 25px rgba(59, 130, 246, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
    transform: scale(1.05) !important;
    transition: all 0.3s ease !important;
}

.share-btn.copy.copied i {
    animation: checkmarkAnimation 0.6s ease-in-out !important;
    color: white !important;
}

@keyframes checkmarkAnimation {
    0% {
        transform: scale(1) !important;
    }
    50% {
        transform: scale(1.3) rotate(10deg) !important;
    }
    100% {
        transform: scale(1) !important;
    }
}

.share-btn.copy.copied::after {
    content: ' ✓' !important;
    animation: fadeInCheck 0.3s ease-in-out 0.3s both !important;
    color: white !important;
    font-weight: bold !important;
}

@keyframes fadeInCheck {
    0% {
        opacity: 0 !important;
        transform: translateX(-10px) !important;
    }
    100% {
        opacity: 1 !important;
        transform: translateX(0) !important;
    }
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .main-header {
        /* position: -webkit-sticky; */
        position: fixed;
        top: 0;
        z-index: 1000;
        background-color: rgba(18, 18, 18, 0.95);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        /* border-bottom: 1px solid rgba(249, 114, 22, 0.3); */
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    }

    .main-nav-toggle {
        will-change: transform;
    }

    .main-nav-list {
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
    }

    .main-dropdown-menu {
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
    }

    /* Đảm bảo header vẫn sticky khi nav mở */
    body.nav-open .main-header {
        position: fixed !important;
        top: 0 !important;
        z-index: 1001 !important;
    }

    body.dropdown-open .main-header {
        position: fixed !important;
        top: 0 !important;
        z-index: 1001 !important;
    }
}

/* Pricing Table Styles */
.pricing-table-container {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: linear-gradient(135deg, rgba(30, 30, 35, 0.95) 0%, rgba(20, 20, 25, 0.98) 100%);
    overflow: hidden;
    border-radius: 16px;
}

.pricing-table thead {
    background: linear-gradient(135deg, #2d8659 0%, #238a5c 50%, #2d8659 100%);
    box-shadow: 0 4px 15px rgba(0, 104, 255, 0.3);
}

.pricing-table thead th {
    background: #ff9500;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    padding: 0.8rem 0.5rem;
    text-align: center;
    border: none;
    white-space: nowrap;
}

.pricing-table thead th:first-child {
    text-align: left;
}

.pricing-table thead th:last-child {
    text-align: center;
}

.pricing-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.pricing-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.pricing-table tbody td {
    padding: 1rem 0.8rem;
    color: var(--text-primary);
    font-size: 0.9rem;
    vertical-align: middle;
    white-space: nowrap;
}

.pricing-table tbody td:first-child {
    font-weight: 600;
    color: #ffffff;
}

.pricing-table tbody td:first-child .cpu-info {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: block;
    margin-top: 0.3rem;
    font-weight: 400;
}

.pricing-table .spec-value {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-table .spec-value i {
    color: #ffffff;
    font-size: 1.1rem;
}

.pricing-table .spec-value .icon-ram {
    color: #ffffff;
}

.pricing-table .spec-value .icon-disk {
    color: #ffffff;
}

.pricing-table .spec-value .icon-os {
    color: #ffffff;
}

.pricing-table .spec-value .icon-bandwidth {
    color: #ffffff;
}

.pricing-table .price-cell {
    font-weight: 700;
    font-size: 1.05rem;
    color: #ffffff;
    text-align: right;
    white-space: nowrap;
}

.pricing-table .action-cell {
    text-align: center;
}

.pricing-table .btn-register {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: #ff9500;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 104, 255, 0.3);
    border: none;
    cursor: pointer;
}

/* .pricing-table .btn-register:hover {
    background: linear-gradient(135deg, #238a5c 0%, #1d7549 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 134, 89, 0.5);
} */

.pricing-table .btn-contact {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, #ff9500 0%, #ff8000 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 149, 0, 0.3);
    border: none;
    cursor: pointer;
}

.pricing-table .btn-contact:hover {
    background: linear-gradient(135deg, #ff8000 0%, #ff6600 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 149, 0, 0.5);
}

.pricing-table .badge-free {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #ffffff;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
}

/* Responsive Table */
@media (max-width: 1200px) {
    .pricing-table thead th,
    .pricing-table tbody td {
        padding: 1rem 0.8rem;
        font-size: 0.88rem;
        white-space: nowrap;
    }
    
    .pricing-table .btn-register,
    .pricing-table .btn-contact {
        padding: 0.65rem 1.5rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 992px) {
    .pricing-table-container {
        overflow-x: visible;
    }
    
    .pricing-table {
        width: 100%;
        min-width: auto;
    }
    
    .pricing-table thead th,
    .pricing-table tbody td {
        padding: 0.8rem 0.5rem;
        font-size: 0.8rem;
        white-space: nowrap;
    }
}

@media (max-width: 768px) {
    /* Card-based layout for mobile */
    .pricing-table-container {
        overflow-x: visible;
        margin: 1.2rem 0;
    }
    
    .pricing-table {
        display: block;
        min-width: 100%;
        width: 100%;
    }
    
    .pricing-table thead {
        display: none;
    }
    
    .pricing-table tbody {
        display: block;
    }
    
    .pricing-table tbody tr {
        display: block;
        margin-bottom: 1.2rem;
        border-radius: 10px;
        background: linear-gradient(135deg, rgba(30, 30, 35, 0.95) 0%, rgba(20, 20, 25, 0.98) 100%);
        border: 1px solid rgba(255, 149, 0, 0.2);
        /* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3); */
        overflow: hidden;
        transition: all 0.3s ease;
    }
    
    .pricing-table tbody tr:hover {
        transform: translateY(-4px);
        /* box-shadow: 0 12px 35px rgba(255, 149, 0, 0.4); */
        border-color: rgba(255, 149, 0, 0.4);
    }
    
    .pricing-table tbody td {
        display: block;
        text-align: center;
        padding: 0.8rem 0.96rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        position: relative;
        color: #ffffff;
        font-weight: 500;
    }
    
    .pricing-table tbody td:nth-child(even) {
        background: rgba(255, 255, 255, 0.02);
    }
    
    .pricing-table tbody td:last-child {
        border-bottom: none;
    }
    
    /* Package name - First cell */
    .pricing-table tbody td:first-child {
        background: linear-gradient(135deg, #ff9500 0%, #ff8000 100%);
        padding: 1.2rem 0.96rem;
        text-align: center;
        font-size: 0.88rem;
        color: #ffffff;
        font-weight: 700;
        letter-spacing: 0.4px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.4;
    }
    
    .pricing-table tbody td:first-child strong {
        display: block;
        margin-bottom: 0.24rem;
    }
    
    .pricing-table tbody td:first-child .cpu-info {
        font-size: 0.68rem;
        color: rgba(255, 255, 255, 0.9);
        margin-top: 0.4rem;
        font-weight: 500;
        display: block;
    }
    
    /* Add labels to each cell using ::before */
    .pricing-table tbody td:nth-child(2)::before {
        content: "CPU";
        font-weight: 700;
        color: rgba(255, 255, 255, 0.5);
        display: block;
        margin-bottom: 0.4rem;
        font-size: 0.6rem;
        text-transform: uppercase;
        letter-spacing: 0.8px;
    }
    
    .pricing-table tbody td:nth-child(3)::before {
        content: "RAM";
        font-weight: 700;
        color: rgba(255, 255, 255, 0.5);
        display: block;
        margin-bottom: 0.4rem;
        font-size: 0.6rem;
        text-transform: uppercase;
        letter-spacing: 0.8px;
    }
    
    .pricing-table tbody td:nth-child(4)::before {
        content: "Ổ CỨNG";
        font-weight: 700;
        color: rgba(255, 255, 255, 0.5);
        display: block;
        margin-bottom: 0.4rem;
        font-size: 0.6rem;
        text-transform: uppercase;
        letter-spacing: 0.8px;
    }
    
    .pricing-table tbody td:nth-child(5)::before {
        content: "BĂNG THÔNG";
        font-weight: 700;
        color: rgba(255, 255, 255, 0.5);
        display: block;
        margin-bottom: 0.4rem;
        font-size: 0.6rem;
        text-transform: uppercase;
        letter-spacing: 0.8px;
    }
    
    .pricing-table tbody td:nth-child(6)::before {
        content: "VỊ TRÍ";
        font-weight: 700;
        color: rgba(255, 255, 255, 0.5);
        display: block;
        margin-bottom: 0.4rem;
        font-size: 0.6rem;
        text-transform: uppercase;
        letter-spacing: 0.8px;
    }
    
    .pricing-table tbody td:nth-child(7)::before {
        content: "GIÁ/THÁNG";
        font-weight: 700;
        color: rgba(255, 255, 255, 0.5);
        display: block;
        margin-bottom: 0.4rem;
        font-size: 0.6rem;
        text-transform: uppercase;
        letter-spacing: 0.8px;
    }
    
    /* Price cell */
    .pricing-table .price-cell {
        /* background: linear-gradient(135deg, rgba(45, 134, 89, 0.15) 0%, rgba(35, 138, 92, 0.15) 100%); */
        padding: 1.04rem 0.96rem !important;
        text-align: center !important;
        font-size: 1.12rem !important;
        font-weight: 800 !important;
        /* color: #2ecc71 !important; */
        letter-spacing: 0.4px;
        white-space: nowrap !important;
        /* border-top: 2px solid rgba(46, 204, 113, 0.3);
        border-bottom: 2px solid rgba(46, 204, 113, 0.3); */
    }
    
    .pricing-table .price-cell::before {
        content: "";
        margin-right: 0;
    }
    
    /* Action cell */
    .pricing-table .action-cell {
        padding: 1.2rem 0.96rem !important;
        text-align: center;
        background: rgba(255, 255, 255, 0.02);
    }
    
    .pricing-table .btn-register,
    .pricing-table .btn-contact {
        display: block;
        width: 100%;
        padding: 0.8rem 1.2rem;
        font-size: 0.76rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.4px;
    }
    
    .pricing-table .spec-value {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.4rem;
    }
    
    .pricing-table .badge-free {
        font-size: 0.6rem;
        padding: 0.28rem 0.56rem;
    }
}

@media (max-width: 576px) {
    .pricing-table-container {
        margin: 0.96rem 0;
    }
    
    .pricing-table tbody tr {
        margin-bottom: 0.96rem;
        border-radius: 8px;
    }
    
    .pricing-table tbody td {
        padding: 0.72rem 0.8rem;
        font-size: 0.72rem;
    }
    
    .pricing-table tbody td:first-child {
        padding: 1.12rem 0.8rem;
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .pricing-table tbody td:first-child strong {
        margin-bottom: 0.2rem;
    }
    
    .pricing-table tbody td:first-child .cpu-info {
        font-size: 0.64rem;
        margin-top: 0.32rem;
    }
    
    .pricing-table tbody td:nth-child(2)::before,
    .pricing-table tbody td:nth-child(3)::before,
    .pricing-table tbody td:nth-child(4)::before,
    .pricing-table tbody td:nth-child(5)::before,
    .pricing-table tbody td:nth-child(6)::before {
        font-size: 0.68rem;
        display: block;
        margin-bottom: 0.32rem;
    }
    
    .pricing-table .price-cell {
        padding: 0.96rem 0.8rem !important;
        font-size: 1.04rem !important;
        white-space: nowrap !important;
    }
    
    .pricing-table .action-cell {
        padding: 1.04rem 0.8rem !important;
    }
    
    .pricing-table .btn-register,
    .pricing-table .btn-contact {
        padding: 0.72rem 1.04rem;
        font-size: 0.72rem;
    }
    
    .pricing-table .spec-value i {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .pricing-table-container {
        margin: 0.8rem 0;
    }
    
    .pricing-table tbody tr {
        margin-bottom: 0.8rem;
        border-radius: 6px;
    }
    
    .pricing-table tbody td {
        padding: 0.64rem 0.72rem;
        font-size: 0.68rem;
    }
    
    .pricing-table tbody td:first-child {
        padding: 1.04rem 0.72rem;
        font-size: 0.76rem;
        line-height: 1.4;
    }
    
    .pricing-table tbody td:first-child strong {
        margin-bottom: 0.16rem;
    }
    
    .pricing-table tbody td:first-child .cpu-info {
        font-size: 0.6rem;
        margin-top: 0.32rem;
    }
    
    .pricing-table tbody td:nth-child(2)::before,
    .pricing-table tbody td:nth-child(3)::before,
    .pricing-table tbody td:nth-child(4)::before,
    .pricing-table tbody td:nth-child(5)::before,
    .pricing-table tbody td:nth-child(6)::before {
        font-size: 0.64rem;
        display: block;
        margin-bottom: 0.24rem;
    }
    
    .pricing-table .price-cell {
        padding: 0.88rem 0.72rem !important;
        font-size: 0.96rem !important;
        white-space: nowrap !important;
    }
    
    .pricing-table .action-cell {
        padding: 0.96rem 0.72rem !important;
    }
    
    .pricing-table .btn-register,
    .pricing-table .btn-contact {
        padding: 0.68rem 0.96rem;
        font-size: 0.68rem;
    }
    
    .pricing-table .spec-value {
        gap: 0.32rem;
    }
    
    .pricing-table .spec-value i {
        font-size: 0.76rem;
    }
    
    .pricing-table .badge-free {
        font-size: 0.56rem;
        padding: 0.24rem 0.48rem;
    }
}

@media (max-width: 375px) {
    .pricing-table-container {
        margin: 0.64rem 0;
    }
    
    .pricing-table tbody tr {
        margin-bottom: 0.64rem;
        border-radius: 6px;
    }
    
    .pricing-table tbody td {
        padding: 0.56rem 0.64rem;
        font-size: 0.64rem;
    }
    
    .pricing-table tbody td:first-child {
        padding: 0.96rem 0.64rem;
        font-size: 0.72rem;
        line-height: 1.4;
    }
    
    .pricing-table tbody td:first-child strong {
        margin-bottom: 0.16rem;
    }
    
    .pricing-table tbody td:first-child .cpu-info {
        font-size: 0.56rem;
        margin-top: 0.28rem;
    }
    
    .pricing-table tbody td:nth-child(2)::before,
    .pricing-table tbody td:nth-child(3)::before,
    .pricing-table tbody td:nth-child(4)::before,
    .pricing-table tbody td:nth-child(5)::before,
    .pricing-table tbody td:nth-child(6)::before {
        font-size: 0.6rem;
        display: block;
        margin-bottom: 0.28rem;
    }
    
    .pricing-table .price-cell {
        padding: 0.8rem 0.64rem !important;
        font-size: 0.88rem !important;
        white-space: nowrap !important;
    }
    
    .pricing-table .action-cell {
        padding: 0.8rem 0.64rem !important;
    }
    
    .pricing-table .btn-register,
    .pricing-table .btn-contact {
        padding: 0.64rem 0.8rem;
        font-size: 0.64rem;
    }
    
    .pricing-table .spec-value i {
        font-size: 0.72rem;
    }
    
    .pricing-table .badge-free {
        font-size: 0.52rem;
        padding: 0.22rem 0.44rem;
    }
}

/* Adjust spacing for mobile devices */
@media (max-width: 768px) {
    .features-section {
        padding: 3rem 0; /* Reduced from 6rem for mobile */
    }

    .global-network-section {
        padding: 4rem 0; /* Reduced from 8rem for mobile */
    }

    .locations-section {
        padding: 5rem 0; /* Reduced from 10rem for mobile */
    }

    .guarantee-2025 {
        padding: 3rem 0; /* Reduced from 5rem for mobile */
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 2rem; /* Reduced from 2.5rem for mobile */
        align-items: stretch;
        justify-items: center;
        max-width: 400px;
        margin: 2rem auto; /* Adjusted for mobile */
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem; /* Reduced from 3rem for mobile */
        margin-top: 2rem;
    }

    .locations-grid {
        grid-template-columns: 1fr;
        gap: 2rem; /* Reduced from 4rem for mobile */
        margin: 2rem 0;
    }
}

/* ===== VPS PRICING TABLE STYLES ===== */
.vps-pricing-table-container {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.vps-pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: linear-gradient(135deg, rgba(30, 30, 35, 0.95) 0%, rgba(20, 20, 25, 0.98) 100%);
    overflow: hidden;
    border-radius: 16px;
}

.vps-pricing-table thead {
    background: linear-gradient(135deg, #2d8659 0%, #238a5c 50%, #2d8659 100%);
    box-shadow: 0 4px 15px rgba(0, 104, 255, 0.3);
}

.vps-pricing-table thead th {
    background: #ff9500;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    padding: 0.8rem 0.5rem;
    text-align: center;
    border: none;
    white-space: nowrap;
}

.vps-pricing-table thead th:first-child {
    text-align: left;
}

.vps-pricing-table thead th:last-child {
    text-align: center;
}

.vps-pricing-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.vps-pricing-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.vps-pricing-table tbody td {
    padding: 1rem 0.8rem;
    color: var(--text-primary);
    font-size: 0.9rem;
    vertical-align: middle;
    white-space: nowrap;
}

.vps-pricing-table tbody td:first-child {
    font-weight: 600;
    color: #ffffff;
}

.vps-pricing-table tbody td:first-child .cpu-info {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: block;
    margin-top: 0.3rem;
    font-weight: 400;
}

.vps-pricing-table .spec-value {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.vps-pricing-table .spec-value i {
    color: #ffffff;
    font-size: 1.1rem;
}

.vps-pricing-table .spec-value .icon-ram {
    color: #ffffff;
}

.vps-pricing-table .spec-value .icon-disk {
    color: #ffffff;
}

.vps-pricing-table .spec-value .icon-os {
    color: #ffffff;
}

.vps-pricing-table .spec-value .icon-bandwidth {
    color: #ffffff;
}

.vps-pricing-table .price-cell {
    font-weight: 700;
    font-size: 1.05rem;
    color: #ffffff;
    text-align: right;
    white-space: nowrap;
}

.vps-pricing-table .action-cell {
    text-align: center;
}

.vps-pricing-table .btn-register {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: #ff9500;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 104, 255, 0.3);
}

.vps-pricing-table .btn-register:hover {
    background: linear-gradient(135deg, #0068FF 0%, #0056CC 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 104, 255, 0.5);
}

/* ===== SERVER PRICING TABLE STYLES ===== */
.server-pricing-table-container {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.server-pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: linear-gradient(135deg, rgba(30, 30, 35, 0.95) 0%, rgba(20, 20, 25, 0.98) 100%);
    overflow: hidden;
    border-radius: 16px;
}

.server-pricing-table thead {
    background: linear-gradient(135deg, #2d8659 0%, #238a5c 50%, #2d8659 100%);
    box-shadow: 0 4px 15px rgba(0, 104, 255, 0.3);
}

.server-pricing-table thead th {
    background: #ff9500;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    padding: 0.8rem 0.5rem;
    text-align: center;
    border: none;
    white-space: nowrap;
}

.server-pricing-table thead th:first-child {
    text-align: left;
}

.server-pricing-table thead th:last-child {
    text-align: center;
}

.server-pricing-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.server-pricing-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.server-pricing-table tbody td {
    padding: 1rem 0.8rem;
    color: var(--text-primary);
    font-size: 0.9rem;
    vertical-align: middle;
    white-space: nowrap;
}

.server-pricing-table tbody td:first-child {
    font-weight: 600;
    color: #ffffff;
}

.server-pricing-table tbody td:first-child .cpu-info {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: block;
    margin-top: 0.3rem;
    font-weight: 400;
}

.server-pricing-table .spec-value {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.server-pricing-table .spec-value i {
    color: #ffffff;
    font-size: 1.1rem;
}

.server-pricing-table .spec-value .icon-ram {
    color: #ffffff;
}

.server-pricing-table .spec-value .icon-disk {
    color: #ffffff;
}

.server-pricing-table .spec-value .icon-os {
    color: #ffffff;
}

.server-pricing-table .spec-value .icon-bandwidth {
    color: #ffffff;
}

.server-pricing-table .price-cell {
    font-weight: 700;
    font-size: 1.05rem;
    color: #ffffff;
    text-align: right;
    white-space: nowrap;
}

.server-pricing-table .action-cell {
    text-align: center;
}

.server-pricing-table .btn-register {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: #ff9500;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 104, 255, 0.3);
}

.server-pricing-table .btn-register:hover {
    background: linear-gradient(135deg, #0068FF 0%, #0056CC 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 104, 255, 0.5);
}

.server-pricing-table .btn-contact {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, #ff9500 0%, #ff8000 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 149, 0, 0.3);
}

.server-pricing-table .btn-contact:hover {
    background: linear-gradient(135deg, #ff8000 0%, #ff6600 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 149, 0, 0.5);
}

/* ===== VPS PRICING TABLE RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
    .vps-pricing-table thead th,
    .vps-pricing-table tbody td {
        padding: 1rem 0.8rem;
        font-size: 0.88rem;
        white-space: nowrap;
    }
    
    .vps-pricing-table .btn-register {
        padding: 0.65rem 1.5rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 992px) {
    .vps-pricing-table-container {
        overflow-x: visible;
    }
    
    .vps-pricing-table {
        width: 100%;
        min-width: auto;
    }
    
    .vps-pricing-table thead th,
    .vps-pricing-table tbody td {
        padding: 0.8rem 0.5rem;
        font-size: 0.8rem;
        white-space: nowrap;
    }
}

@media (max-width: 768px) {
    /* Card-based layout for mobile */
    .vps-pricing-table-container {
        overflow-x: visible;
        margin: 1.2rem 0;
    }
    
    .vps-pricing-table {
        display: block;
        min-width: 100%;
        width: 100%;
    }
    
    .vps-pricing-table thead {
        display: none;
    }
    
    .vps-pricing-table tbody {
        display: block;
    }
    
    .vps-pricing-table tbody tr {
        display: block;
        margin-bottom: 1.2rem;
        border-radius: 10px;
        background: linear-gradient(135deg, rgba(30, 30, 35, 0.95) 0%, rgba(20, 20, 25, 0.98) 100%);
        border: 1px solid rgba(255, 149, 0, 0.2);
        overflow: hidden;
        transition: all 0.3s ease;
    }
    
    .vps-pricing-table tbody tr:hover {
        transform: translateY(-4px);
        border-color: rgba(255, 149, 0, 0.4);
    }
    
    .vps-pricing-table tbody td {
        display: block;
        text-align: center;
        padding: 0.8rem 0.96rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        position: relative;
        color: #ffffff;
        font-weight: 500;
    }
    
    .vps-pricing-table .spec-value {
        justify-content: center;
    }
    
    .vps-pricing-table tbody td:nth-child(even) {
        background: rgba(255, 255, 255, 0.02);
    }
    
    .vps-pricing-table tbody td:last-child {
        border-bottom: none;
    }
    
    /* Package name - First cell */
    .vps-pricing-table tbody td:first-child {
        background: linear-gradient(135deg, #ff9500 0%, #ff8000 100%);
        padding: 1.2rem 0.96rem;
        text-align: center;
        font-size: 0.88rem;
        color: #ffffff;
        font-weight: 700;
        letter-spacing: 0.4px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.4;
    }
    
    .vps-pricing-table tbody td:first-child strong {
        display: block;
        margin-bottom: 0.24rem;
    }
    
    .vps-pricing-table tbody td:first-child .cpu-info {
        font-size: 0.68rem;
        color: rgba(255, 255, 255, 0.9);
        margin-top: 0.4rem;
        font-weight: 500;
        display: block;
    }
    
    /* Add labels to each cell using ::before - Correct order matching HTML table */
    .vps-pricing-table tbody td:nth-child(1)::before {
        content: "GÓI DỊCH VỤ";
        font-weight: 700;
        color: rgba(255, 255, 255, 0.5);
        display: block;
        margin-bottom: 0.4rem;
        font-size: 0.6rem;
        text-transform: uppercase;
        letter-spacing: 0.8px;
    }
    
    .vps-pricing-table tbody td:nth-child(2)::before {
        content: "RAM";
        font-weight: 700;
        color: rgba(255, 255, 255, 0.5);
        display: block;
        margin-bottom: 0.4rem;
        font-size: 0.6rem;
        text-transform: uppercase;
        letter-spacing: 0.8px;
    }
    
    .vps-pricing-table tbody td:nth-child(3)::before {
        content: "Ổ CỨNG";
        font-weight: 700;
        color: rgba(255, 255, 255, 0.5);
        display: block;
        margin-bottom: 0.4rem;
        font-size: 0.6rem;
        text-transform: uppercase;
        letter-spacing: 0.8px;
    }
    
    .vps-pricing-table tbody td:nth-child(4)::before {
        content: "IP RIÊNG";
        font-weight: 700;
        color: rgba(255, 255, 255, 0.5);
        display: block;
        margin-bottom: 0.4rem;
        font-size: 0.6rem;
        text-transform: uppercase;
        letter-spacing: 0.8px;
    }
    
    .vps-pricing-table tbody td:nth-child(5)::before {
        content: "HỆ ĐIỀU HÀNH";
        font-weight: 700;
        color: rgba(255, 255, 255, 0.5);
        display: block;
        margin-bottom: 0.4rem;
        font-size: 0.6rem;
        text-transform: uppercase;
        letter-spacing: 0.8px;
    }
    
    .vps-pricing-table tbody td:nth-child(6)::before {
        content: "BĂNG THÔNG";
        font-weight: 700;
        color: rgba(255, 255, 255, 0.5);
        display: block;
        margin-bottom: 0.4rem;
        font-size: 0.6rem;
        text-transform: uppercase;
        letter-spacing: 0.8px;
    }
    
    .vps-pricing-table tbody td:nth-child(7)::before {
        content: "GIÁ/THÁNG";
        font-weight: 700;
        color: rgba(255, 255, 255, 0.5);
        display: block;
        margin-bottom: 0.4rem;
        font-size: 0.6rem;
        text-transform: uppercase;
        letter-spacing: 0.8px;
    }
    
    .vps-pricing-table tbody td:nth-child(8)::before {
        content: "HÀNH ĐỘNG";
        font-weight: 700;
        color: rgba(255, 255, 255, 0.5);
        display: block;
        margin-bottom: 0.4rem;
        font-size: 0.6rem;
        text-transform: uppercase;
        letter-spacing: 0.8px;
    }
    
    .vps-pricing-table .btn-register {
        width: 100%;
        padding: 0.8rem 1.2rem;
        font-size: 0.85rem;
        margin-top: 0.5rem;
    }
    
    /* Fix styling for correct columns */
    .vps-pricing-table tbody td:nth-child(6) {
        text-align: center;
    }
    
    .vps-pricing-table tbody td:nth-child(7) {
        text-align: center;
        font-weight: 700;
        font-size: 1.1rem;
        color: #ff9500;
    }
    
    .vps-pricing-table tbody td:nth-child(8) {
        text-align: center;
    }
}

/* ===== ADDON CONFIGURATION STYLES ===== */
.addon-configuration {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(15, 15, 20, 0.95) 0%, rgba(25, 25, 30, 0.98) 100%);
}

.addon-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.addon-card {
    background: linear-gradient(135deg, rgba(30, 30, 35, 0.95) 0%, rgba(20, 20, 25, 0.98) 100%);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 149, 0, 0.2);
    text-align: center;
}

.addon-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff9500 0%, #ff8000 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.addon-icon i {
    font-size: 1.25rem;
    color: #ffffff;
}

.addon-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

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

.addon-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.addon-spec {
    font-weight: 600;
    color: #ffffff;
    font-size: 0.85rem;
}

.addon-price {
    font-weight: 700;
    color: #ff9500;
    font-size: 0.85rem;
}

.addon-note {
    margin-top: 2rem;
    text-align: center;
    padding: 1rem;
    background: rgba(255, 149, 0, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 149, 0, 0.2);
}

.addon-note p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.addon-note i {
    color: #ff9500;
    font-size: 0.9rem;
}

/* Responsive Addon Styles */
@media (max-width: 992px) {
    .addon-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .addon-configuration {
        padding: 3rem 0;
    }
    
    .addon-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .addon-card {
        padding: 1.2rem;
    }
    
    .addon-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 0.8rem;
    }
    
    .addon-icon i {
        font-size: 1.1rem;
    }
    
    .addon-title {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .addon-option {
        padding: 0.4rem 0.6rem;
    }
    
    .addon-spec,
    .addon-price {
        font-size: 0.8rem;
    }
}
@media (max-width: 1200px) {
    .server-pricing-table thead th,
    .server-pricing-table tbody td {
        padding: 1rem 0.8rem;
        font-size: 0.88rem;
        white-space: nowrap;
    }
    
    .server-pricing-table .btn-register,
    .server-pricing-table .btn-contact {
        padding: 0.65rem 1.5rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 992px) {
    .server-pricing-table-container {
        overflow-x: visible;
    }
    
    .server-pricing-table {
        width: 100%;
        min-width: auto;
    }
    
    .server-pricing-table thead th,
    .server-pricing-table tbody td {
        padding: 0.8rem 0.5rem;
        font-size: 0.8rem;
        white-space: nowrap;
    }
}

@media (max-width: 768px) {
    /* Card-based layout for mobile */
    .server-pricing-table-container {
        overflow-x: visible;
        margin: 1.2rem 0;
    }
    
    .server-pricing-table {
        display: block;
        min-width: 100%;
        width: 100%;
    }
    
    .server-pricing-table thead {
        display: none;
    }
    
    .server-pricing-table tbody {
        display: block;
    }
    
    .server-pricing-table tbody tr {
        display: block;
        margin-bottom: 1.2rem;
        border-radius: 10px;
        background: linear-gradient(135deg, rgba(30, 30, 35, 0.95) 0%, rgba(20, 20, 25, 0.98) 100%);
        border: 1px solid rgba(255, 149, 0, 0.2);
        overflow: hidden;
        transition: all 0.3s ease;
    }
    
    .server-pricing-table tbody tr:hover {
        transform: translateY(-4px);
        border-color: rgba(255, 149, 0, 0.4);
    }
    
    .server-pricing-table tbody td {
        display: block;
        text-align: center;
        padding: 0.8rem 0.96rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        position: relative;
        color: #ffffff;
        font-weight: 500;
    }
    
    .server-pricing-table .spec-value {
        justify-content: center;
    }
    
    .server-pricing-table tbody td:nth-child(even) {
        background: rgba(255, 255, 255, 0.02);
    }
    
    .server-pricing-table tbody td:last-child {
        border-bottom: none;
    }
    
    /* Package name - First cell */
    .server-pricing-table tbody td:first-child {
        background: linear-gradient(135deg, #ff9500 0%, #ff8000 100%);
        padding: 1.2rem 0.96rem;
        text-align: center;
        font-size: 0.88rem;
        color: #ffffff;
        font-weight: 700;
        letter-spacing: 0.4px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.4;
    }
    
    .server-pricing-table tbody td:first-child strong {
        display: block;
        margin-bottom: 0.24rem;
    }
    
    .server-pricing-table tbody td:first-child .cpu-info {
        font-size: 0.68rem;
        color: rgba(255, 255, 255, 0.9);
        margin-top: 0.4rem;
        font-weight: 500;
        display: block;
    }
    
    /* Add labels to each cell using ::before - Correct order matching HTML table */
    .server-pricing-table tbody td:nth-child(1)::before {
        content: "MÁY CHỦ";
        font-weight: 700;
        color: rgba(255, 255, 255, 0.5);
        display: block;
        margin-bottom: 0.4rem;
        font-size: 0.6rem;
        text-transform: uppercase;
        letter-spacing: 0.8px;
    }
    
    .server-pricing-table tbody td:nth-child(2)::before {
        content: "CPU";
        font-weight: 700;
        color: rgba(255, 255, 255, 0.5);
        display: block;
        margin-bottom: 0.4rem;
        font-size: 0.6rem;
        text-transform: uppercase;
        letter-spacing: 0.8px;
    }
    
    .server-pricing-table tbody td:nth-child(3)::before {
        content: "RAM";
        font-weight: 700;
        color: rgba(255, 255, 255, 0.5);
        display: block;
        margin-bottom: 0.4rem;
        font-size: 0.6rem;
        text-transform: uppercase;
        letter-spacing: 0.8px;
    }
    
    .server-pricing-table tbody td:nth-child(4)::before {
        content: "Ổ CỨNG";
        font-weight: 700;
        color: rgba(255, 255, 255, 0.5);
        display: block;
        margin-bottom: 0.4rem;
        font-size: 0.6rem;
        text-transform: uppercase;
        letter-spacing: 0.8px;
    }
    
    .server-pricing-table tbody td:nth-child(5)::before {
        content: "BĂNG THÔNG";
        font-weight: 700;
        color: rgba(255, 255, 255, 0.5);
        display: block;
        margin-bottom: 0.4rem;
        font-size: 0.6rem;
        text-transform: uppercase;
        letter-spacing: 0.8px;
    }
    
    .server-pricing-table tbody td:nth-child(6)::before {
        content: "VỊ TRÍ";
        font-weight: 700;
        color: rgba(255, 255, 255, 0.5);
        display: block;
        margin-bottom: 0.4rem;
        font-size: 0.6rem;
        text-transform: uppercase;
        letter-spacing: 0.8px;
    }
    
    .server-pricing-table tbody td:nth-child(7)::before {
        content: "GIÁ/THÁNG";
        font-weight: 700;
        color: rgba(255, 255, 255, 0.5);
        display: block;
        margin-bottom: 0.4rem;
        font-size: 0.6rem;
        text-transform: uppercase;
        letter-spacing: 0.8px;
    }
    
    .server-pricing-table .btn-register,
    .server-pricing-table .btn-contact {
        width: 100%;
        padding: 0.8rem 1.2rem;
        font-size: 0.85rem;
        margin-top: 0.5rem;
    }
    
    /* Fix styling for correct columns */
    .server-pricing-table tbody td:nth-child(5) {
        text-align: center;
    }
    
    .server-pricing-table tbody td:nth-child(7) {
        text-align: center;
        font-weight: 700;
        font-size: 1.1rem;
        color: #ff9500;
    }
}

/* Account Button Styling */
.main-nav-link.account-button {
    background: linear-gradient(135deg, #ff9500, #ff7b00);
    color: white !important;
    padding: 6px 12px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(255, 149, 0, 0.3);
    line-height: 1;
}

.main-nav-link.account-button:hover {
    background: linear-gradient(135deg, #ff7b00, #ff6b00);
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(255, 149, 0, 0.4);
}

.main-nav-link.account-button::after {
    display: none;
}

.main-nav-link.account-button i {
    font-size: 12px;
}