/* ============================================
   GILEAD - Premium Advisory Website Styles
   ============================================ */

/* === CSS Variables === */
:root {
    --primary: #0A1628;
    --primary-light: #1a2a4a;
    --accent: #00D4FF;
    --accent-2: #7C3AED;
    --accent-3: #F59E0B;
    --gradient-1: linear-gradient(135deg, #00D4FF 0%, #7C3AED 100%);
    --gradient-2: linear-gradient(135deg, #7C3AED 0%, #F59E0B 100%);
    --gradient-3: linear-gradient(135deg, #00D4FF 0%, #00FF88 100%);
    --gradient-hero: linear-gradient(180deg, #0A1628 0%, #0f2037 50%, #132842 100%);
    --text: #E2E8F0;
    --text-secondary: #94A3B8;
    --text-dark: #1E293B;
    --surface: #111827;
    --surface-2: #1E293B;
    --surface-3: #374151;
    --border: rgba(255, 255, 255, 0.08);
    --border-light: rgba(255, 255, 255, 0.15);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 40px rgba(0, 212, 255, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --font-he: 'Heebo', sans-serif;
    --font-en: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === Reset & Base === */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scroll-padding-top: 80px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-he);
    background: var(--primary);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

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

.section {
    padding: 120px 0;
    position: relative;
}

.section-dark {
    background: var(--surface);
}

.section-gradient {
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.section-gradient::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* === Typography === */
.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-label.center {
    justify-content: center;
}

.label-line {
    display: block;
    width: 40px;
    height: 2px;
    background: var(--gradient-1);
    border-radius: 2px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-title.center {
    text-align: center;
}

.section-desc {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 60px;
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-he);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s;
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
}

.btn-primary::before {
    background: linear-gradient(135deg, #00b8db 0%, #6d28d9 100%);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.4);
}

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

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* === Preloader === */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--primary);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s, visibility 0.5s;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-container {
    text-align: center;
}

.globe-loader {
    width: 80px;
    height: 80px;
    position: relative;
    margin: 0 auto 24px;
}

.globe {
    width: 30px;
    height: 30px;
    background: var(--gradient-1);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.orbit {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 50%;
    animation: orbit-spin 3s linear infinite;
}

.orbit-1 { transform: rotateX(60deg); }
.orbit-2 { transform: rotateY(60deg); animation-duration: 4s; animation-direction: reverse; }
.orbit-3 { transform: rotateX(30deg) rotateY(30deg); animation-duration: 5s; }

.satellite {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 10px var(--accent);
}

@keyframes orbit-spin {
    from { transform: rotateX(60deg) rotateZ(0deg); }
    to { transform: rotateX(60deg) rotateZ(360deg); }
}

.loader-text {
    font-family: var(--font-en);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: pulse-text 2s ease-in-out infinite;
}

@keyframes pulse-text {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* === Navigation === */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

#navbar.scrolled {
    padding: 12px 0;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 64px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
    mix-blend-mode: screen;
}

.logo:hover .logo-img {
    filter: brightness(1.15);
}

/* Footer logo larger */
.footer-brand .logo-img {
    height: 90px;
}

/* Nav Brand Text */
.nav-brand-text {
    font-family: var(--font-en);
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 2px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
    user-select: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: white;
    background: rgba(255, 255, 255, 0.05);
}

.nav-cta {
    background: var(--gradient-1) !important;
    color: white !important;
    border-radius: 50px !important;
    padding: 10px 24px !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4) !important;
    background: linear-gradient(135deg, #00b8db 0%, #6d28d9 100%) !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.mobile-menu ul {
    text-align: center;
}

.mobile-menu a {
    display: block;
    padding: 16px;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text);
    transition: var(--transition);
}

.mobile-menu a:hover {
    color: var(--accent);
}

/* === Hero Section === */
#hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}

.hero-gradient::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--primary), transparent);
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 50px;
    margin-bottom: 32px;
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 500;
}

.hero-badge i {
    font-size: 1rem;
    color: var(--accent-3);
}

#hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-line-1 {
    display: block;
    color: white;
}

.hero-line-2 {
    display: block;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.hero-indicators {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
}

.indicator-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(0, 212, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1rem;
}

.indicator-text strong {
    display: block;
    font-size: 0.9rem;
    color: white;
}

.indicator-text span {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-family: var(--font-en);
}

.indicator-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-dot {
    width: 4px;
    height: 8px;
    background: var(--accent);
    border-radius: 4px;
    animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(12px); opacity: 0.3; }
}

/* === About Section === */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 32px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 500;
}

.feature-check {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: white;
    flex-shrink: 0;
}

/* About Visual - Activity Cubes */
.about-visual {
    position: relative;
}

.activity-cubes-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.activity-cube {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 24px;
    background: rgba(17, 24, 39, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    cursor: default;
}

.activity-cube::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: var(--radius-md);
}

.activity-cube:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.activity-cube:hover::before {
    opacity: 1;
}

.cube-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.activity-cube:hover .cube-icon {
    transform: scale(1.1);
}

.cube-text {
    position: relative;
    z-index: 1;
}

.cube-text strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2px;
}

