/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0d3ea3;
    --primary-hover: #0a3284;
    --secondary-color: #f5b400;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --bg-color: #ffffff;
    --bg-secondary: #f8fafc;
    --border-color: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --font-fa: 'Vazir', 'IRANSans', 'IRANYekan', Tahoma, Arial, sans-serif;
    --font-en: 'Luam', ui-sans-serif, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

body {
    font-family: 'Vazir', 'Tahoma', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    direction: rtl;
    transition: all 0.3s ease;
}

body.dark-mode {
    --text-color: #f9fafb;
    --text-light: #d1d5db;
    --bg-color: #111827;
    --bg-secondary: #1f2937;
    --border-color: #374151;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-color);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-service, .btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--bg-color);
    color: var(--text-color);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-secondary);
    border-color: var(--primary-color);
}

.btn-service {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    width: 100%;
    justify-content: center;
    margin-top: 0;
    padding: 12px 24px;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.btn-service:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
}

.btn-service:active {
    transform: translateY(0);
}

.btn-contact {
    background: var(--secondary-color);
    color: white;
    width: 100%;
    justify-content: center;
}

.btn-contact:hover {
    background: #d97706;
}

/* Header */
.header {
    background: var(--bg-color);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Topbar */
.topbar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 4px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 2px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    font-size: 24px;
    color: var(--primary-color);
}

.logo h2 {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 800;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 16px;
    border-radius: 6px;
}

.nav-menu a:hover {
    color: var(--primary-color);
    background: var(--bg-secondary);
}

.nav-menu a i {
    font-size: 0.7rem;
    margin-right: 4px;
    transition: transform 0.3s ease;
}

.has-dropdown {
    position: relative;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.has-dropdown:hover > a i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    min-width: 180px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-color);
    font-weight: 500;
    border-radius: 0;
}

.dropdown-menu a:hover {
    background: var(--bg-secondary);
    color: var(--primary-color);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Mobile nav toggle */
.nav-toggle { display: none; background: transparent; border: 0; font-size: 22px; color: var(--text-color); }

.header-actions i {
    color: var(--text-light);
    font-size: 18px;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.header-actions i:hover {
    color: var(--primary-color);
    background: var(--bg-secondary);
}

.login-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.875rem;
    font-family: var(--font-fa);
    letter-spacing: .2px;
    transition: all 0.3s ease;
}

.login-btn:hover {
    background: var(--primary-hover);
}

/* Hero Section */
.hero {
    padding: 80px 0 60px 0;
    background: var(--bg-color);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.hero-text p {
    font-size: 1.125rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-buttons .btn-primary { background: var(--primary-color); color: #fff; }
.hero-buttons .btn-primary:hover { background: var(--primary-hover); }
.hero-buttons .btn-secondary { background: transparent; color: var(--primary-color); border: 2px solid var(--primary-color); }
.hero-buttons .btn-secondary:hover { background: rgba(13,62,163,0.06); }

/* Domain Search */
.domain-search { background: var(--bg-color); padding: 26px 0 36px 0; }
.domain-form { max-width: 920px; margin: 0 auto; font-family: var(--font-fa); }
.input-group { display: grid; grid-template-columns: auto 1fr 1px auto auto; align-items: center; gap: 12px; background: var(--bg-color); border: 1px solid var(--border-color); border-radius: 16px; padding: 12px; box-shadow: var(--shadow); }
.addon.prefix { color: var(--text-light); font-weight: 700; padding: 0 12px; font-family: var(--font-en); letter-spacing: 0.3px; }
.domain-input { border: none; outline: none; font-size: 1.125rem; padding: 10px 4px; color: var(--text-color); font-family: var(--font-en); text-transform: lowercase; font-variant-numeric: tabular-nums; text-align: center; }
.domain-input:focus, .domain-input:not(:placeholder-shown) { text-align: left; }
.divider { width: 1px; height: 32px; background: var(--border-color); }
.tld-select { display: flex; gap: 8px; font-family: var(--font-en); }
.tld-select input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }
.tld-select label { padding: 8px 12px; border: 1px solid var(--border-color); border-radius: 999px; cursor: pointer; color: var(--text-light); font-weight: 600; background: var(--bg-secondary); }
.tld-select input[type="radio"]:checked + label { border-color: var(--primary-color); color: var(--primary-color); background: rgba(13,62,163,0.06); }
body.dark-mode .tld-select input[type="radio"]:checked + label { background: rgba(96, 165, 250, 0.15); }
.btn-search { background: var(--primary-color); color: #fff; border: none; border-radius: 12px; padding: 10px 18px; font-weight: 800; cursor: pointer; font-family: var(--font-fa); letter-spacing: .2px; }
.btn-search:hover { background: var(--primary-hover); }
.helper { margin-top: 10px; text-align: center; color: var(--text-light); }

/* Placeholder LTR alignment */
.domain-input::placeholder { direction: rtl; font-family: var(--font-fa); text-transform: none; text-align: center; font-size: 1rem; }

/* Accessibility */
.visually-hidden { position: absolute !important; height: 1px; width: 1px; overflow: hidden; clip: rect(1px, 1px, 1px, 1px); white-space: nowrap; }

@media (max-width: 1024px) {
    .input-group { grid-template-columns: auto 1fr 1px auto; }
    .btn-search { grid-column: -2 / -1; }
}

@media (max-width: 768px) {
    .input-group { grid-template-columns: 1fr; gap: 10px; }
    .divider, .addon.prefix { display: none; }
    .tld-select { flex-wrap: wrap; }
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 320px;
    overflow: visible;
}

.server-stack {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
}

.rack-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow: visible;
    position: relative;
}

.rack-unit {
    width: 240px;
    height: 60px;
    background: linear-gradient(180deg, #1a3d8f 0%, var(--primary-color) 50%, var(--primary-hover) 100%);
    border-radius: 14px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    box-shadow: 
        0 8px 24px rgba(13, 62, 163, 0.2),
        0 16px 48px rgba(13, 62, 163, 0.12),
        0 32px 80px rgba(13, 62, 163, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -2px 0 rgba(0, 0, 0, 0.1);
    overflow: visible;
    animation: rackFloat 3s ease-in-out infinite;
}

.rack-unit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(13, 62, 163, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

.rack-2 {
    animation-delay: 0.6s;
    background: linear-gradient(180deg, #ff9900 0%, var(--secondary-color) 50%, #ff8800 100%);
    box-shadow: 
        0 8px 24px rgba(245, 180, 0, 0.25),
        0 16px 48px rgba(245, 180, 0, 0.15),
        0 32px 80px rgba(245, 180, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -2px 0 rgba(0, 0, 0, 0.1);
}

.rack-2::before {
    background: radial-gradient(ellipse at center, rgba(245, 180, 0, 0.18) 0%, transparent 70%);
}

.rack-3 {
    animation-delay: 1.2s;
}

.rack-panel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 28%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 16px 16px 0 0;
}

.rack-panel::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
}

.rack-lights {
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    display: flex;
    gap: 8px;
    align-items: center;
}

.led {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    box-shadow: 0 0 8px currentColor;
    animation: ledBlink 2s ease-in-out infinite;
}

.led-green {
    background: #22c55e;
    color: #22c55e;
}

.led-blue {
    background: var(--primary-color);
    color: var(--primary-color);
}

.led-yellow {
    background: var(--secondary-color);
    color: var(--secondary-color);
}

.led:nth-child(1) { animation-delay: 0s; }
.led:nth-child(2) { animation-delay: 0.3s; }
.led:nth-child(3) { animation-delay: 0.6s; }

.cloud-icon {
    font-size: 120px;
    color: var(--primary-color);
    opacity: 0.15;
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    animation: heroCloudFloat 4s ease-in-out infinite;
}

@keyframes rackFloat {
    0%, 100% { 
        transform: translateY(0) scale(1);
    }
    50% { 
        transform: translateY(-6px) scale(1.02);
    }
}

@keyframes ledBlink {
    0%, 100% { 
        opacity: 1;
        box-shadow: 0 0 8px currentColor, 0 0 12px currentColor;
    }
    50% { 
        opacity: 0.4;
        box-shadow: 0 0 4px currentColor;
    }
}

@keyframes heroCloudFloat {
    0%, 100% { 
        transform: translateY(-50%) translateX(0);
        opacity: 0.15;
    }
    50% { 
        transform: translateY(-55%) translateX(10px);
        opacity: 0.2;
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.section-header p {
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

body.dark-mode .services {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
}

/* Decorative Background Elements */
.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 15% 20%, rgba(13, 62, 163, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 85% 80%, rgba(245, 180, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.services::after {
    content: '';
    position: absolute;
    top: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(ellipse at center, rgba(13, 62, 163, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: backgroundPulse 10s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.6;
    }
}

/* Background Decorative Icons */
.services-bg-decor {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.decor-cloud,
.decor-server,
.decor-network,
.decor-database,
.decor-globe,
.decor-shield,
.decor-code,
.decor-rocket {
    position: absolute;
    font-size: 200px;
    opacity: 0.04;
    color: var(--primary-color);
    animation: decorFloat 15s ease-in-out infinite;
}

.decor-cloud::before {
    content: '☁';
}

.decor-cloud {
    top: 1%;
    left: 50%;
    animation-delay: 0s;
}

.decor-server::before {
    content: '🖥';
}

.decor-server {
    top: 55%;
    left: 0%;
    animation-delay: 3s;
}

.decor-network::before {
    content: '🔗';
}

.decor-network {
    bottom: 20%;
    right: 1%;
    animation-delay: 4s;
    font-size: 160px !important;
}

.decor-database::before {
    content: '🗄';
}

.decor-database {
    top: 2%;
    right: 5%;
    animation-delay: 9s;
    font-size: 140px !important;
}

.decor-globe::before {
    content: '🌐';
}

.decor-globe {
    top: 75%;
    right: 6%;
    animation-delay: 2s;
    font-size: 180px;
}

.decor-shield::before {
    content: '🛡';
}

.decor-shield {
    bottom: 71%;
    left: 25%;
    animation-delay: 12s;
    font-size: 150px;
}

.decor-code::before {
    content: '</>';
    font-family: 'Courier New', monospace;
    font-size: 120px;
    font-weight: bold;
}

.decor-code {
    top: 80%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 7s;
    font-size: 100px;
}

.decor-rocket::before {
    content: '🚀';
}

.decor-rocket {
    bottom: 62%;
    left: 1%;
    animation-delay: 4s;
    font-size: 140px;
}

@keyframes decorFloat {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0.04;
    }
    50% {
        transform: translateY(-20px) translateX(15px);
        opacity: 0.08;
    }
}

.services .container {
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .other-services-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: var(--bg-color);
    border-radius: 24px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

body.dark-mode .service-card {
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.service-card.featured {
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.12), 0 0 0 1px rgba(59, 130, 246, 0.2);
}

.service-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, #3b82f6 0%, #10b981 50%, #3b82f6 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.service-card.featured::before {
    background: linear-gradient(135deg, #f59e0b 0%, #3b82f6 50%, #10b981 100%);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(59, 130, 246, 0.2);
    border-color: transparent;
}

.service-card.featured:hover {
    box-shadow: 0 20px 60px rgba(245, 158, 11, 0.2), 0 0 0 1px rgba(245, 158, 11, 0.3);
}

.service-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #ff9800 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(245, 180, 0, 0.3);
    animation: badgePulse 2s ease-in-out infinite;
}

.service-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 20px;
    color: white;
    position: relative;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    z-index: 1;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s;
}

.service-card.featured .service-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
}

.service-card:nth-child(2) .service-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.25);
}

.service-card:nth-child(3) .service-icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.25);
}

.service-card:nth-child(4) .service-icon {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.25);
}

.service-card:hover .service-icon {
    transform: scale(1.12) rotate(5deg);
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.4);
}

.service-card.featured:hover .service-icon {
    box-shadow: 0 12px 32px rgba(245, 158, 11, 0.45);
}

.service-card:nth-child(2):hover .service-icon {
    box-shadow: 0 12px 32px rgba(16, 185, 129, 0.4);
}

.service-card:nth-child(3):hover .service-icon {
    box-shadow: 0 12px 32px rgba(139, 92, 246, 0.4);
}

.service-card:nth-child(4):hover .service-icon {
    box-shadow: 0 12px 32px rgba(6, 182, 212, 0.4);
}

.icon-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    background: var(--primary-color);
    opacity: 0;
    animation: iconPulse 2s ease-in-out infinite;
}

.service-icon i {
    font-size: 32px;
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon::before {
    top: 150%;
    left: 150%;
}

.service-card h3 {
    margin-bottom: 8px;
    font-size: 1.1875rem;
    font-weight: 700;
    color: #0f172a;
    transition: color 0.3s ease;
    z-index: 1;
    position: relative;
}

body.dark-mode .service-card h3 {
    color: #f1f5f9;
}

.service-card:hover h3 {
    color: #3b82f6;
}

.service-card.featured:hover h3 {
    color: #f59e0b;
}

.service-card p {
    margin-bottom: 16px;
    font-size: 0.9375rem;
    color: #475569;
    line-height: 1.7;
    z-index: 1;
    position: relative;
}

body.dark-mode .service-card p {
    color: #cbd5e1;
}

.service-features {
    margin-bottom: 12px;
    text-align: right;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
    font-size: 0.8rem;
    color: var(--text-light);
}

.feature-item i {
    color: #22c55e;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.feature-item span {
    flex: 1;
}

.price-wrapper {
    margin-bottom: 20px;
    padding: 16px 12px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(16, 185, 129, 0.03) 100%);
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    margin-top: auto;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.05);
    transition: all 0.3s ease;
    z-index: 1;
    position: relative;
}

body.dark-mode .price-wrapper {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(16, 185, 129, 0.05) 100%);
    border-color: rgba(59, 130, 246, 0.15);
}

.price-wrapper:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(16, 185, 129, 0.05) 100%);
    border-color: rgba(59, 130, 246, 0.2);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

