:root {
    /* LÜKS TÜND (DARK) RƏNG PALİTRASI */
    --bg-dark: #070707;       
    --text-light: #F4F4F4;      
    --text-muted: #D1D1D1;     
    --tomato-red: #D90429;
    --tomato-glow: rgba(217, 4, 41, 0.4);
    
    --font-main: 'Montserrat', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

/* =========================================
   GLOBAL RESET & OPTİMİZASİYA
========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    max-width: 100%; 
    overflow-x: hidden;
}

body.premium-dark {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-main);
    font-weight: 400; 
    max-width: 100%;
    width: 100%;
    overflow-x: hidden; 
    cursor: none; 
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

/* [YENİ] Şəkillərin kəskinliyini və keyfiyyətini maksimum qoruyan qlobal parametr */
img {
    image-rendering: -webkit-optimize-contrast; 
    image-rendering: crisp-edges; 
}

::selection {
    background-color: var(--tomato-red);
    color: #ffffff;
}

a:focus-visible, button:focus-visible {
    outline: 2px dashed var(--tomato-red);
    outline-offset: 4px;
    border-radius: 4px;
}

/* =========================================
   YÜKLƏNMƏ EKRANI (PRELOADER)
========================================= */
#preloader {
    position: fixed;
    inset: 0; 
    background-color: #000000;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 300px;
}

/* [YENİ] Preloader üçün loqo tənzimləmələri (Daha kəskin və parıltılı) */
.loader-new-logo {
    max-width: 250px; 
    height: auto;
    display: block;
    margin-bottom: 25px;
    filter: drop-shadow(0 10px 25px rgba(217, 4, 41, 0.3));
    will-change: transform;
}

.loader-bar-bg {
    width: 100%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.loader-bar-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background-color: var(--tomato-red);
    box-shadow: 0 0 10px var(--tomato-red);
}

.loader-text {
    margin-top: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
}

/* =========================================
   İKİLİ KURSOR (GPU Optimizasiyalı)
========================================= */
.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background-color: var(--tomato-red);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px var(--tomato-glow);
    will-change: transform;
}

.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--tomato-red);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background-color 0.2s, border-color 0.2s;
    will-change: transform;
}

/* =========================================
   LÜKS TÜND ARXA PLAN
========================================= */
.premium-bg {
    position: fixed;
    inset: 0;
    z-index: -2;
    background-color: var(--bg-dark);
    background-image: 
        radial-gradient(circle at 15% 30%, rgba(217, 4, 41, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 85% 80%, rgba(217, 4, 41, 0.05) 0%, transparent 50%);
}

.bg-overlay {
    position: absolute;
    inset: 0;
    background: url('https://www.transparenttextures.com/patterns/stardust.png'); 
    opacity: 0.2;
    z-index: -1;
}

/* =========================================
   NAVİQASİYA VƏ DİL PORTALI
========================================= */
/* [YENİ] Skrol edərkən yoxa çıxmaq əvəzinə "Frosted Glass" (şüşə) effekti ilə sabit qalan premium menyu */
.main-nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: rgba(7, 7, 7, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* [YENİ] Üst menyudakı loqo (Link və Şəkil) */
.nav-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-new-logo {
    max-width: 140px; 
    height: auto;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.3s ease;
}

.nav-logo-link:hover .nav-new-logo {
    transform: scale(1.05) translateY(-2px);
    filter: drop-shadow(0 5px 15px rgba(217, 4, 41, 0.4));
}

.nav-center-links {
    display: flex;
    gap: 40px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* [YENİ] Javascript tərəfindən idarə olunan 'hidden' sinifi ləğv edildi ki, menyu həmişə ekranda qalsın */
.nav-center-links.hidden {
    opacity: 1 !important;
    transform: translateX(-50%) !important;
    pointer-events: all !important;
}

.nav-center-links a {
    color: var(--text-light);
    text-decoration: none;
    font-family: var(--font-main);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
    position: relative;
    cursor: none;
}

.nav-center-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--tomato-red);
    transition: width 0.3s ease;
}

.nav-center-links a:hover { color: var(--tomato-red); }
.nav-center-links a:hover::after { width: 100%; }

.lang-portal {
    position: relative;
    z-index: 110;
}

.lang-toggle-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 10px 22px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-family: var(--font-main);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.lang-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(217, 4, 41, 0.5);
}

