/* ===== CSS Variables ===== */
:root {
    --primary: #111111;
    --secondary: #F4F4F5;
    --accent: #1A4D2E;
    --accent-hover: #143A22;
    --white: #FFFFFF;
    --muted: #71717A;
    --border: #E4E4E7;
}

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    color: var(--primary);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Archivo', sans-serif;
    font-weight: 800;
    letter-spacing: -0.025em;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 48px;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 96px;
    }
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--accent-hover);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 48px;
    width: auto;
}

.logo span {
    font-family: 'Archivo', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

.nav-menu {
    display: none;
    list-style: none;
    gap: 32px;
}

@media (min-width: 1024px) {
    .nav-menu {
        display: flex;
    }
}

.nav-menu > li > a {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
    transition: color 0.2s ease;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    color: var(--accent);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown > a {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.dropdown > a i {
    font-size: 10px;
    transition: transform 0.2s ease;
}

.dropdown:hover > a i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -20px;
    min-width: 220px;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    list-style: none;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.dropdown-menu li a:hover {
    background: var(--secondary);
    color: var(--accent);
    border-left-color: var(--accent);
}

.nav-cta {
    display: none;
    padding: 12px 24px;
    background: var(--accent);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: background 0.3s ease;
}

@media (min-width: 1024px) {
    .nav-cta {
        display: inline-block;
    }
}

.nav-cta:hover {
    background: var(--accent-hover);
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary);
    cursor: pointer;
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* Mobile Menu */
.nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    border-bottom: 1px solid var(--border);
    gap: 16px;
}

.nav-menu.active .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding-left: 16px;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('https://images.unsplash.com/photo-1560922604-d08a31f8f7d1?w=1920') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(17, 17, 17, 0.9), rgba(17, 17, 17, 0.7), rgba(17, 17, 17, 0.5));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    width: 100%;
    padding: 120px 24px;
}

@media (min-width: 768px) {
    .hero-content {
        padding: 160px 48px;
    }
}

.hero-overline {
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 48px;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 72px;
    }
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 96px;
    }
}

.hero-subtitle {
    font-size: 18px;
    color: #d1d5db;
    max-width: 600px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 20px;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ===== Section Styles ===== */
.section-overline {
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 16px;
}

.section-title {
    font-size: 32px;
    margin-bottom: 48px;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 40px;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 48px;
    }
}

/* ===== Services Section ===== */
.services {
    padding: 80px 0;
    background: var(--white);
}

@media (min-width: 768px) {
    .services {
        padding: 128px 0;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    position: relative;
    min-height: 200px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: border-color 0.3s ease;
}

.service-card:hover {
    border-color: var(--accent);
}

.service-card.large {
    min-height: 400px;
}

@media (min-width: 1024px) {
    .service-card.large {
        grid-column: span 2;
        grid-row: span 2;
    }
}

.service-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover img {
    transform: scale(1.05);
}

.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17, 17, 17, 0.8), rgba(17, 17, 17, 0.3), transparent);
}

.service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    color: var(--white);
}

.service-icon {
    width: 40px;
    height: 40px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.service-card.large h3 {
    font-size: 28px;
}

.service-card p {
    font-size: 14px;
    color: #d1d5db;
    margin-bottom: 16px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent);
}

.service-card:hover .service-link {
    color: var(--white);
}

/* ===== Why Us Section ===== */
.why-us {
    padding: 80px 0;
    background: var(--secondary);
}

@media (min-width: 768px) {
    .why-us {
        padding: 128px 0;
    }
}

.why-us-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    align-items: center;
}

@media (min-width: 1024px) {
    .why-us-content {
        grid-template-columns: 1fr 1fr;
    }
}

.features-list {
    list-style: none;
    margin-bottom: 40px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 16px;
}

.features-list i {
    color: var(--accent);
    font-size: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.stat-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.stat-value {
    display: block;
    font-family: 'Archivo', sans-serif;
    font-size: 40px;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    .stat-value {
        font-size: 48px;
    }
}

.stat-label {
    font-size: 14px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===== CTA Section ===== */
.cta {
    padding: 80px 0;
    background: var(--primary);
    text-align: center;
}

@media (min-width: 768px) {
    .cta {
        padding: 128px 0;
    }
}

.cta h2 {
    font-size: 32px;
    color: var(--white);
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .cta h2 {
        font-size: 48px;
    }
}

.cta p {
    font-size: 18px;
    color: #9ca3af;
    max-width: 600px;
    margin: 0 auto 40px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

/* ===== Footer ===== */
.footer {
    background: var(--primary);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.footer-logo .logo-bg {
    background: var(--white);
    padding: 8px;
    border-radius: 4px;
}

.footer-logo img {
    height: 48px;
    width: auto;
}

.footer-logo span {
    font-family: 'Archivo', sans-serif;
    font-size: 20px;
    font-weight: 700;
}

.footer-info p {
    color: #9ca3af;
    font-size: 14px;
    line-height: 1.8;
}

.footer h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 24px;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer ul li a,
.footer ul li {
    color: #9ca3af;
    font-size: 14px;
    transition: color 0.2s ease;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer ul li a:hover {
    color: var(--white);
}

.footer ul li i {
    color: var(--accent);
    width: 20px;
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding: 32px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p {
    color: #6b7280;
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: #6b7280;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: var(--white);
}
 /* ===== PATCH: Abbruch – teksti majtas me u rreshtu lart me foton ===== */
.service-content{
    padding-top: 20px !important;  /* nëse don edhe ma lart: 0px */
  }
  
  .service-grid{
    align-items: flex-start !important; /* lart, jo në mes */
  }
  
  /* p-ja e parë zakonisht ka margin-top -> e shtyn poshtë */
  .service-text{
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
  .service-text > :first-child{
    margin-top: 0 !important;
  }
  
  /* mos me e shty as fotoja */
  .service-image-wrapper{
    margin-top: 0 !important;
  }
  
  /* bonus: nëse teksti po del i zbehtë */
  .service-content, .service-content *{
    opacity: 1 !important;
    filter: none !important;
    mix-blend-mode: normal !important;
  }
  