/* Reset total për të ndaluar tejkalimin e ekranit */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden; /* Ndalon rreshqitjen anash */
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; /* Hapësirë që elementet të mos prekin skajet */
}

/* Sigurohu që imazhet nuk dalin jashtë */
img {
    max-width: 100%;
    height: auto;
}



/* ==========================================================================
   1. VARIABLES & DESIGN SYSTEM (Luxury Dark & Electric Blue)
   ========================================================================== */
:root {
    /* Base Colors */
    --bg-dark: #0a0a0c;          /* Deep Charcoal - sfond i pastër premium */
    --bg-card: rgba(20, 20, 25, 0.6); /* Xham i errët për efektin 3D */
    --text-main: #f3f4f6;        /* E bardhë e butë për tekstet */
    --text-muted: #8e929b;       /* E hirtë teknike për përshkrime */
    
    /* Brand Accent Colors */
    --primary: #0052ff;          /* Electric Blue */
    --primary-glow: rgba(0, 82, 255, 0.15);
    --accent: #00d2ff;           /* Cyber Cyan për detaje sekondare */
    
    /* Fonts */
    --font-tech: 'Space Grotesk', sans-serif;
    --font-display: 'Syne', sans-serif;
    
    /* Layout & Transitions */
    --max-width: 1200px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
}

body {
    font-family: var(--font-tech);
    color: var(--text-main);
    background-color: var(--bg-dark);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Container profesional për qendërzim */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Sfondi Canvas - do të qëndrojë fiks prapa çdo elementi */
#tech-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    background: radial-gradient(circle at 50% 30%, #111424 0%, var(--bg-dark) 70%);
}

/* ==========================================================================
   3. GLOBAL KEYFRAMES (Për efektet 3D dhe dritën më vonë)
   ========================================================================== */
@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

@keyframes floatElement {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* ==========================================================================
   4. SITE HEADER & NAVIGATION (Optimized for AS Logo)
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1.2rem 0; /* Pak më e ngushtë për pamje më të mprehtë */
    background: rgba(8, 8, 10, 0.75); /* Sfond më i errët dhe më i plotë */
    backdrop-filter: blur(16px); /* Blur më i lartë për efekt luksi */
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04); /* Vijë minimale ndarëse */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5); /* Hije që i jep thellësi 3D sipër faqes */
    transition: var(--transition-smooth);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Brand Logo Styling */
.logo-brand {
    display: flex;
    align-items: center;
    gap: 0.85rem; /* Hapësirë e llogaritur mes ikonës dhe shkrimit */
    text-decoration: none;
    color: var(--text-main);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.25rem; /* Madhësia e tekstit ANSR TECH */
    letter-spacing: 1.5px;
}

/* Këtu rregullohet përmasa e logos tënde AS */
.logo-icon {
    height: 58px; /* E rritëm nga 42px në 58px për t'i dhënë fuqi vizuale */
    width: auto;
    object-fit: contain;
    transform: scale(1.15); /* Ky rresht e zmadhon logon pa e prishur kornizën e header-it */
    filter: drop-shadow(0 0 12px rgba(0, 82, 255, 0.45)); /* Shkëlqimi Electric Blue tani është më i fortë dhe më i errët */
}

/* Nav Menu */
.main-navigation ul {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary);
    transition: var(--transition-smooth);
}

.nav-link:hover::after {
    width: 100%;
}

/* ==========================================================================
   5. PREMIUM BUTTONS SYSTEM (Glow & Depth Effects)
   ========================================================================== */
/* ==========================================================================
   5. PREMIUM BUTTONS SYSTEM (Futuristic Glow & Layer Lift)
   ========================================================================== */
.nav-btn, .btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    padding: 0.8rem 1.8rem;
    border-radius: 4px; /* Kornizë e mprehtë teknike */
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- BUTONI 1: Start a Project (Navigacion) --- */
.nav-btn {
    color: var(--text-main);
    border: 1px solid rgba(0, 82, 255, 0.4);
    background: rgba(0, 82, 255, 0.03);
}

/* Drita e fshehur e brendshme */
.nav-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
    opacity: 0.5;
}

.nav-btn:hover {
    border-color: var(--accent);
    box-shadow: 0 0 25px rgba(0, 82, 255, 0.35);
}

.nav-btn:hover::before {
    transform: translate(-50%, -50%) scale(1);
}


/* --- BUTONI 2: Initialize Project (Hero Kryesor) --- */
.btn-primary {
    color: #ffffff;
    background: var(--primary);
    border: 1px solid var(--primary);
    box-shadow: 0 4px 14px rgba(0, 82, 255, 0.3);
}

/* Efekti i dritës që kalon si skaner nga e majta në të djathtë */
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.25),
        transparent
    );
    transition: left 0.6s ease;
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-3px); /* Ngritja 3D */
    border-color: var(--accent);
    box-shadow: 0 10px 25px rgba(0, 82, 255, 0.5), 
                0 0 15px rgba(0, 210, 255, 0.3);
}

.btn-primary:hover::before {
    left: 100%;
}


/* --- BUTONI 3: View Showcase (Hero Sekondar) --- */
.btn-secondary {
    color: var(--text-muted);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-left: 1.2rem;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.03);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}

.btn-secondary:hover {
    color: var(--text-main);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.btn-secondary:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Fix për Laptop: Ndalon thyerjen e emrit të logos në dy rreshta */
.logo-brand span {
    white-space: nowrap !important;
}

/* Fix për Laptop: Krijon hapësirë shtesë vetëm mes menusë dhe butonit Start a Project */
@media (min-width: 992px) {
    .main-navigation .nav-btn {
        margin-left: 2.5rem !important; /* Rrit rrezen e hapësirës majtas butonit */
    }
}
/* ==========================================================================
   6. HERO SECTION (3D Layout & Tech Gradient)
   ========================================================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px; /* Hapësirë për Header-in fiks */
    position: relative;
    overflow: hidden;
}

.hero-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Ndarja perfekte: Teksti majtas, 3D djathtas */
    align-items: center;
    gap: 4rem;
}

/* Hero Content (Majtas) */
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Badge teknik sipër titullit */
.hero-content .badge {
    background: rgba(0, 82, 255, 0.07);
    border: 1px solid rgba(0, 82, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    margin-bottom: 2rem;
}

.hero-content .badge span {
    font-family: var(--font-tech);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Titulli i madh me font Display */
.hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 4.5rem); /* Përshtatet automatikisht me ekranin */
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}

/* Teksti Gradient (Electric Blue -> Cyber Cyan) */
.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Përshkrimi nën titull */
.hero-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 480px;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    align-items: center;
}

/* Hero Visual (Djathtas - Zona 3D) */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 100%;
}

/* Karta Interaktive 3D me efekt të lartë luksi */
.interactive-3d-card {
    position: relative;
    width: 380px;
    height: 480px;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    /* Fshije ose bëje koment rreshtin e animacionit më poshtë: */
    /* animation: floatElement 6s ease-in-out infinite; */ 
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}

/* Drita e fshehur prapa kartës që krijon thellësinë 3D (Glow) */
.interactive-3d-card::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(0, 82, 255, 0.12) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