.lang-toggle-btn i {
    color: var(--tomato-red);
    font-size: 1.1rem;
    animation: slowSpin 10s linear infinite;
    will-change: transform;
}

@keyframes slowSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.lang-dropdown {
    position: absolute;
    top: 130%;
    right: 0;
    width: max-content;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5), 0 0 20px rgba(217, 4, 41, 0.1);
}

.lang-portal.open .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-main);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 8px;
    text-align: left;
    cursor: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.lang-btn::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background-color: var(--tomato-red);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.lang-btn:hover, .lang-btn.active {
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.03);
    padding-left: 25px;
}

.lang-btn:hover::before, .lang-btn.active::before { transform: scaleY(1); }

/* =========================================
   MOBİL YAN MENYU (SIDE DRAWER) 
========================================= */
.mobile-menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-menu-backdrop.open {
    opacity: 1;
    visibility: visible;
}

.mobile-side-drawer {
    position: fixed;
    top: 0;
    right: -300px; 
    width: 280px;
    height: 100%;
    background: #0a0a0a;
    border-left: 1px solid rgba(217, 4, 41, 0.2);
    z-index: 999;
    padding: 30px;
    transition: right 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    display: flex;
    flex-direction: column;
}

.mobile-side-drawer.open {
    right: 0;
}

.mobile-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.close-drawer-btn {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.8rem;
    cursor: pointer;
    transition: color 0.3s;
}

.close-drawer-btn:hover {
    color: var(--tomato-red);
}

.mobile-drawer-links {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mobile-drawer-links a {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.mobile-drawer-links a:hover {
    color: var(--tomato-red);
}

.hamburger-btn {
    display: none; 
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1000;
}

.hamburger-btn span {
    width: 25px;
    height: 2px;
    background: var(--text-light);
    transition: 0.3s;
}

/* =========================================
   MƏZMUN BÖLMƏLƏRİ VƏ YAZILAR
========================================= */
.content-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 5% 120px 5%; 
    position: relative;
    z-index: 10;
    width: 100%;
}

.section-inner {
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
}

.contact-layout { max-width: 1200px !important; }
.centered { text-align: center; }

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
}

.hero-inner.reverse { flex-direction: row-reverse; }
.hero-text { flex: 1; text-align: left; }
.hero-image-wrapper { flex: 1; width: 100%; }

.italic-title {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    margin-bottom: -10px;
    color: var(--text-light);
    opacity: 0.8;
}

.main-title {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    line-height: 1.05;
    color: var(--tomato-red);
    margin: 10px 0 25px 0;
    text-shadow: 0 0 40px rgba(217, 4, 41, 0.3);
}

.section-label {
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 4px;
    color: var(--tomato-red);
    margin-bottom: 20px;
    text-transform: uppercase;
}

h3 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    margin-bottom: 25px;
    color: var(--text-light);
    line-height: 1.2;
}

.sub-text, .section-desc, .hero-text p {
    font-family: var(--font-main);
    font-size: clamp(1.05rem, 2vw, 1.15rem);
    font-weight: 400; 
    line-height: 1.8; 
    color: var(--text-muted); 
    margin-bottom: 25px;
    letter-spacing: 0.3px;
}

strong {
    color: var(--text-light);
    font-weight: 700;
}

/* =========================================
   DÜYMƏLƏR (ÜMUMİ)
========================================= */
.primary-btn {
    display: inline-block; 
    text-decoration: none; 
    text-align: center;
    background-color: var(--tomato-red);
    color: #fff;
    border: none;
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-main);
    cursor: none;
    margin-top: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(217, 4, 41, 0.3);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(217, 4, 41, 0.5);
}

/* =========================================
   GİRİŞ (HERO) BÖLMƏSİ STATİSTİKALARI
========================================= */
.hero-stats {
    display: flex;
    gap: 35px;
    margin: 35px 0;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item { display: block; }

.stat-item h4 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--tomato-red);
    display: inline-block;
    margin: 0;
    line-height: 1;
    font-weight: 700;
}