.cube-text span {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Cube color variants */
.cube-1 { border-color: rgba(0, 212, 255, 0.2); }
.cube-1::before { background: linear-gradient(135deg, rgba(0, 212, 255, 0.08) 0%, transparent 60%); }
.cube-1 .cube-icon { background: rgba(0, 212, 255, 0.15); color: var(--accent); }
.cube-1:hover { border-color: rgba(0, 212, 255, 0.4); box-shadow: 0 8px 30px rgba(0, 212, 255, 0.1); }

.cube-2 { border-color: rgba(124, 58, 237, 0.2); }
.cube-2::before { background: linear-gradient(135deg, rgba(124, 58, 237, 0.08) 0%, transparent 60%); }
.cube-2 .cube-icon { background: rgba(124, 58, 237, 0.15); color: var(--accent-2); }
.cube-2:hover { border-color: rgba(124, 58, 237, 0.4); box-shadow: 0 8px 30px rgba(124, 58, 237, 0.1); }

.cube-3 { border-color: rgba(245, 158, 11, 0.2); }
.cube-3::before { background: linear-gradient(135deg, rgba(245, 158, 11, 0.08) 0%, transparent 60%); }
.cube-3 .cube-icon { background: rgba(245, 158, 11, 0.15); color: var(--accent-3); }
.cube-3:hover { border-color: rgba(245, 158, 11, 0.4); box-shadow: 0 8px 30px rgba(245, 158, 11, 0.1); }

.cube-4 { border-color: rgba(0, 255, 136, 0.2); }
.cube-4::before { background: linear-gradient(135deg, rgba(0, 255, 136, 0.08) 0%, transparent 60%); }
.cube-4 .cube-icon { background: rgba(0, 255, 136, 0.15); color: #00FF88; }
.cube-4:hover { border-color: rgba(0, 255, 136, 0.4); box-shadow: 0 8px 30px rgba(0, 255, 136, 0.1); }

.cube-5 { border-color: rgba(255, 99, 132, 0.2); }
.cube-5::before { background: linear-gradient(135deg, rgba(255, 99, 132, 0.08) 0%, transparent 60%); }
.cube-5 .cube-icon { background: rgba(255, 99, 132, 0.15); color: #FF6384; }
.cube-5:hover { border-color: rgba(255, 99, 132, 0.4); box-shadow: 0 8px 30px rgba(255, 99, 132, 0.1); }

.cube-6 { border-color: rgba(54, 162, 235, 0.2); }
.cube-6::before { background: linear-gradient(135deg, rgba(54, 162, 235, 0.08) 0%, transparent 60%); }
.cube-6 .cube-icon { background: rgba(54, 162, 235, 0.15); color: #36A2EB; }
.cube-6:hover { border-color: rgba(54, 162, 235, 0.4); box-shadow: 0 8px 30px rgba(54, 162, 235, 0.1); }

/* Staggered cube animations */
.activity-cube:nth-child(1) { animation: cube-appear 0.6s ease forwards 0.1s; }
.activity-cube:nth-child(2) { animation: cube-appear 0.6s ease forwards 0.2s; }
.activity-cube:nth-child(3) { animation: cube-appear 0.6s ease forwards 0.3s; }
.activity-cube:nth-child(4) { animation: cube-appear 0.6s ease forwards 0.4s; }
.activity-cube:nth-child(5) { animation: cube-appear 0.6s ease forwards 0.5s; }
.activity-cube:nth-child(6) { animation: cube-appear 0.6s ease forwards 0.6s; }

@keyframes cube-appear {
    from { opacity: 0; transform: translateY(20px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}


@keyframes float-item {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(10px, -15px); }
    50% { transform: translate(-5px, -25px); }
    75% { transform: translate(15px, -10px); }
}

/* === Services Section === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    position: relative;
    padding: 40px 32px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 212, 255, 0.2);
    box-shadow: var(--shadow-glow);
    background: rgba(0, 212, 255, 0.03);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card.featured {
    border-color: rgba(0, 212, 255, 0.3);
    background: rgba(0, 212, 255, 0.05);
}

.featured-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 4px 14px;
    background: var(--gradient-1);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
}

.service-icon-wrapper {
    position: relative;
    width: 72px;
    height: 72px;
    margin-bottom: 24px;
}

.service-icon-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-1);
    border-radius: 20px;
    opacity: 0.1;
    transition: var(--transition);
}

.service-card:hover .service-icon-bg {
    opacity: 0.2;
    transform: rotate(8deg) scale(1.1);
}

.service-icon {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--accent);
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
}

.service-card > p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-features {
    margin-bottom: 24px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li i {
    font-size: 0.8rem;
    color: var(--accent);
    width: 20px;
    text-align: center;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.service-link:hover {
    gap: 14px;
}

.service-link i {
    font-size: 0.8rem;
    transition: var(--transition);
}

/* === Global Coverage === */
.map-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto 60px;
    aspect-ratio: 2 / 1;
    background: rgba(0, 212, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.world-map {
    position: relative;
    width: 100%;
    height: 100%;
}

.map-svg {
    width: 100%;
    height: 100%;
}

.map-pin {
    position: absolute;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 3;
}

.pin-pulse {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.3);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pin-pulse 2s ease-out infinite;
}

.pin-dot {
    position: relative;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent);
    z-index: 1;
}

.pin-label {
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--surface);
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-family: var(--font-en);
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
    border: 1px solid var(--border);
}

.map-pin:hover .pin-label {
    opacity: 1;
    top: -32px;
}

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

.regions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.region-card {
    text-align: center;
    padding: 32px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.region-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 212, 255, 0.2);
    background: rgba(0, 212, 255, 0.03);
}

.region-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 16px;
}

.region-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.region-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.5;
}