body.dark-mode .price-wrapper:hover {
    background: rgba(13, 62, 163, 0.1);
    border-color: rgba(255, 255, 255, 0.12);
}

.price-period-only {
    text-align: center;
    font-size: 0.6rem;
    color: var(--text-light);
    margin-bottom: 6px;
    font-weight: 700;
    letter-spacing: 0.5px;
    opacity: 0.75;
}

.price-label {
    display: none;
}

.service-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 3px;
    margin-bottom: 0;
}

.price-amount {
    font-size: 1.4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: -0.5px;
}

.price-currency {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.8;
}

.price-period {
    display: flex;
    gap: 6px;
    justify-content: center;
    background: var(--bg-secondary);
    padding: 4px;
    border-radius: 8px;
}

.period-btn {
    flex: 1;
    padding: 6px 12px;
    border: none;
    border-radius: 6px;
    background: transparent;
    color: var(--text-light);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-fa);
}

.period-btn.active {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 2px 8px rgba(13, 62, 163, 0.2);
}

.period-btn:hover:not(.active) {
    background: rgba(13, 62, 163, 0.08);
    color: var(--primary-color);
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0;
    }
    50% {
        transform: scale(1.4);
        opacity: 0.3;
    }
}

/* Progress Banner Section */
.progress-banner {
    padding: 18px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

body.dark-mode .progress-banner {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
}

.progress-banner-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
    overflow: visible;
}

.progress-banner-text {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.progress-banner-text h2 {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2563eb 50%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    line-height: 1.5;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(13, 62, 163, 0.15);
    animation: textSlideIn 1s ease-out, gradientShift 3s ease-in-out infinite;
    background-size: 200% auto;
    position: relative;
}

.text-decoration {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 50%, transparent 100%);
    border-radius: 3px;
    flex-shrink: 0;
    animation: lineExpand 1.5s ease-out;
    box-shadow: 0 2px 8px rgba(13, 62, 163, 0.3);
    position: relative;
}

.text-decoration::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.5) 50%, transparent 100%);
    border-radius: 3px;
    animation: shimmer 2s ease-in-out infinite;
}

.person-animation-advanced {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    position: relative;
    z-index: 1;
    overflow: visible;
}

.lottie-container {
    width: 120px;
    height: 120px;
    position: relative;
    z-index: 2;
    transform: scale(2.2);
    transform-origin: center;
}

.emoji-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.emoji-container.fallback {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    display: none;
}

.emoji-wrapper {
    position: relative;
    z-index: 2;
}

.tech-emoji {
    font-size: 80px;
    filter: drop-shadow(0 8px 16px rgba(13, 62, 163, 0.3));
}

@keyframes textSlideIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes lineExpand {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: 60px;
        opacity: 1;
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Features Section */
.features {
    padding: 90px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e8f2fe 100%);
    position: relative;
    overflow: hidden;
}

body.dark-mode .features {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url('https://ishost.ir/1/bg1.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    z-index: 0;
}

.features .container {
    position: relative;
    z-index: 1;
}

.features .section-header h2 {
    color: var(--text-color);
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.features .section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
}

body.dark-mode .feature-card {
    background: rgba(31, 41, 55, 0.7);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.85);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(13, 62, 163, 0.15);
    border-color: rgba(255, 255, 255, 0.6);
}

body.dark-mode .feature-card:hover {
    background: rgba(31, 41, 55, 0.85);
}

.feature-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    border-radius: 16px;
    color: white;
    font-size: 30px;
    font-weight: 900;
    box-shadow: 0 8px 24px rgba(13, 62, 163, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.feature-card:nth-child(1) .feature-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.2);
}

.feature-card:nth-child(2) .feature-icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.2);
}

.feature-card:nth-child(3) .feature-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.2);
}

.feature-card:nth-child(4) .feature-icon {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    box-shadow: 0 8px 24px rgba(239, 68, 68, 0.2);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(-5deg);
}

.feature-icon i {
    font-size: 30px;
}

.feature-card h3 {
    color: var(--text-color);
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Other Services Section */
.other-services {
    padding: 50px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

body.dark-mode .other-services {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
}

.other-services .container {
    position: relative;
    z-index: 1;
}

.other-services-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.other-services-column {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.other-service-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 18px;
    border-bottom: 1px solid rgba(229, 231, 235, 0.5);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
    cursor: pointer;
}

.other-services-column:first-child .other-service-item:nth-child(1) { animation-delay: 0.1s; }
.other-services-column:first-child .other-service-item:nth-child(2) { animation-delay: 0.2s; }
.other-services-column:first-child .other-service-item:nth-child(3) { animation-delay: 0.3s; }
.other-services-column:last-child .other-service-item:nth-child(1) { animation-delay: 0.4s; }
.other-services-column:last-child .other-service-item:nth-child(2) { animation-delay: 0.5s; }
.other-services-column:last-child .other-service-item:nth-child(3) { animation-delay: 0.6s; }

.other-service-item:last-child {
    border-bottom: none;
}

.other-service-item::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 4px 0 0 4px;
    opacity: 0.85;
    box-shadow: -2px 0 8px rgba(13, 62, 163, 0.2);
}

.other-service-item::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2.5px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2.5px;
    box-shadow: 0 0 12px rgba(13, 62, 163, 0.4);
}

.other-service-item:hover {
    padding-right: 15px;
    padding-left: 22px;
    background: linear-gradient(90deg, rgba(13, 62, 163, 0.05) 0%, rgba(245, 180, 0, 0.02) 100%);
    border-bottom-color: rgba(13, 62, 163, 0.15);
    box-shadow: 
        -2px 0 18px rgba(13, 62, 163, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.04);
    transform: translateX(-2px);
}

