/* ===============================
   Globalūs kintamieji
================================ */
:root {
  --primary: #1f3c88;
  --secondary: #4aa3ff;
  --dark: #0f172a;
  --light: #f8fafc;
}

/* ===============================
   Reset & bazė
================================ */
* {
  box-sizing: border-box;
}

main {
  flex: 1;
}


body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--dark);
  background: var(--light);
  line-height: 1.6;

  /* Footer fiksavimui */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}


/* ===============================
   Header & navigacija
================================ */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
}

.logo img {
  height: 80px;
  display: block;
}


.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
}

nav a {
  text-decoration: none;
  color: var(--dark);
  margin-left: 24px;
  font-weight: 500;
}

/* ===============================
   Hero sekcija
================================ */
.hero {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  padding: 140px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto;
}

    /* Hero sekcija */
    .solutions-hero {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: #fff;
      padding: 120px 20px;
      text-align: center;
    }

    .solutions-hero h1 {
      font-size: 48px;
      margin-bottom: 16px;
    }

    .solutions-hero p {
      font-size: 20px;
      max-width: 720px;
      margin: 0 auto;
      opacity: 0.9;
    }


        /* Hero sekcija */
    .about-hero {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: #fff;
      text-align: center;
      padding: 140px 20px;
    }

    .about-hero h1 {
      font-size: 48px;
      margin-bottom: 16px;
    }

    .about-hero p {
      max-width: 720px;
      margin: 0 auto;
      font-size: 20px;
      opacity: 0.9;
    }

        /* Hero */
    .hero {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: #fff;
      text-align: center;
      padding: 160px 20px 140px;
      position: relative;
    }

    .hero h1 {
      font-size: 50px;
      margin-bottom: 20px;
    }

    .hero p {
      font-size: 20px;
      max-width: 700px;
      margin: 0 auto 40px;
    }

    .hero a {
      display: inline-block;
      background: #fff;
      color: var(--primary);
      padding: 14px 32px;
      font-weight: 600;
      border-radius: 12px;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .hero a:hover {
      background: var(--secondary);
      color: #fff;
    }

        /* Hero */
    .projects-hero {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: #fff;
      text-align: center;
      padding: 140px 20px;
    }

    .projects-hero h1 {
      font-size: 48px;
      margin-bottom: 16px;
    }

    .projects-hero p {
      max-width: 700px;
      margin: 0 auto;
      font-size: 20px;
      opacity: 0.9;
    }
/* ===============================
   Sekcijos & antraštės
================================ */
section {
  padding: 100px 0;
}

h1 {
  font-size: 42px;
  margin-bottom: 16px;
}

h2 {
  font-size: 36px;
  margin-bottom: 24px;
}

.intro {
  text-align: center;
}

/* ===============================
   Grid & kortelės
================================ */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.card {
  background: #fff;
  border-radius: 18px;
  padding: 36px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.card span {
  display: block;
  font-size: 36px;
  margin-bottom: 16px;
}

.card {
  background: #fff;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(0,0,0,.1);
}

.card .icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  background: rgba(74,163,255,.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card .icon svg {
  width: 24px;
  height: 24px;
  fill: var(--secondary);
}

.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.card-link article {
  height: 100%;
}

.card-link:hover {
  transform: translateY(-6px); /* hover efektas, kaip kortelei */
  box-shadow: 0 16px 36px rgba(0,0,0,0.1);
  color: inherit;              /* kad netaptų mėlyna */
}


/* ===============================
   Footer
================================ */
footer {
  background: var(--dark);
  color: #fff;
  padding: 60px 20px;
}

footer a {
  color: var(--secondary);
  text-decoration: none;
}
/* ===============================
   Footer
================================ */

    /* <<<<<<<<<<<<<<<<<<<<<<<<<<<<< KONTAKTAI >>>>>>>>>>>>>>>>>>>>>>>>>> */
    #contact {
      background: var(--light);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 32px;
      margin-top: 60px;
    }

    .contact-card {
      background: #fff;
      border-radius: 18px;
      padding: 36px;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    }

    .contact-card h3 {
      color: var(--primary);
      margin-bottom: 12px;
    }

    .contact-card p {
      margin: 6px 0;
      line-height: 1.6;
    }

    form {
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-top: 12px;
    }

    input, textarea {
      padding: 12px 16px;
      border-radius: 10px;
      border: 1px solid #d1d5db;
      font-size: 1rem;
      font-family: inherit;
      resize: none;
    }

    button {
      background: var(--secondary);
      color: #fff;
      padding: 12px 16px;
      border: none;
      border-radius: 10px;
      font-size: 1rem;
      font-weight: 500;
      cursor: pointer;
      transition: 0.3s;
    }

    button:hover {
      background: var(--primary);
    }
/* <<<<<<<<<<<<<<<<<<<<<<<<<<<<< KONTAKTAI >>>>>>>>>>>>>>>>>>>>>>>>>> */
    /* <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< Google Maps sekcija >>>>>>>>>>>>>>>>>>>>>>>>>>>*/
    .map-wrapper {
      margin-top: 60px;
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    }

    iframe {
      width: 100%;
      height: 400px;
      border: 0;
    }

    /* <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< Google Maps sekcija >>>>>>>>>>>>>>>>>>>>>>>>>>>*/
    /* <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< Sprendimu puslapis >>>>>>>>>>>>>>>>>>>>>>>>>>>*/

   


    /* Kortelių animacija */
    .card {
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
    }

    .card span {
      font-size: 40px;
      display: block;
      margin-bottom: 16px;
    }

    .card h2 {
      color: var(--primary);
      margin-bottom: 12px;
      font-size: 22px;
    }

    .divider {
      height: 4px;
      width: 80px;
      background: var(--secondary);
      margin: 0 auto 60px auto;
      border-radius: 4px;
    }

    /* Sklandus perėjimas tarp sekcijų */
    section.solutions {
      background: linear-gradient(to bottom, var(--light), #ffffff);
    }

/* <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< Sprendimu puslapis >>>>>>>>>>>>>>>>>>>>>>>>>>>*/

/* <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< APIE MUS puslapis >>>>>>>>>>>>>>>>>>>>>>>>>>>*//*


    /* Apie mus turinys */
    #about {
      background: var(--light);
      padding: 100px 0;
    }

    #about h2 {
      text-align: center;
      font-size: 36px;
      margin-bottom: 16px;
    }

    #about p {
      max-width: 900px;
      margin: 0 auto 40px auto;
      text-align: center;
    }

    .values {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 32px;
      margin-top: 60px;
    }

    .value-card {
      background: #fff;
      border-radius: 18px;
      padding: 36px;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .value-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
    }

    .value-card span {
      font-size: 36px;
      display: block;
      margin-bottom: 16px;
      color: var(--secondary);
    }

    /* Skaičiai / faktai */
    .stats {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 60px;
      margin-top: 80px;
      text-align: center;
    }

    .stat {
      font-size: 18px;
    }

    .stat strong {
      display: block;
      font-size: 42px;
      color: var(--primary);
      margin-bottom: 8px;
    }

    /* Kodėl verta rinktis mus */
    .why {
      background: #fff;
      padding: 100px 0;
    }

    .why h2 {
      text-align: center;
      font-size: 36px;
      margin-bottom: 60px;
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 36px;
      text-align: center;
    }

    .why-card {
      padding: 30px;
      background: var(--light);
      border-radius: 18px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
      transition: 0.3s;
    }

    .why-card:hover {
      background: #fff;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
      transform: translateY(-4px);
    }

    .why-card span {
      font-size: 40px;
      color: var(--secondary);
      display: block;
      margin-bottom: 16px;
    }


    /* <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< APIE MUS puslapis >>>>>>>>>>>>>>>>>>>>>>>>>>>*//*
 /* <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< PAGRINDINIS puslapis >>>>>>>>>>>>>>>>>>>>>>>>>>>*//*

    /* Paslaugų sekcija */
    .services {
      background: var(--light);
      padding: 100px 0;
    }

    .services h2 {
      text-align: center;
      font-size: 36px;
      margin-bottom: 16px;
    }

    .services p {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 60px;
      color: #475569;
    }

    .service-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 32px;
    }

    .service-card {
      background: #fff;
      border-radius: 18px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
      padding: 36px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .service-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 14px 35px rgba(0, 0, 0, 0.1);
    }

    .service-card span {
      font-size: 42px;
      display: block;
      margin-bottom: 16px;
      color: var(--secondary);
    }

    /* Apie mus sekcija */
    .about {
      background: #fff;
      padding: 100px 0;
    }

    .about h2 {
      text-align: center;
      margin-bottom: 20px;
      font-size: 36px;
    }

    .about p {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 50px;
      color: #475569;
      font-size: 17px;
      line-height: 1.7;
    }

    /* CTA sekcija */
    .cta {
      background: linear-gradient(135deg, var(--secondary), var(--primary));
      color: #fff;
      text-align: center;
      padding: 100px 20px;
      border-radius: 0;
    }

    .cta h2 {
      font-size: 36px;
      margin-bottom: 20px;
    }

    .cta p {
      font-size: 18px;
      opacity: 0.95;
      margin-bottom: 30px;
    }

    .cta a {
      display: inline-block;
      background: #fff;
      color: var(--primary);
      font-weight: 600;
      padding: 14px 32px;
      border-radius: 10px;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .cta a:hover {
      background: var(--dark);
      color: #fff;
    }


    /* <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< PAGRINDINIS puslapis >>>>>>>>>>>>>>>>>>>>>>>>>>>*//*
   
/* <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< projektu puslapis >>>>>>>>>>>>>>>>>>>>>>>>>>>*//*


    /* Sekcija */
    #projects {
      background: var(--light);
      padding: 100px 0;
    }

    #projects h2 {
      text-align: center;
      font-size: 36px;
      margin-bottom: 24px;
    }

    #projects p {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 60px auto;
    }

    /* Kortelės (tušti placeholderiai) */
    .project-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 32px;
      margin-top: 60px;
    }

    .project-card {
      background: #fff;
      border-radius: 18px;
      box-shadow: 0 10px 26px rgba(0,0,0,0.07);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .project-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 14px 34px rgba(0,0,0,0.1);
    }

    .project-thumb {
      background: linear-gradient(135deg, var(--secondary), var(--primary));
      height: 180px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 24px;
      font-weight: 600;
    }

    .project-info {
      padding: 24px;
      text-align: center;
    }

    .project-info h3 {
      color: var(--primary);
      margin-bottom: 12px;
      font-size: 20px;
    }

    .project-info p {
      font-size: 15px;
      color: #475569;
      line-height: 1.5;
    }

    /* Coming soon sekcija */
    .upcoming {
      text-align: center;
      margin-top: 80px;
      font-size: 18px;
      color: #475569;
    }

    .upcoming span {
      display: inline-block;
      margin-top: 16px;
      padding: 10px 20px;
      background: var(--secondary);
      color: #fff;
      border-radius: 8px;
      font-weight: 500;
    }
  
    /* <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< projektu puslapis >>>>>>>>>>>>>>>>>>>>>>>>>>>*//*


/* ===============================
   CLEAN RESPONSIVE NAV (FINAL)
================================ */