.stat-item span {
    font-size: 1.5rem;
    color: var(--tomato-red);
    font-weight: 700;
    margin-left: 2px;
}

.stat-item p {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 5px;
    font-weight: 500;
}

/* =========================================
   ESTETİK HƏNDƏSİ QLOBUS (SVG) DİZAYNI
========================================= */
.globe-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.globe-container {
    width: 100%;
    max-width: 480px;
    aspect-ratio: 1/1;
    position: relative;
    background: transparent !important; 
    box-shadow: none !important;
    filter: drop-shadow(0 0 40px rgba(217, 4, 41, 0.15));
}

.globe-anim {
    width: 100%;
    height: 100%;
    animation: rotateGlobe 40s linear infinite;
    will-change: transform;
}

@keyframes rotateGlobe {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* =========================================
   İXRACAT SİYAHISI (ESTETİK)
========================================= */
.export-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.export-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05); 
}

.export-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.list-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    flex-shrink: 0;
    color: var(--tomato-red);
    font-size: 1.2rem;
    margin-top: 3px;
}

.list-text {
    display: flex;
    flex-direction: row; 
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap; 
}

.list-text strong {
    font-family: var(--font-main);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 0.5px;
    white-space: nowrap; 
}

.list-text span {
    font-family: var(--font-main);
    font-size: 1.05rem;
    font-weight: 400; 
    color: var(--text-muted);
    line-height: 1.6;
}

/* =========================================
   4K ŞƏKİL ÇƏRÇİVƏLƏRİ VƏ ANİMASİYALAR
========================================= */
.img-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background-color: #111;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    object-position: center;
    display: block;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.8s ease;
    filter: brightness(0.95) contrast(1.05);
}

.highlight-img {
    aspect-ratio: 4/5; 
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(217, 4, 41, 0.12);
}

/* =========================================
   MÜASİR İMAGE GRİD (HAQQIMIZDA)
========================================= */
.image-grid-large {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 250px; 
    gap: 25px;
    margin-top: 50px;
    max-width: 1000px;
    width: 100%;
}

.grid-item {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.4);
}

.grid-item.tall { grid-row: span 2; }

/* =========================================
   DAİMİ HƏRƏKƏTLİ LOQOLAR VƏ BÖYÜDÜLMƏ
========================================= */
.marquee-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 20px 0;
    mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
}

.marquee-track {
    display: flex;
    width: max-content;
    gap: 35px;
    animation: marqueeAnimate 22s linear infinite; 
    will-change: transform;
}

.marquee-track:hover { animation-play-state: paused; }

@keyframes marqueeAnimate {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.partner-card {
    background: #ffffff; 
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 220px;
    height: 100px;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    padding: 5px 15px !important; 
    overflow: hidden;
}

.partner-card:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 15px 35px rgba(217, 4, 41, 0.15);
}

.partner-logo {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    display: block;
    transform: scale(1.4);
    transform-origin: center center;
}

/* =========================================================
   SİMMETRİK KOMANDA GRİD SİSTEMİ (ƏLAQƏ SƏHİFƏSİ ÜÇÜN)
========================================================= */
.profiles-grid {
    display: grid;
    grid-template-columns: 1fr; 
    gap: 40px;
    width: 100%;
    margin-top: 50px;
}

@media (min-width: 992px) {
    .profiles-grid {
        grid-template-columns: repeat(2, 1fr); 
        align-items: stretch; 
    }
}

.profile-card {
    display: flex;
    flex-direction: column; 
    align-items: center;
    gap: 30px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 40px 35px;
    border-radius: 25px;
    width: 100%;
    height: 100%; 
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

@media (min-width: 768px) {
    .profile-card {
        flex-direction: row; 
        align-items: flex-start;
    }
}

.profile-card:hover {
    transform: translateY(-5px);
    border-color: rgba(217, 4, 41, 0.3);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 30px rgba(217, 4, 41, 0.05);
}

.profile-img-wrapper {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--tomato-red);
    box-shadow: 0 0 25px var(--tomato-glow);
    background-color: #111;
}

.profile-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; 
    display: block;
}

.profile-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
    text-align: left;
    width: 100%;
    height: 100%; 
}