body.dark-mode .other-service-item:hover {
    background: linear-gradient(90deg, rgba(13, 62, 163, 0.08) 0%, rgba(245, 180, 0, 0.03) 100%);
}

.other-service-item:hover::before {
    width: 4px;
}

.other-service-item:hover::after {
    width: 38px;
}

.other-service-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    border-radius: 12px;
    color: white;
    font-size: 20px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(13, 62, 163, 0.15);
}

.other-service-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
}

.other-service-item:hover .other-service-icon::before {
    top: 150%;
    left: 150%;
}

.other-services-column:first-child .other-service-item:nth-child(1) .other-service-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 3px 10px rgba(16, 185, 129, 0.2);
}

.other-services-column:first-child .other-service-item:nth-child(2) .other-service-icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    box-shadow: 0 3px 10px rgba(139, 92, 246, 0.2);
}

.other-services-column:first-child .other-service-item:nth-child(3) .other-service-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 3px 10px rgba(245, 158, 11, 0.2);
}

.other-services-column:last-child .other-service-item:nth-child(1) .other-service-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    box-shadow: 0 3px 10px rgba(59, 130, 246, 0.2);
}

.other-services-column:last-child .other-service-item:nth-child(2) .other-service-icon {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    box-shadow: 0 3px 10px rgba(6, 182, 212, 0.2);
}

.other-services-column:last-child .other-service-item:nth-child(3) .other-service-icon {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
    box-shadow: 0 3px 10px rgba(236, 72, 153, 0.2);
}

.other-service-item:hover .other-service-icon {
    transform: scale(1.1) rotate(-2deg);
    box-shadow: 0 5px 20px rgba(13, 62, 163, 0.3);
}

.service-arrow {
    opacity: 0;
    transform: translateX(5px);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--primary-color);
    font-size: 16px;
    margin-right: auto;
    position: relative;
}

.service-arrow::before {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background: var(--primary-color);
    opacity: 0;
    transition: all 0.3s ease;
}

.other-service-item:hover .service-arrow {
    opacity: 1;
    transform: translateX(0);
}

.other-service-item:hover .service-arrow::before {
    opacity: 0.3;
    right: -12px;
}

.other-service-content {
    flex: 1;
    position: relative;
    text-align: right;
}

.other-service-content h3 {
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 6px;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: -0.2px;
}

.other-service-item:hover .other-service-content h3 {
    color: var(--primary-color);
}

.other-service-content p {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0;
    transition: color 0.3s ease;
}

.other-service-item:hover .other-service-content p {
    color: var(--text-color);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Refined Hover Effects */
.other-service-item:active {
    transform: translateX(-2px) scale(0.99);
}

.other-service-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.other-service-item:hover .other-service-icon::before {
    width: 100%;
    height: 100%;
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-color) 0%, var(--bg-secondary) 100%);
    position: relative;
}

body.dark-mode .blog-section {
    background: linear-gradient(180deg, #111827 0%, #1f2937 100%);
}

.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 56px;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
}

.blog-header-content {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.blog-header-content h2 {
    font-size: 2.125rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.blog-header-content .title-highlight {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.blog-header-content .title-highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 2px;
    opacity: 0.3;
}

.blog-header-content p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.75;
    max-width: 600px;
}

.blog-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    white-space: nowrap;
}

.blog-view-all:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    gap: 14px;
}

.blog-view-all i {
    transition: transform 0.3s ease;
}

.blog-view-all:hover i {
    transform: translateX(4px);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1240px;
    margin: 0 auto;
}

.blog-card {
    background: var(--bg-color);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
    position: relative;
    cursor: pointer;
}

body.dark-mode .blog-card {
    background: #1e293b;
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.blog-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, #3b82f6 0%, #10b981 50%, #3b82f6 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.blog-card:hover::before {
    opacity: 1;
}

.blog-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(59, 130, 246, 0.2);
    border-color: transparent;
}

.blog-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 220px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.blog-image-real {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover .blog-image-real {
    transform: scale(1.15);
}

.blog-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.blog-card:hover .blog-image-overlay {
    opacity: 1;
}

.blog-content {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: var(--bg-color);
}

body.dark-mode .blog-content {
    background: #1e293b;
}

.blog-meta {
    margin-bottom: 14px;
}

.blog-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    color: #64748b;
    font-weight: 500;
}

.blog-date i {
    font-size: 0.75rem;
}

.blog-content h3 {
    font-size: 1.1875rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 12px;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-content h3 {
    color: #3b82f6;
}

.blog-content p {
    font-size: 0.9375rem;
    color: #475569;
    line-height: 1.75;
    margin-bottom: 24px;
    flex: 1;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
    margin-top: auto;
}

.blog-stats {
    display: flex;
    gap: 16px;
    font-size: 0.8125rem;
    color: #64748b;
}

.blog-stats span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-stats i {
    font-size: 0.75rem;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #3b82f6;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-link:hover {
    color: #2563eb;
    gap: 12px;
}

.blog-link i {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.blog-link:hover i {
    transform: translateX(-4px);
}

.blog-category {
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-guide {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(239, 246, 255, 0.95) 100%);
    color: #2563eb;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.category-security {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 253, 244, 0.95) 100%);
    color: #059669;
    border: 1px solid rgba(5, 150, 105, 0.2);
}

.category-optimization {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(254, 243, 199, 0.95) 100%);
    color: #d97706;
    border: 1px solid rgba(217, 119, 6, 0.2);
}

/* Global Services Section */
.global-services {
    padding: 0;
    background: linear-gradient(180deg, var(--bg-color) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

body.dark-mode .global-services {
    background: linear-gradient(180deg, #111827 0%, #1f2937 100%);
}

.global-services-header {
    padding: 48px 24px 32px;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-color) 0%, var(--bg-secondary) 50%, var(--bg-color) 100%);
    position: relative;
    overflow: hidden;
}

body.dark-mode .global-services-header {
    background: linear-gradient(180deg, #111827 0%, #1f2937 50%, #111827 100%);
}

/* Background pattern */
.global-services-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Top decorative line */
.global-services-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #3b82f6 50%, transparent 100%);
    opacity: 0.4;
}

.global-services-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
    line-height: 1.5;
    position: relative;
    z-index: 1;
    letter-spacing: -0.5px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.title-highlight {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.title-highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 2px;
    opacity: 0.3;
}

.global-services-subtitle {
    font-size: 0.9375rem;
    color: #475569;
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto 24px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
    letter-spacing: 0.05px;
}

/* Section Divider - خط تزئینی بین section ها */
.section-divider {
    position: relative;
    width: 120px;
    height: 4px;
    margin: 32px auto;
    background: linear-gradient(90deg, transparent 0%, #3b82f6 20%, #10b981 50%, #3b82f6 80%, transparent 100%);
    border-radius: 2px;
    opacity: 0.6;
    z-index: 1;
}

.section-divider::before,
.section-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 6px;
    height: 6px;
    background: #3b82f6;
    border-radius: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
}

.section-divider::before {
    left: -12px;
}

.section-divider::after {
    right: -12px;
}

/* برای استفاده در header */
.header-divider {
    position: relative;
    width: 120px;
    height: 4px;
    margin: 0 auto;
    background: linear-gradient(90deg, transparent 0%, #3b82f6 20%, #10b981 50%, #3b82f6 80%, transparent 100%);
    border-radius: 2px;
    opacity: 0.6;
    z-index: 1;
}

.header-divider::before,
.header-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 6px;
    height: 6px;
    background: #3b82f6;
    border-radius: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
}

.header-divider::before {
    left: -12px;
}

.header-divider::after {
    right: -12px;
}

.global-services-map {
    position: relative;
    width: 100%;
    background: #f8fafc;
    overflow: hidden;
    padding: 0;
    min-height: 450px;
}

.datacenter-network {
    position: relative;
    width: 100%;
    height: 450px;
    margin: 0;
    background: #f0f4f8;
    border-radius: 0;
    overflow: hidden;
    padding: 0;
    box-shadow: none;
    border: none;
}

body.dark-mode .datacenter-network {
    background: #1e293b;
}

#worldMap {
    width: 100%;
    height: 100%;
    display: block;
}

#worldMap .country {
    fill: #dbeafe;
    stroke: #93c5fd;
    stroke-width: 0.5;
    transition: all 0.3s ease;
}

body.dark-mode #worldMap .country {
    fill: #1e3a5f;
    stroke: #3b82f6;
}

#worldMap .country:hover {
    fill: #bfdbfe;
    stroke: #60a5fa;
    stroke-width: 0.7;
}

body.dark-mode #worldMap .country:hover {
    fill: #2563eb;
    stroke: #60a5fa;
}

#worldMap .country-datacenter {
    fill: #dbeafe;
    stroke: #3b82f6;
    stroke-width: 0.8;
}

body.dark-mode #worldMap .country-datacenter {
    fill: #1e40af;
    stroke: #60a5fa;
}

#worldMap .country-datacenter:hover {
    fill: #bfdbfe;
    stroke: #2563eb;
    stroke-width: 1;
}

body.dark-mode #worldMap .country-datacenter:hover {
    fill: #3b82f6;
    stroke: #93c5fa;
}

#worldMap .connection-arc {
    stroke: rgba(59, 130, 246, 0.35);
    stroke-width: 1.5;
    opacity: 0.5;
    fill: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

#worldMap .connection-arc:hover {
    stroke: rgba(59, 130, 246, 0.8);
    stroke-width: 2;
    opacity: 0.9;
}

#worldMap .connections {
    pointer-events: stroke;
}

#worldMap .datacenter-marker {
    cursor: pointer;
}

#worldMap .pin-ripple {
    fill: none;
    stroke: #3b82f6;
    stroke-width: 2;
    opacity: 0.4;
    animation: ripplePulse 2s ease-in-out infinite;
}

@keyframes ripplePulse {
    0% {
        r: 12;
        opacity: 0.4;
    }
    50% {
        r: 18;
        opacity: 0.2;
    }
    100% {
        r: 12;
        opacity: 0.4;
    }
}

