  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    :root {
      --dark-gray: #333333;
      --light-gray: #f5f5f5;
      --medium-gray: #777777;
      --accent-gray: #555555;
      --white: #ffffff;
      --primary: #4a4a4a;
      --secondary: #686868;
      --accent: #8f8f8f;
      --hover-color: #3d3d3d;
      --gold: #d4af37;
      --gradient-primary: linear-gradient(135deg, #4a4a4a, #686868);
      --gradient-accent: linear-gradient(135deg, #8f8f8f, #4a4a4a);
    }

    body {
      background-color: var(--light-gray);
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.8rem 5%;
      background-color: var(--white);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      position: sticky;
      top: 0;
      z-index: 1000;
      border-bottom: 3px solid #e6e6e6;
    }

    .logo {
      display: flex;
      align-items: center;
    }

    .logo img {
      height: 80px;
      margin-right: 10px;
      transition: transform 0.3s ease;
    }
    


    .nav-links {
      display: flex;
      list-style: none;
    }

    .nav-links li {
      position: relative;
      margin-left: 1.5rem;
    }

    .nav-links a {
      text-decoration: none;
      color: var(--dark-gray);
      font-weight: 600;
      font-size: 1.1rem;
      padding: 0.7rem 1rem;
      transition: all 0.3s ease;
      border-radius: 4px;
      position: relative;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .nav-links a:before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      width: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--primary), var(--accent));
      transition: width 0.3s ease, left 0.3s ease;
    }

    .nav-links a:hover:before, 
    .nav-links a.active:before {
      width: 85%;
      left: 8%;
    }

    .nav-links a:hover, 
    .nav-links a.active {
      color: var(--hover-color);
      background-color: rgba(0,0,0,0.03);
    }

    .dropdown-content {
      display: none;
      position: absolute;
      background-color: var(--white);
      min-width: 220px;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
      z-index: 1;
      border-radius: 6px;
      top: 100%;
      left: -20px;
      margin-top: 0.8rem;
    }
    
    .dropdown:hover .dropdown-content {
      display: block;
    }

    .dropdown-content a {
      color: var(--dark-gray);
      padding: 14px 18px;
      text-decoration: none;
      display: block;
      text-align: left;
      border-bottom: 1px solid #eaeaea;
      font-size: 0.95rem;
      transition: all 0.3s ease;
      position: relative;
      padding-left: 24px;
    }
    
    .dropdown-content a:before {
      content: '•';
      position: absolute;
      left: 12px;
      opacity: 0;
      transition: opacity 0.2s ease, transform 0.2s ease;
      transform: translateX(-5px);
    }

    .dropdown-content a:hover:before {
      opacity: 1;
      transform: translateX(0);
    }

    .dropdown-content a:last-child {
      border-bottom: none;
    }

    .dropdown-content a:hover {
      background-color: #f9f9f9;
      padding-left: 30px;
    }

    .dropdown i {
      margin-left: 5px;
      font-size: 0.8rem;
      transition: transform 0.3s ease;
    }
    
    .dropdown:hover i {
      transform: rotate(180deg);
    }

    .hamburger {
      display: none;
      cursor: pointer;
    }

    .bar {
      display: block;
      width: 25px;
      height: 3px;
      margin: 5px auto;
      transition: all 0.3s ease-in-out;
      background-color: var(--dark-gray);
    }

    @media (max-width: 768px) {
      .hamburger {
        display: block;
      }

      .hamburger.active .bar:nth-child(2) {
        opacity: 0;
      }

      .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
      }

      .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
      }

      .nav-links {
        position: fixed;
        left: -100%;
        top: 80px;
        gap: 0;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
      }

      .nav-links.active {
        left: 0;
      }

      .nav-links li {
        margin: 16px 0;
      }

      .dropdown-content {
        position: static;
        display: none;
        box-shadow: none;
        min-width: 100%;
        background-color: var(--light-gray);
        border-radius: 0;
        margin-top: 10px;
      }

      .dropdown-content a {
        padding: 10px;
        text-align: center;
      }
      
      .dropdown:hover .dropdown-content {
        display: none;
      }
      
      .dropdown.active .dropdown-content {
        display: block;
      }
    }

    .active {
      font-weight: 700;
      position: relative;
    }
    
    .navbar:after {
      content: '';
      position: absolute;
      bottom: -3px;
      left: 0;
      width: 100%;
      height: 3px;
      background: linear-gradient(90deg, transparent, rgba(150,150,150,0.2), transparent);
      background-size: 200% 100%;
      animation: gradient-shift 6s infinite linear;
    }
    
    @keyframes gradient-shift {
      0% { background-position: 100% 0; }
      100% { background-position: -100% 0; }
    }


    /* Kodi i contentit */

    .content{
        height: 90vh;
        position: relative;
        background: url('imazhet/lokali.jpeg') no-repeat center center;
        background-size: cover;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        color: var(--white);
        overflow: hidden;
    }

    content::before{
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1;
    }

    .hero-overplay{
        position: relative;
        z-index: 2;
        max-width: 800px;
        padding: 0 20px;
        animation: fadeIn 1.5s ease;
    }

    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(20px); }
        to {opacity: 1; transform: translateY(0);}
    }

    .tagline{
        font-size: 4rem;
        font-weight: 800;
        margin-bottom: 30px;
        letter-spacing: 2px;
        text-transform: uppercase;
        position: relative;
        display: inline-block;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    }
    .tagline::after{
        content: '';
        position: absolute;
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, var(--primary), var(--accent));
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
    }
    .description{
        font-size: 1.2rem;
        line-height: 1.8;
        margin: 30px 0;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }
    .cta-button{
        margin-top: 40px;
        display: flex;
        justify-content: center;
        gap: 20px;
    }
    .cta-button{
        display: inline-block;
        padding: 14px 28px;
        background-color: var(--dark-gray);
        color: var(--white);
        text-decoration: none;
        border-radius: 30px;
        font-weight: 600;
        font-size: 1rem;
        letter-spacing: 1px;
        transition: all 0.3s ease;
        border: 2px solid var(--dark-gray);
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
        text-transform: uppercase;
    }
    .cta-button:hover{
        transform: translateY(-3px);
        box-shadow: 0 6px 15px rgba(0,0,0,0.25);
        background-color: var(--hover-color);
    }

    .cta-button.outline{
        background-color: transparent;
        color: var(--white);
        border: 2px solid var(--white);
    }
    .cta-button.outline:hover{
        background-color: var(--white);
        color: var(--dark-gray);
    }
    .scroll-indicator{
        position: absolute;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        z-index: 2;
        animation: bounce 2s infinite;
        opacity: 0.8;
    }
    .scroll-indicator span{
        font-size: 0.9rem;
        margin-bottom: 10px;
        text-transform: uppercase;
        letter-spacing: 2px;
    }
    .scroll-indicator i{
        font-size: 1.2rem;
    }

   @keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-15px) translateX(-50%);
  }
  60% {
    transform: translateY(-7px) translateX(-50%);
  }
}