/* Responsive për pajisje mobile (Nëse ekrani është i vogël, kalojnë njëra nën tjetrën) */
@media (max-width: 968px) {
    .hero-section .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
        padding-top: 4rem;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-content p {
        margin: 0 auto 2.5rem auto;
    }
    
    .interactive-3d-card {
        width: 100%;
        max-width: 340px;
        height: 400px;
    }
}

/* ==========================================================================
   7. INTERACTIVE CARD CONTENT STYLING
   ========================================================================== */
.card-content {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 2.5rem 2rem; /* 2.5rem lart/poshtë, 2rem majtas/djathtas për më shumë hapësirë */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 2;
}

/* Pjesa e sipërme e kartës */
.card-header-tech {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent);
}

.system-text {
    font-family: var(--font-tech);
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* Titulli brenda kartës */
/* Rregullimi në ansrtech.css */
.card-main-title h3 {
    font-family: var(--font-display);
    font-size: 1.45rem; /* E zbritëm pak që të garantojmë vendin për shkronjën T */
    font-weight: 800;
    line-height: 1.3;
    padding-bottom: 5px;
    letter-spacing: -0.5px;
    color: var(--text-main);
    background: linear-gradient(180deg, #ffffff 0%, #a1a1aa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    
    /* Siguresat që të mos ketë prerje vizuale */
    overflow: visible;
    white-space: nowrap; /* Detyron tekstin të qëndrojë në një rresht pa u thyer */
}

/* Lista e specifikave teknike */
.tech-spec-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
}

.spec-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.spec-label {
    font-size: 0.7rem;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.spec-value {
    font-size: 0.85rem;
    color: var(--text-main);
    font-weight: 500;
}

/* Dritë e brendshme që reagon */
.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 82, 255, 0.08) 0%, transparent 80%);
    pointer-events: none;
    z-index: 1;
}

/* ==========================================================================
   8. SERVICES SECTION (Solutions Grid & Hover Glow)
   ========================================================================== */
.services-section {
    padding: 10rem 0; /* Hapësirë e madhe lart e poshtë për t'i dhënë frymëmarrje */
    position: relative;
    background-color: var(--bg-dark);
}

/* Koka e Seksionit */
.section-header {
    margin-bottom: 5rem;
    max-width: 600px;
}

.section-number {
    font-family: var(--font-tech);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw, 3.2rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* Rrjeti i Shërbimeve (Grid) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Kolona të barabarta */
    gap: 2rem;
}

/* Karta e Shërbimit (Luxury Glassmorphism) */
.service-card {
    background: rgba(20, 20, 25, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 6px; /* Kthesa minimale, serioze */
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

/* Drita e fshehur që do të shpërthejë gjatë hover-it */
.card-border-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at top left, 
        rgba(0, 82, 255, 0.15) 0%, 
        transparent 60%
    );
    opacity: 0; /* E fshehur në fillim */
    transition: var(--transition-smooth);
    pointer-events: none;
    z-index: 1;
}

/* Sigurohu që prindi nuk i "ha" fëmijët */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    width: 100%;
    min-height: 500px; /* Siguron hapësirë edhe nëse JS dështon */
    padding: 40px 0;
    align-items: stretch; /* I bën të gjitha kartat me të njëjtën lartësi */
}

/* Karta: Siguria e dukshmërisë */
.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 1 !important; /* Forcimi i dukshmërisë */
    visibility: visible !important;
    position: relative;
    z-index: 1;
}

/* Për të parandaluar zhdukjen nga GSAP */
.pricing-card[style*="opacity: 0"] {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Efekti Hover mbi Kartë */
.service-card:hover {
    transform: translateY(-5px); /* Ngritja e lehtë */
    border-color: rgba(0, 82, 255, 0.3); /* Korniza ndriçon Electric Blue */
    background: rgba(20, 20, 25, 0.6);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-card:hover .card-border-glow {
    opacity: 1; /* Shfaqet drita e brendshme */
}

/* Ikona minimale */
.service-icon {
    color: var(--accent); /* Cyber Cyan */
    margin-bottom: 2rem;
    display: inline-flex;
    padding: 1rem;
    background: rgba(0, 210, 255, 0.05);
    border-radius: 4px;
    border: 1px solid rgba(0, 210, 255, 0.1);
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    color: var(--text-main);
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 15px var(--primary-glow);
}

/* Titulli dhe teksti brenda kartës */
.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Tag-et Teknolologjike në fund të kartës */
.tech-tag {
    font-family: var(--font-tech);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.02);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: inline-block;
}

/* Responsive për Mobile dhe Tablet */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 kolona për tablet */
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 6rem 0;
    }
    .services-grid {
        grid-template-columns: 1fr; /* 1 kolonë për telefon */
    }
    .section-header {
        text-align: center;
        margin: 0 auto 4rem auto;
    }
}

/* ==========================================================================
   9. THE LAB / PROJECT SHOWCASE STYLING
   ========================================================================== */
.lab-section {
    padding: 10rem 0;
    position: relative;
    background-color: var(--bg-dark);
}

.project-list {
    display: flex;
    flex-direction: column;
    gap: 8rem; /* Hapësirë e madhe mes rreshtave të projekteve */
}

/* Rreshti i Projektit (Split Grid) */
.project-row {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Kutia e preview-s pak më e gjerë */
    align-items: center;
    gap: 5rem;
}

/* Ktheva e rreshtit (Për projektin e dytë që të ndërrojë krahun automatikisht) */
.project-row-reverse {
    grid-template-columns: 1.2fr 1fr;
}

.project-row-reverse .project-meta {
    grid-column: 2;
}

.project-row-reverse .project-preview-box {
    grid-column: 1;
    grid-row: 1;
}

/* Të dhënat e projektit (Majtas/Djathtas) */
.project-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.project-status {
    font-family: var(--font-tech);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent); /* Cyber Cyan */
    background: rgba(0, 210, 255, 0.05);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    border: 1px solid rgba(0, 210, 255, 0.15);
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
}

.project-meta h3 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.project-meta p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Stack-u Teknik i Projektit */
.project-tech-stack {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    border-left: 2px solid var(--primary);
    padding-left: 1.2rem;
}
.manifesto-sub-item, .architect-system-card {
    display: block !important; /* Sigurohu që nuk është none */
    opacity: 1; /* Default state */
}

.project-tech-stack span {
    font-family: var(--font-tech);
    font-size: 0.8rem;
    color: var(--text-main);
    font-weight: 500;
}

/* Kutia e Preview-s (Hapësira kibernetike) */
.project-preview-box {
    position: relative;
    width: 100%;
    height: 380px;
    background: rgba(15, 15, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.8);
    transition: var(--transition-smooth);
}

.project-preview-box:hover {
    border-color: rgba(0, 82, 255, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 0 40px rgba(0, 82, 255, 0.05);
}

/* Placeholder Teksti brenda kutisë */
.preview-placeholder {
    font-family: var(--font-tech);
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.15);
    letter-spacing: 2px;
    z-index: 2;
    transition: var(--transition-smooth);
}

.project-preview-box:hover .preview-placeholder {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary-glow);
}