#worldMap .pin-ring {
    fill: none;
    stroke: #60a5fa;
    stroke-width: 2;
    opacity: 0.5;
    transition: all 0.3s ease;
}

#worldMap .pin-circle {
    fill: #ffffff;
    stroke: #3b82f6;
    stroke-width: 3;
    filter: drop-shadow(0 3px 8px rgba(59, 130, 246, 0.4));
    transition: all 0.3s ease;
}

body.dark-mode #worldMap .pin-circle {
    fill: #1e293b;
    stroke: #60a5fa;
    filter: drop-shadow(0 3px 8px rgba(96, 165, 250, 0.5));
}

#worldMap .pin-dot {
    fill: #f97316;
    filter: drop-shadow(0 2px 4px rgba(249, 115, 22, 0.6));
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.1);
    }
}

#worldMap .datacenter-marker:hover .pin-ripple {
    animation: ripplePulseHover 1.5s ease-in-out infinite;
}

@keyframes ripplePulseHover {
    0% {
        r: 14;
        opacity: 0.5;
    }
    100% {
        r: 24;
        opacity: 0;
    }
}

#worldMap .datacenter-marker:hover .pin-ring {
    r: 14;
    opacity: 0.7;
    stroke: #2563eb;
}

#worldMap .datacenter-marker:hover .pin-circle {
    stroke-width: 4;
    filter: drop-shadow(0 4px 12px rgba(59, 130, 246, 0.6));
    transform: scale(1.15);
}

#worldMap .datacenter-marker:hover .pin-dot {
    transform: scale(1.2);
    filter: drop-shadow(0 3px 6px rgba(249, 115, 22, 0.8));
}


#worldMap .datacenter-tooltip {
    transform: translate(0, -55);
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#worldMap .tooltip-shadow {
    fill: rgba(0, 0, 0, 0.08);
    filter: blur(8px);
}

#worldMap .tooltip-bg {
    fill: #ffffff;
    stroke: #e2e8f0;
    stroke-width: 1.5;
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.1)) drop-shadow(0 2px 8px rgba(59, 130, 246, 0.15));
}

body.dark-mode #worldMap .tooltip-bg {
    fill: #1e293b;
    stroke: #475569;
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.4)) drop-shadow(0 2px 8px rgba(96, 165, 250, 0.3));
}

#worldMap .tooltip-divider {
    stroke-linecap: round;
    transition: all 0.3s ease;
}

#worldMap .datacenter-tooltip:hover .tooltip-divider {
    opacity: 0.6;
    stroke-width: 2.5;
}

#worldMap .tooltip-arrow {
    fill: #ffffff;
    stroke: #e2e8f0;
    stroke-width: 1.5;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

body.dark-mode #worldMap .tooltip-arrow {
    fill: #1e293b;
    stroke: #475569;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

#worldMap .status-indicator {
    fill: #10b981;
    filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.8));
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% {
        opacity: 1;
        r: 4;
    }
    50% {
        opacity: 0.75;
        r: 5;
    }
}

#worldMap .tooltip-country {
    font-family: 'Vazir', Tahoma, sans-serif;
    fill: #0f172a;
    font-weight: 700;
    text-anchor: middle;
    letter-spacing: -0.3px;
}

body.dark-mode #worldMap .tooltip-country {
    fill: #f1f5f9;
}

.network-grid {
    display: none;
}

.connection-lines {
    display: none;
}

.datacenter-pins {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.datacenter-pin {
    position: absolute;
    width: 30px;
    height: 30px;
    transform: translate(-50%, -50%);
    cursor: pointer;
    pointer-events: auto;
    z-index: 15;
}

.datacenter-pin::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--bg-color);
    border-radius: 50%;
    border: 2.5px solid #3b82f6;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.datacenter-pin .pin-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #f97316;
    border-radius: 50%;
    z-index: 3;
}

.datacenter-pin::after {
    content: attr(data-name);
    position: absolute;
    top: 50%;
    left: calc(100% + 10px);
    transform: translateY(-50%);
    color: #4b5563;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    z-index: 20;
    line-height: 1;
}

.datacenter-pin::after::before {
    content: '';
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 1px;
    background: #60a5fa;
    margin-right: 2px;
}

.datacenter-pin:hover::before {
    width: 22px;
    height: 22px;
    border-width: 3px;
}

.datacenter-pin:hover::after {
    font-weight: 600;
    color: #1f2937;
}

body.dark-mode .datacenter-pin:hover::after {
    color: #f1f5f9;
}

.globe-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 100;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.globe-btn {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3) 0%, rgba(147, 51, 234, 0.3) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px 18px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.globe-btn:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.5) 0%, rgba(147, 51, 234, 0.5) 100%);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
}

.globe-btn:active {
    transform: translateY(0);
}

.globe-btn i {
    font-size: 16px;
}

.globe-btn.zoom-out {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.3) 0%, rgba(239, 68, 68, 0.3) 100%);
}

.globe-btn.zoom-out:hover {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.5) 0%, rgba(239, 68, 68, 0.5) 100%);
}

.globe-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1500px;
    perspective-origin: center center;
    overflow: hidden;
}

.globe-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    max-width: 800px;
    max-height: 800px;
    background: 
        radial-gradient(circle at center, rgba(59, 130, 246, 0.15) 0%, transparent 70%),
        radial-gradient(circle at 30% 30%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
    border-radius: 50%;
    z-index: -1;
    animation: backgroundGlow 6s ease-in-out infinite;
}

@keyframes backgroundGlow {
    0%, 100% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

.globe-sphere {
    position: relative;
    width: 800px;
    height: 800px;
    max-width: 90vw;
    max-height: 90vh;
    min-width: 0;
    min-height: 0;
    transform-style: preserve-3d;
    margin: 0 auto;
}

.globe-inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: 
        /* Base ocean - stronger contrast */
        radial-gradient(circle at 30% 50%, rgba(30, 58, 138, 1) 0%, rgba(15, 23, 42, 1) 100%),
        /* Ocean highlights */
        radial-gradient(ellipse at 70% 60%, rgba(59, 130, 246, 0.6) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 70%, rgba(34, 197, 94, 0.4) 0%, transparent 50%),
        /* Grid pattern - more visible */
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 6px,
            rgba(59, 130, 246, 0.15) 6px,
            rgba(59, 130, 246, 0.15) 12px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 6px,
            rgba(59, 130, 246, 0.15) 6px,
            rgba(59, 130, 246, 0.15) 12px
        );
    background-size: 
        100% 100%,
        30px 30px,
        30px 30px,
        100% 100%,
        100% 100%,
        100% 100%,
        100% 100%,
        100% 100%,
        100% 100%,
        100% 100%,
        100% 100%,
        100% 100%,
        100% 100%,
        100% 100%,
        100% 100%;
    background-position: center;
    box-shadow: 
        inset -150px -150px 300px rgba(0, 0, 0, 1),
        inset 150px 150px 300px rgba(59, 130, 246, 0.5),
        0 0 400px rgba(59, 130, 246, 0.8),
        0 0 800px rgba(13, 62, 163, 0.6),
        inset 0 0 200px rgba(255, 255, 255, 0.08),
        0 20px 100px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    filter: contrast(1.4) brightness(1.25) saturate(1.4);
    will-change: transform;
    border: 3px solid rgba(59, 130, 246, 0.3);
}

.globe-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    filter: contrast(1.2) brightness(1.1) saturate(1.3);
    display: block;
}

.globe-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
    z-index: 1;
}

.world-map-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: 1;
    z-index: 2;
    transform: translateZ(10px);
    filter: brightness(1.1) contrast(1.2);
}

.map-land {
    filter: drop-shadow(0 0 10px rgba(34, 197, 94, 0.5));
    animation: landGlow 5s ease-in-out infinite;
    stroke: rgba(255, 255, 255, 0.2);
    stroke-width: 1;
}

.map-land:nth-child(1) { animation-delay: 0s; }
.map-land:nth-child(2) { animation-delay: 0.8s; }
.map-land:nth-child(3) { animation-delay: 1.6s; }
.map-land:nth-child(4) { animation-delay: 2.4s; }
.map-land:nth-child(5) { animation-delay: 3.2s; }
.map-land:nth-child(6) { animation-delay: 0.4s; }

@keyframes landGlow {
    0%, 100% {
        opacity: 0.9;
        filter: drop-shadow(0 0 10px rgba(34, 197, 94, 0.5));
    }
    50% {
        opacity: 1;
        filter: drop-shadow(0 0 20px rgba(34, 197, 94, 0.8));
    }
}

.continent {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
    animation: continentGlow 5s ease-in-out infinite;
    mix-blend-mode: screen;
    pointer-events: none;
    filter: blur(0.5px);
}

.continent.americas {
    width: 28%;
    height: 45%;
    left: 12%;
    top: 28%;
    background: 
        radial-gradient(ellipse at 40% 50%, rgba(34, 197, 94, 0.8) 0%, rgba(34, 197, 94, 0.4) 40%, transparent 70%),
        radial-gradient(ellipse at 60% 30%, rgba(59, 130, 246, 0.6) 0%, transparent 50%);
    animation-delay: 0s;
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.3);
}

.continent.europe {
    width: 18%;
    height: 22%;
    left: 46%;
    top: 23%;
    background: 
        radial-gradient(ellipse at center, rgba(59, 130, 246, 0.8) 0%, rgba(59, 130, 246, 0.4) 50%, transparent 70%),
        radial-gradient(ellipse at 30% 40%, rgba(147, 51, 234, 0.5) 0%, transparent 40%);
    animation-delay: 0.6s;
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.3);
}

