/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0ce06b;
    --primary-dark: #0bb85a;
    --secondary-color: #0ce06b;
    --accent-color: #0ce06b;
    --text-primary: #1F2937;
    --text-secondary: #6B7280;
    --text-light: #9CA3AF;
    --background: #FFFFFF;
    --background-dark: #1F2937;
    --surface: #F9FAFB;
    --border: #E5E7EB;
    --gradient-primary: linear-gradient(135deg, #0ce06b 0%, #0bb85a 100%);
    --gradient-hero: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--background);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.02em;
    text-decoration: none;
}

.nav-brand a {
    text-decoration: none;
}

.nav-brand a:hover h1 {
    color: var(--primary-dark);
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-dropdown {
    position: relative;
}

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

@media (max-width: 768px) {
    .nav-actions .btn-primary {
        display: none;
    }
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.mobile-menu-toggle:hover {
    color: var(--primary-color);
}

/* Mobile Sidebar Menu */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: white;
    z-index: 9999;
    transition: right 0.3s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.mobile-sidebar.active {
    right: 0;
}

.mobile-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    position: relative;
}

.mobile-signin-btn-header {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(0, 0, 0, 0.1) 100%);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 0.5px;

}

.mobile-signin-btn-header:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(0, 0, 0, 0.2) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.mobile-sidebar-close {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-sidebar-header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
}

.mobile-sidebar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.mobile-sidebar-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: rotate(90deg) scale(1.1);
}





.mobile-sidebar-content {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav-menu {
    padding: 0 1.5rem;
}



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

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    background: rgba(12, 224, 107, 0.1);
    transform: translateX(5px);
}

.mobile-nav-link i {
    font-size: 1.2rem;
    color: var(--primary-color);
    width: 24px;
    text-align: center;
}

.mobile-language-section {
    background: rgba(12, 224, 107, 0.05);
    padding: 1rem;
    border-radius: 16px;
    margin: 0rem 0.5rem;
}

.mobile-language-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.mobile-language-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.mobile-language-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: white;
    border: 2px solid var(--border);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 500;
    min-height: 50px;
    text-align: left;
}

.mobile-language-item:hover {
    border-color: var(--primary-color);
    background: rgba(12, 224, 107, 0.05);
}

.mobile-language-item.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.mobile-language-flag {
    width: 24px;
    height: 18px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    object-fit: cover;
    flex-shrink: 0;
}

.mobile-language-item span {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}



.mobile-signin-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-signin-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.mobile-nav-menu {
    list-style: none;
    padding: 1rem 0;
    margin: 0;
}

.mobile-nav-item {
    margin-bottom: 0.5rem;
    padding: 0 1rem;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 12px;
    background: transparent;
}

.mobile-nav-link:hover {
    background: rgba(12, 224, 107, 0.1);
    color: var(--primary-color);
    transform: translateX(5px);
}

.mobile-nav-link.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(12, 224, 107, 0.3);
}

.mobile-nav-icon {
    margin-right: 1rem;
    width: 24px;
    text-align: center;
    font-size: 1.1rem;
}

.mobile-nav-link.active .mobile-nav-icon {
    color: white;
}

.mobile-nav-link:hover .mobile-nav-icon {
    color: var(--primary-color);
    transform: scale(1.1);
}

.mobile-search-section {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
}

.mobile-search-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mobile-search-title i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.mobile-search-box {
    position: relative;
}

.mobile-search-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    background: white;
    color: var(--text-primary);
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mobile-search-input::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.mobile-search-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(12, 224, 107, 0.15), 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.mobile-search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
}

.mobile-language-section {
    padding: 0.5rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.mobile-language-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mobile-language-title i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.mobile-language-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.mobile-language-item {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    border: 2px solid var(--border);
    border-radius: 10px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.mobile-language-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(12, 224, 107, 0.2);
}

.mobile-language-item.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(12, 224, 107, 0.3);
    transform: translateY(-1px);
}