/* Efekti i Errësimit (Overlay) */
.preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(8, 8, 10, 0.4) 100%);
    z-index: 1;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.cyber-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    position: relative;
    display: flex;
    flex-direction: column;
}

.form-bar {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    width: 100%;
    margin-top: 8px;
    transition: background 0.3s;
}

.form-group:focus-within .form-bar {
    background: var(--primary-color); /* Ngjyra jote e theksuar */
}

/* Siguria e dukshmërisë */
.contact-section {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Animacioni Cyber Scanline (Rrezja Skanuese) */
.scanline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    box-shadow: 0 0 12px var(--primary);
    opacity: 0.3;
    z-index: 3;
    animation: scanAnimation 4s linear infinite;
}

.faq-content {
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: none; /* GSAP do ta menaxhojë */
}

.faq-item.active .faq-content {
    height: auto;
    opacity: 1;
}

.footer {
    padding: 60px 0 20px;
    background: #050505; /* Pak më i errët se faqja kryesore */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.social-item {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s;
    margin-right: 15px;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes scanAnimation {
    0% {
        top: 0%;
    }
    50% {
        top: 100%;
    }
    100% {
        top: 0%;
    }
}

/* Responsive për Pajisjet Mobile */
@media (max-width: 968px) {
    .project-row, .project-row-reverse {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .project-row-reverse .project-meta {
        grid-column: 1;
    }
    
    .project-preview-box {
        height: 280px;
    }
}

/* ==========================================================================
   3D NO-IMAGE INTERACTIVE ENGINE
   ========================================================================== --> */
.project-3d-wrapper {
    perspective: 1000px;
    width: 100%;
    max-width: 500px;
}

.project-3d-card {
    display: block;
    position: relative;
    width: 100%;
    height: 320px;
    background: #07070a;
    border: 1px solid rgba(0, 242, 254, 0.15);
    border-radius: 16px;
    text-decoration: none;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), border-color 0.3s;
}

/* Tema Portokalli/Krem për Ditarin 1% */
.project-3d-card.journal-theme {
    border-color: rgba(212, 175, 55, 0.15);
}

.project-3d-card:hover {
    transform: rotateX(10deg) rotateY(-10deg) translateY(-5px);
    border-color: rgba(0, 242, 254, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.project-3d-card.journal-theme:hover {
    border-color: rgba(212, 175, 55, 0.5);
}

/* Sfondi me rrjetë cyber */
.node-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.8;
}

.card-content-3d {
    position: absolute;
    inset: 0;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.node-tag {
    align-self: flex-start;
    font-family: monospace;
    font-size: 0.75rem;
    color: #00f2fe;
    letter-spacing: 1px;
}

.journal-theme .node-tag {
    color: #d4af37;
}

/* --- Simulimi i Kubit 3D --- */
.cube-3d-simulation {
    position: relative;
    width: 60px;
    height: 60px;
    transform-style: preserve-3d;
    animation: rotateCube 12s infinite linear;
}

@keyframes rotateCube {
    0% { transform: rotateX(0deg) rotateY(0deg); }
    100% { transform: rotateX(360deg) rotateY(360deg); }
}

.face {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(7, 7, 10, 0.8);
    border: 1px solid rgba(0, 242, 254, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: monospace;
    font-size: 0.7rem;
    font-weight: bold;
    color: #ffffff;
    letter-spacing: 1px;
}

.journal-theme .face {
    border-color: rgba(212, 175, 55, 0.4);
}

.front  { transform: translateZ(30px); }
.back   { transform: rotateY(180deg) translateZ(30px); }
.right  { transform: rotateY(90deg) translateZ(30px); }
.left   { transform: rotateY(-90deg) translateZ(30px); }
.top    { transform: rotateX(90deg) translateZ(30px); }
.bottom { transform: rotateX(-90deg) translateZ(30px); }

/* Butoni i Veprimit brenda Kutisë */
.action-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 30px;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: background 0.3s, border-color 0.3s;
}

.project-3d-card:hover .action-trigger {
    background: #00f2fe;
    border-color: #00f2fe;
    color: #000000;
}

.project-3d-card.journal-theme:hover .action-trigger {
    background: #d4af37;
    border-color: #d4af37;
    color: #000000;
}

/* Efekti i Dritës mbas lëvizjes */
.glow-effect {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 242, 254, 0.1), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
}

.journal-theme .glow-effect {
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1), transparent 60%);
}

.project-3d-card:hover .glow-effect {
    opacity: 1;
}

/* ==========================================================================
   3D NO-IMAGE INCUBATOR ENGINE (RREGULLIMI I PLOTË)
   ========================================================================== */

/* Rreshtimi i strukturës origjinale që të qëndrojnë majtas-djathtas */
.project-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    margin-bottom: 6rem;
    width: 100%;
}

.project-row-reverse {
    flex-direction: row-reverse;
}

.project-meta {
    flex: 1;
    max-width: 50%;
}

/* Hapësira e re interaktive 3D (Zëvendëson kutitë e vjetra të fotove) */
.project-3d-wrapper {
    flex: 1;
    max-width: 480px;
    width: 100%;
    perspective: 1200px; /* Krijon thellësinë 3D */
}

.project-3d-card {
    display: block;
    position: relative;
    width: 100%;
    height: 280px;
    background: #09090d;
    border: 1px solid rgba(0, 242, 254, 0.12);
    border-radius: 12px;
    text-decoration: none !important;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.3s, box-shadow 0.3s;
}

/* Tema Gold/Krem për Ditarin 1% */
.project-3d-card.journal-theme {
    border-color: rgba(212, 175, 55, 0.12);
}

/* Efektet Hover për animacionin e kartës */
.project-3d-card:hover {
    border-color: rgba(0, 242, 254, 0.4);
    box-shadow: 0 15px 35px rgba(0, 242, 254, 0.05);
}

.project-3d-card.journal-theme:hover {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.05);
}

/* Sfondi Cyber-Grid */
.node-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.7;
    z-index: 1;
}

/* Përmbajtja brenda kartës 3D */
.card-content-3d {
    position: absolute;
    inset: 0;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

/* Etiketat e sistemit (NODE_01, NODE_02) */
.node-tag {
    align-self: flex-start;
    font-family: monospace;
    font-size: 0.75rem;
    color: #00f2fe;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.journal-theme .node-tag {
    color: #d4af37;
}

/* --- Ndërtimi i Kubit Gjeometrik 3D --- */
.cube-3d-simulation {
    position: relative;
    width: 50px;
    height: 50px;
    transform-style: preserve-3d;
    animation: rotateCube 15s infinite linear;
    margin-top: 10px;
}

@keyframes rotateCube {
    0% { transform: rotateX(0deg) rotateY(0deg); }
    100% { transform: rotateX(360deg) rotateY(360deg); }
}

.face {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(13, 13, 18, 0.9);
    border: 1px solid rgba(0, 242, 254, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: monospace;
    font-size: 0.65rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
}

.journal-theme .face {
    border-color: rgba(212, 175, 55, 0.3);
}

/* Pozicionimi i faqeve të kubit në hapësirë */
.front  { transform: translateZ(25px); }
.back   { transform: rotateY(180deg) translateZ(25px); }
.right  { transform: rotateY(90deg) translateZ(25px); }
.left   { transform: rotateY(-90deg) translateZ(25px); }
.top    { transform: rotateX(90deg) translateZ(25px); }
.bottom { transform: rotateX(-90deg) translateZ(25px); }

/* Butoni/Triggeri futuristik i veprimit */
.action-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 18px;
    border-radius: 30px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.action-trigger svg {
    transition: transform 0.3s ease;
}

/* Efekti kur bëhet hover mbi të gjithë kartën */
.project-3d-card:hover .action-trigger {
    background: #00f2fe;
    border-color: #00f2fe;
    color: #000000;
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.3);
}

.project-3d-card:hover .action-trigger svg {
    transform: translate(2px, -2px);
}

.project-3d-card.journal-theme:hover .action-trigger {
    background: #d4af37;
    border-color: #d4af37;
    color: #000000;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

/* Glow dinamik në sfond */
.glow-effect {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 242, 254, 0.06), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.journal-theme .glow-effect {
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.06), transparent 60%);
}

