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

html, body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
}

main{
  flex: 1;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

/* Visas puslapis */

body {
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
  color: #222;
  background: #ffffff;
}

/* Utility containers */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* Puslapio virsus */

.site-header {
  background: #a5a19c;
  color: white;
  padding: 0.5rem 1rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 10;
}

/* Teksto isdestymas virsuje */

.header-inner {
  display: flex;
  align-items: center; /* vertikalus centravimas */
  justify-content: space-between;
  width: 100%;
  padding: 0 1rem;
  box-sizing: border-box;
}

/* Logo */

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

/* Teksto virsuje spalva ir isvaizda */
.main-nav a {
  color: #ffffff;
  text-decoration: none;
  margin-left: 1.2rem;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

/* Uzvedus pele ant teksto virsuje */

.main-nav a:hover {
  opacity: 0.75;
  text-decoration: underline
}

/* Kainos mygtukas */

.nav-btn {
  position: relative;
  color: white;
  padding: 10px 20px;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

/* Isskirtinis stilius Kainos mygtukui */

.nav-btn.special {
  
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  border: 2px solid #999288;
}

/* Uzvedus pele ant kainos */

.nav-btn.special:hover {
  background: #999288;
  transform: scale(1.05); /* slight grow */
  box-shadow: 0 6px 12px rgba(0,0,0,0.4);
}

/* Graziau atrodytu header ant telefono */

@media (max-width: 768px) {
  .site-header {
    flex-direction: row;
    align-items: flex-start;
    padding: 1rem;
  }

  .menu-toggle {
  height: 100%;
  display: flex;
  align-items: center;
}

  .header-inner {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0;
  }

  .logo img {
    width: 80px;
    height: auto;
  }

  .main-nav {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .main-nav a {
    margin: 0.5rem 0;
    font-size: 1rem;
  }

  .nav-btn.special {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
  }

  .uzvesti {
    margin-top: 0.5rem;
    font-size: 0.95rem;
  }
}

/* Pagrindine puslapio foto */

.hero {
  height: 90vh; /* full screen height */
  background-image: url('/nuotraukos/hero-home.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  
}

/* Paslaugos puslapio foto 1 */

.hero2 {
  height: 25vh; /* full screen height */
  background-image: url('/nuotraukos/hero-subpage.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  
}

.hero3 {
  height: 25vh; /* full screen height */
  background-image: url('/nuotraukos/hero-subpage.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  
}
/* Foto patamsinimas */

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.hero2::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.hero3::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
/* Tekstas islieka virs foto */

.hero-content {
  position: relative;
  z-index: 1;
}

/* Didesnis tekstas */

.hero-content h1 {
  font-size: 60px;
  font-weight: bold;
  color: rgb(255, 255, 255)
}

.hero-content p {
  font-size: 20px;
  font-weight: bold;
  color: rgb(255, 255, 255)
}

/* vieta po nuotrauka, kontaktai */

    .konteineris {
      display: flex;
      flex-direction: row;
      max-width: 1200px;
      margin: 40px auto;
      background: #aaa69f;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      overflow: hidden;
    }

    .map-section {
      flex: 1;
      padding: 30px;
      border-right: 1px solid #eee;
    }

    .map-section iframe {
      width: 100%;
      height: 300px;
      border: none;
      border-radius: 8px;
    }

    .contact-section {
      flex: 1;
      padding: 30px;
    }

    h2 {
      font-size: 24px;
      color: #242321;
      margin-top: 0;
    }

    .contact-item {
      display: flex;
      align-items: center;
      margin: 15px 0;
      font-size: 16px;
      color: #333;
    }

    .contact-item i {
      margin-right: 12px;
      font-size: 20px;
      color: #7e7771;
      min-width: 24px;
      text-align: center;
    }

    .send-button {
      margin-top: 25px;
      padding: 12px 24px;
      background-color: #36342e;
      color: white;
      border: none;
      border-radius: 4px;
      font-size: 16px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .send-button:hover {
      background-color: #18140d;
    }

@media (max-width: 768px) {
  .konteineris {
    flex-direction: column;  /* žemėlapis viršuje, kontaktai po juo */
    margin: 20px;
  }

  .map-section {
    padding: 15px;
    border-right: none;
    border-bottom: 1px solid #eee; /* atskirti nuo kontaktų */
  }

  .map-section iframe {
    height: 250px; /* mažesnis aukštis telefone */
  }

  .contact-section {
    padding: 15px;
  }

  h2 {
    font-size: 20px;
  }

  .contact-item {
    font-size: 14px;
    margin: 10px 0;
  }

  .contact-item i {
    font-size: 18px;
    margin-right: 8px;
  }

  .send-button {
    width: 100%;   /* ištemptas per visą plotį */
    padding: 12px;
    font-size: 15px;
  }
}

    .site-footer {
  background: #9b9995;
  color: #ffffff;
  padding: 1.5rem 0;
}

/* Pritaikyta rudai temai (tamsus fonas, šviesus tekstas) */
.gr-section{
  position: relative;
  padding: 36px 16px 28px;
  color: #fff8f0;
  isolation: isolate; /* kad blend režimai neliptų į išorę */
}

.gr-inner{
  width: min(1100px, 96vw);
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  backdrop-filter: blur(2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

/* Antraštė */
.gr-header{
  padding: 20px 22px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(100, 85, 69, 0.1), rgba(255, 184, 108, 0) 40%);
}

.h21{
    text-align: center;
}

.gr-header h2{
  margin: 0 0 4px 0;
  font-size: 26px;
  letter-spacing: 0.2px;
}
.gr-sub{
  margin: 0;
  color: #f1ddc9;
  font-size: 15px;
}

/* Dekoratyvinė horizontali linija su kolba centre */
.gr-divider{
  position: relative;
  height: 48px;
  display: grid;
  place-items: center;
  margin-top: 8px;
}
.gr-line{
  position: absolute;
  left: 14px;
  right: 14px;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
  background:
    linear-gradient(
      to right,
      rgba(255, 244, 233, 0.85) 0 calc(50% - (28px + 10px)),
      transparent calc(50% - (28px + 10px)) calc(50% + (28px + 10px)),
      rgba(255, 244, 233, 0.85) calc(50% + (28px + 10px)) 100%
    );
}
.gr-icon{
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff7ed;
  background: rgba(24, 14, 7, 0.65);
  border: 2px solid rgba(255, 244, 233, 0.75);
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

/* Lentelė */
.gr-table-wrap{
  padding: 14px 16px 22px;
  overflow-x: auto;
}

.gr-table{
  width: 100%;
  border-collapse: collapse;
  min-width: 0; /* buvo 720px – nuimame fiksuotą plotį */
  table-layout: fixed; /* stulpeliai dalinasi plotą tolygiai */
  color: #2c2925;
}

.gr-table thead th{
  text-align: left;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.3px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  position: sticky;
  top: 0;
  z-index: 1;
}

.gr-table tbody td{
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  font-size: 15px;
  vertical-align: top;
}

.gr-table tbody tr:nth-child(odd){
  background: rgba(255, 255, 255, 0.04);
}

/* Stulpelių santykiai */
.gr-table colgroup col:nth-child(1){ width: 46%; }
.gr-table colgroup col:nth-child(2){ width: 30%; }
.gr-table colgroup col:nth-child(3){ width: 24%; }

.gr-table.two-cols colgroup col:nth-child(1) { width: 60%; }
.gr-table.two-cols colgroup col:nth-child(2) { width: 40%; }

/* Mažesni ekranai */
@media (max-width: 640px){
  .gr-header h2{ font-size: 22px; }
  .gr-sub{ font-size: 14px; }
  .gr-table thead th, .gr-table tbody td{ padding: 10px 12px; font-size: 14px; }
}

/* Spalvų kintamieji – priderinta prie tavo rudos temos */
:root{
  --about-bg: #efe2d1;   /* šviesiai smėlinė/beige */
  --about-fg: #3f2b1c;   /* tamsiai ruda tekstui */
  --about-muted: #6a523e;
  --about-accent: #7a4a1f;
  --about-border: rgba(63,43,28,0.15);
  --about-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Dėžė ant tavo bendro rudo fono */
.about-section{
  padding: 40px 0 48px;
  color: var(--about-fg);
}

.about-inner{
  background: var(--about-bg);
  border: 1px solid var(--about-border);
  border-radius: 14px;
  box-shadow: var(--about-shadow);
  padding: 28px 24px;
}

/* Antraštės blokas */
.about-header{
  text-align: left; /* jei norėsi – pakeisk į center */
  margin-bottom: 14px;
}
.about-eyebrow{
  margin: 0 0 6px 0;
  color: var(--about-accent);
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  font-size: 14px;
}
.about-header h1{
  margin: 0 0 6px 0;
  font-size: 36px;
  line-height: 1.2;
  color: var(--about-fg);
  font-weight: 800;
}
.about-tagline{
  margin: 0 0 14px 0;
  color: var(--about-muted);
  font-size: 16px;
}

/* Įžanga */
.about-intro{
  font-size: 16px;
  color: var(--about-fg);
}
.about-intro p{
  margin: 0 0 10px 0;
}

/* Paslaugos – dviejų kolonų sąrašas didesniuose ekranuose */
.about-services{
  margin-top: 18px;
}
.about-services h2,
.about-prices h2,
.about-contact h2{
  font-size: 24px;
  margin: 14px 0 10px;
  color: var(--about-fg);
}
.service-lists{
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px 24px;
  margin-bottom: 8px;
}
.service-list{
  list-style: disc inside;
  margin: 0;
  padding: 0;
}
.service-list li{
  margin: 8px 0;
}
.about-note{
  color: var(--about-muted);
  font-size: 15px;
}

/* Kainos ir kontaktai */
.about-prices p{
  margin: 0 0 6px 0;
}
.contact-list{
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-list li{
  margin: 6px 0;
}

.image-text,
.image-text2 {
  padding: 40px 20px;
  background-color: #ffffff;
}

.image-text .container4,
.image-text2 .container4 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.image-side {
  flex: 1 1 300px;
}

.image-side img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.text-side {
  flex: 1 1 300px;
}

.text-side { 
  flex: 1 1 300px; 
} 

.text-side h2 { 
  margin-top: 0; 
  font-size: 28px; 
} 

.text-side p { 
  margin-bottom: 15px; 
} 

.text-side ul { 
  padding: 0;
  margin: 0; 
} 

.image-text2 { 
  padding: 40px 20px; 
  background-color: #ffffff; /* gali keisti foną */ 
} 

.image-text2 .container5 { 
  display: flex; 
  flex-wrap: wrap; /* kad telefone stulpeliai sulūžtų į vieną */ 
  align-items: center; 
  gap: 100px; 
} 

.geo-section {
  display: flex; 
  flex-wrap: wrap; 
  min-height: 400px; 
  gap: 20px; /* tarpas tarp teksto ir nuotraukos */ 
  padding-left: 150px; /* tarpas iš kairės */ 
  padding-right: 150px; /* tarpas iš dešinės */ /* padding-top ir padding-bottom paliekam 0 */ 
  box-sizing: border-box; 
} 

.geo-text { 
  flex: 1 1 400px; background-color: #ffffff; /* rudas fonas */ 
  color: #fff; 
  padding: 20px; /* daugiau oro aplink tekstą */ 
  box-sizing: border-box; 
} 

.geo-text h2 { 
  font-size: 32px; 
  margin-bottom: 15px; 
} 

.geo-text p { 
  margin-bottom: 20px; 
  line-height: 1.5; 
} 

.geo-text ul { 
  list-style: disc inside; 
  padding: 0; 
  margin: 0; 
} 

.geo-text ul li { 
  margin-bottom: 8px; 
} 

.geo-image { 
  flex: 1 1 400px; 
  overflow: hidden; /* kad nuotrauka neišlįstų už kampų */ 
} 

.geo-image img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  display: block; /* pašalina baltą tarpą po img */ 
} 

/* Mažiems ekranams – stulpeliai vienas po kitu */ 
@media (max-width: 768px) { 

  .geo-section { 
    flex-direction: column; 
    } 
  } 

.custom-sublist { 
  list-style-type: none; 
  padding-left: 20px; 
  margin-top: 8px; 
} 

.custom-sublist li { 
  margin-bottom: 6px; 
} 

.image-text2 { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 40px; 
  align-items: flex-start; 
} 

.container4 { 
  display: flex; 
  flex-direction: row; 
  justify-content: space-between; 
  padding: 0 200px; 
  width: 100%; 
} 

.container4 h2 { 
  font-size: 60px; 
} 

.container5 {
  display: flex; 
  flex-direction: row; 
  justify-content: space-between; 
  padding: 0 300px 25px 400px; 
  width: 100%; 
} 

.container5 h2 { 
  font-size: 60px; 
} 

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

.image-side { 
  flex: 1; 
  min-width: 400px; 
} 

.image-side img { 
  max-width: 100%; 
  height: auto; 
  border-radius: 8px; 
} 

.text-side ul ul { 
  list-style-type: disc; 
  padding-left: 20px; 
  margin-top: 8px; 
} 

.text-side ul ul li { 
  font-size: 13px; 
} 

.menu-toggle { 
  display: none; 
  background: none; 
  border: none; 
  color: white; 
  font-size: 1.8rem; 
  cursor: pointer; 
  margin-left: auto; 
  padding: 0.5rem; 
  line-height: 1; 
  align-self: center; 
} 

.mobile-menu { 
  display: flex; 
  flex-direction: row; 
  align-items: center; 
  gap: 1rem; 
} 

/* ====== Mobilioji versija ====== */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: white;
    z-index: 1001;
  }

  .mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #a5a19c;
    padding: 1.5rem 1rem;
    display: none;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    animation: slideDown 0.3s ease;
  }

  .mobile-menu.active {
    display: flex;
  }

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

  .main-nav {
    flex-direction: column;
    gap: 1rem;
  }

  .main-nav a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
  }


  /* Bendras išdėstymas */
  .image-text2, 
  .image-text { 
    flex-direction: column; 
    gap: 20px; 
    padding: 20px; 
  } 

  .container4, 
  .container5 { 
    flex-direction: column; 
    padding: 20px; 
    width: 100%; 
  } 
  
  .container4 h2, 
  .container5 h2 { 
    font-size: 32px; 
    text-align: center; 
    margin-bottom: 20px; 
  } 
  
  .text-side, 
  .image-side { 
    min-width: 100%; 
    flex: none; 
  } 
  
  .image-side img { 
    width: 100%; 
    height: auto; 
    border-radius: 6px; 
  } 
  
  .text-side ul { 
    padding-left: 16px; 
  } 
  
  .text-side ul ul { 
    padding-left: 16px; 
    margin-top: 8px; 
  } 
  
  .text-side ul ul li { 
    font-size: 14px; 
    margin-bottom: 6px; 
  } 
  
  .custom-sublist { 
    list-style-type: none; 
    padding-left: 16px;
    margin-top: 8px; 
  } 
  
  .custom-sublist li { 
    font-size: 14px; 
    margin-bottom: 6px; 
  } 
  
  .hero3 h1 { 
    font-size: 28px; 
    text-align: center; 
    margin-bottom: 20px; 
  } 
  
  p { 
    font-size: 16px; 
    line-height: 1.5; 
  }
}

.conteiner5 {
  padding: 20px;
}

/* Forma */
.drilling-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 30px;
  margin: 30px 0;
  background: #fafafa;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.drilling-form label {
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
  color: #444;
}

.drilling-form input {
  padding: 8px 10px;
  border: 1px solid #bbb;
  border-radius: 6px;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.drilling-form input:focus {
  border-color: #80705c;
  box-shadow: 0 0 4px rgba(160, 140, 115, 0.3);
  outline: none;
}

/* Lentele */
.drilling-table {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
  margin-top: 25px;
  font-size: 14px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  display: block;
}

.drilling-table table {
  width: 100%;
  min-width: 1200px;
}

.drilling-table th,
.drilling-table td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: center;
  vertical-align: middle;
}

.drilling-table th {
  background-color: #4b4134;
  color: white;
  font-weight: 600;
  font-size: 13px;
  position: sticky;
  top: 0;
  z-index: 1;
}

.drilling-table tr:nth-child(even) {
  background-color: #f9f9f9;
}

.drilling-table tr:hover {
  background-color: #eef6f7;
}

.drilling-table input[type="text"] {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  text-align: center;
  font-size: 13px;
  padding: 4px;
}

.drilling-table input[type="checkbox"] {
  transform: scale(1.2);
  cursor: pointer;
}

.submit-container {
  margin-top: 25px;
  text-align: left;
}

.submit-btn {
  background-color: #5e3b1e;
  color: #fff;
  border: none;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
}

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

.submit-btn:active {
  transform: translateY(0);
  background-color: #382417;
}

@media screen and (max-width: 768px) {
  .drilling-form {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 15px;
  }

  .drilling-form label {
    font-size: 14px;
  }

  .drilling-form input {
    font-size: 14px;
    padding: 10px;
  }

  .drilling-table {
    font-size: 12px;
    overflow-x: auto;
    display: block;
  }

  .drilling-table table {
    width: 100%;
    min-width: 1000px;
  }

  .drilling-table th,
  .drilling-table td {
    padding: 8px;
    font-size: 12px;
  }

  .drilling-table input[type="text"] {
    font-size: 12px;
    padding: 3px;
  }

  .drilling-table input[type="checkbox"] {
    transform: scale(1);
  }

  .submit-container {
    text-align: center;
  }

  .submit-btn {
    width: 100%;
    padding: 14px;
    font-size: 16px;
  }

  .mobile-menu {
    display: none;
  }

  .menu-toggle {
    display: block;
    font-size: 24px;
    background: none;
    border: none;
    color: #4b4134;
  }

  .menu-toggle.active + .mobile-menu {
    display: block;
  }

  .main-nav a,
  .nav-btn.special {
    display: block;
    padding: 10px 0;
    font-size: 16px;
  }

  .uzvesti {
    margin: 10px 0;
    font-size: 14px;
  }
}

/* Homepage refresh */
:root {
  --sand-50: #f7f2ea;
  --sand-100: #efe5d6;
  --sand-200: #ddceb8;
  --earth-500: #8a6b49;
  --earth-600: #6e5337;
  --earth-700: #4d3926;
  --earth-900: #231913;
  --surface: #fffdfa;
  --text-main: #2f241c;
  --text-soft: #6f6257;
  --line-soft: rgba(77, 57, 38, 0.12);
  --shadow-soft: 0 18px 45px rgba(35, 25, 19, 0.12);
  --shadow-strong: 0 24px 60px rgba(20, 14, 9, 0.28);
}

body {
  color: var(--text-main);
  background:
    radial-gradient(circle at top left, rgba(222, 205, 181, 0.45), transparent 30%),
    linear-gradient(180deg, #fcfaf6 0%, #f5efe6 100%);
}

.site-header {
  background: rgba(78, 61, 44, 0.92);
  padding: 0.7rem 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(10px);
}

.header-inner {
  gap: 1.25rem;
  padding: 0 0.5rem;
}

.main-nav a {
  font-weight: 600;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.main-nav a:hover {
  opacity: 1;
  color: #f5dcc0;
  text-decoration: none;
}

.nav-btn {
  padding: 11px 20px;
  border-radius: 999px;
}

.nav-btn.special {
  background: linear-gradient(135deg, #bc9366, #8f6842);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.nav-btn.special:hover {
  background: linear-gradient(135deg, #c99d6d, #7f5a38);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
}

.hero {
  overflow: hidden;
}

.hero::before {
  background: linear-gradient(115deg, rgba(29, 22, 16, 0.82) 15%, rgba(29, 22, 16, 0.56) 48%, rgba(29, 22, 16, 0.3) 100%);
}

.hero-home {
  min-height: calc(100vh - 108px);
  padding: 4rem 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 420px);
  gap: 2rem;
  align-items: center;
  text-align: left;
}

.hero-copy {
  max-width: 760px;
}

.hero-badge,
.section-kicker,
.hero-card-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-badge {
  padding: 0.55rem 0.9rem;
  margin-bottom: 1.25rem;
  border-radius: 999px;
  background: rgba(255, 247, 237, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #f8e8d8;
}

.hero-copy h1 {
  font-size: clamp(2.7rem, 5vw, 4.7rem);
  line-height: 1.05;
  margin-bottom: 1rem;
  max-width: 12ch;
}

.hero-copy p {
  max-width: 58ch;
  font-size: 1.08rem;
  font-weight: 500;
  color: rgba(255, 248, 240, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.cta-primary,
.cta-secondary,
.text-link {
  text-decoration: none;
}

.cta-primary,
.cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.cta-primary {
  background: linear-gradient(135deg, #d1ab79, #9a724a);
  color: #fffaf3;
  box-shadow: 0 16px 30px rgba(57, 40, 24, 0.28);
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(57, 40, 24, 0.34);
}

.cta-secondary {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.cta-secondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.hero-point {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff6ee;
}

.hero-point i {
  color: #efc38d;
}

.hero-card {
  padding: 1.8rem;
  border-radius: 28px;
  background: rgba(255, 251, 245, 0.92);
  color: var(--text-main);
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.hero-card-label,
.section-kicker {
  color: var(--earth-500);
  margin-bottom: 0.85rem;
}

.hero-card h2 {
  font-size: 2rem;
  line-height: 1.15;
  margin-bottom: 0.85rem;
  color: var(--earth-900);
}

.hero-card p {
  color: var(--text-soft);
  font-weight: 500;
}

.hero-contact-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.hero-contact-list a {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  background: #f6efe5;
  color: var(--earth-700);
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero-contact-list a:hover {
  transform: translateY(-2px);
  background: #efe3d2;
}

.home-highlights,
.home-overview,
.home-contact {
  padding: 5rem 0;
}

.highlight-grid,
.overview-grid {
  display: grid;
  gap: 1.5rem;
}

.highlight-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.stat-card,
.contact-shell {
  box-shadow: var(--shadow-soft);
}

.info-card {
  padding: 2rem;
  border-radius: 24px;
  background: rgba(255, 253, 250, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.info-icon {
  width: 56px;
  height: 56px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 1.2rem;
  border-radius: 16px;
  background: linear-gradient(135deg, #f0ddc3, #d9b78d);
  color: var(--earth-700);
  font-size: 1.2rem;
}

.info-card h2 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.info-card p,
.overview-copy p,
.overview-item p,
.stat-card p,
.contact-item,
.text-link {
  color: var(--text-soft);
}

.home-overview {
  padding-top: 1rem;
}

.overview-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: start;
}

.overview-copy {
  padding-right: 1rem;
}

.overview-copy h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 1rem;
  max-width: 14ch;
}

.overview-list {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.overview-item {
  padding: 1.2rem 1.3rem;
  border-left: 4px solid var(--earth-500);
  border-radius: 0 18px 18px 0;
  background: rgba(255, 250, 243, 0.75);
}

.overview-item strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.05rem;
  color: var(--earth-900);
}

.overview-panel {
  display: grid;
  gap: 1rem;
}

.stat-card {
  padding: 1.6rem;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(244, 235, 223, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.65);
}

.stat-number {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.6rem;
  color: var(--earth-600);
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(255, 252, 248, 0.88);
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.68);
}

.map-section,
.contact-section {
  padding: 36px;
}

.map-section {
  border-right: 1px solid var(--line-soft);
}

.map-section iframe {
  height: 320px;
  border-radius: 20px;
  box-shadow: 0 14px 24px rgba(31, 22, 16, 0.12);
}

h2 {
  color: var(--earth-900);
}

.contact-item {
  flex-wrap: wrap;
  gap: 0.35rem;
}

.contact-item i {
  color: var(--earth-500);
}

.contact-item a,
.text-link {
  color: var(--earth-600);
  font-weight: 600;
}

.send-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  background: linear-gradient(135deg, #a67a4f, #6e5337);
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 14px 26px rgba(59, 40, 26, 0.18);
}

.send-button:hover {
  background: linear-gradient(135deg, #b48456, #5e462f);
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(59, 40, 26, 0.22);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 1.8rem;
}

.site-footer {
  background: #3b2d21;
}

@media (max-width: 1024px) {
  .hero-home {
    min-height: auto;
  }

  .hero-grid,
  .overview-grid,
  .contact-shell {
    grid-template-columns: 1fr;
  }

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

  .overview-copy {
    padding-right: 0;
  }

  .map-section {
    border-right: none;
    border-bottom: 1px solid var(--line-soft);
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 0.75rem 1rem;
  }

  .mobile-menu {
    background: rgba(78, 61, 44, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hero-home {
    padding: 2.5rem 0 3rem;
  }

  .hero-grid {
    gap: 1.5rem;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .hero-copy p,
  .hero-card p {
    font-size: 1rem;
  }

  .hero-actions,
  .hero-points,
  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-primary,
  .cta-secondary,
  .send-button {
    width: 100%;
  }

  .hero-point,
  .hero-contact-list a {
    width: 100%;
  }

  .home-highlights,
  .home-overview,
  .home-contact {
    padding: 3.5rem 0;
  }

  .map-section,
  .contact-section {
    padding: 24px;
  }

  .map-section iframe {
    height: 260px;
  }
}

/* Shared subpages */
.page-hero {
  position: relative;
  padding: 5.5rem 0 4rem;
  color: white;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(29, 22, 16, 0.86) 20%, rgba(29, 22, 16, 0.58) 55%, rgba(29, 22, 16, 0.3) 100%),
    url('/nuotraukos/hero-subpage.jpg') center/cover no-repeat;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.page-hero-inner h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.06;
  margin-bottom: 1rem;
}

.page-hero-inner p {
  font-size: 1.05rem;
  color: rgba(255, 247, 237, 0.88);
}

.page-section {
  padding: 1.25rem 0 4.5rem;
}

.content-card,
.pricing-card,
.form-shell,
.cta-banner {
  border-radius: 28px;
  background: rgba(255, 252, 248, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-soft);
}

.content-card,
.form-shell {
  padding: 2rem;
}

.split-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.split-showcase.reverse .showcase-copy {
  order: 1;
}

.split-showcase.reverse .showcase-image {
  order: 2;
}

.showcase-image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.showcase-copy h2,
.content-card h2,
.pricing-card h2,
.form-shell h2,
.cta-banner h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.12;
  margin-bottom: 1rem;
  color: var(--earth-900);
}

.showcase-copy p {
  color: var(--text-soft);
  margin-bottom: 1rem;
}

.feature-grid,
.pricing-grid,
.steps-grid,
.order-intro-grid {
  display: grid;
  gap: 1.25rem;
}

.feature-grid,
.steps-grid,
.order-intro-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
}

.feature-card,
.step-card,
.pricing-card {
  padding: 1.6rem;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(244, 235, 223, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.65);
}

.feature-card i,
.step-number {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 1rem;
  border-radius: 16px;
  background: linear-gradient(135deg, #f0ddc3, #d9b78d);
  color: var(--earth-700);
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 800;
}

.feature-card h3,
.step-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.15rem;
  color: var(--earth-900);
}

.feature-card p,
.step-card p,
.pricing-card p,
.pricing-card li,
.bullet-columns li {
  color: var(--text-soft);
}

.feature-grid.compact .feature-card {
  background: rgba(255, 251, 245, 0.94);
}

.bullet-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 2rem;
  margin: 1.5rem 0 0;
}

.bullet-columns ul,
.bullet-list {
  padding-left: 1.1rem;
}

.bullet-columns li,
.bullet-list li {
  margin-bottom: 0.7rem;
}

.cta-row,
.pricing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.cta-secondary-dark {
  border-color: rgba(77, 57, 38, 0.16);
  background: rgba(77, 57, 38, 0.06);
  color: var(--earth-700);
}

.cta-secondary-dark:hover {
  background: rgba(77, 57, 38, 0.12);
}

.pricing-card-accent {
  background:
    linear-gradient(135deg, rgba(255, 247, 237, 0.96), rgba(236, 219, 197, 0.96));
}

.table-shell {
  margin-top: 1.25rem;
  overflow-x: auto;
}

.table-shell .gr-table {
  color: var(--text-main);
  min-width: 980px;
}

.table-shell .gr-table thead th {
  background: rgba(77, 57, 38, 0.08);
  color: var(--earth-900);
  font-size: 0.92rem;
  vertical-align: top;
}

.table-shell .gr-table tbody tr:nth-child(odd) {
  background: rgba(138, 107, 73, 0.05);
}

.table-shell .gr-table td {
  vertical-align: top;
}

.services-table {
  min-width: 860px;
  border-radius: 20px;
  overflow: hidden;
}

.services-table colgroup col:nth-child(1) {
  width: 28%;
}

.services-table colgroup col:nth-child(2) {
  width: 24%;
}

.services-table colgroup col:nth-child(3) {
  width: 48%;
}

.services-table thead th {
  font-size: 0.9rem;
  line-height: 1.35;
}

.services-table tbody td:first-child {
  font-weight: 700;
  color: var(--earth-900);
}

.services-table tbody td {
  line-height: 1.55;
}

.cta-banner {
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.contact-stack {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

.contact-link-card {
  display: flex;
  gap: 0.9rem;
  align-items: center;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: #f6efe5;
  text-decoration: none;
  color: var(--earth-700);
  transition: transform 0.2s ease, background 0.2s ease;
}

.contact-link-card:hover {
  transform: translateY(-2px);
  background: #efe3d2;
}

.contact-link-card i {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, #f0ddc3, #d9b78d);
  color: var(--earth-700);
}

.contact-link-card strong,
.contact-link-card span {
  display: block;
}

.contact-link-card span {
  color: var(--text-soft);
}

.form-shell-header {
  margin-bottom: 1.5rem;
}

.form-shell .conteiner5 {
  padding: 0;
}

.drilling-form,
.drilling-table,
.submit-container {
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .split-showcase,
  .pricing-grid,
  .feature-grid,
  .steps-grid,
  .order-intro-grid,
  .bullet-columns,
  .cta-banner {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    display: block;
  }

  .split-showcase.reverse .showcase-copy,
  .split-showcase.reverse .showcase-image {
    order: initial;
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding: 4.2rem 0 3rem;
  }

  .page-section {
    padding: 1rem 0 3rem;
  }

  .content-card,
  .form-shell,
  .pricing-card,
  .cta-banner {
    padding: 1.4rem;
    border-radius: 22px;
  }

  .showcase-image img {
    min-height: 260px;
    border-radius: 22px;
  }

  .cta-row,
  .pricing-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 768px) {
  .hero {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .hero-content {
    width: 100%;
  }

  .container {
    width: min(100% - 28px, 1100px);
  }

  .site-header {
    position: relative;
    top: auto;
    padding: 0.55rem 0.9rem;
  }

  .header-inner {
    padding: 0;
    gap: 0.75rem;
    align-items: center;
  }

  .logo img {
    width: 60px;
    height: auto;
  }

  .menu-toggle {
    font-size: 1.5rem;
    padding: 0.25rem;
  }

  .hero-home {
    min-height: auto;
    height: auto;
    padding: 1.4rem 0 2rem;
  }

  .hero-grid {
    gap: 1rem;
    align-items: start;
  }

  .hero-badge {
    width: 100%;
    justify-content: center;
    text-align: center;
    font-size: 0.72rem;
    line-height: 1.4;
    padding: 0.55rem 0.75rem;
    margin-bottom: 1rem;
  }

  .hero-copy,
  .hero-card,
  .overview-copy,
  .overview-panel,
  .map-section,
  .contact-section {
    width: 100%;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 9vw, 2.75rem);
    line-height: 1.08;
    text-align: center;
    margin-top: 0;
    margin-bottom: 0.85rem;
  }

  .hero-copy p {
    text-align: center;
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .hero-actions {
    margin-top: 1.4rem;
    gap: 0.8rem;
  }

  .cta-primary,
  .cta-secondary {
    min-width: 0;
    padding: 0.95rem 1rem;
  }

  .hero-points {
    margin-top: 1.2rem;
    gap: 0.7rem;
  }

  .hero-point {
    padding: 0.85rem 0.9rem;
    border-radius: 16px;
    font-size: 0.95rem;
  }

  .hero-card {
    padding: 1.25rem;
    border-radius: 22px;
  }

  .mobile-menu {
    top: calc(100% + 2px);
  }

  .hero-card-label,
  .section-kicker {
    font-size: 0.72rem;
    margin-bottom: 0.7rem;
  }

  .hero-card h2 {
    font-size: 1.45rem;
    line-height: 1.15;
    margin-bottom: 0.75rem;
  }

  .hero-contact-list {
    gap: 0.7rem;
    margin-top: 1.1rem;
  }

  .hero-contact-list a {
    padding: 0.9rem;
    border-radius: 14px;
    font-size: 0.95rem;
    word-break: break-word;
  }

  .home-highlights {
    padding-top: 2rem;
  }

  .home-highlights,
  .home-overview,
  .home-contact {
    padding-bottom: 2.4rem;
  }

  .info-card,
  .stat-card {
    padding: 1.3rem;
    border-radius: 20px;
  }

  .info-card h2,
  .overview-copy h2 {
    font-size: 1.55rem;
    max-width: none;
  }

  .overview-copy {
    text-align: left;
  }

  .overview-copy p {
    font-size: 0.98rem;
  }

  .overview-list {
    margin-top: 1.3rem;
  }

  .overview-item {
    padding: 1rem 1rem 1rem 1.05rem;
    border-radius: 0 16px 16px 0;
  }

  .stat-number {
    font-size: 2rem;
  }

  .contact-shell {
    border-radius: 22px;
  }

  .map-section,
  .contact-section {
    padding: 20px;
  }

  .map-section iframe {
    height: 220px;
    border-radius: 16px;
  }

  .contact-item {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .contact-item a,
  .hero-contact-list a,
  .text-link {
    overflow-wrap: anywhere;
  }

  .contact-actions {
    gap: 0.8rem;
    margin-top: 1.3rem;
  }

  .send-button {
    min-height: 48px;
  }

  .site-footer {
    padding: 1.1rem 0;
  }

  .site-footer p {
    text-align: center;
    font-size: 0.92rem;
  }
}
