:root {
    /* Paleta e ngjyrave bazuar në temën moderne të pastër */
    --primary: #1e5ff8;
    --primary-hover: #154bdb;
    --primary-light: #e8effe;
    --secondary: #10b981;
    --secondary-light: #d1fae5;
    
    --bg-main: #ffffff;
    --bg-light: #f8fafc;
    --bg-dark: #0f172a;
    
    --text-main: #0f172a;
    --text-muted: #64748b;
    --text-light: #ffffff;
    
    --border: #e2e8f0;
    
    /* Hijet */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-card: 0 16px 32px rgba(15, 23, 42, 0.04);
    
    /* Këndet (Radii) */
    --radius-sm: 0.375rem;
    --radius-md: 0.75rem;
    --radius-lg: 1.25rem;
    --radius-xl: 2rem;
    
    /* Tranzicionet */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

.text-primary { color: var(--primary) !important; }
.text-secondary { color: var(--secondary) !important; }
.text-muted { color: var(--text-muted) !important; }
.bg-light { background-color: var(--bg-light); }
.bg-green-light { background-color: var(--secondary-light); }

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-relative {
    position: relative;
    z-index: 2;
}

.section-padding {
    padding: 6rem 0;
}

/* Klasat ndihmëse (Utilities) */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.text-center { text-align: center; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-4 { margin-bottom: 1.5rem; }
.w-100 { width: 100%; }
.mx-auto { margin-left: auto; margin-right: auto; }
.fw-500 { font-weight: 500; }
.text-sm { font-size: 0.875rem; }
.text-xl { font-size: 1.5rem; font-weight: 700; }
.rounded-xl { border-radius: var(--radius-xl); }
.ms-2 { margin-left: 0.5rem; }
.center-btn { display: flex; justify-content: center; width: 100%; }

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-main);
}

/* Butonat */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-light);
    box-shadow: 0 4px 14px 0 rgba(30, 95, 248, 0.39);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 95, 248, 0.4);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--border);
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--text-main);
    background-color: var(--bg-light);
    transform: translateY(-2px);
}

/* Titujt e Seksioneve */
.section-subtitle {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-header:not(.text-center) .section-desc {
    margin: 0;
}

/* --- Shiriti i Navigimit --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
    padding: 1rem 0;
}

.navbar.scrolled {
    padding: 0.75rem 0;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
}

.logo i { font-size: 1.75rem; }

.nav-links {
    display: flex;
    gap: 1.5rem; /* Redukuar nga 2rem për të përballuar fjalët e gjata gjermane */
}

.nav-links a {
    white-space: nowrap;
    font-size: 0.95rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

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

.lang-switcher {
    display: flex;
    align-items: center;
    margin-right: 0.5rem;
}

.lang-link {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-muted);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.lang-link:hover {
    color: var(--primary);
    border-color: var(--primary);
    background-color: var(--primary-light);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-main);
    cursor: pointer;
    white-space: nowrap;
}

