/* ===== CSS VARIABLES ===== */
:root {
    --primary-blue: #0F3D5E;
    --dark-graphite: #0E0E10;
    --white: #FFFFFF;
    --cool-gray: #F2F4F6;
    --electric-blue: #2196F3;
    --accent-glow: rgba(33, 150, 243, 0.3);
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--dark-graphite);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
p { font-weight: 300; color: rgba(255, 255, 255, 0.8); }

/* ===== UTILITY ===== */
.container { max-width: 1440px; margin: 0 auto; padding: 0 5%; }

.section-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--electric-blue);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.section-label::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--electric-blue);
}

/* ===== LANGUAGE SWITCHER ===== */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-right: 1.5rem;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 0.25rem;
    border: 1px solid rgba(255,255,255,0.1);
}
.lang-btn {
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.5);
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.lang-btn:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.lang-btn.active { background: var(--electric-blue); color: var(--white); }

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s var(--transition-smooth);
}
.navbar.scrolled {
    background: rgba(14,14,16,0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 5%;
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--white);
}
.logo-icon { width: 48px; height: 48px; }
.logo-icon svg { width: 100%; height: 100%; }
.logo-text { font-size: 1.25rem; font-weight: 700; letter-spacing: -0.02em; }
.logo-text span { color: var(--electric-blue); }

.navbar > .nav-links { display: flex; gap: 2.5rem; list-style: none; }
.navbar > .nav-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    position: relative;
    transition: color 0.3s ease;
}
.navbar > .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--electric-blue);
    transition: width 0.3s var(--transition-smooth);
}
.navbar > .nav-links a:hover,
.navbar > .nav-links a.active { color: var(--white); }
.navbar > .nav-links a:hover::after,
.navbar > .nav-links a.active::after { width: 100%; }

.mobile-menu a.active { color: var(--electric-blue); }

.nav-right { display: flex; align-items: center; }
.nav-cta {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
}
.nav-cta:hover { background: var(--electric-blue); border-color: var(--electric-blue); }

/* ===== MOBILE MENU ===== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
    margin-right: 1rem;
}
.hamburger span {
    display: block;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s var(--transition-smooth);
    transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.mobile-menu {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(14,14,16,0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.mobile-menu.open { display: flex; opacity: 1; }
.mobile-menu a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}
.mobile-menu a:hover { color: var(--electric-blue); }
.mobile-menu .mobile-lang {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero-background {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
}
.hero-background img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(14,14,16,0.9) 0%, rgba(15,61,94,0.4) 100%);
    z-index: 1;
}
.hero-geometric {
    position: absolute;
    right: -10%; top: 50%;
    transform: translateY(-50%);
    width: 60%; height: 80%;
    opacity: 0.08;
    z-index: 2;
}
.hero-geometric svg { width: 100%; height: 100%; }
.hero-content { position: relative; z-index: 3; max-width: 800px; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(33,150,243,0.1);
    border: 1px solid rgba(33,150,243,0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--electric-blue);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}
.hero-badge::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--electric-blue);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
.hero h1 {
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s 0.2s ease forwards;
    opacity: 0;
}
.hero h1 .highlight {
    background: linear-gradient(90deg, var(--electric-blue), #64B5F6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    animation: fadeInUp 0.8s 0.4s ease forwards;
    opacity: 0;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 0.8s 0.6s ease forwards;
    opacity: 0;
}
.hero-scroll {
    position: absolute;
    bottom: 3rem; left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    animation: bounce 2s infinite;
}
.scroll-line {
    width: 1px; height: 60px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--electric-blue);
    color: var(--white);
    padding: 1rem 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s var(--transition-smooth);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px var(--accent-glow); }
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    color: var(--white);
    padding: 1rem 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.3s var(--transition-smooth);
    cursor: pointer;
}
.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.05); }

/* ===== SERVICES ===== */
.services { padding: 8rem 0; background: var(--dark-graphite); position: relative; }
.services-header { text-align: center; margin-bottom: 5rem; }
.services-header h2 { margin-bottom: 1rem; }
.services-header p { max-width: 600px; margin: 0 auto; font-size: 1.1rem; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.services-grid.services-grid--4 { grid-template-columns: repeat(4, 1fr); }
.service-card,
a.service-card,
a.service-card:visited,
a.service-card:hover,
a.service-card:active {
    background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0) 100%);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--transition-smooth);
    cursor: pointer;
    text-decoration: none;
    color: var(--white);
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--electric-blue), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--transition-smooth);
}
.service-card:hover { transform: translateY(-10px); border-color: rgba(33,150,243,0.3); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 64px; height: 64px; margin-bottom: 1.5rem; }
.service-icon svg { width: 100%; height: 100%; stroke: var(--electric-blue); fill: none; stroke-width: 1.5; }
a.service-card, a.service-card:visited, a.service-card:hover, a.service-card:active,
a.service-card *, a.service-card:visited *, a.service-card:hover *, a.service-card:active * {
    text-decoration: none;
    color: inherit;
}
.service-card h3 { margin-bottom: 1rem; transition: color 0.3s ease; color: var(--white); }
.service-card:hover h3 { color: var(--electric-blue); }
.service-card p { font-size: 0.95rem; margin-bottom: 1.5rem; color: rgba(255,255,255,0.8); }
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--electric-blue);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: gap 0.3s ease;
}
.service-link:hover { gap: 1rem; }