@media (max-width: 767px) {
    .profile-info {
        align-items: center; 
        text-align: center;
    }
}

.profile-info h4 {
    font-family: var(--font-serif);
    font-size: 1.65rem;
    color: var(--text-light);
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.profile-info .title-role {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--tomato-red);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.profile-bio {
    width: 100%;
    margin-bottom: 25px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.profile-bio p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
    font-family: var(--font-main);
    font-weight: 400;
}

.personal-wa-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    background-color: #25D366;
    color: #070707;
    text-decoration: none;
    border-radius: 30px;
    font-family: var(--font-main);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: none;
    margin-top: auto; 
}

.personal-wa-pill:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* =========================================
   SİMMETRİK SOSİAL VƏ ƏLAQƏ DÜYMƏLƏRİ
========================================= */
.general-contacts, .contact-hub {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-top: 80px;
    flex-wrap: wrap; 
    width: 100%;
}

.contact-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    max-width: 320px; 
    padding: 18px 30px;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: none;
    color: #fff;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease, border-color 0.3s ease;
}

.wa-pill {
    background: #25D366 !important; 
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.2) !important;
    color: #070707 !important;
}

.tiktok-pill {
    background: #000000 !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4) !important;
}

.tiktok-pill:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6), -3px 3px 0 #00f2fe, 3px -3px 0 #fe0979 !important;
    border-color: transparent !important;
    transform: translateY(-4px);
}

.email-pill {
    background: #141414 !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5) !important;
}

.email-pill:hover {
    border-color: rgba(217, 4, 41, 0.5) !important;
    box-shadow: 0 15px 30px rgba(217, 4, 41, 0.2) !important;
    transform: translateY(-4px);
}

.wa-pill:hover { transform: scale(1.03); }

/* =========================================
   FOOTER (ALTLIQ)
========================================= */
.site-footer {
    text-align: center;
    padding: 30px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 50px;
    background: rgba(7, 7, 7, 0.5);
    position: relative;
    z-index: 10;
    width: 100%;
}

.site-footer p {
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    font-family: var(--font-main);
}

/* Skrolbari gizlətmək */
::-webkit-scrollbar { width: 0px; }

/* =========================================
   YENİLƏNMİŞ RESPONSİV SİSTEM (MOBİL)
========================================= */
@media (max-width: 900px) {
    .content-section { padding: 120px 5% 80px 5%; overflow-x: hidden; }
    
    .nav-center-links { display: none !important; }
    .hamburger-btn { display: flex; }
    
    /* [YENİ] Mobil cihazlarda loqonun ölçüsü */
    .nav-new-logo { max-width: 110px; }
    
    .hero-inner, .hero-inner.reverse {
        flex-direction: column;
        text-align: center;
        gap: 45px;
    }
    
    .hero-text { text-align: center; width: 100%; }
    .hero-stats { justify-content: center; flex-wrap: wrap; gap: 20px; }
    .globe-container { max-width: 350px; margin: 0 auto; }
    
    .image-grid-large { 
        grid-template-columns: 1fr; 
        grid-auto-rows: auto;
        gap: 15px; 
    }
    .grid-item { aspect-ratio: 4/3; }
    .grid-item.tall { grid-row: span 1; height: 350px; }
    
    .marquee-track { gap: 20px; }
    .partner-card { width: 180px; height: 85px; padding: 15px 25px !important; }
    
    .export-list li {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
    }
    .list-text { flex-direction: column; align-items: center; }
    .list-icon { margin-top: 0; margin-bottom: 5px; }

    body.premium-dark { cursor: auto; }
    .cursor-dot, .cursor-outline { display: none; }
    .lang-btn, .lang-toggle-btn, .primary-btn, .contact-pill, .hamburger-btn, .close-drawer-btn { cursor: pointer; }
}

@media (max-width: 480px) {
    .content-section { padding: 90px 6% 60px 6%; }
    .partner-card { width: 140px; height: 70px; padding: 10px 15px !important; }
    
    .profile-card { padding: 30px 20px; }
    .profile-img-wrapper { width: 120px; height: 120px; }
    
    .contact-pill {
        max-width: 100%; 
        font-size: 1rem;
        padding: 16px 20px;
    }
}