.project-3d-card:hover .glow-effect {
    opacity: 1;
}

/* Rregullim për ekranet e telefonave */
@media (max-width: 768px) {
    .project-row, .project-row-reverse {
        flex-direction: column;
        gap: 2rem;
    }
    .project-meta {
        max-width: 100%;
    }
}

/* ==========================================================================
   SECTION 03: EXECUTION PIPELINE & STACK (CSS)
   ========================================================================== */

.workflow-section {
    padding: 100px 0;
    background-color: #050505; /* Pak më e errët se pjesët e tjera për kontrast */
    position: relative;
}

/* ==========================================================================
   SERVICES GRID - STILI PREMIUM
   ========================================================================== */

.services-grid {
    display: grid !important;
    gap: 2rem !important; /* Hapësira mes kartave */
    margin-top: 3rem !important;
    
    /* Mobil: Një kolonë e vetme */
    grid-template-columns: 1fr !important; 
}

/* Nëse kartat janë elemente të thjeshta të rreshtuara */
.service-card {
    margin-bottom: 30px; /* Shton hapësirë poshtë çdo karte */
}

/* Stili bazë i kartës */
.service-card {
    background: #0a0a0a !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    padding: 2.5rem !important;
    border-radius: 12px !important;
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    transition: transform 0.3s ease, border-color 0.3s ease !important;
}

/* Hover efekt për të treguar gjallëri */
.service-card:hover {
    border-color: rgba(37, 99, 235, 0.3) !important;
    transform: translateY(-5px) !important;
}

/* Ikona e shërbimit */
.service-icon {
    width: 48px !important;
    height: 48px !important;
    background: rgba(37, 99, 235, 0.1) !important;
    color: #2563eb !important;
    border-radius: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 1.5rem !important;
}

/* Titujt dhe teksti */
.service-card h3 {
    color: #ffffff !important;
    font-size: 1.5rem !important;
    margin-bottom: 1rem !important;
    font-family: 'Space Grotesk', sans-serif !important;
}

.service-card p {
    color: #a1a1aa !important;
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    margin-bottom: 2rem !important; /* Hapësirë që etiketat të mos ngjiten */
}

/* Kontejneri i etiketave (i rregulluar më parë) */
.tech-badge-container {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    margin-top: auto !important; /* I mban etiketat gjithmonë në fund të kartës */
}

.tech-tag {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: #a1a1aa !important;
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 0.75rem !important;
    padding: 4px 10px !important;
    border-radius: 4px !important;
    white-space: nowrap !important;
    transition: all 0.2s ease !important;
}

.tech-tag:hover {
    background: rgba(37, 99, 235, 0.1) !important;
    border-color: rgba(37, 99, 235, 0.3) !important;
    color: #ffffff !important;
}

/* ==========================================================================
   MOBILE RESPONSIVENESS (Tri kartat zbresin njëra poshtë tjetrës)
   ========================================================================== */
/* Desktop: Tri kolona të barabarta */
@media (min-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

/* --- PIPELINE DESIGN --- */
.pipeline-container {
    max-width: 800px;
    margin: 60px auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.pipeline-step {
    display: flex;
    gap: 40px;
    position: relative;
}

.step-number-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 60px;
}

.step-num {
    width: 50px;
    height: 50px;
    background: #09090d;
    border: 1px solid rgba(0, 242, 254, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: #00f2fe;
    font-size: 1.1rem;
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.1);
    z-index: 2;
    transition: all 0.3s ease;
}

.pipeline-step:hover .step-num {
    border-color: #00f2fe;
    box-shadow: 0 0 25px rgba(0, 242, 254, 0.4);
    transform: scale(1.1);
}

.step-line {
    width: 1px;
    flex-grow: 1;
    background: linear-gradient(to bottom, rgba(0, 242, 254, 0.3), transparent);
    min-height: 80px;
}

.step-content {
    padding-bottom: 60px;
    flex: 1;
}

.step-content h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.step-content p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    font-size: 1rem;
    max-width: 600px;
}

/* --- TECH STACK MATRIX --- */
.stack-matrix-wrapper {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.matrix-title {
    text-align: center;
    margin-bottom: 40px;
}

.matrix-title span {
    font-family: monospace;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
    letter-spacing: 4px;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.tech-node-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.tech-node-box:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

/* Shton dritën blu te kutitë kur bën hover */
.tech-node-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.03) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

.tech-node-box:hover::before {
    opacity: 1;
}

.tech-category {
    display: block;
    font-family: monospace;
    font-size: 0.7rem;
    color: #00f2fe;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.tech-node-box h5 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .pipeline-step {
        gap: 20px;
    }
    .tech-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ==========================================================================
   SECTION 04: ENGAGEMENT MODELS & PRICING (CSS)
   ========================================================================== */

.pricing-section {
    padding: 100px 0;
    background-color: #050505;
    position: relative;
}

/* Rrjeti i kartave të çmimeve */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
    align-items: stretch;
}

/* Karta Bazë */
.pricing-card {
    background: #0d0d13;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 40px 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Karta e dytë (E veçuar / Most Requested) */
.pricing-card.featured-card {
    border-color: rgba(0, 242, 254, 0.15);
    background: #0e1118;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Efektet Hover mbi karta */
.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.pricing-card.featured-card:hover {
    border-color: #00f2fe;
    box-shadow: 0 20px 40px rgba(0, 242, 254, 0.05);
}

/* Etiketat e sistemit lart në kartë (CARD_TAG) */
.card-tag {
    position: absolute;
    top: 25px;
    right: 30px;
    font-family: monospace;
    font-size: 0.65rem;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.02);
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.card-tag.featured-tag {
    color: #00f2fe;
    background: rgba(0, 242, 254, 0.05);
    border-color: rgba(0, 242, 254, 0.2);
    font-weight: 600;
}

/* Numri i pakos (// 01, // 02) */
.pako-num {
    font-family: monospace;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 15px;
    display: block;
}

.pricing-card.featured-card .pako-num {
    color: rgba(0, 242, 254, 0.4);
}

/* Titujt e pakove */
.pricing-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem;
    color: #ffffff;
    margin: 0 0 15px 0;
    letter-spacing: -0.5px;
}

/* Përshkrimi i shkurtër */
.pako-desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 30px;
    min-height: 70px; /* Për t'i mbajtur kartat simetrike */
}