.continent.africa {
    width: 20%;
    height: 38%;
    left: 48%;
    top: 38%;
    background: 
        radial-gradient(ellipse at 50% 40%, rgba(147, 51, 234, 0.8) 0%, rgba(147, 51, 234, 0.4) 50%, transparent 75%),
        radial-gradient(ellipse at 30% 60%, rgba(245, 158, 11, 0.5) 0%, transparent 45%);
    animation-delay: 1.2s;
    box-shadow: 0 0 35px rgba(147, 51, 234, 0.3);
}

.continent.asia {
    width: 35%;
    height: 38%;
    left: 58%;
    top: 23%;
    background: 
        radial-gradient(ellipse at 40% 50%, rgba(245, 158, 11, 0.8) 0%, rgba(245, 158, 11, 0.4) 45%, transparent 75%),
        radial-gradient(ellipse at 70% 30%, rgba(34, 197, 94, 0.6) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 20%, rgba(59, 130, 246, 0.5) 0%, transparent 40%);
    animation-delay: 1.8s;
    box-shadow: 0 0 40px rgba(245, 158, 11, 0.3);
}

.continent.oceania {
    width: 22%;
    height: 18%;
    left: 73%;
    top: 63%;
    background: 
        radial-gradient(ellipse at center, rgba(34, 197, 94, 0.8) 0%, rgba(34, 197, 94, 0.4) 50%, transparent 70%),
        radial-gradient(ellipse at 60% 40%, rgba(59, 130, 246, 0.5) 0%, transparent 45%);
    animation-delay: 2.4s;
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.3);
}

@keyframes continentGlow {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

.location-pin {
    position: absolute;
    transform: translate(-50%, -100%);
    z-index: 20;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pin-marker {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.8), 0 0 30px rgba(245, 158, 11, 0.5);
    position: relative;
    animation: markerPulse 2s ease-in-out infinite;
}

.pin-marker::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background: var(--bg-color);
    border-radius: 50%;
}

.location-pin:hover .pin-marker {
    transform: rotate(-45deg) scale(1.3);
    box-shadow: 0 6px 25px rgba(245, 158, 11, 1), 0 0 50px rgba(245, 158, 11, 0.7);
}

.pin-text {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(13, 62, 163, 0.98);
    color: white;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pin-text::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: rgba(13, 62, 163, 0.98);
}

.location-pin:hover .pin-text {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

@keyframes markerPulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(245, 158, 11, 0.8), 0 0 30px rgba(245, 158, 11, 0.5);
    }
    50% {
        box-shadow: 0 6px 25px rgba(245, 158, 11, 1), 0 0 50px rgba(245, 158, 11, 0.7);
    }
}

.pin-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border: 2px solid rgba(245, 158, 11, 0.5);
    border-radius: 50%;
    animation: ripple 2s ease-out infinite;
}

.pin-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 50%;
    animation: rippleOut 2s ease-out infinite;
}

@keyframes pinPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(245, 158, 11, 0.8), 0 0 40px rgba(245, 158, 11, 0.4);
    }
    50% {
        transform: scale(1.2);
        box-shadow: 0 0 30px rgba(245, 158, 11, 1), 0 0 60px rgba(245, 158, 11, 0.6);
    }
}

@keyframes ripple {
    0% {
        width: 30px;
        height: 30px;
        opacity: 0.8;
    }
    100% {
        width: 60px;
        height: 60px;
        opacity: 0;
    }
}

@keyframes rippleOut {
    0% {
        width: 50px;
        height: 50px;
        opacity: 0.5;
    }
    100% {
        width: 100px;
        height: 100px;
        opacity: 0;
    }
}

.pin-label {
    position: absolute;
    bottom: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(13, 62, 163, 0.98);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    z-index: 20;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pin-label::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: rgba(13, 62, 163, 0.95);
}

.location-pin:hover .pin-label {
    opacity: 1;
}

.location-pin:hover .pin-dot {
    transform: scale(1.3);
}

.globe-svg {
    width: 100%;
    height: 100%;
    max-width: 1200px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.9;
    filter: drop-shadow(0 0 30px rgba(59, 130, 246, 0.3));
    animation: globeRotate 60s linear infinite;
}

@keyframes globeRotate {
    0% {
        transform: translateX(-50%) rotate(0deg);
    }
    100% {
        transform: translateX(-50%) rotate(360deg);
    }
}

.continent {
    animation: continentPulse 4s ease-in-out infinite;
    transition: all 0.3s ease;
}

.continent:nth-child(2) { animation-delay: 0s; }
.continent:nth-child(3) { animation-delay: 0.5s; }
.continent:nth-child(4) { animation-delay: 1s; }
.continent:nth-child(5) { animation-delay: 1.5s; }
.continent:nth-child(6) { animation-delay: 2s; }

@keyframes continentPulse {
    0%, 100% {
        opacity: 0.6;
        filter: brightness(1);
    }
    50% {
        opacity: 0.8;
        filter: brightness(1.2);
    }
}

.grid-line {
    animation: gridLinePulse 3s ease-in-out infinite;
    opacity: 0.3;
}

.grid-line:nth-child(7) { animation-delay: 0s; }
.grid-line:nth-child(8) { animation-delay: 0.5s; }
.grid-line:nth-child(9) { animation-delay: 1s; }
.grid-line:nth-child(10) { animation-delay: 0.3s; }
.grid-line:nth-child(11) { animation-delay: 0.8s; }
.grid-line:nth-child(12) { animation-delay: 1.3s; }

@keyframes gridLinePulse {
    0%, 100% {
        opacity: 0.2;
        stroke-width: 1;
    }
    50% {
        opacity: 0.4;
        stroke-width: 2;
    }
}

.connection-lines {
    opacity: 0.4;
    animation: connectionPulse 3s ease-in-out infinite;
}

.connection-line {
    animation: connectionFlow 4s ease-in-out infinite;
}

@keyframes connectionFlow {
    0% {
        stroke-dashoffset: 20;
        opacity: 0.3;
    }
    50% {
        stroke-dashoffset: 0;
        opacity: 0.6;
    }
    100% {
        stroke-dashoffset: -20;
        opacity: 0.3;
    }
}

@keyframes connectionPulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

.location-point {
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 10;
    cursor: pointer;
    animation: locationPulse 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

.location-point:hover {
    z-index: 20;
    animation-play-state: paused;
}

.location-point:nth-child(2) { animation-delay: 0s; }
.location-point:nth-child(3) { animation-delay: 0.2s; }
.location-point:nth-child(4) { animation-delay: 0.4s; }
.location-point:nth-child(5) { animation-delay: 0.6s; }
.location-point:nth-child(6) { animation-delay: 0.8s; }
.location-point:nth-child(7) { animation-delay: 1s; }
.location-point:nth-child(8) { animation-delay: 1.2s; }
.location-point:nth-child(9) { animation-delay: 1.4s; }
.location-point:nth-child(10) { animation-delay: 1.6s; }
.location-point:nth-child(11) { animation-delay: 1.8s; }

.location-pin {
    width: 14px;
    height: 14px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 20px rgba(13, 62, 163, 0.6);
    animation: pinPulse 2s ease-in-out infinite;
    border: 2px solid white;
}

.location-pin::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.5;
    animation: ripple 2s ease-in-out infinite;
}

.location-pin::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200%;
    height: 200%;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    animation: rippleOut 2s ease-in-out infinite;
}

.location-label {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(13, 62, 163, 0.95);
    color: white;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    margin-bottom: 8px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(13, 62, 163, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.location-label::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid rgba(13, 62, 163, 0.95);
}

.location-point:hover .location-label {
    opacity: 1;
    transform: translateX(-50%) translateY(-4px);
}

.location-point:hover .location-pin {
    transform: scale(1.5);
    box-shadow: 0 0 30px rgba(13, 62, 163, 0.8);
}

@keyframes locationPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes pinPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(13, 62, 163, 0.6);
    }
    50% {
        box-shadow: 0 0 30px rgba(13, 62, 163, 0.9);
    }
}

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

@keyframes rippleOut {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-color) 0%, var(--bg-secondary) 100%);
}

body.dark-mode .contact {
    background: linear-gradient(180deg, #111827 0%, #1f2937 100%);
}

.contact-header {
    text-align: center;
    margin-bottom: 48px;
}

.contact-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: -0.4px;
}

.contact-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-layout {
    display: grid;
    grid-template-columns: 500px 1fr;
    gap: 60px;
    align-items: start;
}

.contact-animation-wrapper {
    position: sticky;
    top: 100px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 0;
}

.lottie-container-contact {
    width: 100%;
    height: 490px;
    position: relative;
}

.contact-info-layout {
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding-top: 0;
}

.contact-intro-text {
    position: relative;
    padding-right: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.contact-intro-text::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 20px;
    width: 3px;
    background: linear-gradient(180deg, #3b82f6 0%, #10b981 100%);
    border-radius: 2px;
    opacity: 0.8;
}

.contact-intro-text p {
    font-size: 1.125rem;
    color: #475569;
    line-height: 2;
    text-align: justify;
    margin: 0 0 16px 0;
}

.contact-intro-text p strong {
    color: #3b82f6;
    font-weight: 700;
}

.contact-ticket-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.25);
    margin-top: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-ticket-btn:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.35);
    transform: translateY(-1px);
}

.contact-ticket-btn:active {
    transform: translateY(0);
}

.contact-ticket-btn i {
    font-size: 0.9375rem;
    opacity: 0.9;
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.contact-method-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 10px;
    background: transparent;
}

.contact-method-item:hover {
    background: rgba(59, 130, 246, 0.03);
    transform: translateX(-2px);
}

.contact-method-item.full-width {
    grid-column: 1 / -1;
    margin-top: 2px;
}

.contact-method-item::after {
    display: none;
}

.contact-method-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    font-size: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.contact-method-item:nth-child(1) .contact-method-icon {
    color: #059669;
}

.contact-method-item:nth-child(2) .contact-method-icon {
    color: #d97706;
}

.contact-method-item.full-width .contact-method-icon {
    color: #8b5cf6;
}