@media (max-width: 768px) {
  .tagline {
    font-size: 2.5rem;
  }
 
  .description {
    font-size: 1rem;
    padding: 0 15px;
  }
 
  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
 
  .content {
    height: 100vh;
  }
}













.about-section {
  padding: 100px 0;
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('pattern-bg.png');
  opacity: 0.03;
  z-index: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--medium-gray);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 15px;
  display: block;
  font-weight: 500;
}

.section-title {
  font-size: 2.8rem;
  color: var(--dark-gray);
  margin-bottom: 20px;
  position: relative;
  font-weight: 700;
}

.title-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
}

.divider-line {
  height: 2px;
  width: 60px;
  background: linear-gradient(90deg, transparent, var(--primary));
  margin: 0 10px;
}

.divider-line:last-child {
  background: linear-gradient(90deg, var(--primary), transparent);
}

.divider-icon {
  color: var(--primary);
  font-size: 0.8rem;
  transform: rotate(45deg);
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 60px;
  margin-bottom: 60px;
}

.about-image {
  flex: 1;
  min-width: 300px;
  position: relative;
}

.image-frame {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.image-frame::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100%;
  height: 100%;
  border: 5px solid var(--accent);
  border-radius: 8px;
  z-index: -1;
}

.main-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  transition: transform 0.5s ease;
}