/* Zona e Çmimit */
.price-box {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.price-label {
    display: block;
    font-family: monospace;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.price-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1;
}

.pricing-card.featured-card .price-value {
    color: #00f2fe;
    text-shadow: 0 0 20px rgba(0, 242, 254, 0.1);
}

/* Lista e karakteristikave (Features) */
.pako-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex-grow: 1; /* Shtyn butonin gjithmonë në fund */
}

.pako-features li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
    position: relative;
    padding-left: 20px;
}

/* Pika para çdo elementi në listë (Kodi Cyber) */
.pako-features li::before {
    content: '›';
    position: absolute;
    left: 0;
    top: -2px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.1rem;
}

.pricing-card.featured-card .pako-features li::before {
    color: #00f2fe;
}

/* Butonat e Pakove */
.pricing-btn {
    display: block;
    text-align: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 14px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pricing-btn:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

/* Butoni i kartës kryesore */
.pricing-btn.featured-btn {
    background: #00f2fe;
    color: #000000;
    border-color: #00f2fe;
    box-shadow: 0 4px 15px rgba(0, 242, 254, 0.1);
}

.pricing-btn.featured-btn:hover {
    background: #ffffff;
    border-color: #ffffff;
    box-shadow: none;
}

/* Përshtatja për ekrane më të vogla */
@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
    .pako-desc {
        min-height: auto;
    }
}

/* ==========================================================================
   SECTION 05: KNOWLEDGE BASE / FAQ (CSS)
   ========================================================================== */

.faq-section {
    padding: 100px 0;
    background-color: #07070a;
    position: relative;
}

.faq-container {
    max-width: 850px;
    margin: 60px auto 0 auto;
    display: flex;
    flex-direction: column;
}

/* Secili rresht i pyetjeve */
.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: border-color 0.3s ease;
}

.faq-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Efekti hover mbi të gjithë rreshtin */
.faq-item:hover {
    border-color: rgba(0, 242, 254, 0.2);
}

/* Butoni/Kutia që klikohet (Triggeri) */
.faq-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 10px;
    cursor: pointer;
    user-select: none;
    background: transparent;
}

/* Numri teknik (01//, 02//) */
.faq-num {
    font-family: monospace;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.2);
    letter-spacing: 1px;
    margin-right: 20px;
    transition: color 0.3s ease;
}

.faq-item:hover .faq-num {
    color: #00f2fe;
}

/* Titulli i pyetjes */
.faq-trigger h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    flex: 1;
    font-weight: 500;
    transition: color 0.3s ease;
}

.faq-item:hover h4 {
    color: #ffffff;
}

/* Ikona e plusit (+) */
.faq-icon {
    font-size: 1.4rem;
    font-family: monospace;
    color: rgba(255, 255, 255, 0.3);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), color 0.3s;
    margin-left: 20px;
}

.faq-item:hover .faq-icon {
    color: #00f2fe;
}

/* Përmbajtja e përgjigjes (E fshehur fillimisht) */
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.23, 1, 0.32, 1), padding 0.4s ease;
    padding: 0 10px;
}

.faq-content p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
    padding-bottom: 24px;
    max-width: 750px;
}

/* ==========================================================================
   KLASAT AKTIVE (Shtohen përmes JS kur klikohet pyetja)
   ========================================================================== */
.faq-item.active {
    border-color: rgba(0, 242, 254, 0.3);
}

.faq-item.active .faq-num {
    color: #00f2fe;
}

.faq-item.active h4 {
    color: #ffffff;
}

/* Rrotullon plusin në ikone "X" ose minus kur hapet */
.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: #00f2fe;
}

.faq-item.active .faq-content {
    max-height: 200px; /* Lartësia maksimale sa për të zënë tekstin */
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .faq-trigger h4 {
        font-size: 1.05rem;
    }
    .faq-content p {
        font-size: 0.9rem;
    }
}

/* ==========================================================================
   SECTION 06: CONTACT & FOOTER (CSS)
   ========================================================================== */

.contact-section {
    padding: 100px 0;
    background-color: #050505;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.contact-layout {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    margin-top: 40px;
}

/* Ana e majtë - Detajet */
.contact-info-box {
    flex: 1;
    max-width: 450px;
}

.meta-contact-nodes {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-node {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.node-label {
    font-family: monospace;
    font-size: 0.7rem;
    color: rgba(0, 242, 254, 0.6);
    letter-spacing: 2px;
}

.node-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

a.node-value:hover {
    color: #00f2fe;
}

/* Ana e djathtë - Forma e Kontaktit */
.contact-form-wrapper {
    flex: 1;
    background: #0d0d13;
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 50px 40px;
    border-radius: 16px;
}

.cyber-form {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.form-group {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-family: monospace;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1.5px;
}

/* Stilimi i Inputeve, Textarea dhe Select */
.form-group input,
.form-group textarea,
.form-group select {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 0;
    color: #ffffff;
    font-size: 1rem;
    font-family: 'Space Grotesk', sans-serif;
    outline: none;
    transition: border-color 0.3s ease;
    width: 100%;
    border-radius: 0;
}

/* Rregullim specifik për dropdown (select) */
.form-group select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

.form-group select option {
    background: #0d0d13;
    color: #ffffff;
}

/* Efekti i vijës kur inputi bëhet aktiv (Focus) */
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #00f2fe;
}

/* Butoni i dërgimit */
.form-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #00f2fe;
    color: #000000;
    border: 1px solid #00f2fe;
    padding: 16px 32px;
    border-radius: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    align-self: flex-start;
}

.form-submit-btn svg {
    transition: transform 0.3s ease;
}

.form-submit-btn:hover {
    background: transparent;
    color: #00f2fe;
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.15);
}

.form-submit-btn:hover svg {
    transform: translate(3px, -3px);
}

/* --- FOOTER 3D PROFESIONAL & NEON GLOW --- */

.footer {
    background: radial-gradient(circle at center, #101218 0%, #050505 100%);
    color: #ffffff;
    padding: 80px 0 40px;
    border-top: 2px solid #00d4ff;
    position: relative;
    overflow: hidden;
}

/* Sfondi me dritë (Ambient Glow) */
.footer::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: rgba(0, 212, 255, 0.05);
    filter: blur(80px);
    border-radius: 50%;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 80px;
}

/* --- LOGO ME GLOW (Burbulla 3D) --- */
.logo-glow-container {
    position: relative;
    display: inline-block;
    padding: 20px;
}

.logo-glow-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(0, 212, 255, 0.15);
    filter: blur(30px);
    border-radius: 50%;
    transition: 0.4s;
}

.footer-logo {
    width: 200px;
    position: relative;
    transition: 0.4s;
}

.logo-glow-container:hover .footer-logo {
    transform: scale(1.1);
}

/* --- TITUJT DHE NAVIGIMI --- */
.footer h4 {
    color: #00d4ff;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 30px;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.footer-nav ul {
    list-style: none;
    padding: 0;
}