.region-count {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
}

/* === Stats Section === */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    position: relative;
}

.stat-card::after {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: var(--border-light);
}

.stat-card:first-child::after {
    display: none;
}

.stat-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 16px;
}

.stat-number {
    font-family: var(--font-en);
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    display: inline;
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-en);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    display: inline;
}

.stat-label {
    margin-top: 12px;
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* === Process Section === */
.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    right: 39px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.process-step {
    display: flex;
    gap: 40px;
    margin-bottom: 48px;
    position: relative;
    align-items: flex-start;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-en);
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
}

.step-content {
    flex: 1;
    padding: 24px 32px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.step-content:hover {
    border-color: rgba(0, 212, 255, 0.2);
    background: rgba(0, 212, 255, 0.03);
    transform: translateX(-4px);
}

.step-icon {
    font-size: 1.3rem;
    color: var(--accent);
    margin-bottom: 12px;
}

.step-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.step-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* === Testimonials === */
.testimonials-slider {
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    min-width: 100%;
    padding: 48px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
}

.testimonial-stars {
    color: var(--accent-3);
    font-size: 1.1rem;
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    gap: 4px;
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text);
    margin-bottom: 32px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
}

.author-info strong {
    display: block;
    font-size: 1.05rem;
    color: white;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.test-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.test-nav-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

.test-dots {
    display: flex;
    gap: 8px;
}

.test-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--surface-3);
    cursor: pointer;
    transition: var(--transition);
}

.test-dot.active {
    background: var(--accent);
    width: 30px;
    border-radius: 5px;
}

/* === CTA Section === */
.section-cta {
    position: relative;
    overflow: hidden;
    background: var(--surface);
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.1) 0%, transparent 60%);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* === Contact Section === */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.contact-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.contact-item:hover {
    border-color: rgba(0, 212, 255, 0.2);
    background: rgba(0, 212, 255, 0.03);
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0, 212, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--accent);
    flex-shrink: 0;
}

.contact-item-text strong {
    display: block;
    font-size: 0.95rem;
    color: white;
    margin-bottom: 2px;
}

.contact-item-text span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

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

/* Contact Form */
.contact-form-container {
    padding: 48px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-1);
}

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

.form-group {
    margin-bottom: 24px;
    position: relative;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: var(--font-he);
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-secondary);
    opacity: 0.5;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    background: rgba(0, 212, 255, 0.03);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394A3B8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 16px center;
    cursor: pointer;
}