.main-image:hover {
  transform: scale(1.03);
}

.quality-badge {
  position: absolute;
  bottom: -25px;
  right: 30px;
  background-color: var(--medium-gray);
  color: var(--white);
  padding: 20px;
  border-radius: 5px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.quality-badge i {
  font-size: 2rem;
  margin-bottom: 8px;
  color: gold;
}

.quality-badge .text {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-heading {
  font-size: 1.8rem;
  color: var(--dark-gray);
  margin-bottom: 25px;
  line-height: 1.3;
  position: relative;
  padding-bottom: 15px;
}

.about-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--accent-gray);
  margin-bottom: 25px;
}

.value-points {
  margin: 40px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.value-icon {
  background-color: var(--light-gray);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.value-item:hover .value-icon {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-5px);
}

.value-content h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--dark-gray);
}

.value-content p {
  font-size: 0.95rem;
  color: var(--medium-gray);
  margin-bottom: 0;
  line-height: 1.6;
}

.about-philosophy {
  margin: 40px 0;
  padding: 30px;
  background-color: var(--light-gray);
  border-left: 4px solid var(--primary);
  border-radius: 0 8px 8px 0;
}

.about-philosophy blockquote {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--dark-gray);
  line-height: 1.6;
  margin: 0;
  position: relative;
}

.about-philosophy blockquote::before {
  content: '"';
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.3;
  position: absolute;
  top: -20px;
  left: -15px;
  font-family: Georgia, serif;
}

.about-philosophy cite {
  display: block;
  margin-top: 15px;
  font-style: normal;
  font-weight: 600;
  color: var(--accent-gray);
  font-size: 0.9rem;
}

.cta-about {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
}

.about-button {
  display: inline-block;
  padding: 14px 28px;
  background-color: var(--dark-gray);
  color: var(--white);
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-transform: uppercase;
}

.about-button:hover {
  background-color: var(--hover-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.social-media {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-gray);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: var(--dark-gray);
  color: var(--white);
  transform: translateY(-3px);
}

.quality-promise {
  background-color: var(--dark-gray);
  color: var(--white);
  padding: 50px;
  border-radius: 8px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
}

.quality-promise::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: var(--primary);
  opacity: 0.1;
  border-radius: 0 0 0 100%;
}

.promise-title {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.promise-title i {
  font-size: 2rem;
  color: var(--white);
}

.promise-title h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
}