/* ===== SERVICE MODAL ===== */
.service-modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
.service-modal.open {
    opacity: 1;
    visibility: visible;
}
.service-modal-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}
.service-modal-content {
    position: relative;
    background: #111114;
    border: 1px solid rgba(255,255,255,0.08);
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(30px) scale(0.97);
    transition: transform 0.4s var(--transition-smooth);
}
.service-modal.open .service-modal-content {
    transform: translateY(0) scale(1);
}
.service-modal-close {
    position: absolute;
    top: 1rem; right: 1rem;
    z-index: 10;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--white);
    width: 44px; height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.service-modal-close:hover {
    background: var(--electric-blue);
    border-color: var(--electric-blue);
}
.service-modal-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #0a1628;
}
.service-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.service-modal-body {
    padding: 2.5rem;
}
.service-modal-icon {
    width: 56px; height: 56px;
    margin-bottom: 1.25rem;
}
.service-modal-icon svg {
    width: 100%; height: 100%;
    stroke: var(--electric-blue);
    fill: none;
    stroke-width: 1.5;
}
.service-modal-body h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1rem;
}
.service-modal-desc {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}
.service-modal-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}
.service-modal-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255,255,255,0.8);
}
.service-modal-features li::before {
    content: '';
    flex-shrink: 0;
    width: 8px; height: 8px;
    background: var(--electric-blue);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(33,150,243,0.4);
}
.service-modal-cta {
    width: 100%;
    justify-content: center;
}

@media (max-width: 768px) {
    .service-modal-content { width: 95%; }
    .service-modal-image { height: 180px; }
    .service-modal-body { padding: 1.5rem; }
    .service-modal-features { grid-template-columns: 1fr; }
}

/* ===== GALLERY MODAL ===== */
.gallery-modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
.gallery-modal.open { opacity: 1; visibility: visible; }
.gallery-modal-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
}
.gallery-modal-content {
    position: relative;
    background: #111114;
    border: 1px solid rgba(255,255,255,0.08);
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    transform: translateY(30px) scale(0.97);
    transition: transform 0.4s var(--transition-smooth);
}
.gallery-modal.open .gallery-modal-content { transform: translateY(0) scale(1); }
.gallery-modal-close {
    position: absolute;
    top: 1rem; right: 1rem;
    z-index: 10;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--white);
    width: 44px; height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.gallery-modal-close:hover { background: var(--electric-blue); border-color: var(--electric-blue); }
.gallery-modal-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
    background: #0a1628;
}
.gallery-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery-modal-body {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.gallery-modal-body h2 {
    font-size: clamp(1.4rem, 2.5vw, 1.75rem);
    margin-bottom: 1rem;
}
.gallery-modal-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}
.gallery-modal-specs {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 2rem;
}
.gallery-modal-specs li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.75);
}
.gallery-modal-specs li::before {
    content: '';
    flex-shrink: 0;
    width: 6px; height: 6px;
    background: var(--electric-blue);
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(33,150,243,0.4);
}
.gallery-modal-cta { justify-content: center; }

@media (max-width: 768px) {
    .gallery-modal-content {
        grid-template-columns: 1fr;
        width: 95%;
    }
    .gallery-modal-image { min-height: 220px; }
    .gallery-modal-body { padding: 1.5rem; }
}

/* ===== GLOBAL REACH ===== */
.global-reach {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--dark-graphite) 0%, #0a1628 100%);
    position: relative;
    overflow: hidden;
}
.global-reach-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: center; }
.global-reach-content h2 { margin-bottom: 1.5rem; }
.global-reach-content p { font-size: 1.1rem; margin-bottom: 2rem; }
.regions-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.region-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}
.region-item:hover { background: rgba(33,150,243,0.1); border-color: rgba(33,150,243,0.3); }
.region-dot { width: 10px; height: 10px; background: var(--electric-blue); border-radius: 50%; box-shadow: 0 0 10px var(--electric-blue); }
.region-item span { font-size: 0.9rem; font-weight: 500; }
.map-container { position: relative; aspect-ratio: 1010 / 666; }
.world-map { width: 100%; height: 100%; display: block; opacity: 0.75; }
.map-routes { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.map-point {
    position: absolute;
    width: 12px; height: 12px;
    background: var(--electric-blue);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    animation: mapPulse 2s infinite;
}
.map-point::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 30px; height: 30px;
    background: rgba(33,150,243,0.2);
    border-radius: 50%;
    animation: mapRipple 2s infinite;
}
.map-point.china { top: 53%; left: 78%; }
.map-point.uzbekistan { top: 51%; left: 66%; }
.map-point.usa { top: 50%; left: 23%; }
.map-point.brazil { top: 72%; left: 32%; }