/* --- Seksioni Kryesor (Hero) --- */
.hero {
    position: relative;
    padding: 10rem 0 6rem;
    background: linear-gradient(135deg, #f0f4ff 0%, #ffffff 100%);
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 140%;
    background-color: var(--primary-light);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    z-index: 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
    border: 1px solid var(--border);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.text-highlight {
    position: relative;
    display: inline-block;
}

.text-highlight::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 12px;
    background-color: var(--primary-light);
    z-index: -1;
    border-radius: 4px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

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

.hero-stats h3 {
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 0.25rem;
}

.hero-stats p {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    height: auto;
    object-fit: contain;
    width: 100%;
}

.floating-card {
    position: absolute;
    bottom: -20px;
    left: -40px;
    background: white;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.floating-icon {
    width: 48px;
    height: 48px;
    background-color: var(--secondary-light);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.floating-text h4 {
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.floating-text p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.floating-text strong {
    color: var(--text-main);
    font-size: 0.875rem;
}

/* --- Seksioni i Shërbimeve --- */
.service-grid {
    margin-top: 4rem;
}

.service-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    border: 1px solid var(--border);
}

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

.service-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img {
    transform: scale(1.05);
}

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.service-content p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.feature-list li.disabled {
    color: var(--text-muted);
    opacity: 0.7;
}

.feature-list li.disabled i {
    color: var(--text-muted) !important;
}

/* --- Seksioni i Produkteve --- */
.products {
    position: relative;
    padding-top: 8rem;
}

.products-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 500px;
    background: linear-gradient(180deg, #f0fdf4 0%, rgba(240, 253, 244, 0) 100%);
    z-index: 1;
}

.badges-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.product-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-img-wrapper {
    position: relative;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    display: flex;
    justify-content: center;
    height: 250px;
}

.product-img-wrapper img {
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.product-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
}

.product-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.product-title-row h3 {
    font-size: 1.125rem;
}

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

.product-info p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: auto;
}

.text-link {
    font-weight: 600;
}

.text-link:hover {
    text-decoration: underline;
}

/* --- WhatsApp Button --- */
.btn-whatsapp {
    background-color: #25d366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background-color: #128c7e;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* --- Contact Social Links --- */
.contact-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.contact-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    font-size: 1.3rem;
}

.contact-social-link.facebook {
    color: #1877f2;
}

.contact-social-link.instagram {
    color: #e4405f;
}

.contact-social-link.facebook:hover {
    background-color: #1877f2;
    color: white;
    transform: translateY(-3px);
}

.contact-social-link.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
    color: white;
    transform: translateY(-3px);
}

/* --- Seksioni i Prezantimit të Produkteve (Zig-Zag) --- */
.product-showcase {
    padding: 6rem 0;
}

.showcase-row {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 6rem;
}

.showcase-row:last-child {
    margin-bottom: 0;
}

.showcase-row:nth-child(even) {
    flex-direction: row-reverse;
}

.showcase-image-wrapper {
    flex: 1;
    position: relative;
}

.showcase-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.showcase-content {
    flex: 1;
}

.showcase-content .product-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background-color: var(--secondary-light);
    color: var(--secondary);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.showcase-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.showcase-content p {
    color: var(--text-muted);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

@media (max-width: 992px) {
    .showcase-row, .showcase-row:nth-child(even) {
        flex-direction: column;
        gap: 2rem;
    }
    .showcase-image {
        height: auto;
    }
}

/* --- Seksioni Rreth Nesh --- */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

.features-grid {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.about-stats {
    display: flex;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.stat-box {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    flex-grow: 1;
    text-align: center;
}

/* --- Dëshmitë --- */
.testimonial-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border);
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.quote-icon {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
    color: var(--bg-light);
    z-index: 0;
}

.testimonial-card > * {
    position: relative;
    z-index: 1;
}

.stars {
    color: #f59e0b; /* E verdhë/artë */
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.review-text {
    font-size: 1rem;
    color: var(--text-main);
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.user-name {
    font-size: 1rem;
}

.user-role {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    background: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.rating-badge h2 {
    font-size: 3rem;
    margin: 0;
    line-height: 1;
}

/* --- Çmimet --- */
.pricing-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    border-color: var(--primary);
}

.pricing-card.popular {
    transform: scale(1.05);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-card .price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 2rem;
}

.pricing-card .price h2 {
    font-size: 3.5rem;
}

.pricing-features {
    margin-bottom: 2rem;
    flex-grow: 1;
}

/* --- Seksioni i Kontaktit --- */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.contact-card.border-none {
    border: none;
    box-shadow: none;
    background: transparent;
    padding: 1rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.contact-card h4 {
    margin-bottom: 0.25rem;
}

.contact-card p {
    color: var(--text-muted);
}

.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background-color: var(--bg-light);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background-color: white;
    box-shadow: 0 0 0 3px var(--primary-light);
}

/* --- Pjesa e Fundit (Footer) --- */
.footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding-top: 5rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    padding-bottom: 4rem;
}

.footer-logo {
    color: white;
    margin-bottom: 1.5rem;
}

.footer-desc {
    color: #94a3b8;
    margin-bottom: 2rem;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.social-links a.facebook:hover {
    background-color: #1877f2;
}

.social-links a.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.footer-links h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: #94a3b8;
}

.footer-links a:hover {
    color: white;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #94a3b8;
}

.footer-contact li i {
    color: white;
}

.footer-bottom {
    background-color: #0b1120;
    padding: 1.5rem 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #94a3b8;
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a:hover {
    color: white;
}

/* --- Animacionet --- */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.show {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* --- Dizajni i Përgjegjshëm (Responsive) --- */
@media (max-width: 1200px) {
    .container { max-width: 960px; }
}

@media (max-width: 1024px) {
    .container { max-width: 100%; padding: 0 2rem; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .hero-title { font-size: 2.75rem; }
    .hero-image { height: auto; }
    .pricing-card.popular { transform: none; box-shadow: var(--shadow-card); }
    .hero { padding: 8rem 0 4rem; }
}

@media (max-width: 992px) {
    .showcase-row, .showcase-row:nth-child(even) {
        flex-direction: column;
        gap: 2.5rem;
        text-align: center;
    }
    .showcase-row .feature-list {
        align-items: center;
    }
    .footer-container { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
}

@media (max-width: 768px) {
    .section-padding { padding: 3.5rem 0; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .nav-links, .nav-actions .btn:not(.hamburger) { display: none; }
    .hamburger { display: block; }
    
    .hero-container, .about-container, .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .hero { padding: 7rem 0 3rem; text-align: center; }
    .hero-title { font-size: 2.25rem; }
    .hero-subtitle { margin: 0 auto 2rem; font-size: 1rem; }
    .hero-buttons { justify-content: center; gap: 1rem; }
    .hero-stats { justify-content: center; gap: 1.5rem; margin-top: 2rem; }
    .hero-image { height: auto; margin-top: 2rem; }
    
    .section-title { font-size: 1.85rem; }
    .section-desc { text-align: center; font-size: 1rem; }
    .section-header:not(.text-center) { text-align: center; }
    
    .badges-row { flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
    .badge-item { padding: 0.5rem 1rem; font-size: 0.85rem; }
    
    .about-image { height: 400px; }
    .about-content { text-align: center; }
    .features-grid { text-align: left; }
    
    .contact-form-container { padding: 1.5rem; }
    .footer-bottom .container { flex-direction: column; gap: 1rem; text-align: center; }
    .footer-bottom-links { gap: 1rem; flex-wrap: wrap; justify-content: center; }
    
    /* Mobile Menu Active */
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--border);
        align-items: center;
        gap: 1.5rem;
        animation: fadeInDown 0.3s ease-out;
    }
}

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

@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    .hero-title { font-size: 1.85rem; }
    .hero-image { height: auto; }
    .hero-buttons .btn { width: 100%; }
    .hero-stats { flex-direction: column; align-items: center; gap: 1.5rem; }
    .stat-inner-divider { display: none; }
    .about-image { height: 300px; }
    .product-img-wrapper { height: 200px; }
    .footer-container { grid-template-columns: 1fr; text-align: center; }
    .footer-info { align-items: center; }
    .social-links { justify-content: center; }
}