.footer-nav ul li {
    margin-bottom: 15px;
}

.footer-nav ul li a {
    color: #888;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.95rem;
}

.footer-nav ul li a:hover {
    color: #fff;
    padding-left: 10px;
}

/* --- IKONAT SOCIALE 3D --- */
.social-links {
    display: flex;
    gap: 15px;
}

.social-item {
    width: 45px;
    height: 45px;
    background: #111;
    border: 1px solid #222;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #00d4ff;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.social-item:hover {
    background: #00d4ff;
    color: #000;
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 212, 255, 0.4);
}

/* --- FOOTER BOTTOM --- */
.footer-bottom {
    text-align: center;
    margin-top: 80px;
    padding-top: 30px;
    border-top: 1px solid #1a1a1a;
    font-size: 10px;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    .social-links {
        justify-content: center;
    }
}
/* Responsive për celularë */
@media (max-width: 992px) {
    .contact-layout {
        flex-direction: column;
        gap: 50px;
    }
    .contact-info-box {
        max-width: 100%;
    }
    .form-submit-btn {
        width: 100%;
    }
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* ==========================================================================
   LANGUAGE SELECTOR - FORCE RIGHT ALIGNMENT (ANSR TECH)
   ========================================================================== */

/* Forcon të gjithë navigimin të rreshtohet në qendër dhe të shtrihet plotësisht */
.main-navigation {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important; /* Shtyn çdo gjë drejt të djathtës */
    width: 100%;
}

/* Siguron që lista e linkeve dhe butoni të qëndrojnë në rresht */
.main-navigation ul {
    display: flex !important;
    align-items: center !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

/* Wrapper-i i gjuhës - Tani i detyruar të qëndrojë në fund të rreshtit */
.nav-lang-wrapper {
    display: inline-flex !important;
    align-items: center !important;
    position: relative !important;
    padding-left: 15px !important;
    margin-left: 5px !important; /* Hapësirë shtesë nga butoni Start a Project */
    border-left: 1px solid rgba(255, 255, 255, 0.12) !important; /* Vija ndarëse */
}

/* Stili minimalist i Dropdown-it */
.lang-select {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background: transparent !important;
    color: rgba(255, 255, 255, 0.55) !important; /* Ngjyrë e zbehur që të mos ndërhyjë në UI */
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 0.75rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.05em !important;
    padding: 4px 22px 4px 8px !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    line-height: 1.5 !important;
    transition: all 0.2s ease !important;
    
    /* Shigjeta minimale vektoriale SVG */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 24 24' fill='none' stroke='rgba%28255,255,255,0.4%29' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 6px center !important;
}

/* Hover State */
.lang-select:hover {
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
    background-color: rgba(255, 255, 255, 0.03) !important;
}

/* Focus State */
.lang-select:focus {
    outline: none !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
}

/* Lista e opsioneve kur klikohet (Dropdown Menu) */
.lang-select option {
    background-color: #09090b !important; /* E zeza zink e brendit tënd */
    color: rgba(255, 255, 255, 0.8) !important;
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 0.85rem !important;
}

/* ==========================================================================
   RESPONSIVE (MOBILE) - RI-POZICIONIMI
   ========================================================================== */
@media (max-width: 991px) {
    .main-navigation {
        justify-content: center !important; /* Në mobile qendërzon elementet */
        flex-direction: column !important; /* I kthen në bllok vertikal nëse është e nevojshme */
        gap: 15px !important;
    }
    
    .nav-lang-wrapper {
        border-left: none !important; /* Heq vijën ndarëse në telefon */
        padding-left: 0 !important;
        margin-left: 0 !important;
        margin-top: 10px !important; /* Krijon distancë nën butonin kryesor */
    }

    .lang-select {
        font-size: 0.8rem !important;
        padding: 6px 24px 6px 10px !important; /* Më i lehtë për t'u klikuar me gisht */
    }
}

/* ==========================================================================
   // 05 . MANIFESTO & ARCHITECT PREMIUM COMPONENT SYSTEM
   ========================================================================== */

/* Section Layout Root */
.manifesto-section {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
    background-color: #09090b !important;
    border-bottom: 1px solid #27272a !important;
    width: 100% !important;
    display: block;
}

.manifesto-container {
    width: 100%;
    max-width: 1320px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
}

/* Header Typography Styles */
.manifesto-header-block {
    margin-bottom: 3.5rem !important;
}

.manifesto-section-tag {
    font-family: monospace !important;
    color: #71717a !important;
    display: block;
    margin-bottom: 0.5rem !important;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.manifesto-main-title {
    color: #ffffff !important;
    font-family: 'Space Grotesk', sans-serif !important;
    font-weight: 700 !important;
    font-size: calc(1.425rem + 2.1vw);
    line-height: 1.2;
    margin-bottom: 1rem !important;
}

.manifesto-main-subtitle {
    color: #a1a1aa !important;
    max-width: 36rem !important;
    font-size: 1rem;
    line-height: 1.6;
}

/* Master Responsive Grid System */
.manifesto-core-grid {
    display: grid !important;
    gap: 2rem !important;
    align-items: stretch !important;
    width: 100% !important;
}

/* Cards Structural Foundations */
.manifesto-system-card,
.architect-system-card {
    background-color: #09090b !important;
    border: 1px solid #27272a !important;
    border-radius: 8px !important;
    padding: 2.5rem !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    transition: border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.manifesto-system-card:hover,
.architect-system-card:hover {
    border-color: rgba(255, 255, 255, 0.25) !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7) !important;
}

/* Manifesto Inner Elements */
.manifesto-card-tag {
    font-family: monospace !important;
    color: #52525b !important;
    display: block;
    margin-bottom: 2rem !important;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.manifesto-sub-item {
    padding-bottom: 1.75rem !important;
    margin-bottom: 1.75rem !important;
    border-bottom: 1px solid #18181b !important;
}

.manifesto-sub-item.no-border {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
    border-bottom: none !important;
}

.manifesto-item-title {
    color: #ffffff !important;
    font-family: 'Space Grotesk', sans-serif !important;
    font-weight: 600 !important;
    font-size: 1.2rem !important;
    margin-bottom: 0.5rem !important;
}

.manifesto-item-text {
    color: #a1a1aa !important;
    font-size: 0.92rem !important;
    line-height: 1.65 !important;
    margin: 0 !important;
}

/* Architect Inner Elements */
.architect-profile-meta {
    display: flex !important;
    align-items: center !important;
    gap: 1.25rem !important;
    margin-bottom: 1.5rem !important;
}

.architect-avatar-frame {
    position: relative !important;
    width: 68px !important;
    height: 68px !important;
    border-radius: 50% !important;
    padding: 2px !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    background: #09090b !important;
    overflow: hidden !important;
    flex-shrink: 0 !important;
}

.architect-avatar-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 50% !important;
    filter: grayscale(40%) contrast(115%) !important;
    will-change: filter, transform;
    transition: filter 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.architect-system-card:hover .architect-avatar-img {
    filter: grayscale(0%) contrast(100%) !important;
    transform: scale(1.05) !important;
}

.architect-identity {
    display: flex !important;
    flex-direction: column !important;
}

.architect-role-tag {
    font-family: monospace !important;
    color: #52525b !important;
    font-size: 0.75rem !important;
    letter-spacing: 0.05em;
}

.architect-name {
    color: #ffffff !important;
    font-family: 'Space Grotesk', sans-serif !important;
    font-weight: 600 !important;
    font-size: 1.35rem !important;
    margin: 0 !important;
    margin-top: 0.25rem !important;
}

.architect-badge-wrapper {
    margin-bottom: 1.5rem !important;
}

.architect-status-badge {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 0.7rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.08em;
    color: #38bdf8 !important;
    background: rgba(56, 189, 248, 0.06) !important;
    border: 1px solid rgba(56, 189, 248, 0.18) !important;
    padding: 4px 10px !important;
    border-radius: 4px !important;
    display: inline-block !important;
}

.architect-biography-text {
    color: #a1a1aa !important;
    font-size: 0.92rem !important;
    line-height: 1.7 !important;
    margin: 0 !important;
}

/* Architect Card Footer */
.architect-card-footer {
    padding-top: 1.5rem !important;
    margin-top: 2rem !important;
    border-top: 1px solid #18181b !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

.architect-footer-label {
    font-family: monospace !important;
    color: #52525b !important;
    font-size: 0.75rem !important;
}

.architect-footer-value {
    font-family: monospace !important;
    color: #ffffff !important;
    font-size: 0.75rem !important;
}

/* ==========================================================================
   BREAKPOINTS ENGINE (RESPONSIVE BEHAVIOR)
   ========================================================================== */

/* Desktop Display Strategy */
@media (min-width: 992px) {
    .manifesto-core-grid {
        grid-template-columns: 1.4fr 1fr !important; /* Raport i saktë inxhinierik 58% me 42% */
    }
}

/* Tablet & Mobile Display Strategy */
@media (max-width: 991px) {
    .manifesto-core-grid {
        grid-template-columns: 1fr !important; /* Rrjedhë 100% vertikale për ekrane të vogla */
    }
    .manifesto-system-card,
    .architect-system-card {
        padding: 1.75rem !important; /* Përshtatje e paddingut në telefona */
    }
}

/* ==========================================================================
   // 05 . METRICS & BENCHMARKS PREMIUM STYLES
   ========================================================================== */

.metrics-section {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
    background-color: #09090b !important;
    border-bottom: 1px solid #27272a !important;
    width: 100% !important;
    display: block;
}

.metrics-container {
    width: 100%;
    max-width: 1320px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
}

.metrics-header-block {
    margin-bottom: 3.5rem !important;
}

.metrics-section-tag {
    font-family: monospace !important;
    color: #71717a !important;
    display: block;
    margin-bottom: 0.5rem !important;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.metrics-main-title {
    color: #ffffff !important;
    font-family: 'Space Grotesk', sans-serif !important;
    font-weight: 700 !important;
    font-size: calc(1.425rem + 2.1vw);
    line-height: 1.2;
    margin-bottom: 1rem !important;
}

.metrics-main-subtitle {
    color: #a1a1aa !important;
    max-width: 36rem !important;
    font-size: 1rem;
    line-height: 1.6;
}

/* Master Responsive Grid System (3 Kolona) */
.metrics-core-grid {
    display: grid !important;
    gap: 2rem !important;
    align-items: stretch !important;
    width: 100% !important;
}

/* Structural Foundations for Data Cards */
.metric-data-card {
    background-color: #09090b !important;
    border: 1px solid #27272a !important;
    border-radius: 8px !important;
    padding: 2.5rem !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    transition: border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.metric-data-card:hover {
    border-color: rgba(255, 255, 255, 0.25) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6) !important;
}

/* Typography & Interactive Display Nodes */
.metric-visual-node {
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    margin-bottom: 1.5rem !important;
}

.metric-number {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    line-height: 1 !important;
    letter-spacing: -0.02em !important;
    transition: color 0.3s ease !important;
}

.metric-data-card:hover .metric-number {
    color: #38bdf8 !important; /* Ndryshon në cyan elektrik në hover */
}

/* System Live Status Pulse Effect */
.metric-status-pulse {
    width: 8px;
    height: 8px;
    background-color: #22c55e !important; /* E gjelbër operacionale */
    border-radius: 50% !important;
    display: inline-block !important;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    animation: metricPulseEngine 2s infinite !important;
}

@keyframes metricPulseEngine {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

.metric-card-title {
    color: #ffffff !important;
    font-family: 'Space Grotesk', sans-serif !important;
    font-weight: 600 !important;
    font-size: 1.2rem !important;
    margin-bottom: 0.75rem !important;
}

.metric-card-text {
    color: #a1a1aa !important;
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

/* ==========================================================================
   ANSR TECH PREMIUM NAVBAR - MODERN UPGRADE (Për të dyja versionet)
   ========================================================================== */

/* Kontejneri i kontrolleve të djathta (Gjuha + Burger) */
.nav-controls-wrapper {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
}

/* BUTONI BURGER FUTURISTIK (Asimetrik me dy vija) */
.burger-menu-btn {
    background: none !important;
    border: none !important;
    padding: 8px !important;
    cursor: pointer !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: flex-end !important; /* Rreshton vijat nga e djathta */
    gap: 6px !important;
    height: 32px !important;
    width: 32px !important;
    position: relative !important;
}

/* Stili i përbashkët për vijat e burgerit */
.burger-bar {
    height: 2px !important;
    background-color: #ffffff !important;
    display: block !important;
    border-radius: 2px !important;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                width 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.2s ease !important;
}

/* Vija e parë (Lart) */
.burger-menu-btn .burger-bar:nth-child(1) {
    width: 22px !important;
}

/* Vija e dytë (Poshtë) - Më e shkurtër për një pamje asimetrike e moderne */
.burger-menu-btn .burger-bar:nth-child(2) {
    width: 16px !important;
}

/* Kur hiqet vija e tretë nga HTML, sigurohemi që nuk ndikon */
.burger-menu-btn .burger-bar:nth-child(3) {
    display: none !important;
}

/* ANIMACIONI KUR MENUJA ËSHTË AKTIVE (Transformimi në X) */
.burger-menu-btn.active .burger-bar:nth-child(1) {
    transform: translateY(4px) rotate(45deg) !important;
    width: 22px !important;
}

.burger-menu-btn.active .burger-bar:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg) !important;
    width: 22px !important;
}

/* ==========================================================================
   MOBILE OPTIMIZATION (Aktivizohet VETËM në Telefon < 992px)
   ========================================================================== */
@media (max-width: 991px) {
    
    .site-header .container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
    }

    .main-navigation {
        display: none !important;
    }

    /* Paneli i menusë së lëshueshme */
    .mobile-menu-dropdown {
        display: none;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        width: 100% !important;
        background: #030303 !important;
        border-top: 1px solid #1c1c1f !important;
        border-bottom: 1px solid #1c1c1f !important;
        padding: 3.5rem 1.5rem !important;
        z-index: 9998 !important;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.9) !important;
    }

    .mobile-menu-dropdown.active {
        display: block !important;
    }

    /* Pastrimi total i listave */
    .mobile-menu-dropdown ul {
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
    }

    .mobile-menu-dropdown ul li {
        width: 100% !important;
        text-align: center !important;
    }

    /* Linqet e menusë në mobil */
    .mobile-nav-link {
        color: #a1a1aa !important;
        text-decoration: none !important;
        font-family: 'Space Grotesk', sans-serif !important;
        font-size: 1.35rem !important;
        font-weight: 500 !important;
        letter-spacing: -0.02em !important;
        transition: color 0.25s ease !important;
        display: inline-block !important;
        padding: 0.6rem 0 !important;
    }

    .mobile-nav-link:hover {
        color: #ffffff !important;
    }

    /* BUTONI "NIS NJË PROJEKT" PREMIUM & PROFESIONAL */
    .mobile-btn-start {
        display: inline-block !important;
        text-decoration: none !important;
        width: 100% !important;
        max-width: 240px !important;
        text-align: center !important;
        background: #2563eb !important; /* Kaltërta e pastër e teknologjisë */
        color: #ffffff !important;
        padding: 0.85rem 1.5rem !important;
        border-radius: 8px !important; /* Pak më i rrumbullakosur për pamje moderne */
        font-family: 'Space Grotesk', sans-serif !important;
        font-weight: 600 !important;
        font-size: 0.95rem !important;
        letter-spacing: 0.02em !important;
        margin-top: 1.5rem !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important; /* Bordurë e imët premium */
        transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease !important;
    }

    .mobile-btn-start:hover {
        background: #1d4ed8 !important;
        transform: translateY(-1px) !important;
        box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3) !important; /* Glow i kontrolluar në hover */
    }
}

/* ==========================================================================
   DESKTOP RESTORATION (Injoron rregullat e mobil-it në Laptop)
   ========================================================================== */
@media (min-width: 992px) {
    .mobile-menu-dropdown {
        display: none !important;
    }
    .burger-menu-btn {
        display: none !important;
    }
}

/* ==========================================================================
   MOBILE RESPONSIVENESS & CENTERING FOR THE PREMIUM CARD
   ========================================================================== */
@media (max-width: 991px) {
    .interactive-3d-card {
        /* Ndryshon gjerësinë e ngurtë në fleksibile për ekranet e vegjël */
        width: 100% !important;
        max-width: 340px !important; /* Ndalon zgjerimin e tepërt anash */
        
        /* Centrimi perfekt në mes të ekranit */
        margin-left: auto !important;
        margin-right: auto !important;
        
        /* Opsionale: Nëse lartësia 480px duket shumë e gjatë në telefon, mund ta zvogëlosh pak */
        height: 440px !important; 
    }
}

/* Telefonat (Mobile) */
@media (max-width: 767px) {
    .footer-grid {
        grid-template-columns: 1fr; /* Footer bëhet një kolonë */
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem !important; /* Zvogëlo tekstin */
    }

    .service-card, .pricing-card {
        margin-bottom: 20px;
    }

    .project-row {
        flex-direction: column; /* Projekti del njëri mbi tjetrin */
    }

    .metrics-core-grid {
        grid-template-columns: 1fr;
    }
}

/* Tabletat (Ipad) */
@media (min-width: 768px) and (max-width: 1024px) {
    .container {
        padding: 0 40px;
    }
}

.hero-actions, .nav-controls-wrapper, .burger-menu-btn {
    position: relative;
    z-index: 999; /* I vë butonat para çdo elementi tjetër */
    pointer-events: auto; /* Siguron që klikimi pranohet */
}

/* Nëse menuja mobile po i bllokon kur është e mbyllur */
.mobile-menu-dropdown {
    pointer-events: none; /* Nuk lejon asgjë të klikohet kur është e mbyllur */
    opacity: 0;
    transition: opacity 0.3s;
}

.mobile-menu-dropdown.active {
    pointer-events: auto; /* Lejon klikimin vetëm kur është hapur */
    opacity: 1;
}

@media (max-width: 991px) {
    .main-navigation {
        display: none !important; /* Sigurohu që nav-i desktop është fshehur */
    }

    .mobile-menu-dropdown {
        position: fixed;
        top: 80px; /* Nën header */
        left: 0;
        width: 100%;
        background: #050505;
        padding: 40px 0;
        z-index: 998;
    }
}

/* Rregullimi i Header-it për mobile */
@media (max-width: 991px) {
    .site-header .container {
        padding: 10px 15px;
    }
    
    .logo-brand span {
        display: none; /* Fshih emrin për të lënë vend */
    }

    /* Hero Section Fix */
    .hero-section .container {
        display: flex;
        flex-direction: column;
        padding-top: 80px;
        text-align: center;
    }

    .hero-content {
        width: 100%;
        margin-bottom: 30px;
    }

    .hero-content h1 {
        font-size: 2rem !important;
        line-height: 1.2;
    }

    /* 3D Card Fix - kjo është ajo që të prish layout-in */
    .interactive-3d-card {
        width: 100% !important;
        max-width: 340px; /* E bëjmë më të vogël se ekrani */
        margin: 0 auto;
        position: relative !important;
        transform: none !important; /* Hiq transformimet 3D që shkaktojnë overflow */
    }
}

@media (max-width: 991px) {
    /* Në vend të display: none, përdor këtë: */
    .logo-brand span {
        display: block !important;
        font-size: 0.8rem; /* E bëjmë shkrimin më të vogël */
        white-space: nowrap; /* E detyron të rrijë në një rresht */
    }
    
    .logo-icon {
        width: 40px; /* Zvogëlo pak ikonën për t'u përshtatur */
        height: 30px;
    }
}

.faq-item {
    border-bottom: 1px solid #333;
    padding: 20px 0;
}

.faq-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-content {
    display: none; /* Kjo e fsheh */
    padding-top: 15px;
    color: #ccc;
}

/* Kjo është magjia - kur klasa 'active' shtohet, shfaqet */
.faq-item.active .faq-content {
    display: block !important;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg); /* Kthehet në X */
}

/* Stili për Desktop/Tablet (Ekranet e mëdha) */
@media (min-width: 481px) {
    .card-main-title h3 {
        font-size: 28px !important;
        white-space: nowrap !important; /* Mban tekstin në një rresht nëse ka hapësirë */
        display: block !important;
    }
}

/* Stili për ekranet e vogla (Mobile - Përmirësuar) */
@media (max-width: 480px) {
    .card-main-title h3 {
        display: block !important;
        width: 100% !important;
        font-size: 20px !important; /* Zvogëluar pak për të qenë i sigurt */
        line-height: 1.1 !important;
        text-align: center !important;
        
        /* Këto dy veti bëjnë thyerjen e fjalëve pa i shpërndarë shkronjat */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        
        white-space: normal !important; /* Lejon thyerjen e rreshtit */
        padding: 0 10px !important;     /* Hapësirë që shkronjat mos prekin skajet */
        margin: 0 auto !important;
    }
    
    /* Sigurohemi që karta nuk kufizohet nga ndonjë gjerësi fikse e tepërt */
    .interactive-3d-card {
        max-width: 95vw !important;
        margin: 0 auto !important;
    }
}