/* ===== TRUST ===== */
.trust { padding: 6rem 0; background: var(--primary-blue); position: relative; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3rem; text-align: center; }
.trust-number {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255,255,255,0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.trust-label { font-size: 0.9rem; font-weight: 500; color: rgba(255,255,255,0.8); text-transform: uppercase; letter-spacing: 0.1em; }

/* ===== GALLERY ===== */
.gallery { padding: 8rem 0; background: var(--dark-graphite); }
.gallery-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; }
.gallery-header h2 { margin-bottom: 0.5rem; }
.gallery-nav { display: flex; gap: 1rem; }
.gallery-btn {
    width: 50px; height: 50px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gallery-btn:hover { background: var(--electric-blue); border-color: var(--electric-blue); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: auto auto; gap: 1.5rem; }
.gallery-item {
    position: relative;
    overflow: hidden;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    cursor: pointer;
}
.gallery-item.large { grid-column: span 2; grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; min-height: 250px; transition: transform 0.6s var(--transition-smooth), filter 0.6s ease; filter: brightness(0.7); }
.gallery-item:hover img { transform: scale(1.05); filter: brightness(0.9); }
.gallery-item-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(14,14,16,0.9), transparent);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s var(--transition-smooth);
}
.gallery-item:hover .gallery-item-overlay { transform: translateY(0); opacity: 1; }
.gallery-item-overlay h4 { font-size: 1rem; margin-bottom: 0.25rem; }
.gallery-item-overlay p { font-size: 0.8rem; color: rgba(255,255,255,0.6); }

/* ===== CTA ===== */
.cta {
    padding: 10rem 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0a1628 0%, var(--dark-graphite) 100%);
}
.cta-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    overflow: hidden;
}
.cta-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(33,150,243,0.15);
}
.cta-circle-1 { width: 600px; height: 600px; top: 50%; left: 60%; transform: translate(-50%, -50%); }
.cta-circle-2 { width: 400px; height: 400px; top: 50%; left: 60%; transform: translate(-50%, -50%); }
.cta-circle-3 { width: 200px; height: 200px; top: 50%; left: 60%; transform: translate(-50%, -50%); }
.cta-content { position: relative; z-index: 1; text-align: center; max-width: 700px; margin: 0 auto; }
.cta-content h2 { margin-bottom: 1.5rem; }
.cta-content p { font-size: 1.1rem; margin-bottom: 3rem; }
.cta-buttons { display: flex; gap: 1.5rem; justify-content: center; }

/* ===== CONTACT FORM SECTION ===== */
.contact-section {
    padding: 8rem 0;
    background: var(--dark-graphite);
    position: relative;
}
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 6rem; align-items: start; }
.contact-info h2 { margin-bottom: 1.5rem; }
.contact-info p { font-size: 1.05rem; margin-bottom: 2.5rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-left: 3px solid var(--electric-blue);
}
.contact-detail-icon { color: var(--electric-blue); flex-shrink: 0; margin-top: 2px; }
.contact-detail-text strong { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); margin-bottom: 0.25rem; }
.contact-detail-text span, .contact-detail-text a { font-size: 0.95rem; color: var(--white); text-decoration: none; }
.contact-detail-text a:hover { color: var(--electric-blue); }