.form-group select option {
    background: var(--surface);
    color: var(--text);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.input-line {
    display: none;
}

/* === Footer === */
#footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 60px;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 20px;
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-links-group h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
    padding-right: 4px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.footer-contact li i {
    color: var(--accent);
    width: 16px;
    text-align: center;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: var(--accent);
}

/* === WhatsApp Float === */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 100;
    transition: var(--transition);
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

@keyframes whatsapp-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1); }
}

/* === Back to Top === */
.back-to-top {
    position: fixed;
    bottom: 104px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
}

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

.back-to-top:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
    transform: translateY(-2px);
}

/* === Animations === */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate="fade-right"] {
    transform: translateX(40px);
}

[data-animate="fade-left"] {
    transform: translateX(-40px);
}

[data-animate].animated {
    opacity: 1;
    transform: translate(0, 0);
}

/* === Responsive Design === */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .activity-cubes-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .regions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .logo-img {
        height: 44px;
    }

    .nav-container {
        padding: 0 16px;
        max-width: 100%;
    }

    .hamburger {
        display: flex;
    }

    .nav-brand {
        flex: 1;
        justify-content: center;
    }

    .nav-brand-text {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }

    .nav-links {
        display: none;
    }

    .section {
        padding: 80px 0;
    }

    #hero {
        min-height: 100vh;
        min-height: 100dvh;
        padding-top: 70px;
        padding-bottom: 30px;
    }

    .hero-badge {
        font-size: 0.78rem;
        padding: 8px 14px;
        gap: 6px;
    }

    #hero h1 {
        font-size: clamp(3.5rem, 12vw, 5rem);
    }

    .hero-indicators {
        display: none;
    }

    .hero-scroll {
        display: none;
    }

    .hero-indicators {
        flex-direction: column;
    }

    .indicator-divider {
        width: 40px;
        height: 1px;
    }

    .activity-cubes-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .activity-cube {
        padding: 18px 20px;
    }

    .cube-icon {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .regions-grid {
        grid-template-columns: 1fr;
    }

    .process-step {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        text-align: center;
    }

    .timeline-line {
        display: none;
    }

    .step-number {
        width: 64px;
        height: 64px;
        font-size: 1.2rem;
    }

    .step-content:hover {
        transform: translateY(-4px);
    }

    .testimonial-card {
        padding: 32px 24px;
    }

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

    .contact-form-container {
        padding: 32px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .hero-actions {
        flex-direction: column;
    }

    .cta-actions {
        flex-direction: column;
    }

    .about-features {
        grid-template-columns: 1fr;
    }
}

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

    .nav-brand-text {
        font-size: 1rem;
        letter-spacing: 1.5px;
    }

    .logo-img {
        height: 38px;
    }

    #navbar {
        padding: 12px 0;
    }

    .activity-cubes-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .activity-cube {
        padding: 14px 12px;
    }

    .cube-icon {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .cube-title {
        font-size: 0.85rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 8px 16px;
    }

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

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

    .btn-lg {
        padding: 14px 32px;
    }

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

    .map-container {
        aspect-ratio: 16 / 10;
    }
}

/* === Language Toggle === */
.lang-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    color: var(--text);
    cursor: pointer;
    font-family: var(--font-en);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    transition: var(--transition);
    margin-inline-start: 8px;
}

.lang-toggle:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

@media (max-width: 768px) {
    /* Hide lang toggle from navbar on mobile — it's inside the hamburger menu */
    .nav-container .lang-toggle {
        display: none;
    }

    /* Show lang toggle inside mobile menu */
    .mobile-menu .lang-toggle {
        display: flex;
        width: 48px;
        height: 48px;
        font-size: 0.85rem;
        margin: 24px auto 0;
        border-radius: 50%;
    }
}

/* === LTR Mode (English) === */
html.ltr {
    direction: ltr;
}

html.ltr body {
    font-family: var(--font-en);
}

html.ltr .btn-arrow {
    transform: rotate(180deg);
}

html.ltr .service-link:hover .btn-arrow {
    transform: rotate(180deg) translateX(6px);
}

html.ltr .footer-links a:hover {
    padding-right: 0;
    padding-left: 4px;
}

html.ltr .step-content:hover {
    transform: translateX(4px);
}

html.ltr #testPrev i {
    transform: rotate(180deg);
}

html.ltr #testNext i {
    transform: rotate(180deg);
}

html.ltr .form-group select {
    background-position: right 16px center;
}

/* === Selection Color === */
::selection {
    background: rgba(0, 212, 255, 0.3);
    color: white;
}

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

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

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

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