html {
    scroll-behavior: smooth;
  }

  :root {
    --dark-blue: #0a1f33;
    --blue: #1e5aa8;
    --yellow: #f2c94c;
    --white: #ffffff;
    --light-gray: #f4f6f9;
  }

  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Segoe UI", Arial, sans-serif;
  }

  body {
    background: var(--white);
    color: #1a1a1a;
    scroll-behavior: smooth;
  }

  .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
  }

  /* HEADER */
  .main-header {
    background: var(--dark-blue);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--yellow);
  }

  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    position: relative;
  }

  .brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-weight: 600;
    font-size: 18px;
  }

  .brand img {
    height: 45px;
  }

  nav a {
    color: var(--white);
    margin-left: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }

  nav a:hover {
    color: var(--yellow);
  }

  .nav-btn {
    background: var(--yellow);
    color: var(--dark-blue);
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: bold;
    transition: transform 0.3s ease;
  }

  .nav-btn:hover {
    transform: scale(1.05);
  }

  /* HAMBURGER */
  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
  }

  .hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  /* MOBILE MENU */
  .mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--dark-blue);
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    padding: 10px 0;
    gap: 10px;
    z-index: 999;
  }

  .mobile-nav a {
    color: var(--white);
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s;
  }

  .mobile-nav a:hover {
    background: rgba(255, 255, 0, 0.2);
    color: var(--yellow);
    border-left: 4px solid var(--yellow);
    padding-left: 16px;
  }

  /* Scroll progress line */
  .header-scroll-line {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--white);
    width: 0%;
    opacity: 1;
    transition: width 0.2s ease-out, opacity 0.3s ease-out;
    z-index: 1002;
  }

  /* HERO */
  .hero-modern {
    position: relative;
    min-height: 85vh;
    background: linear-gradient(135deg, var(--dark-blue), var(--blue));
    display: flex;
    align-items: center;
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 31, 51, 0.7);
  }

  .hero-content {
    position: relative;
    color: var(--white);
    text-align: left;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
  }

  .hero-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--yellow);
  }

  .hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 650px;
  }

  .hero-buttons {
    display: flex;
    gap: 15px;
  }

  .btn-primary {
    background: var(--yellow);
    color: var(--dark-blue);
    padding: 14px 28px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: transform 0.3s ease;
  }

  .btn-primary:hover {
    transform: scale(1.05);
  }

  .btn-outline {
    border: 2px solid var(--yellow);
    color: var(--white);
    padding: 12px 26px;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease, color 0.3s ease;
  }

  .btn-outline:hover {
    background: var(--yellow);
    color: var(--dark-blue);
  }

/* STILI I FOTOS SE KARTES */
.hero-card-img {
  width: 100%;
  max-width: 370px;
  height: auto;
  border-radius: 15px; 
  
  /* NDRYSHIMI KETU: Hije me e forte dhe me e madhe */
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5); 
  
  border: 2px; 
  margin-bottom: 30px; 
  display: block;
  transition: transform 0.3s ease;
}

/* Efekti kur e prek mbetet i njejte */
.hero-card-img:hover {
  transform: scale(1.02) rotate(1deg);
}

/* Rregullim për telefon */
@media (max-width: 768px) {
  .hero-card-img {
    max-width: 280px;
    margin-bottom: 20px;
  }
}

  /* SECTION TITLES */
  .section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    position: relative;
    color: var(--dark-blue);
  }

  .section-title::after {
    content: "";
    width: 80px;
    height: 4px;
    background: var(--yellow);
    display: block;
    margin: 12px auto 0;
  }

/* SERVICES SECTION */
/* SERVICES SECTION */
.services-modern {
  padding: 80px 0; /* Pak më pak hapësirë lart/poshtë */
  background: var(--light-gray);
}

.services-grid {
  display: grid;
  /* NDRYSHIMI 1: E ulim nga 300px në 260px që të jenë pak më të ngushta */
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); 
  gap: 25px; /* Hapësira mes tyre pak më e vogël */
}

.service-card {
  background: white;
  padding: 0; 
  border-left: 5px solid #0a192f; /* Vija pak më e hollë */
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  
  display: flex;       
  flex-direction: column; 
  justify-content: space-between;
  
  /* NDRYSHIMI 2: E ulim lartësinë minimale nga 400px në 320px */
  min-height: 20px;
  border-radius: 8px;
  overflow: hidden; 
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.card-content {
  /* NDRYSHIMI 3: Më pak padding që teksti të mos zërë shumë vend kot */
  padding: 20px; 
}

.service-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #0a192f;
  font-size: 1.25rem; /* Shkronja pak më të vogla */
}

.service-card p {
  color: #555;
  line-height: 1.5;
  font-size: 0.95rem; /* Teksti pak më kompakt */
  margin-bottom: 0;
}