.mobile-language-flag {
    width: 20px;
    height: 15px;
    margin-right: 0.5rem;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}



.mobile-signin-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    padding: 1.25rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(12, 224, 107, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.mobile-signin-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #0a9950 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(12, 224, 107, 0.4);
}

.mobile-signin-btn i {
    font-size: 1.1rem;
}

/* Mobile Sidebar Overlay */
.mobile-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Language Selector */
.language-selector {
    position: relative;
    margin: 0;
}

.language-btn {
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.language-btn:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.lang-flag {
    width: 20px;
    height: 15px;
    border-radius: 3px;
    object-fit: cover;
}

.language-btn i {
    font-size: 0.8rem;
    opacity: 0.7;
    transition: transform 0.3s ease;
}

.language-btn.active i {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    z-index: 1000;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    max-height: 300px;
    overflow-y: auto;
}

.language-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--surface);
}

.language-item:last-child {
    border-bottom: none;
}

.language-item:hover {
    background: var(--surface);
    color: var(--primary-color);
}

.language-item.active {
    background: var(--primary-color);
    color: white;
}

.language-item span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Hide Google Translate Elements */
#google_translate_element,
.goog-te-banner-frame,
.goog-te-menu-frame {
    display: none !important;
}

.goog-te-gadget {
    display: none !important;
}

body {
    top: 0 !important;
}