/* Desktop */
.nav-links {
  display: flex;
}

.nav-toggle {
  display: none;
}

/* Mobile */
@media (max-width: 768px) {
  nav {
    position: relative;
  }

  .nav-toggle {
    display: none;
  }
  
  /* Mobile */
  @media (max-width: 768px) {
    .nav-toggle {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 48px;
      height: 48px;
      font-size: 32px;
      cursor: pointer;
  
      background: rgba(74, 163, 255, 0.15); /* šviesiai mėlynas */
      color: var(--primary);
      border: none;
      border-radius: 12px;
  
      transition: background 0.2s ease, transform 0.1s ease;
    }
  
    /* Hover (kai įmanoma – pvz. tablet) */
    .nav-toggle:hover {
      background: rgba(74, 163, 255, 0.25);
    }
  
    /* Paspaudus */
    .nav-toggle:active {
      background: rgba(74, 163, 255, 0.35); /* tik šiek tiek tamsesnis */
      transform: scale(0.95);
    }
  
    /* Fokusas – panaikinam default mėlyną */
    .nav-toggle:focus {
      outline: none;
      box-shadow: none;
    }
  }
  
  

  .nav-links {
    position: absolute;
    top: 96px;
    left: 0;
    width: 100%;
    background: #fff;
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #e5e7eb;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    margin: 12px 0;
    font-size: 18px;
  }
}




/* ===============================
   NAV FINAL OVERRIDE (FIX)
================================ */