.contact-method-item:hover .contact-method-icon {
    transform: scale(1.1);
}

.contact-method-item:nth-child(1):hover .contact-method-icon {
    color: #047857;
    filter: drop-shadow(0 2px 6px rgba(5, 150, 105, 0.3));
}

.contact-method-item:nth-child(2):hover .contact-method-icon {
    color: #b45309;
    filter: drop-shadow(0 2px 6px rgba(217, 119, 6, 0.3));
}

.contact-method-item.full-width:hover .contact-method-icon {
    color: #7c3aed;
    filter: drop-shadow(0 2px 6px rgba(139, 92, 246, 0.3));
}

.contact-method-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-method-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 1px;
    letter-spacing: 0.2px;
}

.contact-method-value {
    font-size: 0.9375rem;
    color: #0f172a;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-method-value.phone-link {
    color: #059669;
    font-weight: 600;
}

.contact-method-value.phone-link:hover {
    color: #047857;
    transform: translateX(-4px);
}

.contact-method-value.email-link {
    color: #d97706;
    font-weight: 600;
}

.contact-method-value.email-link:hover {
    color: #b45309;
    transform: translateX(-4px);
}

.contact-method-value.social-text {
    color: #475569;
    line-height: 1.7;
    font-size: 0.9375rem;
}


/* Contact Form */
.contact-form {
    background: var(--bg-color);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-top: 32px;
}

body.dark-mode .contact-form {
    background: #1e293b;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.contact-form .form-group {
    margin-bottom: 24px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    background: var(--bg-secondary);
    color: var(--text-color);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn-submit {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.contact-form .btn-submit:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
}

.contact-form .btn-submit:active {
    transform: translateY(0);
}


body.dark-mode .contact-form label {
    color: #f1f5f9;
}

body.dark-mode .contact-form input,
body.dark-mode .contact-form textarea {
    background: #0f172a;
    border-color: #334155;
    color: #f1f5f9;
}

body.dark-mode .contact-form input:focus,
body.dark-mode .contact-form textarea:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2);
}

/* Dark mode for contact section */
body.dark-mode .contact-intro-text {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .contact-intro-text p {
    color: #cbd5e1;
}

body.dark-mode .contact-intro-text::before {
    background: linear-gradient(180deg, #60a5fa 0%, #34d399 100%);
}

body.dark-mode .contact-intro-text p strong {
    color: #60a5fa;
}

body.dark-mode .contact-ticket-btn {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    box-shadow: 0 2px 8px rgba(96, 165, 250, 0.25);
    border-color: rgba(255, 255, 255, 0.15);
}

body.dark-mode .contact-ticket-btn:hover {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    box-shadow: 0 4px 14px rgba(96, 165, 250, 0.35);
}

body.dark-mode .contact-method-item:hover {
    background: rgba(96, 165, 250, 0.05);
}

body.dark-mode .contact-method-icon {
    color: #60a5fa;
}

body.dark-mode .contact-method-item:nth-child(1) .contact-method-icon {
    color: #34d399;
}

body.dark-mode .contact-method-item:nth-child(2) .contact-method-icon {
    color: #fbbf24;
}

body.dark-mode .contact-method-item.full-width .contact-method-icon {
    color: #a78bfa;
}

body.dark-mode .contact-method-item:nth-child(1):hover .contact-method-icon {
    color: #10b981;
    filter: drop-shadow(0 2px 6px rgba(52, 211, 153, 0.4));
}

body.dark-mode .contact-method-item:nth-child(2):hover .contact-method-icon {
    color: #f59e0b;
    filter: drop-shadow(0 2px 6px rgba(251, 191, 36, 0.4));
}

body.dark-mode .contact-method-item.full-width:hover .contact-method-icon {
    color: #8b5cf6;
    filter: drop-shadow(0 2px 6px rgba(167, 139, 250, 0.4));
}

body.dark-mode .contact-method-item::after {
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 20%, rgba(255, 255, 255, 0.1) 80%, transparent 100%);
}

body.dark-mode .contact-method-icon {
    color: #60a5fa;
}

body.dark-mode .contact-method-item:nth-child(1) .contact-method-icon {
    color: #34d399;
}

body.dark-mode .contact-method-item:nth-child(2) .contact-method-icon {
    color: #fbbf24;
}

body.dark-mode .contact-method-item.full-width .contact-method-icon {
    color: #a78bfa;
}

body.dark-mode .contact-method-label {
    color: #cbd5e1;
}

body.dark-mode .contact-method-value {
    color: #f1f5f9;
}

body.dark-mode .contact-method-value.phone-link {
    color: #34d399;
}

body.dark-mode .contact-method-value.phone-link:hover {
    color: #10b981;
}

body.dark-mode .contact-method-value.email-link {
    color: #fbbf24;
}

body.dark-mode .contact-method-value.email-link:hover {
    color: #f59e0b;
}

body.dark-mode .contact-method-value.social-text {
    color: #cbd5e1;
}

/* Partners/Technologies Section */
.partners-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

body.dark-mode .partners-section {
    background: linear-gradient(180deg, #1f2937 0%, #111827 100%);
}

.partners-header {
    text-align: center;
    margin-bottom: 40px;
}

.partners-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}


.partners-header p {
    font-size: 0.9375rem;
    color: var(--text-light);
    margin: 0;
}

body.dark-mode .partners-header p {
    color: #cbd5e1;
}

.partners-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.partners-slider {
    display: flex;
    gap: 40px;
    will-change: transform;
    width: fit-content;
    animation: slideInfinite 50s linear infinite;
    /* Animation will be set by JavaScript */
}

/* Fallback keyframes - will be overridden by JavaScript */
@keyframes slideInfinite {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-4460px);
    }
}

.partner-item {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 24px;
    width: 140px;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    border: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    opacity: 0.75;
}

body.dark-mode .partner-item {
    opacity: 0.7;
}

.partner-item:hover {
    transform: translateY(-8px) scale(1.08);
    opacity: 1;
}

body.dark-mode .partner-item:hover {
    opacity: 1;
}

/* استایل لوگوهای واقعی */
.partner-logo {
    width: 56px;
    height: 56px;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.85;
}

/* لوگوهای CloudLinux و LiteSpeed - بدون filter */
.partner-item img[src*="cloudlinux"],
.partner-item img[src*="litespeed"] {
    filter: none !important;
    opacity: 0.9;
}

/* سایر لوگوها از CDN */
.partner-item img[src*="cdn.simpleicons.org"],
.partner-item img[src*="cdn.jsdelivr.net"] {
    filter: grayscale(20%) brightness(0.95);
}

body.dark-mode .partner-logo {
    opacity: 0.8;
}

body.dark-mode .partner-item img[src*="cdn.simpleicons.org"],
body.dark-mode .partner-item img[src*="cdn.jsdelivr.net"] {
    filter: grayscale(10%) brightness(1.1);
}

body.dark-mode .partner-item img[src$="cloudlinux-logo.svg"],
body.dark-mode .partner-item img[src$="litespeed-logo.svg"] {
    filter: brightness(1.1);
    opacity: 0.9;
}

.partner-item:hover .partner-logo {
    transform: scale(1.15);
    opacity: 1;
}

.partner-item:hover img[src*="cdn.simpleicons.org"],
.partner-item:hover img[src*="cdn.jsdelivr.net"] {
    filter: grayscale(0%) brightness(1);
}

.partner-item:hover img[src$="cloudlinux-logo.svg"],
.partner-item:hover img[src$="litespeed-logo.svg"] {
    filter: brightness(1.1);
    opacity: 1;
}

body.dark-mode .partner-item:hover .partner-logo {
    filter: grayscale(0%) brightness(1.15);
    opacity: 1;
}

/* رنگ‌های خاص برای لوگوی CSS */
.partner-logo-css3 {
    filter: brightness(0) saturate(100%) invert(27%) sepia(96%) saturate(1538%) hue-rotate(196deg) brightness(92%) contrast(89%);
}

.partner-item:hover .partner-logo-css3 {
    filter: brightness(0) saturate(100%) invert(27%) sepia(96%) saturate(1538%) hue-rotate(196deg) brightness(110%) contrast(100%);
}

/* استایل‌های آیکون‌های قدیمی حذف شد - حالا از لوگوهای واقعی استفاده می‌شود */

.partner-item span {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #64748b;
    text-align: center;
    white-space: nowrap;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

body.dark-mode .partner-item span {
    color: #94a3b8;
}

.partner-item:hover span {
    color: #3b82f6;
    font-weight: 700;
}

body.dark-mode .partner-item:hover span {
    color: #60a5fa;
}

/* Pause animation on hover */
.partners-slider-wrapper:hover .partners-slider {
    animation-play-state: paused;
}

/* Footer */
.footer {
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    background-image: url('/image/footer.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--text-color);
    padding: 45px 0 22px;
    margin-top: 60px;
    overflow: hidden;
}

body.dark-mode .footer {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    background-image: url('/image/footer.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Dark Overlay برای خوانایی بهتر متن */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.88) 0%, rgba(226, 232, 240, 0.92) 100%);
    z-index: 0;
}

body.dark-mode .footer::before {
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.88) 0%, rgba(17, 24, 39, 0.92) 100%);
}

/* Pattern Background */
.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 15% 20%, rgba(13, 62, 163, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 85% 80%, rgba(245, 180, 0, 0.04) 0%, transparent 50%);
    opacity: 0.5;
    pointer-events: none;
    z-index: 1;
}

.footer .container {
    position: relative;
    z-index: 2;
}