.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.6); }
.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
    outline: none;
    width: 100%;
    border-radius: 0;
    -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--electric-blue);
    background: rgba(33,150,243,0.05);
}
.form-group select option { background: #1a1a1e; }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-status {
    display: none;
    padding: 1rem 1.5rem;
    border-radius: 0;
    font-size: 0.9rem;
    font-weight: 500;
}
.form-status.success { background: rgba(76,175,80,0.1); border: 1px solid rgba(76,175,80,0.4); color: #81C784; display: block; }
.form-status.error { background: rgba(244,67,54,0.1); border: 1px solid rgba(244,67,54,0.4); color: #E57373; display: block; }

/* ===== BLOG SECTION ===== */
.blog-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--dark-graphite) 0%, #0a1628 50%, var(--dark-graphite) 100%);
}
.blog-header { text-align: center; margin-bottom: 4rem; }
.blog-header h2 { margin-bottom: 1rem; }
.blog-header p { max-width: 550px; margin: 0 auto; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 3rem; }
.blog-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
    transition: all 0.4s var(--transition-smooth);
    text-decoration: none;
    color: var(--white);
    display: block;
}
.blog-card:hover { transform: translateY(-8px); border-color: rgba(33,150,243,0.3); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.blog-card-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-blue), #0a1628);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-image-placeholder {
    font-size: 3rem;
    opacity: 0.3;
    color: var(--electric-blue);
}
.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 1.5rem 0;
}
.blog-card-category {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--electric-blue);
    background: rgba(33,150,243,0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
}
.blog-card-date { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.blog-card-body { padding: 1rem 1.5rem 1.5rem; }
.blog-card-body h3 { font-size: 1.05rem; margin-bottom: 0.75rem; line-height: 1.4; }
.blog-card-body p { font-size: 0.875rem; line-height: 1.6; color: rgba(255,255,255,0.6); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.blog-footer { text-align: center; }
.blog-loading { text-align: center; padding: 3rem; color: rgba(255,255,255,0.4); display: none; }
.blog-loading.active { display: block; }
.blog-no-posts { text-align: center; padding: 3rem; color: rgba(255,255,255,0.4); display: none; }
.blog-no-posts.active { display: block; }

/* ===== WP INTEGRATION NOTICE ===== */
.wp-config-notice {
    background: rgba(33,150,243,0.08);
    border: 1px solid rgba(33,150,243,0.2);
    border-left: 4px solid var(--electric-blue);
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    display: none;
}
.wp-config-notice.show { display: block; }
.wp-config-notice a { color: var(--electric-blue); }

/* ===== FOOTER ===== */
.footer { padding: 6rem 0 3rem; background: #080809; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; margin-bottom: 4rem; }
.footer-brand .logo { margin-bottom: 1.5rem; }
.footer-brand p { font-size: 0.9rem; max-width: 300px; }
.footer-column h4 { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(255,255,255,0.4); margin-bottom: 1.5rem; }
.footer-column ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-column ul li a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.9rem; transition: color 0.3s ease; }
.footer-column ul li a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-socials { display: flex; gap: 1rem; }
.social-link {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: all 0.3s ease;
}
.social-link:hover { background: var(--electric-blue); border-color: var(--electric-blue); color: var(--white); }

/* ===== REVEAL ANIMATION ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s var(--transition-smooth), transform 0.8s var(--transition-smooth); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* ===== KEYFRAMES ===== */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.5); } }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(10px); } }
@keyframes mapPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.6; } }
@keyframes mapRipple { 0% { transform: translate(-50%, -50%) scale(1); opacity: 0.4; } 100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; } }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
}

@media (max-width: 1024px) {
    .global-reach-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 4rem; }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .navbar > .nav-links { display: none; }
    .hamburger { display: flex; }
    .navbar .lang-switcher { display: none; }
    .nav-cta { display: none; }
    .services-grid { grid-template-columns: 1fr; }
    .regions-list { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item.large { grid-column: span 1; grid-row: span 1; }
    .hero-buttons { flex-direction: column; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .single-post-meta { flex-wrap: wrap; }
}

/* ===== WORDPRESS PAGINATION ===== */
.blog-pagination .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    list-style: none;
}
.blog-pagination .nav-links a,
.blog-pagination .nav-links span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    transition: all 0.3s ease;
}
.blog-pagination .nav-links a:hover {
    background: var(--electric-blue);
    border-color: var(--electric-blue);
    color: var(--white);
}
.blog-pagination .nav-links .current {
    background: var(--electric-blue);
    border-color: var(--electric-blue);
    color: var(--white);
}
.blog-pagination .nav-links .dots {
    border: none;
    background: none;
    color: rgba(255,255,255,0.4);
}

/* ===== BLOG ARCHIVE ===== */
.blog-archive {
    padding: 8rem 0;
    min-height: 60vh;
    background: var(--dark-graphite);
}
.blog-archive .blog-header {
    margin-bottom: 4rem;
}
.blog-archive .blog-pagination {
    text-align: center;
    margin-top: 3rem;
}