.quality-promise p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 992px) {
  .about-content {
    flex-direction: column;
  }
  
  .about-image, .about-text {
    width: 100%;
    max-width: 100%;
  }
  
  .image-frame::before {
    width: calc(100% - 40px);
  }
  
  .quality-badge {
    right: 10px;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 70px 0;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .about-heading {
    font-size: 1.5rem;
  }
  
  .cta-about {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  
  .social-media {
    margin-top: 20px;
  }
  
  .quality-promise {
    padding: 30px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.8rem;
  }
  
  .value-points {
    grid-template-columns: 1fr;
  }
  
  .about-philosophy {
    padding: 20px;
  }
  
  .about-philosophy blockquote {
    font-size: 1.1rem;
  }
}





/* Kodi i pse ne */

 .why-choose-us {
      padding: 120px 0;
      background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
      position: relative;
      overflow: hidden;
    }

    .why-choose-us::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 200%;
      height: 100%;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23333" opacity="0.02"/><circle cx="75" cy="75" r="1" fill="%23333" opacity="0.02"/><circle cx="50" cy="10" r="0.5" fill="%23333" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
      animation: float-pattern 60s linear infinite;
      z-index: 0;
    }

    @keyframes float-pattern {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      position: relative;
      z-index: 1;
    }

    /* Section Header */
    .section-header {
      text-align: center;
      margin-bottom: 80px;
      position: relative;
    }

    .section-subtitle {
      font-size: 1.1rem;
      color: var(--medium-gray);
      text-transform: uppercase;
      letter-spacing: 4px;
      margin-bottom: 20px;
      display: block;
      font-weight: 500;
      opacity: 0;
      transform: translateY(30px);
      animation: slideUp 1s ease 0.2s forwards;
    }

    .section-title {
      font-size: 3.2rem;
      background: var(--gradient-primary);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 25px;
      position: relative;
      font-weight: 800;
      opacity: 0;
      transform: translateY(30px);
      animation: slideUp 1s ease 0.4s forwards;
    }

    .title-divider {
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 30px 0;
      opacity: 0;
      animation: fadeIn 1s ease 0.6s forwards;
    }

    .divider-line {
      height: 3px;
      width: 0;
      background: var(--gradient-accent);
      margin: 0 15px;
      animation: expandLine 1.5s ease 0.8s forwards;
    }

    .divider-icon {
      color: var(--primary);
      font-size: 1.2rem;
      transform: rotate(45deg) scale(0);
      animation: popIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) 1.2s forwards;
    }

    .choose-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      margin-bottom: 80px;
    }

    .choose-content {
      opacity: 0;
      transform: translateX(-50px);
      animation: slideInLeft 1s ease 0.8s forwards;
    }

    .choose-title {
      font-size: 2.2rem;
      color: var(--dark-gray);
      margin-bottom: 25px;
      position: relative;
      line-height: 1.3;
    }

    .choose-title::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 0;
      width: 0;
      height: 4px;
      background: var(--gradient-primary);
      animation: expandLine 1s ease 1.5s forwards;
    }

    .choose-description {
      font-size: 1.15rem;
      line-height: 1.8;
      color: var(--accent-gray);
      margin-bottom: 40px;
    }

    .features-list {
      list-style: none;
      margin-bottom: 40px;
    }

    .feature-item {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
      opacity: 0;
      transform: translateX(-30px);
      animation: slideInLeft 0.8s ease forwards;
    }

    .feature-item:nth-child(1) { animation-delay: 1.2s; }
    .feature-item:nth-child(2) { animation-delay: 1.4s; }
    .feature-item:nth-child(3) { animation-delay: 1.6s; }
    .feature-item:nth-child(4) { animation-delay: 1.8s; }

    .feature-icon {
      width: 50px;
      height: 50px;
      background: var(--gradient-primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      margin-right: 20px;
      position: relative;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .feature-icon::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
      transform: translateX(-100%) translateY(-100%) rotate(45deg);
      transition: transform 0.6s;
    }

    .feature-item:hover .feature-icon::before {
      transform: translateX(100%) translateY(100%) rotate(45deg);
    }

    .feature-item:hover .feature-icon {
      transform: rotate(360deg) scale(1.1);
      box-shadow: 0 10px 25px rgba(74, 74, 74, 0.3);
    }

    .feature-text h4 {
      font-size: 1.2rem;
      color: var(--dark-gray);
      margin-bottom: 5px;
      font-weight: 600;
    }

    .feature-text p {
      font-size: 0.95rem;
      color: var(--medium-gray);
      line-height: 1.5;
    }

    .stats-container {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      opacity: 0;
      transform: translateX(50px);
      animation: slideInRight 1s ease 1s forwards;
    }

    .stat-card {
      background: var(--white);
      padding: 40px 25px;
      border-radius: 15px;
      text-align: center;
      position: relative;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.08);
      transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      cursor: pointer;
    }

    .stat-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 4px;
      background: var(--gradient-primary);
      transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .stat-card:hover::before {
      left: 0;
    }

    .stat-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }

    .stat-icon {
      width: 70px;
      height: 70px;
      background: var(--light-gray);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      color: var(--primary);
      font-size: 1.8rem;
      position: relative;
      transition: all 0.4s ease;
    }

    .stat-card:hover .stat-icon {
      background: var(--gradient-primary);
      color: var(--white);
      transform: rotateY(360deg);
    }

    .stat-number {
      font-size: 2.5rem;
      font-weight: 800;
      color: var(--dark-gray);
      margin-bottom: 10px;
      display: block;
      counter-reset: number;
    }

    .stat-label {
      font-size: 1rem;
      color: var(--medium-gray);
      text-transform: uppercase;
      letter-spacing: 1px;
      font-weight: 600;
    }

    .process-timeline {
      margin-top: 80px;
      position: relative;
    }

    .timeline-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .timeline-header h3 {
      font-size: 2rem;
      color: var(--dark-gray);
      margin-bottom: 15px;
      opacity: 0;
      transform: translateY(30px);
      animation: slideUp 1s ease 2s forwards;
    }

    .timeline-container {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 40px;
      position: relative;
    }

    .timeline-container::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 0;
      width: 0;
      height: 3px;
      background: var(--gradient-primary);
      z-index: 0;
      animation: expandTimeline 2s ease 2.5s forwards;
    }

    .timeline-item {
      text-align: center;
      position: relative;
      z-index: 1;
      opacity: 0;
      transform: translateY(50px);
      animation: slideUp 0.8s ease forwards;
    }

    .timeline-item:nth-child(1) { animation-delay: 2.2s; }
    .timeline-item:nth-child(2) { animation-delay: 2.4s; }
    .timeline-item:nth-child(3) { animation-delay: 2.6s; }
    .timeline-item:nth-child(4) { animation-delay: 2.8s; }

    .timeline-icon {
      width: 80px;
      height: 80px;
      background: var(--white);
      border: 4px solid var(--primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      color: var(--primary);
      font-size: 1.8rem;
      position: relative;
      transition: all 0.4s ease;
    }

    .timeline-item:hover .timeline-icon {
      background: var(--primary);
      color: var(--white);
      transform: scale(1.1) rotateZ(360deg);
      box-shadow: 0 0 30px rgba(74, 74, 74, 0.4);
    }

    .timeline-title {
      font-size: 1.1rem;
      color: var(--dark-gray);
      font-weight: 600;
      margin-bottom: 10px;
    }

    .timeline-desc {
      font-size: 0.9rem;
      color: var(--medium-gray);
      line-height: 1.5;
    }

    .cta-section {
      background: var(--gradient-primary);
      padding: 50px;
      border-radius: 20px;
      text-align: center;
      margin-top: 80px;
      position: relative;
      overflow: hidden;
      opacity: 0;
      transform: translateY(50px);
      animation: slideUp 1s ease 3s forwards;
    }

    .cta-section::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
      animation: rotate 20s linear infinite;
    }

    .cta-title {
      font-size: 1.8rem;
      color: var(--white);
      margin-bottom: 15px;
      font-weight: 700;
    }

    .cta-description {
      font-size: 1.1rem;
      color: rgba(255,255,255,0.9);
      margin-bottom: 30px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .cta-button {
      display: inline-block;
      padding: 15px 35px;
      background-color: var(--white);
      color: var(--primary);
      text-decoration: none;
      border-radius: 50px;
      font-weight: 700;
      font-size: 1.1rem;
      letter-spacing: 1px;
      transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      text-transform: uppercase;
      position: relative;
      overflow: hidden;
    }

    .cta-button::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      background: var(--primary);
      border-radius: 50%;
      transform: translate(-50%, -50%);
      transition: all 0.6s ease;
    }

    .cta-button:hover::before {
      width: 300%;
      height: 300%;
    }

    .cta-button:hover {
      color: var(--white);
      transform: translateY(-3px);
      box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    }

    .cta-button span {
      position: relative;
      z-index: 1;
    }

    @keyframes slideUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes slideInLeft {
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes slideInRight {
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes fadeIn {
      to {
        opacity: 1;
      }
    }

    @keyframes expandLine {
      to {
        width: 80px;
      }
    }

    @keyframes popIn {
      to {
        transform: rotate(45deg) scale(1);
      }
    }

    @keyframes expandTimeline {
      to {
        width: 100%;
      }
    }

    @keyframes rotate {
      from {
        transform: rotate(0deg);
      }
      to {
        transform: rotate(360deg);
      }
    }

    @keyframes countUp {
      from {
        counter-increment: number 0;
      }
      to {
        counter-increment: number var(--target);
      }
    }

    @media (max-width: 992px) {
      .choose-grid {
        grid-template-columns: 1fr;
        gap: 50px;
      }

      .stats-container {
        grid-template-columns: repeat(2, 1fr);
      }

      .timeline-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
      }

      .timeline-container::before {
        display: none;
      }
    }

    @media (max-width: 768px) {
      .why-choose-us {
        padding: 80px 0;
      }

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

      .choose-title {
        font-size: 1.8rem;
      }

      .stats-container {
        grid-template-columns: 1fr;
      }

      .timeline-container {
        grid-template-columns: 1fr;
      }

      .cta-section {
        padding: 40px 20px;
      }
    }

    @media (max-width: 576px) {
      .section-title {
        font-size: 2rem;
      }

      .choose-title {
        font-size: 1.5rem;
      }

      .stat-card {
        padding: 30px 20px;
      }
    }



    /* stili galeris  */

     .galeria {
            padding: 80px 20px;
            min-height: 100vh;
            
        }

        .gallery-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .gallery-header {
            text-align: center;
            margin-bottom: 60px;
            color: var(--white);
        }

        .gallery-title {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
            background: var(--gradient-accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .gallery-subtitle {
            font-size: 1.3rem;
            color: black;
            font-weight: 300;
            opacity: 0.9;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            padding: 40px 0;
        }

        .gallery-item {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
            background: var(--white);
            transform: translateY(0);
        }

        .gallery-item:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
        }

        .gallery-item img {
            width: 100%;
            height: 280px;
            object-fit: cover;
            display: block;
            transition: transform 0.4s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.4s ease;
            backdrop-filter: blur(5px);
        }

        .gallery-item:hover .overlay {
            opacity: 0.95;
        }

        .zoom-icon {
            width: 60px;
            height: 60px;
            background: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transform: scale(0.5);
            transition: transform 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }

        .gallery-item:hover .zoom-icon {
            transform: scale(1);
        }

        .zoom-icon svg {
            width: 24px;
            height: 24px;
            stroke: var(--primary);
            stroke-width: 2;
        }

        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.95);
            backdrop-filter: blur(10px);
        }

        .modal-content {
            position: relative;
            margin: auto;
            padding: 20px;
            width: 90%;
            max-width: 1000px;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-image {
            max-width: 100%;
            max-height: 80vh;
            object-fit: contain;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(255,255,255,0.1);
        }

        .close {
            position: absolute;
            top: 30px;
            right: 40px;
            color: var(--white);
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            background: var(--primary);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            line-height: 1;
        }

        .close:hover {
            background: var(--hover-color);
            transform: scale(1.1);
        }

        .nav-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            color: var(--white);
            font-size: 30px;
            font-weight: bold;
            cursor: pointer;
            background: var(--primary);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            user-select: none;
        }

        .nav-arrow:hover {
            background: var(--hover-color);
            transform: translateY(-50%) scale(1.1);
        }

        .prev {
            left: 30px;
        }

        .next {
            right: 30px;
        }

        .image-counter {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            color: var(--white);
            background: var(--primary);
            padding: 10px 20px;
            border-radius: 25px;
            font-size: 16px;
            font-weight: 500;
        }

        .gallery-item {
            opacity: 0;
            transform: translateY(50px);
        }

        .gallery-item.loaded {
            animation: slideUp 0.6s ease forwards;
        }

        @keyframes slideUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 768px) {
            .galeria {
                padding: 40px 15px;
            }

            .gallery-title {
                font-size: 2rem;
            }

            .gallery-subtitle {
                font-size: 1.1rem;
            }

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

            .gallery-item {
                border-radius: 15px;
            }

            .gallery-item img {
                height: 220px;
            }

            .nav-arrow {
                width: 50px;
                height: 50px;
                font-size: 24px;
            }

            .prev {
                left: 15px;
            }

            .next {
                right: 15px;
            }

            .close {
                top: 15px;
                right: 15px;
                width: 40px;
                height: 40px;
                font-size: 30px;
            }
        }