/* Footer Main Grid */
.footer-main-grid {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.3fr 1.5fr 1.3fr 1.2fr 1.3fr;
    gap: 28px;
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.footer-payment-section {
    grid-column: 5 / 8;
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid rgba(13, 62, 163, 0.08);
}

body.dark-mode .footer-payment-section {
    border-top-color: rgba(96, 165, 250, 0.12);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
}

.footer-logo i {
    font-size: 26px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.footer-logo:hover i {
    color: var(--secondary-color);
    transform: scale(1.08);
}

.footer-logo h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.footer-logo:hover h3 {
    color: var(--primary-hover);
}

.footer-description {
    color: var(--text-light);
    line-height: 1.65;
    font-size: 0.875rem;
    margin: 0;
    text-align: justify;
}

body.dark-mode .footer-description {
    color: var(--text-light);
}

/* Footer Columns */
.footer-column {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-about-column {
    gap: 16px;
}

/* Footer Contact Info */
.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 6px;
    padding-top: 12px;
    border-top: 1px solid rgba(13, 62, 163, 0.08);
}

body.dark-mode .footer-contact-info {
    border-top-color: rgba(96, 165, 250, 0.12);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.25s ease;
    padding: 6px 0;
}

.footer-contact-item i {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 62, 163, 0.05);
    border-radius: 6px;
    color: var(--primary-color);
    font-size: 13px;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.footer-contact-item:hover {
    color: var(--primary-color);
    transform: translateX(-3px);
}

.footer-contact-item:hover i {
    background: var(--primary-color);
    color: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(13, 62, 163, 0.2);
}

body.dark-mode .footer-contact-item {
    color: var(--text-color);
}

body.dark-mode .footer-contact-item i {
    background: rgba(96, 165, 250, 0.12);
}

/* Footer Section Title */
.footer-section-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(13, 62, 163, 0.08);
    position: relative;
}

.footer-section-title::after {
    content: '';
    position: absolute;
    bottom: -1px;
    right: 0;
    width: 30px;
    height: 1px;
    background: linear-gradient(90deg, var(--primary-color) 0%, transparent 100%);
}

body.dark-mode .footer-section-title {
    color: var(--text-color);
    border-bottom-color: rgba(96, 165, 250, 0.12);
}

/* Footer Links List */
.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-links-list li {
    margin: 0;
}

.footer-links-list a {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.2s ease;
    padding: 4px 0;
    position: relative;
    padding-right: 18px;
}

.footer-links-list a::before {
    content: '→';
    position: absolute;
    right: 0;
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.2s ease;
    color: var(--primary-color);
    font-size: 0.75rem;
}

.footer-links-list a:hover {
    color: var(--primary-color);
    transform: translateX(-3px);
    padding-right: 22px;
}

.footer-links-list a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

body.dark-mode .footer-links-list a {
    color: var(--text-light);
}

body.dark-mode .footer-links-list a:hover {
    color: #60a5fa;
}

/* Newsletter Section */
.footer-newsletter {
    gap: 25px;
}

.newsletter-description {
    color: var(--text-light);
    font-size: 0.875rem;
    line-height: 1.7;
    margin: 0;
}

.newsletter-form {
    margin-top: 5px;
}

.newsletter-input-wrapper {
    position: relative;
    display: flex;
    gap: 8px;
    background: var(--bg-color);
    border-radius: 12px;
    padding: 4px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.newsletter-input-wrapper:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(13, 62, 163, 0.15);
}

body.dark-mode .newsletter-input-wrapper {
    background: var(--bg-secondary);
    border-color: var(--border-color);
}

body.dark-mode .newsletter-input-wrapper:focus-within {
    border-color: #60a5fa;
    box-shadow: 0 4px 12px rgba(96, 165, 250, 0.2);
}

.newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-color);
    font-size: 0.9375rem;
    padding: 12px 16px;
    font-family: inherit;
}

.newsletter-input::placeholder {
    color: var(--text-light);
}

.newsletter-btn {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    border: none;
    border-radius: 10px;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(13, 62, 163, 0.25);
    flex-shrink: 0;
}

.newsletter-btn:hover {
    background: linear-gradient(135deg, var(--primary-hover) 0%, var(--primary-color) 100%);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 16px rgba(13, 62, 163, 0.35);
}

.newsletter-btn:active {
    transform: translateY(0) scale(1);
}

.newsletter-btn i {
    font-size: 16px;
}

/* Social Links */
.footer-social {
    margin-top: 10px;
}

.footer-social h5 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 15px;
}