/* ===== SINGLE POST ===== */
.single-post-main {
    padding: 8rem 0;
    min-height: 60vh;
    background: var(--dark-graphite);
}
.single-post-container {
    max-width: 900px;
}
.single-post-header {
    margin-bottom: 3rem;
}
.single-post-header .section-label {
    margin-bottom: 1.5rem;
}
.single-post-title {
    font-size: clamp(1.75rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}
.single-post-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.single-post-thumbnail {
    margin-bottom: 3rem;
    overflow: hidden;
}
.single-post-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== WP CONTENT TYPOGRAPHY ===== */
.wp-content {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
    line-height: 1.85;
    font-weight: 300;
}
.wp-content h2, .wp-content h3 { margin: 2.5rem 0 1rem; color: #fff; }
.wp-content p { margin-bottom: 1.5rem; }
.wp-content ul, .wp-content ol { margin: 1.5rem 0 1.5rem 2rem; }
.wp-content li { margin-bottom: 0.5rem; }
.wp-content a { color: var(--electric-blue); text-decoration: underline; }
.wp-content blockquote {
    border-left: 3px solid var(--electric-blue);
    padding: 1rem 2rem;
    margin: 2rem 0;
    background: rgba(33,150,243,0.05);
    font-style: italic;
}
.wp-content img { max-width: 100%; height: auto; margin: 2rem 0; }
.wp-content pre {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 1.5rem;
    overflow-x: auto;
    margin: 2rem 0;
}

.single-post-nav {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* ===== GENERIC PAGE ===== */
.single-page {
    padding: 8rem 0;
    min-height: 60vh;
    background: var(--dark-graphite);
}
.single-page-container {
    max-width: 900px;
}
.single-page-title {
    font-size: clamp(1.75rem, 4vw, 3rem);
    margin-bottom: 2rem;
}

/* ===== SERVICES PAGE ===== */
.sp-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.sp-hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}
.sp-hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.35);
}
.sp-hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(14,14,16,0.85) 0%, rgba(15,61,94,0.5) 100%);
}
.sp-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding-top: 6rem;
    padding-bottom: 4rem;
}
.sp-hero-content h1 {
    margin-bottom: 1.25rem;
}
.sp-hero-desc {
    font-size: 1.15rem;
    max-width: 550px;
}

/* Service detail sections */
.sp-detail {
    padding: 6rem 0;
    background: var(--dark-graphite);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.sp-detail:nth-child(even) {
    background: linear-gradient(180deg, var(--dark-graphite) 0%, #0a1628 100%);
}
.sp-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.sp-detail--reversed .sp-detail-grid {
    direction: rtl;
}
.sp-detail--reversed .sp-detail-grid > * {
    direction: ltr;
}
.sp-detail-image {
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
}
.sp-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 350px;
    transition: transform 0.6s var(--transition-smooth);
    filter: brightness(0.85);
}
.sp-detail-image:hover img {
    transform: scale(1.03);
    filter: brightness(1);
}
.sp-detail-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1.5rem;
}
.sp-detail-icon svg {
    width: 100%; height: 100%;
    stroke: var(--electric-blue);
    fill: none;
    stroke-width: 1.5;
}
.sp-detail-content h2 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    margin-bottom: 1.25rem;
}
.sp-detail-desc {
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.75);
}
.sp-detail-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}
.sp-detail-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255,255,255,0.8);
}
.sp-detail-features li svg {
    flex-shrink: 0;
    color: var(--electric-blue);
}

@media (max-width: 1024px) {
    .sp-detail-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .sp-detail--reversed .sp-detail-grid {
        direction: ltr;
    }
}

@media (max-width: 768px) {
    .sp-hero { min-height: 40vh; }
    .sp-hero-content { padding-top: 5rem; padding-bottom: 3rem; }
    .sp-detail { padding: 4rem 0; }
    .sp-detail-features { grid-template-columns: 1fr; }
    .sp-detail-image img { min-height: 240px; }
}

/* ===== 404 PAGE ===== */
.error-404 {
    padding: 8rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: var(--dark-graphite);
}
.error-404-container {
    text-align: center;
}
.error-404-code {
    font-size: clamp(6rem, 15vw, 12rem);
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(180deg, var(--electric-blue), rgba(33,150,243,0.2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}
.error-404-title {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
}
.error-404-description {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== ABOUT US SECTION ===== */
.about-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--dark-graphite) 0%, #0a1628 100%);
}
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
    align-items: start;
}
.about-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}
.about-desc {
    font-size: 1.1rem;
    line-height: 1.75;
    margin-bottom: 2.5rem;
    color: rgba(255,255,255,0.75);
}
.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.about-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.about-feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(33,150,243,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-feature-icon svg {
    stroke: var(--electric-blue);
}
.about-feature strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}
.about-feature p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
}
.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.about-stat-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}
.about-stat-card:hover {
    border-color: rgba(33,150,243,0.3);
    transform: translateY(-3px);
}
.about-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--electric-blue);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.about-stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    font-weight: 400;
}

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .services-grid.services-grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .about-stats {
        grid-template-columns: 1fr 1fr;
    }
    .services-grid.services-grid--4 {
        grid-template-columns: 1fr;
    }
}