.goog-te-balloon-frame {
    display: none !important;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    position: relative;
    background: var(--gradient-hero);
    padding: 4rem 0;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/global.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.2;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(31, 41, 55, 0.9) 50%, rgba(15, 23, 42, 0.8) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-content .container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.hero-text {
    flex: 1;
    max-width: 700px;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-text h1 .highlight-text {
    background: linear-gradient(135deg, var(--primary-color) 0%, #00ff88 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(12, 224, 107, 0.4));
}

.hero-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 3rem;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.highlight {
    color: var(--secondary-color);
    position: relative;
}

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

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

.network-globe {
    position: relative;
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    box-shadow: 0 20px 40px rgba(12, 224, 107, 0.3);
    z-index: 3;
}

.pulse-ring,
.pulse-ring-2 {
    position: absolute;
    border: 2px solid rgba(12, 224, 107, 0.3);
    border-radius: 50%;
    animation: pulse 3s infinite;
}

.pulse-ring {
    width: 160px;
    height: 160px;
    top: -20px;
    left: -20px;
}

.pulse-ring-2 {
    width: 200px;
    height: 200px;
    top: -40px;
    left: -40px;
    animation-delay: 1.5s;
}

@keyframes pulse {
    0% {
        opacity: 1;
        transform: scale(0.8);
    }
    50% {
        opacity: 0.5;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1.2);
    }
}

.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

.hero-search {
    margin: 2rem 0;
    max-width: 100%;
}

.hero-search {
    position: relative;
    max-width: 600px;
    width: 100%;
    margin: 2rem auto;
}

.search-container {
    position: relative;
    width: 100%;
    z-index: 99999999;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    border: 3px solid rgba(12, 224, 107, 0.3);
    border-radius: 16px;
    padding: 1.25rem 1.75rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.search-box input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1.1rem;
    color: var(--text-primary);
    background: transparent;
    font-weight: 500;
    line-height: 1.5;
    width: 100%;
}

.search-box input::placeholder {
    color: #999999;
    opacity: 1;
}

.search-box i {
    color: #9ca3af;
    margin-right: 1rem;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.mobile-search-container {
    position: relative;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    z-index: 99999999;
    padding: 0 1rem;
}

.mobile-search-box {
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    border: 3px solid rgba(12, 224, 107, 0.3);
    border-radius: 16px;
    padding: 1.25rem 1.75rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    width: 100%;
    margin-bottom: 1rem;
    z-index: 99999;
}

.mobile-search-box input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px; /* iOS için minimum 16px */
    color: var(--text-primary);
    background: transparent;
    font-weight: 500;
    line-height: 1.5;
    width: 100%;
    -webkit-appearance: none; /* iOS için */
    border-radius: 0; /* iOS için */
}

.mobile-search-box i {
    color: #9ca3af;
    margin-right: 1rem;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.mobile-search-results {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    z-index: 99999999;
    max-height: 300px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 1rem;
}

.mobile-search-box {
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    border: 3px solid rgba(12, 224, 107, 0.3);
    border-radius: 16px;
    padding: 1.25rem 1.75rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    width: 100%;
    margin-bottom: 1rem;
    z-index: 99999;
}

.mobile-search-box input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1.1rem;
    color: var(--text-primary);
    background: transparent;
    font-weight: 500;
    line-height: 1.5;
    width: 100%;
}

.mobile-search-box input::placeholder {
    color: #999999;
    opacity: 1;
}

.mobile-search-box i {
    color: #9ca3af;
    margin-right: 1rem;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    border: 3px solid rgba(12, 224, 107, 0.3);
    border-radius: 16px;
    padding: 1.25rem 1.75rem;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 4px 16px rgba(12, 224, 107, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    width: 100%;
}

.search-box:hover {
    border-color: var(--primary-color);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.15),
        0 8px 24px rgba(12, 224, 107, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.search-box:focus-within {
    border-color: var(--primary-color);
    box-shadow: 
        0 16px 48px rgba(0, 0, 0, 0.2),
        0 8px 32px rgba(12, 224, 107, 0.3),
        0 0 0 4px rgba(12, 224, 107, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
}

.search-icon {
    color: #9ca3af;
    margin-right: 1rem;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 0.5rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.search-box:focus-within .search-icon {
    color: var(--primary-color);
    background: linear-gradient(135deg, rgba(12, 224, 107, 0.1) 0%, rgba(12, 224, 107, 0.05) 100%);
    border-color: rgba(12, 224, 107, 0.3);
    transform: scale(1.05);
}

#countrySearch {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1.1rem;
    font-weight: 500;
    background: transparent;
    color: var(--text-primary);
    line-height: 1.5;
}

#countrySearch::placeholder {
    color: #9ca3af;
    font-weight: 400;
    font-size: 1rem;
}

.search-box input::placeholder {
    color: var(--text-light);
}

/* Search Suggestions */
.search-suggestions {
    position: static;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    border: 3px solid rgba(12, 224, 107, 0.4);
    border-radius: 16px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.2),
        0 15px 35px rgba(12, 224, 107, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    z-index: 9999;
    overflow: hidden;
    max-height: 320px;
    overflow-y: auto;
    display: none;
    width: 100%;
    min-width: 100%;
    backdrop-filter: blur(15px);
    animation: slideDown 0.3s ease-out;
}

.suggestion-item {
    display: flex;
    align-items: center;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #f1f5f9;
    background: white;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-height: 64px;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.suggestion-flag {
    width: 48px;
    height: 36px;
    border-radius: 8px;
    margin-right: 1.25rem;
    object-fit: cover;
    border: 3px solid #f1f5f9;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.1),
        0 2px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.suggestion-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    position: relative;
}

.suggestion-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.3;
    transition: color 0.3s ease;
    margin-bottom: 0.25rem;
}

/* Price styles removed - no longer needed */

.suggestion-item:hover .suggestion-name {
    color: var(--primary-color);
}

.suggestion-item:hover .suggestion-flag {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 
        0 6px 20px rgba(12, 224, 107, 0.3),
        0 4px 12px rgba(0, 0, 0, 0.1);
}

.suggestion-arrow {
    color: #94a3b8;
    font-size: 1rem;
    margin-left: auto;
    transition: all 0.3s ease;
    background: rgba(148, 163, 184, 0.1);
    padding: 0.5rem;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.suggestion-item:hover .suggestion-arrow {
    color: var(--primary-color);
    background: rgba(12, 224, 107, 0.1);
    transform: translateX(4px) scale(1.1);
    box-shadow: 0 4px 12px rgba(12, 224, 107, 0.2);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.trust-badge span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.network-indicators {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
    position: relative;
    z-index: 1;
}

.network-indicator {
    background: linear-gradient(135deg, rgba(12, 224, 107, 0.15) 0%, rgba(12, 224, 107, 0.25) 100%);
    color: var(--primary-color);
    padding: 0.75rem 0.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px solid rgba(12, 224, 107, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(12, 224, 107, 0.2);
}

.network-indicator:hover {
    background: linear-gradient(135deg, rgba(12, 224, 107, 0.3) 0%, rgba(12, 224, 107, 0.4) 100%);
    border-color: rgba(12, 224, 107, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(12, 224, 107, 0.3);
}

.coverage-icons,
.feature-icons {
    display: flex;
    gap: 1rem;
}

.coverage-icons i,
.feature-icons i {
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 500px;
    position: relative;
    z-index: 3;
}

.phone-mockup {
    position: relative;
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #2a3441 0%, #1e2631 100%);
    border-radius: 40px;
    padding: 20px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 10px 30px rgba(12, 224, 107, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(12, 224, 107, 0.3);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.phone-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/global.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    border-radius: 28px;
}

.esim-visual {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #00ff88 100%);
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 40px rgba(12, 224, 107, 0.6);
}

.esim-visual i {
    font-size: 3rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 40px rgba(12, 224, 107, 0.6); }
    50% { transform: scale(1.05); box-shadow: 0 0 60px rgba(12, 224, 107, 0.8); }
}

@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* No Results Message */
.no-results-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.5rem 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05) 0%, rgba(239, 68, 68, 0.02) 100%);
    border-radius: 12px;
    margin: 0.5rem;
    border: 2px dashed rgba(239, 68, 68, 0.2);
}

.no-results-message i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ef4444;
    animation: pulse 2s infinite;
}

.no-results-message span {
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.no-results-message::after {
    content: "Try different keywords or browse categories";
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 400;
    margin-top: 0.5rem;
}

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

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.slider-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

/* Operators Section */
.operators {
    padding: 4rem 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
}

.operators-text {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.operators-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    opacity: 0.7;
}

.operators-logos img {
    height: 40px;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.operators-logos img:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Mobile Hero */
.mobile-hero-section {
    display: none;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 2rem 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mobile-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(12, 224, 107, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(12, 224, 107, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: floatingOrbs 8s ease-in-out infinite;
    z-index: 1;
}

.mobile-hero-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 20px,
            rgba(12, 224, 107, 0.05) 20px,
            rgba(12, 224, 107, 0.05) 40px
        );
    animation: moveLines 15s linear infinite;
    z-index: 1;
}

@keyframes floatingOrbs {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-20px) translateX(10px) scale(1.1);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-10px) translateX(-10px) scale(0.9);
        opacity: 1;
    }
    75% {
        transform: translateY(-30px) translateX(5px) scale(1.05);
        opacity: 0.7;
    }
}

@keyframes moveLines {
    0% {
        transform: translateX(-50px) translateY(-50px) rotate(0deg);
    }
    100% {
        transform: translateX(50px) translateY(50px) rotate(360deg);
    }
}

.animated-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(2px 2px at 20px 30px, rgba(12, 224, 107, 0.4), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(12, 224, 107, 0.5), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(12, 224, 107, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 3s linear infinite;
    z-index: 1;
}

.wave-animation {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(45deg, transparent 33%, rgba(12, 224, 107, 0.15) 33%, rgba(12, 224, 107, 0.15) 66%, transparent 66%);
    background-size: 60px 40px;
    animation: wave 2s linear infinite;
    z-index: 1;
}

@keyframes sparkle {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0;
    }
}

@keyframes wave {
    0% {
        background-position-x: 0;
    }
    100% {
        background-position-x: 60px;
    }
}

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

.mobile-hero-content h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: white !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    background: none !important;
    -webkit-text-fill-color: white !important;
}

.mobile-hero-content .highlight-text {
    color: var(--primary) !important;
    font-weight: 800;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    filter: brightness(1.2);
    -webkit-text-fill-color: var(--primary) !important;
}

.mobile-hero-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin-bottom: 2rem;
    padding: 0 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.mobile-search-container {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
    z-index: 3;
}

.mobile-search-box {
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    backdrop-filter: blur(10px);
    border: 3px solid rgba(12, 224, 107, 0.4);
    border-radius: 16px;
    padding: 1.25rem 1.75rem;
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.15),
        0 8px 24px rgba(12, 224, 107, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.4s ease;
    width: 100%;
}

.mobile-search-results {
    position: static;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 16px;
    border: 3px solid rgba(12, 224, 107, 0.4);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.2),
        0 15px 35px rgba(12, 224, 107, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    overflow: hidden;
    max-height: 320px;
    overflow-y: auto;
    z-index: 9999;
    width: 100%;
    min-width: 100%;
    backdrop-filter: blur(15px);
    animation: slideDown 0.3s ease-out;
}

.mobile-suggestion-item {
    display: flex;
    align-items: center;
    padding: 0.875rem 1rem;
    border-bottom: 1px solid #f1f5f9;
    background: white;
    transition: all 0.2s ease;
    cursor: pointer;
}

.mobile-suggestion-item:last-child {
    border-bottom: none;
}

.mobile-suggestion-item:hover {
    background: #f8fafc;
}

.mobile-suggestion-item:active {
    background: #e2e8f0;
}

.suggestion-flag {
    width: 48px;
    height: 36px;
    border-radius: 8px;
    margin-right: 1.25rem;
    object-fit: cover;
    border: 3px solid #f1f5f9;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.1),
        0 2px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.suggestion-name {
    flex: 1;
    font-size: 0.95rem;
    font-weight: 500;
    color: #1e293b;
}

.suggestion-arrow {
    color: #94a3b8;
    font-size: 0.75rem;
    margin-left: 0.5rem;
}

.mobile-search-box:focus-within {
    background: white;
    border-color: var(--primary-color);
    box-shadow: 
        0 16px 48px rgba(0, 0, 0, 0.2),
        0 8px 32px rgba(12, 224, 107, 0.3),
        0 0 0 4px rgba(12, 224, 107, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
}

.mobile-search-box i {
    color: #9ca3af;
    margin-right: 1rem;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 0.5rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.mobile-search-box:focus-within i {
    color: var(--primary-color);
    background: linear-gradient(135deg, rgba(12, 224, 107, 0.1) 0%, rgba(12, 224, 107, 0.05) 100%);
    border-color: rgba(12, 224, 107, 0.3);
    transform: scale(1.05);
}

.mobile-search-box input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1.1rem;
    color: var(--text-primary);
    background: transparent;
    font-weight: 500;
    line-height: 1.5;
}

.mobile-search-box input::placeholder {
    color: #999999;
    opacity: 1;
}

/* Categories */
.categories {
    padding: 4rem 0 3rem 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    margin-top: 2rem;
}

.category-tabs {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.tab-btn {
    background: white;
    border: 2px solid var(--border);
    color: var(--text-secondary);
    padding: 1rem 2rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tab-btn i {
    font-size: 0.9rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    position: relative;
    z-index: 2;
}

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

.tab-btn span {
    position: relative;
    z-index: 2;
}

.tab-btn:hover,
.tab-btn.active {
    border-color: var(--primary-color);
    color: white;
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.tab-btn.active i,
.tab-btn:hover i {
    opacity: 1;
    color: inherit;
}

.tab-btn:hover::before,
.tab-btn.active::before {
    left: 0;
}

/* Countries Grid */
.countries {
    padding: 5rem 0;
    background: var(--background);
    margin-top: 1rem;
}

.countries-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.countries-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.countries-count {
    background: var(--gradient-primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

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

.country-card {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 1rem;
    min-height: 72px;
    color: white;
    box-shadow: 0 4px 12px rgba(12, 224, 107, 0.15);
}



.country-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 30px rgba(12, 224, 107, 0.3);
}





.country-info {
    flex: 1;
}

.country-flag {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.1);
    padding: 3px;
    backdrop-filter: blur(10px);
}

.country-flag img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.country-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.card-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0.3rem 0.7rem;
    border-radius: 16px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-hot {
    background: rgba(251, 146, 60, 0.9);
    color: white;
    box-shadow: 0 2px 8px rgba(251, 146, 60, 0.3);
}

.badge-popular {
    background: rgba(59, 130, 246, 0.9);
    color: white;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.badge-new {
    background: rgba(16, 185, 129, 0.9);
    color: white;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.country-arrow {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.country-card:hover .country-arrow {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(6px) scale(1.1);
}

.country-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.country-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.country-data {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Pagination - Clean Design */
.pagination-container {
    margin-top: 3rem;
    padding: 2rem 0;
    display: none; /* Desktop pagination için gizlenmiş */
}

.view-all-container {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem 0;
}

/* New Stylish View All Button */
.btn-view-all {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, #0ce06b 0%, #09b857 100%);
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 
        0 15px 35px rgba(12, 224, 107, 0.3),
        0 8px 20px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-view-all:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(12, 224, 107, 0.4),
        0 15px 30px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-view-all:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-view-all .btn-text {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.btn-view-all .btn-icon {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.btn-view-all:hover .btn-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(360deg);
}

.btn-view-all .btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    border-radius: 50px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-view-all:hover .btn-glow {
    opacity: 1;
}

/* Pulse animation */
@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(12, 224, 107, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(12, 224, 107, 0); }
    100% { box-shadow: 0 0 0 0 rgba(12, 224, 107, 0); }
}

.btn-view-all::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50px;
    animation: pulse-glow 2s infinite;
}

/* Legacy button styles */
.view-all-container .btn-secondary {
    padding: 1rem 3rem;
    font-size: 1.1rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

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

.view-all-container .btn-secondary:hover::before {
    left: 100%;
}

.view-all-container .btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: var(--surface);
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4rem;
}

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

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.loading-overlay.active {
    opacity: 1;
    visibility: visible;
}

.loading-spinner {
    text-align: center;
    color: white;
}

.loading-spinner i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.loading-spinner p {
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: var(--background-dark);
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-main {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-image {
        flex: none;
    }
    
    .operators-logos {
        gap: 2rem;
    }
    
    .countries-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .pagination-controls {
        flex-direction: column;
        gap: 1rem;
    }
    
    .pagination-numbers {
        order: -1;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .language-selector {
        display: none;
    }
    
    .hero {
        display: none !important;
    }
    
    .mobile-hero-section {
        display: block;
        margin-top: 70px;
        padding: 3rem 0 2rem 0;
    }
    
    .mobile-hero-content h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .mobile-hero-description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .categories {
        margin-top: 0;
        padding-top: 1.5rem;
    }
    

    
    .trust-badge {
        margin-top: 0.5rem;
        margin-bottom: 0;
    }
    
    .network-indicators {
        gap: 0.5rem;
    }
    
    .network-indicator {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
    }
    
    .desktop-only {
        display: none;
    }
    
    .mobile-only {
        display: block;
    }
    
    .search-box {
        max-width: 100%;
    }
    
    .categories {
        padding: 1.5rem 0 1rem 0;
        margin-top: 1rem;
    }
    
    .category-tabs {
        display: flex;
        overflow-x: auto;
        padding: 0 1rem;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: 0.75rem;
        white-space: nowrap;
        justify-content: flex-start;
        flex-wrap: nowrap;
    }
    
    .category-tabs::-webkit-scrollbar {
        display: none;
    }
    
    .tab-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        flex-shrink: 0;
        white-space: nowrap;
        min-width: auto;
        border-radius: 20px;
    }
    
    .countries-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .countries-header h2 {
        font-size: 2rem;
    }
    
    .operators-logos {
        gap: 1rem;
    }
    
    .operators-logos img {
        height: 30px;
    }
    
    .features h2 {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .pagination-controls {
        flex-direction: column;
        gap: 1rem;
    }
    
    .pagination-numbers {
        justify-content: center;
    }
    
    .page-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .nav {
        padding: 1rem;
    }
    
    .slide-content {
        padding: 2rem 1rem;
    }
    
    .hero-text h1 {
        font-size: 1.75rem;
    }
    
    .tab-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .countries {
        padding: 2rem 0 4rem 0;
        margin-top: 1.5rem;
    }
    
    .countries-grid {
        padding: 0 1rem;
        gap: 1rem;
    }
    
   
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.slide-up {
    animation: slideUp 0.6s ease-out;
}

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

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

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--surface);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* User Profile Dropdown */
.user-profile-dropdown {
    position: relative;
    display: inline-block;
}

.user-profile-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    color: var(--text-primary);
}

.user-profile-btn:hover {
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(12, 224, 107, 0.1);
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
}

.user-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 120px;
}

.user-name {
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.2;
}

.user-email {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.2;
}

.user-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    min-width: 280px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    margin-top: 8px;
}

.user-profile-dropdown.show .user-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown-header {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 12px 12px 0 0;
}

.user-avatar-large {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.user-details h4 {
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    font-size: 16px;
}

.user-details p {
    color: var(--text-secondary);
    margin: 2px 0 0 0;
    font-size: 14px;
}

.user-dropdown-divider {
    height: 1px;
    background: var(--border);
    margin: 0;
}

.user-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 14px;
}

.user-dropdown-item:hover {
    background: var(--surface);
    color: var(--primary-color);
}

.user-dropdown-item i {
    width: 18px;
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

.user-dropdown-item:hover i {
    color: var(--primary-color);
}

.user-dropdown-item.logout-item {
    color: #dc2626;
    border-top: 1px solid var(--border);
}

.user-dropdown-item.logout-item:hover {
    background: #fef2f2;
    color: #dc2626;
}

.user-dropdown-item.logout-item i {
    color: #dc2626;
}

/* Mobile User Info */
.mobile-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}

.mobile-user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.mobile-user-details h4 {
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    font-size: 16px;
}

.mobile-user-details p {
    color: var(--text-secondary);
    margin: 2px 0 0 0;
    font-size: 12px;
}

.mobile-user-actions {
    padding: 16px 0;
}

.mobile-user-action {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 14px;
    border-radius: 8px;
    margin: 4px 0;
}

.mobile-user-action:hover {
    background: var(--surface);
    color: var(--primary-color);
}

.mobile-user-action i {
    width: 18px;
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

.mobile-user-action:hover i {
    color: var(--primary-color);
}

.mobile-user-action.logout-action {
    color: #dc2626;
    border-top: 1px solid var(--border);
    margin-top: 8px;
    padding-top: 16px;
}

.mobile-user-action.logout-action:hover {
    background: #fef2f2;
    color: #dc2626;
}

.mobile-user-action.logout-action i {
    color: #dc2626;
}

.mobile-divider {
    height: 1px;
    background: var(--border);
    margin: 16px 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .user-profile-dropdown {
        display: none;
    }
    
    .user-info {
        min-width: auto;
    }
    
    .user-dropdown-menu {
        min-width: 260px;
        right: -20px;
    }
}

/* Scroll to Top Button */
.scroll-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0ce06b, #0bb85a);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(12, 224, 107, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
}

.scroll-to-top-btn.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.scroll-to-top-btn:hover {
    background: linear-gradient(135deg, #0bb85a, #09a049);
    box-shadow: 0 6px 20px rgba(12, 224, 107, 0.5);
    transform: translateY(-2px);
}

.scroll-to-top-btn:active {
    transform: translateY(0);
}

.scroll-to-top-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.scroll-to-top-btn:hover::before {
    opacity: 1;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .scroll-to-top-btn {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}