.social-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.social-link {
    position: relative;
    width: 44px;
    height: 44px;
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

body.dark-mode .social-link {
    background: var(--bg-secondary);
    border-color: var(--border-color);
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(13, 62, 163, 0.05);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

.social-link:hover::before {
    width: 100%;
    height: 100%;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(13, 62, 163, 0.2);
}

.social-link i {
    position: relative;
    z-index: 1;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-link:hover i {
    transform: scale(1.2);
    color: var(--primary-color);
}

/* Social Link Colors */
.social-link:nth-child(1):hover {
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
    color: #ffffff;
}

.social-link:nth-child(2):hover {
    background: linear-gradient(135deg, #e4405f 0%, #c13584 100%);
    color: #ffffff;
}

.social-link:nth-child(3):hover {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #ffffff;
}

.social-link:nth-child(4):hover {
    background: linear-gradient(135deg, #0077b5 0%, #005885 100%);
    color: #ffffff;
}

.social-link:nth-child(5):hover {
    background: linear-gradient(135deg, #1da1f2 0%, #0d8bd9 100%);
    color: #ffffff;
}

.social-link:nth-child(6):hover {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    color: #ffffff;
}

.social-tooltip {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    background: var(--text-color);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.social-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: var(--text-color);
}

.social-link:hover .social-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Footer Divider */
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--border-color) 20%, var(--border-color) 80%, transparent 100%);
    margin: 8px 0 8px;
    position: relative;
}

.footer-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--primary-color) 100%);
    border-radius: 2px;
    opacity: 0.7;
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 8px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    flex: 1;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-copyright {
    min-width: auto;
}

.footer-copyright p {
    color: var(--text-light);
    font-size: 0.875rem;
    margin: 0;
}

.footer-copyright strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* Footer Payment Section - Updated */
.footer-payment-section {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

/* Payment Methods Compact */
.footer-payment-methods {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.payment-label {
    color: var(--text-light);
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
}

.payment-icons-compact {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.payment-icon-compact {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.25s ease;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

body.dark-mode .payment-icon-compact {
    background: var(--bg-secondary);
    border-color: var(--border-color);
}

.payment-icon-compact i {
    font-size: 18px;
    color: var(--text-light);
    transition: all 0.25s ease;
}

.payment-icon-compact:hover {
    transform: translateY(-2px);
    border-color: var(--primary-color);
    box-shadow: 0 3px 10px rgba(13, 62, 163, 0.15);
    background: rgba(13, 62, 163, 0.03);
}

.payment-icon-compact:hover i {
    color: var(--primary-color);
    transform: scale(1.1);
}

body.dark-mode .payment-icon-compact:hover {
    background: rgba(96, 165, 250, 0.1);
    border-color: #60a5fa;
}

body.dark-mode .payment-icon-compact:hover i {
    color: #60a5fa;
}

/* Specific payment colors */
.payment-icon-compact:hover i.fa-exchange-alt {
    color: #00a651;
}

.payment-icon-compact:hover i.fa-paypal {
    color: #003087;
}

.payment-icon-compact:hover i.fa-cc-visa {
    color: #1434cb;
}

.payment-icon-compact:hover i.fa-cc-mastercard {
    color: #eb001b;
}

.payment-icon-compact:hover i.fa-bitcoin {
    color: #f7931a;
}

/* Footer Licenses */
.footer-licenses {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(13, 62, 163, 0.08);
}

body.dark-mode .footer-licenses {
    border-top-color: rgba(96, 165, 250, 0.12);
}

.license-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    transition: all 0.25s ease;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

body.dark-mode .license-item {
    background: var(--bg-secondary);
    border-color: var(--border-color);
}

.license-image {
    max-width: 100px;
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    transition: all 0.25s ease;
    filter: grayscale(8%);
}

.license-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 62, 163, 0.15);
    border-color: var(--primary-color);
}

.license-item:hover .license-image {
    transform: scale(1.05);
    filter: grayscale(0%);
}

body.dark-mode .license-item:hover {
    border-color: #60a5fa;
    box-shadow: 0 4px 12px rgba(96, 165, 250, 0.2);
}

/* Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-intro {
        text-align: center;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-main-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .footer-about-column {
        grid-column: 1 / -1;
    }
    
    .footer-payment-section {
        grid-column: 1 / -1;
        margin-top: 20px;
        padding-top: 15px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .header-content {
        padding: 10px 0;
    }
    
    .nav-toggle { 
        display: inline-flex; 
        background: transparent;
        border: none;
        color: var(--text-color);
        font-size: 1.5rem;
        cursor: pointer;
        padding: 8px;
    }
    
    .nav-menu { 
        display: none; 
        position: absolute; 
        right: 20px; 
        left: 20px; 
        top: 72px; 
        background: var(--bg-color); 
        border: 1px solid var(--border-color); 
        border-radius: 10px; 
        box-shadow: var(--shadow-lg); 
        padding: 12px; 
        z-index: 999;
    }
    
    .nav-menu.open { 
        display: block; 
    }
    
    .nav-menu ul { 
        flex-direction: column; 
        gap: 8px; 
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .other-services {
        padding: 40px 0;
    }
    
    .other-services-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .other-service-item {
        padding: 18px 15px;
        gap: 15px;
    }
    
    .global-services {
        padding: 60px 0 0 0;
        min-height: 100vh;
    }
    
    .global-services .section-header {
        padding: 30px 15px;
    }
    
    .globe-container {
        min-height: calc(100vh - 200px);
    }
    
    .globe-sphere {
        width: 500px;
        height: 500px;
        min-width: 400px;
        min-height: 400px;
    }
    
    .globe-controls {
        bottom: 20px;
        padding: 10px 15px;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
        max-width: 90%;
    }
    
    .globe-btn {
        padding: 8px 14px;
        font-size: 12px;
    }
    
    .globe-btn span {
        display: none;
    }
    
    .other-service-icon {
        width: 38px;
        height: 38px;
        font-size: 17px;
    }
    
    .other-service-content h3 {
        font-size: 1rem;
    }
    
    .other-service-content p {
        font-size: 0.82rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .progress-banner {
        padding: 15px 0;
    }
    
    .progress-banner-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .progress-banner-text {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .progress-banner-text h2 {
        font-size: 1.3rem;
        letter-spacing: 0.3px;
    }
    
    .text-decoration {
        width: 40px;
    }
    
    .person-animation-advanced {
        width: 100px;
        height: 100px;
    }
    
    .lottie-container {
        width: 100px;
        height: 100px;
        transform: scale(2);
    }
    
    .tech-emoji {
        font-size: 70px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Footer Responsive */
    .footer {
        padding: 40px 0 20px;
        margin-top: 50px;
    }
    
    .footer-main-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        margin-bottom: 30px;
        padding-bottom: 30px;
    }
    
    .footer-about-column {
        grid-column: 1 / -1;
        text-align: center;
        gap: 18px;
    }
    
    .footer-payment-section {
        grid-column: 1 / -1;
        margin-top: 20px;
        padding-top: 15px;
        justify-content: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-description {
        text-align: center;
        font-size: 0.8125rem;
        line-height: 1.65;
    }
    
    .footer-contact-info {
        align-items: center;
        padding-top: 12px;
    }
    
    .footer-contact-item {
        justify-content: center;
    }
    
    .footer-section-title {
        font-size: 0.9375rem;
        padding-bottom: 10px;
        justify-content: center;
    }
    
    .footer-links-list {
        align-items: center;
    }
    
    .footer-links-list a {
        text-align: center;
        padding-right: 0;
    }
    
    .footer-links-list a::before {
        display: none;
    }
    
    .footer-bottom {
        padding-top: 18px;
    }
    
    .footer-bottom-left {
        flex-direction: column;
        gap: 18px;
        width: 100%;
        text-align: center;
    }
    
    .footer-bottom-right {
        width: 100%;
        justify-content: center;
    }
    
    .footer-payment-section {
        margin: 15px 0 10px;
        padding: 8px 0;
    }
    
    .footer-payment-methods {
        justify-content: center;
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .payment-icons-compact {
        justify-content: center;
        flex-wrap: wrap;
        gap: 6px;
    }
    
    .payment-icon-compact {
        width: 32px;
        height: 32px;
    }
    
    .payment-icon-compact i {
        font-size: 16px;
    }
    
    .footer-licenses {
        justify-content: center;
        width: 100%;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 10px;
        padding-top: 10px;
    }
    
    .license-item {
        max-width: 150px;
    }
    
    .license-image {
        max-width: 100%;
        max-height: 50px;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .stats-content h2 {
        font-size: 1.8rem;
    }
    
    /* Reduce background pulse on mobile */
    .services::after {
        opacity: 0.2;
    }
    
    /* Hide decorative icons on mobile */
    .decor-cloud,
    .decor-server,
    .decor-network,
    .decor-database,
    .decor-globe,
    .decor-shield,
    .decor-code,
    .decor-rocket {
        opacity: 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-text h1 {
        font-size: 1.5rem;
    }
    
    .services,
    .stats,
    .contact {
        padding: 60px 0;
    }
    
    .features {
        padding: 70px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .other-services {
        padding: 35px 0;
    }
    
    .other-services-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .other-service-item {
        padding: 16px 12px;
        gap: 12px;
    }
    
    .other-service-icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }
    
    .other-service-content h3 {
        font-size: 1.05rem;
    }
    
    .other-service-content p {
        font-size: 0.85rem;
    }
    
    .service-arrow {
        font-size: 14px;
    }
    
    .global-services {
        padding: 30px 0 0 0;
    }
    
    .blog-section {
        padding: 60px 0;
    }
    
    .blog-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 40px;
    }
    
    .blog-header-content h2 {
        font-size: 1.5rem;
    }
    
    .blog-header-content p {
        font-size: 0.875rem;
    }
    
    .blog-view-all {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .blog-image-wrapper {
        height: 180px;
    }
    
    .blog-content {
        padding: 24px;
    }
    
    .blog-content h3 {
        font-size: 1.125rem;
    }
    
    .blog-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .blog-stats {
        width: 100%;
        justify-content: space-between;
    }
    
    .blog-link {
        width: 100%;
        justify-content: center;
    }
    
    .global-services-header {
        padding: 40px 16px 32px;
    }
    
    .global-services-header::after {
        width: 60px;
        height: 2px;
    }
    
    .global-services-title {
        font-size: 1.375rem;
        margin-bottom: 12px;
        line-height: 1.45;
        letter-spacing: -0.3px;
    }
    
    .global-services-subtitle {
        font-size: 0.875rem;
        line-height: 1.6;
        letter-spacing: 0.05px;
        margin-bottom: 20px;
    }
    
    .section-divider {
        width: 80px;
        height: 3px;
        margin: 24px auto;
    }
    
    .section-divider::before,
    .section-divider::after {
        width: 5px;
        height: 5px;
    }
    
    .header-divider {
        width: 80px;
        height: 3px;
    }
    
    .header-divider::before,
    .header-divider::after {
        width: 5px;
        height: 5px;
    }
    
    .globe-container {
        min-height: 400px;
        padding: 15px 10px;
    }
    
    .world-map-wrapper {
        max-width: 100%;
    }
    
    .globe-controls {
        bottom: 15px;
        padding: 8px 12px;
        gap: 8px;
        border-radius: 40px;
    }
    
    .globe-btn {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .globe-btn i {
        font-size: 14px;
    }
    
    .globe-btn span {
        display: none;
    }
    
    .progress-banner {
        padding: 12px 0;
    }
    
    .progress-banner-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .progress-banner-text {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .progress-banner-text h2 {
        font-size: 1.15rem;
        letter-spacing: 0.2px;
    }
    
    .text-decoration {
        width: 35px;
    }
    
    .person-animation-advanced {
        width: 90px;
        height: 90px;
    }
    
    .lottie-container {
        width: 90px;
        height: 90px;
        transform: scale(1.8);
    }
    
    .tech-emoji {
        font-size: 80px;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .contact {
        padding: 60px 0;
    }
    
    .contact-header {
        margin-bottom: 36px;
    }
    
    .contact-header h2 {
        font-size: 1.625rem;
    }
    
    .contact-content-wrapper {
        flex-direction: column;
        gap: 32px;
    }
    
    .contact-animation-wrapper {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .lottie-container-contact,
    .emoji-container-contact {
        height: 240px;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-animation-wrapper {
        position: relative;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .lottie-container-contact {
        height: 320px;
    }
    
    .contact-info-layout {
        gap: 24px;
    }
    
    .contact-intro-text {
        padding-right: 20px;
        padding-bottom: 18px;
    }
    
    .contact-intro-text p {
        font-size: 1rem;
        margin-bottom: 14px;
    }
    
    .contact-methods-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-method-item.full-width {
        grid-column: 1;
        margin-top: 0;
    }
    
    .contact-method-item {
        gap: 12px;
    }
    
    .contact-method-icon {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    
    .contact-method-label {
        font-size: 0.8125rem;
    }
    
    .contact-method-value {
        font-size: 0.875rem;
    }
    
    .contact-method-value.social-text {
        font-size: 0.8125rem;
    }
    
    .contact-ticket-btn {
        padding: 10px 20px;
        font-size: 0.875rem;
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }
    
    .contact-methods-grid {
        gap: 16px;
    }
    
    .contact-method-item {
        padding: 10px;
        gap: 10px;
    }
    
    .partners-section {
        padding: 50px 0;
    }
    
    .partners-header {
        margin-bottom: 32px;
    }
    
    .partners-header h2 {
        font-size: 1.5rem;
    }
    
    .partners-header p {
        font-size: 0.875rem;
    }
    
    .partners-slider {
        gap: 24px;
        animation-duration: 40s;
    }
    
    .partner-item {
        min-width: 100px;
        padding: 12px 16px;
        gap: 8px;
    }
    
    .partner-logo {
        width: 44px;
        height: 44px;
    }
    
    .partner-item span {
        font-size: 0.75rem;
    }
    
    .scroll-to-top {
        bottom: 20px;
        left: 20px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 35px 0 18px;
        margin-top: 40px;
    }
    
    .footer-main-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 25px;
        padding-bottom: 25px;
    }
    
    .footer-payment-section {
        grid-column: 1;
        margin-top: 18px;
        padding-top: 12px;
        justify-content: center;
    }
    
    .footer-payment-methods {
        justify-content: center;
    }
    
    .footer-logo h3 {
        font-size: 24px;
    }
    
    .footer-logo i {
        font-size: 28px;
    }
    
    .footer-description {
        font-size: 0.875rem;
    }
    
    .footer-column-title {
        font-size: 1rem;
    }
    
    .contact-info-item {
        font-size: 0.875rem;
        gap: 10px;
    }
    
    .contact-info-item i {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    .footer-menu a {
        font-size: 0.875rem;
    }
    
    
    .footer-divider {
        margin: 30px 0 25px;
    }
    
    .footer-bottom {
        padding-top: 25px;
    }
    
    .footer-copyright p {
        font-size: 0.8125rem;
    }
    
    .payment-label {
        font-size: 0.75rem;
    }
    
    .payment-icons {
        gap: 8px;
    }
    
    .payment-icon-item {
        min-width: 50px;
        padding: 6px 10px;
        gap: 3px;
    }
    
    .payment-icon-item i {
        font-size: 18px;
    }
    
    .payment-icon-item .payment-text {
        font-size: 0.65rem;
    }
    
    .footer-licenses {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .license-item {
        width: 100%;
        max-width: 200px;
    }
    
    .license-image {
        max-width: 100%;
        max-height: 50px;
    }
}

/* Smooth Transitions */
* {
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}