/* ===== SERVICE PAGE TEMPLATES (Trading, Logistics, Consulting) ===== */
.sv-page {
    --sv-bg: #0E0E10;
    --sv-bg2: #141416;
    --sv-bg3: #080809;
    --sv-blue: #2196F3;
    --sv-muted: rgba(255,255,255,0.7);
    --sv-muted2: rgba(255,255,255,0.5);
    --sv-muted3: rgba(255,255,255,0.4);
    --sv-card-bg: rgba(255,255,255,0.02);
    --sv-card-border: rgba(255,255,255,0.07);
    --sv-border-thin: rgba(255,255,255,0.08);
}

/* Hero */
.sv-hero {
    background: var(--sv-bg);
    padding: 120px 72px;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    position: relative;
    overflow: hidden;
}
.sv-hero::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(33,150,243,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.sv-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(33,150,243,0.1);
    border-radius: 50px;
    padding: 8px 16px;
    width: fit-content;
}
.sv-hero-badge-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--sv-blue);
}
.sv-hero-badge-text {
    font-size: 12px;
    font-weight: 500;
    color: var(--sv-blue);
}
.sv-hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -1px;
    white-space: pre-line;
    color: var(--white);
}
.sv-hero-title .blue { color: var(--sv-blue); }
.sv-hero-desc {
    font-size: 20px;
    font-weight: 300;
    color: var(--sv-muted);
    line-height: 1.6;
    max-width: 680px;
    white-space: pre-line;
}
.sv-hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.sv-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--sv-blue);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s;
    box-shadow: 0 4px 20px rgba(33,150,243,0.3);
    text-decoration: none;
}
.sv-btn-primary:hover {
    background: #1976D2;
    transform: translateY(-1px);
    box-shadow: 0 6px 28px rgba(33,150,243,0.4);
    color: #fff;
}
.sv-btn-primary svg { width: 18px; height: 18px; }
.sv-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 8px;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.25);
    font-family: 'Inter', sans-serif;
    transition: all 0.2s;
    text-decoration: none;
}
.sv-btn-secondary:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.4);
    color: #fff;
}

/* Sections */
.sv-section {
    padding: 100px 72px;
    background: var(--sv-bg);
}
.sv-section.sv-alt { background: var(--sv-bg2); }
.sv-section.sv-dark3 { background: var(--sv-bg3); }
.sv-section-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 64px;
}
.sv-section-label {
    display: flex;
    align-items: center;
    gap: 16px;
}
.sv-section-label-line {
    width: 40px;
    height: 1px;
    background: var(--sv-blue);
}
.sv-section-label-text {
    font-size: 12px;
    font-weight: 600;
    color: var(--sv-blue);
    letter-spacing: 3px;
}
.sv-section-title {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--white);
}
.sv-section-desc {
    font-size: 18px;
    font-weight: 300;
    color: var(--sv-muted);
}

/* Cards Grid */
.sv-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.sv-card {
    background: var(--sv-card-bg);
    border: 1px solid var(--sv-card-border);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.3s;
}
.sv-card:hover {
    background: rgba(255,255,255,0.04);
    border-color: rgba(33,150,243,0.2);
    transform: translateY(-2px);
}
.sv-card-icon {
    width: 60px; height: 60px;
    background: rgba(33,150,243,0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sv-card-icon svg {
    width: 28px; height: 28px;
    stroke: var(--sv-blue);
    fill: none;
    stroke-width: 1.8;
}
.sv-card-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
}
.sv-card:hover .sv-card-title { color: var(--sv-blue); }
.sv-card-desc {
    font-size: 15px;
    color: var(--sv-muted);
    line-height: 1.65;
}
.sv-card-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--sv-blue);
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    margin-top: auto;
}
.sv-card-link svg {
    width: 14px; height: 14px;
    stroke: var(--sv-blue);
    fill: none;
    stroke-width: 2;
}

/* Stats */
.sv-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}
.sv-stat-item {
    padding: 40px;
    border-right: 1px solid var(--sv-border-thin);
}
.sv-stat-item:last-child { border-right: none; }
.sv-stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--sv-blue);
    line-height: 1;
}
.sv-stat-label {
    font-size: 14px;
    color: var(--sv-muted);
    margin-top: 8px;
}