/* --- STILI I FOTOS --- */
.card-image {
  width: 100%;          
  /* NDRYSHIMI 4: Fotoja pak më e ulët (nga 200px në 160px) */
  height: 160px;        
  object-fit: cover;    
  margin-top: auto;     
  display: block;       
}
  /* ABOUT */
  .about-modern {
    padding: 40px 0;
    background: var(--white);
  }

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

  .about-points {
    margin-top: 20px;
    list-style: none;
  }

  .about-points li {
    margin-bottom: 10px;
    font-weight: 500;
  }

  .about-highlight {
    background: var(--dark-blue);
    color: var(--white);
    padding: 35px;
    border-left: 6px solid var(--yellow);
  }

  /* PROJECT CTA */
  .projects-cta {
    padding: 90px 0;
    background: linear-gradient(135deg, var(--dark-blue), var(--blue));
    color: var(--white);
    text-align: center;
  }

  .projects-cta h2 {
    color: var(--yellow);
    margin-bottom: 15px;
  }

  /* CONTACT */
  .contact-modern {
    padding: 90px 0;
    background: var(--light-gray);
  }

  .contact-card {
    background: var(--white);
    padding: 40spx;
    max-width: 500px;
    margin: auto;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  }

  /* FOOTER */
  .footer-modern {
    background: var(--dark-blue);
    color: var(--white);
    text-align: center;
    padding: 25px 0;
    border-top: 3px solid var(--yellow);
  }

  /* WORK GALLERY */
  .work-modern {
    padding: 90px 0;
    background: #ffffff;
  }

  .work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
  }

  .work-item {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1; 
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .work-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.4s ease;
  }

  .work-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.2);
  }

  .work-item:hover img {
    transform: scale(1.07);
  }

  /* LIGHTBOX */
  .lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 30px;
  }

  .lightbox img {
    max-width: 95%;
    max-height: 95%;
    border-radius: 6px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  }

  .lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 36px;
    cursor: pointer;
    font-weight: bold;
  }

  /* MOBILE */
  @media (max-width: 800px) {
    nav {
      display: none;
    }

    .hamburger {
      display: flex;
    }

    .about-grid {
      grid-template-columns: 1fr;
    }

    .hero-content h1 {
      font-size: 36px;
    }

    .hero-buttons {
      flex-direction: column;
      align-items: flex-start;
    }

    .contact-card .btn-primary {
      margin-top: 40px;
    }
  }

  /* SCROLL ANIMATION */
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px);}
    to { opacity: 1; transform: translateY(-10px);}
  }

 /* CONTACT SECTION STYLE */
 /* --- RESET --- */
.contact-section-pro * {
  box-sizing: border-box;
  font-family: 'Arial', sans-serif; 
}

.contact-section-pro {
  padding: 80px 20px;
  background-color: #f4f7f9; 
  display: flex;
  justify-content: center;
}

.containerr {
  width: 100%;
  max-width: 1000px; /* Gjerësia maksimale e kutisë */
  margin: 0 auto;
}

/* Titulli */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.main-title {
  color: #0a192f; 
  font-size: 32px;
  margin-bottom: 10px;
  font-weight: 700;
}

.gold-line {
  width: 80px;
  height: 4px;
  background-color: #f2c94c; 
  margin: 0 auto;
}

/* --- KUTIA KRYESORE (Flexbox) --- */
.contact-box-wrapper {
  display: flex;
  flex-wrap: wrap; /* Lejon të thyhet në celular */
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15); 
}

/* Pjesa e Majtë (Blu) */
.contact-side-info {
  background-color: #0a192f;
  color: white;
  padding: 40px;
  flex: 1; /* Zë 1 pjesë */
  min-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-side-info h3 {
  color: #f2c94c;
  margin-top: 0;
  font-size: 24px;
  margin-bottom: 15px;
}

.intro-text {
  margin-bottom: 30px;
  opacity: 0.9;
  line-height: 1.5;
}

.info-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.icon {
  font-size: 20px;
  margin-right: 15px;
  color: #f2c94c;
}

.info-row p {
  margin: 5px 0 0 0;
  font-size: 14px;
  opacity: 0.8;
}

/* Pjesa e Djathtë (Forma) */
.contact-side-form {
  padding: 40px;
  flex: 1.5; /* Zë 1.5 pjesë (pak më e gjerë) */
  min-width: 300px;
  background-color: #fff;
}

.input-group {
  margin-bottom: 20px;
}

.input-group label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-weight: 600;
  font-size: 14px;
}

.input-group input,
.input-group select,
.input-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #f9f9f9;
  font-size: 15px;
  outline: none;
  transition: 0.3s;
}

/* Efekti kur klikon te kutia */
.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
  border-color: #f2c94c;
  background-color: #fff;
  box-shadow: 0 0 5px rgba(242, 201, 76, 0.3);
}

/* Butoni */
.submit-btn {
  width: 100%;
  padding: 15px;
  background-color: #f2c94c;
  color: #0a192f;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  text-transform: uppercase;
}

.submit-btn:hover {
  background-color: #dcb33b;
  transform: translateY(-2px);
}

/* --- RESPONSIVE (Celular) --- */
@media (max-width: 768px) {
  .contact-box-wrapper {
    flex-direction: column; /* I vë njëra nën tjetrën */
  }
  
  .contact-side-info, 
  .contact-side-form {
    padding: 30px 20px;
  }
}

  /* ABOUT LOGO - slide from left to right */
  .about-logo {
    width: 100px;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  }

  .about-logo img {
    width: 100%;
    display: block;
  }

  .about-logo.visible {
    opacity: 1;
    transform: translateX(-10px);
  }

  /* SUCCESS MODAL STYLES */
.success-modal-overlay {
  display: none; /* Fshehur fillimisht */
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(4px);
}

.success-modal-content {
  background: white;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  animation: popUp 0.3s ease-out;
}

@keyframes popUp {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.success-icon {
  width: 60px; height: 60px;
  background: #27ae60; /* E gjelbër */
  color: white;
  font-size: 30px;
  line-height: 60px;
  border-radius: 50%;
  margin: 0 auto 20px auto;
  font-weight: bold;
}

.success-modal-content h3 {
  color: #0a192f;
  margin-bottom: 10px;
}

.btn-close-modal {
  background: #0a192f;
  color: white;
  border: none;
  padding: 10px 30px;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 20px;
  font-weight: bold;
}