/* CTA Section */
.sv-cta-section {
    padding: 100px 72px;
    background: linear-gradient(135deg, #0F2744 0%, #0E0E10 100%);
    border-top: 1px solid rgba(33,150,243,0.15);
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
}
.sv-cta-title {
    font-size: 48px;
    font-weight: 700;
    max-width: 700px;
    letter-spacing: -0.5px;
    color: var(--white);
}
.sv-cta-desc {
    font-size: 18px;
    color: var(--sv-muted);
    max-width: 600px;
    line-height: 1.6;
    font-weight: 300;
}
.sv-cta-btns {
    display: flex;
    gap: 16px;
}

/* Routes Grid */
.sv-routes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.sv-route-card {
    background: var(--sv-card-bg);
    border: 1px solid var(--sv-card-border);
    border-radius: 16px;
    padding: 36px 32px;
    transition: all 0.3s;
}
.sv-route-card:hover {
    border-color: rgba(33,150,243,0.3);
    transform: translateY(-2px);
}
.sv-route-number {
    font-size: 11px;
    font-weight: 700;
    color: var(--sv-muted3);
    letter-spacing: 2px;
    margin-bottom: 16px;
}
.sv-route-country {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--white);
}
.sv-route-subtitle {
    font-size: 13px;
    color: var(--sv-blue);
    font-weight: 500;
    margin-bottom: 16px;
}
.sv-route-desc {
    font-size: 14px;
    color: var(--sv-muted);
    line-height: 1.6;
}

/* Registration Cards */
.sv-reg-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.sv-reg-card {
    background: var(--sv-card-bg);
    border: 1px solid var(--sv-card-border);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.sv-reg-card-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.sv-reg-card-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
}
.sv-reg-card-desc {
    font-size: 15px;
    color: var(--sv-muted);
    line-height: 1.6;
}
.sv-reg-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.sv-reg-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--sv-muted);
}
.sv-reg-feature-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--sv-blue);
    flex-shrink: 0;
}
.sv-reg-card-btn {
    margin-top: auto;
    padding: 12px 24px;
    background: rgba(33,150,243,0.1);
    border: 1px solid rgba(33,150,243,0.25);
    border-radius: 8px;
    color: var(--sv-blue);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s;
    text-decoration: none;
    display: block;
}
.sv-reg-card-btn:hover {
    background: rgba(33,150,243,0.2);
    color: var(--sv-blue);
}

/* Visa Cards */
.sv-visa-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.sv-visa-card {
    background: var(--sv-card-bg);
    border: 1px solid var(--sv-card-border);
    border-radius: 16px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.sv-visa-card-icon {
    width: 56px; height: 56px;
    background: rgba(33,150,243,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sv-visa-card-icon svg {
    width: 26px; height: 26px;
    stroke: var(--sv-blue);
    fill: none;
    stroke-width: 1.8;
}
.sv-visa-card-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
}
.sv-visa-card-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--sv-blue);
}
.sv-visa-card-price span {
    font-size: 14px;
    font-weight: 400;
    color: var(--sv-muted);
}
.sv-visa-card-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 4px;
}
.sv-visa-card-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--sv-muted);
}
.sv-visa-card-feature-check {
    width: 16px; height: 16px;
    background: rgba(33,150,243,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.sv-visa-card-feature-check::after {
    content: '\2713';
    font-size: 9px;
    color: var(--sv-blue);
    font-weight: 700;
}

/* Process Steps */
.sv-process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.sv-process-step {
    padding: 40px 36px;
    border-right: 1px solid var(--sv-border-thin);
    position: relative;
}
.sv-process-step:last-child { border-right: none; }
.sv-step-num {
    font-size: 11px;
    font-weight: 700;
    color: var(--sv-blue);
    letter-spacing: 2px;
    margin-bottom: 20px;
}
.sv-step-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--white);
}
.sv-step-desc {
    font-size: 14px;
    color: var(--sv-muted);
    line-height: 1.6;
}

/* Steps */
.sv-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.sv-step {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 28px 32px;
    border-bottom: 1px solid var(--sv-border-thin);
    border-radius: 12px;
    transition: background 0.3s;
}
.sv-step:hover {
    background: rgba(33,150,243,0.05);
}
.sv-step:last-child { border-bottom: none; }
.sv-step-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--sv-blue);
    min-width: 56px;
    text-shadow: 0 0 20px rgba(33,150,243,0.3);
}
.sv-step-content { flex: 1; }
.sv-step .sv-step-title {
    font-size: 17px;
    font-weight: 500;
    color: var(--white);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Fade In Animations */
.sv-fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.sv-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Service Page Footer */
.sv-footer {
    background: var(--sv-bg3);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 72px 72px 40px;
    display: flex;
    flex-direction: column;
    gap: 56px;
}
.sv-footer-main {
    display: flex;
    justify-content: space-between;
}
.sv-footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 320px;
}
.sv-footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--white);
}
.sv-footer-logo-icon {
    width: 40px; height: 40px;
    background: #0F3D5E;
    border-radius: 4px;
}
.sv-footer-logo-text {
    font-size: 18px;
    font-weight: 700;
}
.sv-footer-brand-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    line-height: 1.65;
}
.sv-footer-cols {
    display: flex;
    gap: 72px;
}
.sv-footer-col {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.sv-footer-col-title {
    font-size: 11px;
    font-weight: 700;
    color: var(--sv-muted3);
    letter-spacing: 2px;
}
.sv-footer-col-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.sv-footer-col-link {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    cursor: pointer;
    transition: color 0.2s;
    text-decoration: none;
}
.sv-footer-col-link:hover { color: var(--white); }
.sv-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sv-footer-copyright {
    font-size: 13px;
    color: var(--sv-muted3);
}

/* Service Page Responsive */
@media (max-width: 1200px) {
    .sv-hero,
    .sv-section,
    .sv-cta-section,
    .sv-footer {
        padding-left: 40px;
        padding-right: 40px;
    }
    .sv-hero-title { font-size: 48px; }
    .sv-section-title { font-size: 36px; }
    .sv-cta-title { font-size: 36px; }
    .sv-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .sv-stats-row { grid-template-columns: repeat(2, 1fr); }
    .sv-routes-grid { grid-template-columns: repeat(2, 1fr); }
    .sv-process-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .sv-hero {
        padding: 80px 24px;
        min-height: 400px;
    }
    .sv-hero-title { font-size: 36px; }
    .sv-section,
    .sv-cta-section,
    .sv-footer {
        padding-left: 24px;
        padding-right: 24px;
    }
    .sv-section { padding-top: 60px; padding-bottom: 60px; }
    .sv-cta-section { padding-top: 60px; padding-bottom: 60px; }
    .sv-cards-grid,
    .sv-visa-grid { grid-template-columns: 1fr; }
    .sv-reg-grid { grid-template-columns: 1fr; }
    .sv-routes-grid { grid-template-columns: 1fr; }
    .sv-stats-row { grid-template-columns: 1fr 1fr; }
    .sv-stat-item { border-right: none; border-bottom: 1px solid var(--sv-border-thin); }
    .sv-process-steps { grid-template-columns: 1fr; }
    .sv-process-step { border-right: none; border-bottom: 1px solid var(--sv-border-thin); }
    .sv-footer-main { flex-direction: column; gap: 40px; }
    .sv-footer-cols { flex-direction: column; gap: 32px; }
    .sv-footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

/* ===== CONTACTS PAGE — Offices ===== */
.sv-offices-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.sv-office-card {
    background: var(--sv-card-bg, rgba(255,255,255,0.02));
    border: 1px solid var(--sv-card-border, rgba(255,255,255,0.07));
    border-radius: 16px;
    padding: 48px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.sv-office-header {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.sv-office-country {
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
}
.sv-office-city {
    font-size: 15px;
    color: var(--sv-blue, #2196F3);
    font-weight: 500;
}
.sv-office-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.sv-office-detail {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.sv-office-detail-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--sv-muted3, rgba(255,255,255,0.4));
    letter-spacing: 1px;
    text-transform: uppercase;
}
.sv-office-detail-value {
    font-size: 15px;
    color: var(--white);
    line-height: 1.5;
}
.sv-office-detail-value a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s;
}
.sv-office-detail-value a:hover {
    color: var(--sv-blue, #2196F3);
}

/* ===== CONTACT FORM SECTION ===== */
.sv-contact-form-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.sv-contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.sv-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.sv-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.sv-form-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--sv-muted2, rgba(255,255,255,0.5));
}
.sv-form-input {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 14px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--white);
    outline: none;
    transition: border-color 0.2s;
}
.sv-form-input:focus {
    border-color: var(--sv-blue, #2196F3);
}
.sv-form-input::placeholder {
    color: rgba(255,255,255,0.25);
}
textarea.sv-form-input {
    resize: vertical;
    min-height: 120px;
}
.sv-contact-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.sv-contact-info-heading {
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: -20px;
}
.sv-contact-info-sub {
    font-size: 15px;
    color: var(--sv-muted, rgba(255,255,255,0.7));
    line-height: 1.6;
}
.sv-contact-info-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.sv-contact-info-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--sv-muted3, rgba(255,255,255,0.4));
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.sv-contact-info-value {
    font-size: 16px;
    color: var(--white);
}
.sv-contact-info-value a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s;
}
.sv-contact-info-value a:hover {
    color: var(--sv-blue);
}

@media (max-width: 1024px) {
    .sv-offices-grid { grid-template-columns: 1fr; }
    .sv-contact-form-section {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}
@media (max-width: 768px) {
    .sv-office-card { padding: 32px; }
    .sv-form-row { grid-template-columns: 1fr; }
}
