body,
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  outline: none;
  border: none;
  font-family: Arial, sans-serif;
}

body {
  background-color: #f4f9f6;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Header - zielona wersja */
.header-green {
  background: #1f3d2e; /* ciemnozielony */
  color: #f0f4ed; /* jasny kremовый */
  padding: 18px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
}

.header-brand img {
  height: 55px;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.header-brand img:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  color: #f0f4ed;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  position: relative;
  transition: color 0.3s ease;
}

/* Hover efekt */
.nav-links a:hover {
  color: #b2d8c2; /* jasna mięta */
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #b2d8c2;
  transition: width 0.3s ease-in-out;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Burger */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #f0f4ed;
}

/* Mobile */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    right: 0;
    background: #1f3d2e;
    flex-direction: column;
    width: 230px;
    padding: 20px;
    box-shadow: -4px 6px 12px rgba(0, 0, 0, 0.4);
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

/* ---------- POPUP OVERLAY ---------- */
.popup {
  position: fixed;
  inset: 0;
  background: rgba(10, 25, 15, 0.85); /* глубокий зелёный полупрозрачный фон */
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  padding: 20px;
  backdrop-filter: blur(6px);
  animation: fadeIn 0.4s ease forwards;
}

/* ---------- POPUP CONTENT ---------- */
.popup-content.big {
  background: linear-gradient(145deg, #102418, #1a3c28); /* малахитовый градиент */
  border: 2px solid rgba(156, 207, 107, 0.4); /* мягкая оливковая рамка */
  color: #e9f2e4;
  border-radius: 14px;
  padding: 45px 55px;
  max-width: 620px;
  text-align: center;
  font-size: 19px;
  line-height: 1.7;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
  position: relative;
  animation: scaleIn 0.5s ease;
}

/* ---------- HEADINGS ---------- */
.popup-content.big h2 {
  font-family: "Playfair Display", serif;
  font-size: 34px;
  color: #c5d86d; /* золотисто-зелёный */
  margin-bottom: 20px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

/* ---------- BUTTON ---------- */
.popup-content.big button {
  background: linear-gradient(90deg, #9ccf6b, #7ecb85);
  color: #102418;
  border: none;
  padding: 14px 36px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  margin-top: 25px;
  box-shadow: 0 4px 12px rgba(124, 200, 130, 0.4);
  transition: all 0.3s ease;
}

.popup-content.big button:hover {
  background: #c5d86d;
  color: #102418;
  box-shadow: 0 6px 20px rgba(197, 216, 109, 0.5);
  transform: translateY(-2px);
}

/* ---------- CLOSE BUTTON (optional) ---------- */
.popup-content.big .close-btn {
  position: absolute;
  top: 15px;
  right: 18px;
  font-size: 26px;
  color: #c5d86d;
  cursor: pointer;
  transition: color 0.3s ease;
}

.popup-content.big .close-btn:hover {
  color: #9ccf6b;
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0.85);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 600px) {
  .popup-content.big {
    padding: 30px 25px;
    font-size: 17px;
  }

  .popup-content.big h2 {
    font-size: 28px;
  }

  .popup-content.big button {
    font-size: 16px;
    padding: 12px 28px;
  }
}

.site-footer-green {
  background: #1f3d2e; /* ciemna zieleń */
  color: #eaf5ec; /* jasny beżowo-zielonkawy */
  padding: 50px 20px 20px;
  font-family: "Montserrat", sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

.footer-logo,
.footer-links,
.footer-contact {
  flex: 1;
  min-width: 200px;
}

.footer-logo img {
  max-height: 60px;
  margin-bottom: 15px;
  border-radius: 6px;
}

.footer-logo h2 {
  color: #6abf69; /* mięta */
  margin-bottom: 10px;
}

.footer-logo p {
  font-size: 14px;
  line-height: 1.6;
  color: #dce8e1;
}

.footer-links h3,
.footer-contact h3 {
  margin-bottom: 15px;
  font-size: 18px;
  color: #b2d8c2; /* pastelowa mięta */
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #eaf5ec;
  text-decoration: none;
  transition: color 0.3s, padding-left 0.2s;
}

.footer-links a:hover {
  color: #6abf69;
  padding-left: 4px;
}

.footer-contact p {
  margin: 8px 0;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact i {
  color: #6abf69;
  font-size: 18px;
  min-width: 20px;
}

.footer-contact a {
  color: #eaf5ec;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #b2d8c2;
}

.footer-bottom {
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  padding-top: 15px;
  font-size: 13px;
  color: #a6bdb0;
}

.main {
  flex: 1 1 auto;
}

/* HERO SLIDER (zielona unikalna wersja) */
.green-hero {
  position: relative;
  width: 100%;
  height: 100vh; /* pełna wysokość okna */
  overflow: hidden;
}

.green-hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* kontent przesunięty w lewo */
  padding-left: 8%;
}

.green-hero__slide.active {
  opacity: 1;
}

.green-hero__content {
  max-width: 520px;
  background: rgba(31, 61, 46, 0.7); /* ciemnozielony półprzezroczysty */
  padding: 35px 45px;
  border-radius: 10px;
  color: #edf5ef;
  border-left: 5px solid #9fcba8; /* miękka zieleń akcentowa */
  animation: slideFromLeft 1s ease forwards;
}

.green-hero__content h2 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 18px;
  color: #cde8d1; /* pastelowa zieleń */
}

.green-hero__content p {
  font-size: 18px;
  margin-bottom: 22px;
  line-height: 1.7;
  color: #f2f8f3;
}

.green-hero__btn {
  display: inline-block;
  border: 2px solid #cde8d1;
  color: #cde8d1;
  padding: 12px 30px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.green-hero__btn:hover {
  background: #cde8d1;
  color: #1f3d2e;
  transform: translateY(-3px);
}

/* Animacja pojawienia się */
@keyframes slideFromLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.about-green {
  padding: 80px 20px;
  background: #f3f7f4; /* jasny pastelowy zielono-beżowy */
  color: #1f3d2e; /* oliwkowy tekst */
  font-family: "Montserrat", sans-serif;
}

.about-green__container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.about-green__text {
  margin-bottom: 40px;
}

.about-green__text h2 {
  font-size: 34px;
  color: #2e6048; /* ciemna zieleń */
  margin-bottom: 12px;
}

.about-green__text h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #b2d8c2; /* mięta */
  font-weight: 600;
}

.about-green__text p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 16px;
  text-align: left;
  color: #1f3d2e;
}

.about-green__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
.about-green__image {
  max-height: 382px;
}
.about-green__image img {
  width: 100%;
  max-height: 100%;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  border: 3px solid #b2d8c2; /* mięta akcent */
}

/* Mobile */
@media (max-width: 768px) {
  .about-green__gallery {
    grid-template-columns: 1fr;
  }
}

.services-green {
  background: #f3f7f4; /* jasny pastelowy */
  padding: 90px 20px;
  color: #1f3d2e;
  font-family: "Montserrat", sans-serif;
}

.services-green__head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.services-green__head h2 {
  font-size: 34px;
  margin-bottom: 15px;
  color: #2e6048; /* ciemna zieleń */
}

.services-green__head p {
  font-size: 18px;
  color: #3c5244;
  line-height: 1.7;
}

.services-green__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.services-green__item {
  background: #eaf5ec;
  padding: 35px 25px;
  border-radius: 12px;
  text-align: center;
  border: 2px solid #b2d8c2;
  transition: all 0.35s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.services-green__item:hover {
  background: linear-gradient(135deg, #2e6048, #4f8c70);
  color: #f0f4ed;
  transform: translateY(-12px) scale(1.03);
  border-color: #f0f4ed;
}

.services-green__item i {
  font-size: 42px;
  margin-bottom: 18px;
  color: #2e6048;
  transition: color 0.3s;
}

.services-green__item:hover i {
  color: #f0f4ed;
}

.services-green__item h3 {
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 600;
}

.services-green__item p {
  font-size: 16px;
  line-height: 1.6;
}
/* STATS GREEN SECTION */
.stats-green {
  background: #1f3d2e; /* ciemnozielony */
  padding: 80px 20px;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  color: #f0f4ed; /* jasny krem */
}

.stats-green__header {
  max-width: 850px;
  margin: 0 auto 60px auto;
}

.stats-green__header h2 {
  font-size: 36px;
  color: #b2d8c2; /* jasna mięta */
  margin-bottom: 15px;
  font-weight: 700;
}

.stats-green__header p {
  font-size: 18px;
  color: #eaf5ec;
  line-height: 1.6;
}

/* GRID */
.stats-green__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

/* ITEM BOX */
.stats-green__item {
  background: #2e6048; /* średnia zieleń */
  border-radius: 12px;
  padding: 40px 25px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

.stats-green__item:hover {
  transform: translateY(-12px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.5);
  background: #367256; /* jaśniejszy zielony przy hover */
}

.stats-green__item i {
  font-size: 42px;
  color: #d4f0c5; /* pastelowy zielonkawy */
  margin-bottom: 18px;
}

.stats-green__content span {
  display: block;
  font-size: 38px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 8px;
}

.stats-green__content h3 {
  font-size: 20px;
  color: #b2d8c2;
  margin-bottom: 12px;
}

.stats-green__content p {
  font-size: 15px;
  color: #f0f4ed;
  line-height: 1.6;
}

/* RESPONSYWNOŚĆ */
@media (max-width: 768px) {
  .stats-green {
    padding: 60px 15px;
  }
  .stats-green__header h2 {
    font-size: 28px;
  }
  .stats-green__content span {
    font-size: 32px;
  }
}

/* OFFER LIGHT */
.offer-light {
  background: #f8fdf8; /* bardzo jasna zieleń/krem */
  color: #1f3d2e; /* ciemnozielony tekst */
  padding: 100px 20px;
  font-family: "Montserrat", sans-serif;
}

.offer-light__container {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.offer-light__header {
  margin-bottom: 40px;
}

.offer-light__title {
  font-size: 38px;
  color: #2e6048; /* średnia zieleń */
  margin-bottom: 10px;
  font-weight: 700;
  letter-spacing: 1px;
}

.offer-light__line {
  display: inline-block;
  width: 80px;
  height: 4px;
  background: #a4c9ac; /* jasna mięta */
  border-radius: 2px;
}

.offer-light__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  text-align: left;
}

.offer-light__content p {
  font-size: 18px;
  line-height: 1.8;
  color: #2a4737; /* głęboka zieleń */
}

/* RESPONSYWNOŚĆ */
@media (max-width: 768px) {
  .offer-light__content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.vertical-grid.dark {
  background: #1a2d23; /* ciemna zieleń */
  padding: 80px 20px;
  font-family: "Montserrat", sans-serif;
  color: #f0f4ed;
}

.vertical-grid__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

@media (min-width: 768px) {
  .vertical-grid__container {
    grid-template-columns: 1fr 1fr; /* 2 elementy obok siebie */
  }
}

.vcard {
  background: #243b30;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}

.vcard:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.6);
}

.vcard__image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.vcard__content {
  padding: 25px;
}

.vcard__content h3 {
  font-size: 24px;
  color: #b2d8c2;
  margin-bottom: 8px;
}

.vcard__content h4 {
  font-size: 18px;
  color: #d4af37;
  margin-bottom: 15px;
}

.vcard__content p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 12px;
  color: #eaf5ec;
}

.vcard__content .tags {
  font-size: 13px;
  color: #9bb5a8;
  margin-bottom: 15px;
  display: block;
}

.vbtn {
  display: inline-block;
  background: #2e6048;
  color: #f0f4ed;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}

.vbtn:hover {
  background: #b2d8c2;
  color: #1a2d23;
  transform: scale(1.05);
}

.agency-grid {
  padding: 100px 20px;
  background: #f5f9f6; /* jasny zielonkawy odcień */
  text-align: center;
  font-family: "Montserrat", sans-serif;
  color: #1a2d23;
}

.agency-grid__title {
  font-size: 36px;
  margin-bottom: 15px;
  color: #2e6048; /* ciemna zieleń */
}

.agency-grid__intro {
  max-width: 800px;
  margin: 0 auto 50px;
  font-size: 18px;
  line-height: 1.6;
  color: #3b4d45;
}

.agency-grid__wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

@media (min-width: 768px) {
  .agency-grid__wrapper {
    grid-template-columns: 1fr 1fr; /* 2 kolumny */
  }
}

.agency-card {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: left;
}

.agency-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.agency-card__icon {
  font-size: 40px;
  color: #6abf69; /* świeża zieleń */
  margin-bottom: 15px;
}

.agency-card__title {
  font-size: 22px;
  margin-bottom: 10px;
  color: #2e6048;
  font-weight: 600;
}

.agency-card__text {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
}

.contact-green {
  background: #f4faf6; /* jasne tło */
  padding: 80px 20px;
  font-family: "Montserrat", sans-serif;
  color: #1f3d2e;
  position: relative;
}

.contact-green__wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px; /* ширина линии */
  height: 3px; /* толщина линии */
  background-color: #2e6048; /* можно заменить на твой акцентный цвет */
  border-radius: 2px;
}

.contact-green__wrapper {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.contact-green__left {
  flex: 1;
  min-width: 300px;
}

.contact-green__label {
  color: #6abf69;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-green__title {
  font-size: 30px;
  margin: 15px 0 25px;
  color: #2e6048;
}

.contact-green__text {
  font-size: 16px;
  margin-bottom: 12px;
}

.contact-green__link {
  color: #2e6048;
  text-decoration: none;
  font-weight: 600;
}

.contact-green__link:hover {
  text-decoration: underline;
  color: #6abf69;
}

.contact-green__right {
  flex: 1;
  min-width: 350px;
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.form-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.form-field label {
  margin-bottom: 6px;
  font-weight: 600;
  color: #1f3d2e;
}

.form-field input,
.form-field textarea {
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 12px;
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: #6abf69;
  box-shadow: 0 0 6px rgba(106, 191, 105, 0.3);
}

.form-field textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-green__button {
  background: #2e6048;
  color: #f4faf6;
  padding: 14px 28px;
  border: none;
  border-radius: 6px;
  font-size: 17px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.contact-green__button:hover {
  background: #6abf69;
  color: #1f3d2e;
  transform: translateY(-3px);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero__slider-item {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.hero__slider-title {
  font-size: 42px;
  color: #faf3e0;
  text-align: center;
  background: rgba(0, 0, 0, 0.55);
  padding: 15px 30px;
  border-radius: 6px;
  font-family: "Playfair Display", serif;
}
@media (min-width: 768px) {
  .hero__slider-title {
    font-size: 56px;
  }
}
@media (min-width: 1440px) {
  .hero__slider-title {
    font-size: 72px;
  }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero__slider-item {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.hero__slider-title {
  font-size: 42px;
  color: #faf3e0; /* kremowy tekst */
  text-align: center;
  background: rgba(27, 42, 73, 0.65); /* granat с прозрачностью */
  padding: 15px 30px;
  border-radius: 6px;
  font-family: "Playfair Display", serif;
}
@media (min-width: 768px) {
  .hero__slider-title {
    font-size: 56px;
  }
}
@media (min-width: 1440px) {
  .hero__slider-title {
    font-size: 72px;
  }
}

/* HERO OFFER (без изменений) */
.hero-offer {
  position: relative;
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-offer__slider-item {
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-offer__title {
  font-size: 48px;
  color: #faf3e0;
  font-family: "Playfair Display", serif;
  background: rgba(27, 42, 73, 0.7);
  padding: 15px 30px;
  border-radius: 6px;
  margin-bottom: 20px;
  display: inline-block;
}
.hero-offer__subtitle {
  font-size: 20px;
  color: #faf3e0;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  font-family: "Montserrat", sans-serif;
}

/* INTRO */
.offer-intro {
  background: #f0f5f2; /* jasna zieleń z kremowym odтeнком */
  padding: 60px 20px;
  text-align: center;
}
.offer-intro__title {
  font-size: 32px;
  color: #1b2a49;
  font-family: "Playfair Display", serif;
  margin-bottom: 15px;
}
.offer-intro__text {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  color: #444;
}

/* OFFER LIST (unikalna wersja) */
.offer {
  padding: 80px 20px;
  background: #f7f9f6; /* bardzo jasny oliwkowy */
}
.offer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 70px;
}
.offer__list-item {
  display: flex;
  flex-direction: column;
  background: #234135; /* ciemnozielony */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.offer__list-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
  background: #2c5644; /* trochę jaśniejszy zielony przy hover */
}

/* co drugi blok jasny */
.offer__list-item:nth-child(even) {
  background: #e8efe8; /* jasna oliwka */
}
.offer__list-item:nth-child(even) .offer__item-text {
  color: #234135;
}
.offer__list-item:nth-child(even) .offer__item-title {
  color: #234135;
}
.offer__list-item:nth-child(even) .offer__item-title i {
  background: #234135;
}

/* reverse layout */
@media (min-width: 768px) {
  .offer__list-item {
    flex-direction: row;
    align-items: stretch;
  }
  .offer__list-item.reverse {
    flex-direction: row-reverse;
  }
}

.offer__item-content {
  flex: 1;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.offer__item-title {
  font-size: 28px;
  margin-bottom: 18px;
  font-family: "Playfair Display", serif;
  color: #d4af37; /* złoty */
  display: flex;
  align-items: center;
  gap: 12px;
}
.offer__item-title i {
  color: #fff;
  background: #556b2f; /* oliwkowy */
  padding: 8px;
  border-radius: 50%;
  font-size: 18px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}
.offer__item-text {
  font-size: 17px;
  line-height: 1.7;
  color: #f7f9f6;
  margin-bottom: 12px;
  font-family: "Montserrat", sans-serif;
}

/* obrazki */
.offer__item-img {
  flex: 1;
  min-height: 280px;
}
.offer__item-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-left: 5px solid #d4af37;
}
.offer__list-item.reverse .offer__item-photo {
  border-left: none;
  border-right: 5px solid #d4af37;
}

/* HERO */
.hero {
  position: relative;
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__slider-item {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}
.hero__slider-title {
  font-size: 42px;
  color: #faf3e0;
  background: rgba(27, 42, 73, 0.65);
  padding: 15px 30px;
  border-radius: 6px;
  font-family: "Playfair Display", serif;
}

/* HERO PRIVACY */
.hero-privacy {
  position: relative;
  width: 100%;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #182848;
}
.hero-privacy__slider {
  width: 100%;
  height: 100%;
}

.hero-privacy__slider-item {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-privacy__slider-item .container {
  z-index: 3;
  position: relative;
}

.hero-privacy__slider-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(10, 20, 35, 0.6),
    rgba(10, 20, 35, 0.85)
  );
}

.hero-privacy__slider-title {
  position: relative;
  font-size: 44px;
  color: #fff3db; /* ciepły kremowy */
  text-align: center;
  font-family: "Playfair Display", serif;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
  letter-spacing: 1px;
}

.hero-privacy__slider-subtitle {
  position: relative;
  margin-top: 15px;
  font-size: 18px;
  color: #f5e1a4; /* delikatny złoty */
  text-align: center;
  max-width: 700px;
  line-height: 1.6;
  margin: 0 auto;
  font-family: "Montserrat", sans-serif;
}

/* PRIVACY CONTENT */
.privacy {
  padding: 80px 20px;
  background: #faf7f2;
  color: #1e1e2f;
  font-family: "Montserrat", sans-serif;
}

.privacy__title {
  text-align: center;
  color: #b08a2f; /* złoto-brązowy akcent */
  font-family: "Playfair Display", serif;
  font-size: 32px;
  margin-bottom: 30px;
}

.privacy__intro {
  max-width: 900px;
  margin: 0 auto 40px;
  font-size: 17px;
  line-height: 1.7;
  color: #333;
  text-align: center;
}

.privacy__block {
  max-width: 900px;
  margin: 0 auto 40px;
  background: #ffffff;
  border-left: 4px solid #b08a2f;
  padding: 25px 30px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
}

.privacy__block:hover {
  transform: translateY(-3px);
}

.privacy__block h3 {
  color: #182848;
  margin-bottom: 10px;
  font-size: 22px;
}

.privacy__block p,
.privacy__block li {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}

.privacy__block a {
  color: #b08a2f;
  text-decoration: none;
}

.privacy__block a:hover {
  text-decoration: underline;
  color: #a66e00;
}

/* HERO TERMS */
.hero-terms {
  position: relative;
  width: 100%;
  height: 420px;
  background: url("assets/images/terms.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-terms__overlay {
  background: rgba(20, 40, 30, 0.65); /* ciemna zieleń z przezroczystością */
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 20px;
}

.hero-terms__title {
  font-size: 44px;
  color: #eaf7e3; /* jasny kremowo-zielony */
  font-family: "Playfair Display", serif;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
  margin-bottom: 15px;
}

.hero-terms__subtitle {
  color: #cfe9cc; /* delikatna zieleń */
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
}

/* TERMS SECTION */

.terms__heading {
  text-align: center;
  font-size: 34px;
  color: #2c5533; /* ciemna zieleń */
  margin-bottom: 20px;
  font-family: "Playfair Display", serif;
}

.terms__intro {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 60px;
  font-size: 17px;
  color: #445b46;
  line-height: 1.8;
}

/* GRID */
.terms__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

/* TERMS CARD */
.terms-card {
  background: #fff;
  border-radius: 10px;
  padding: 30px 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-top: 5px solid #4b9461; /* zielony akcent */
  transition: all 0.3s ease;
}

.terms-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.terms-card__icon {
  font-size: 30px;
  color: #4b9461;
  margin-bottom: 10px;
}

.terms-card h3 {
  color: #2c5533;
  font-size: 20px;
  margin-bottom: 12px;
  font-family: "Playfair Display", serif;
}

.terms-card p,
.terms-card ul {
  color: #333;
  font-size: 15px;
  line-height: 1.6;
}

.terms-card ul {
  padding-left: 18px;
  list-style: disc;
}

.terms-card a {
  color: #4b9461;
  text-decoration: none;
  font-weight: 500;
}

.terms-card a:hover {
  text-decoration: underline;
  color: #2c5533;
}

/* HERO REVIEWS */
.hero-reviews {
  position: relative;
  width: 100%;
  height: 420px;
  background: url("assets/images/reviews.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-reviews__overlay {
  background: rgba(10, 25, 20, 0.65); /* ciemna zieleń z przezroczystością */
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-reviews__title {
  color: #e5f2df; /* jasna zieleń */
  font-size: 46px;
  font-family: "Playfair Display", serif;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
  margin-bottom: 10px;
}

.hero-reviews__subtitle {
  color: #b6d6b3; /* delikatna zieleń */
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
}

/* REVIEWS SECTION */
.reviews {
  padding: 100px 20px;
  background: #f4f8f5; /* pastelowe tło */
  font-family: "Montserrat", sans-serif;
}

.reviews__title {
  text-align: center;
  font-size: 34px;
  color: #2d4632; /* ciemna zieleń */
  font-family: "Playfair Display", serif;
  margin-bottom: 60px;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

/* REVIEW CARD */
.review-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-top: 5px solid #5ca06b; /* zielony akcent */
  transition: transform 0.3s, box-shadow 0.3s;
}

.review-card.highlight {
  background: linear-gradient(145deg, #ffffff, #f0f8f1);
  border-top: 5px solid #2e6945;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #5ca06b;
}

.review-author {
  font-weight: 600;
  color: #2e6945;
  font-size: 16px;
}

.review-stars {
  color: #c6a100; /* złoty akcent */
  font-size: 18px;
}

.review-text {
  color: #333;
  font-size: 15px;
  line-height: 1.7;
  margin-top: 10px;
  text-align: left;
}

/* HERO OFFER */
.hero-offer {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  color: #faf3e0;
  overflow: hidden;
}

.hero-offer__bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-offer::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 60%;
  background: linear-gradient(to top, rgba(27,42,73,0.9), rgba(27,42,73,0.2));
  z-index: 2;
  height: 100%;
}

.hero-offer .container {
  position: relative;
  z-index: 3;
}

.hero-offer__content {
  max-width: 700px;
  text-align: left; /* zamiast center */
}

.hero-offer__label {
  display: inline-block;
  background: #3a7d44;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 14px;
  margin-bottom: 15px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-offer__title {
  font-size: 54px;
  font-family: "Playfair Display", serif;
  margin-bottom: 20px;
}

.hero-offer__subtitle {
  font-size: 20px;
  font-family: "Montserrat", sans-serif;
  line-height: 1.7;
  margin-bottom: 30px;
}

.hero-offer__btn {
  display: inline-block;
  background: #d4af37;
  color: #1b2a49;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
}

.hero-offer__btn:hover {
  background: #fff176;
}

.container {
  max-width: 100%;
  width: 1280px;
  margin: 0 auto;
}
@media (min-width: 1280px) {
  .container {
    padding: 0 12px;
  }
}

.offer__item-img {
  max-height: 350px;
}

.team-alt__icon {
  margin-bottom: 24px;
  font-size: 42px;
  padding: 24px;
  border-radius: 100%;
  border: 2px solid #1f3d2e;
}

/* ---------- HERO TERMS ---------- */
.hero-terms {
  position: relative;
  width: 100%;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-terms__slider {
  width: 100%;
  height: 100%;
}

.hero-terms__slider-item {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-terms__slider-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(20, 40, 30, 0.6),
    rgba(20, 40, 30, 0.8)
  ); /* зелёный overlay */
}

.hero-terms__slider-title {
  position: relative;
  font-size: 44px;
  color: #f5f3e7; /* тёплый кремовый */
  font-family: "Playfair Display", serif;
  padding: 18px 36px;
  border-radius: 10px;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
  background: rgba(34, 85, 55, 0.6); /* зелёный с прозрачностью */
  letter-spacing: 1px;
  z-index: 1;
}

@media (min-width: 768px) {
  .hero-terms {
    height: 500px;
  }

  .hero-terms__slider-title {
    font-size: 54px;
  }
}

/* ---------- TERMS SECTION ---------- */
.terms {
  background: #102418; /* тёмно-зелёный фон */
  color: #e4e9e1;
  font-family: "Montserrat", sans-serif;
  padding: 100px 20px;
  line-height: 1.8;
}

.terms__title {
  text-align: center;
  color: #c5d86d; /* оливково-золотистый */
  font-size: 34px;
  margin-bottom: 40px;
  font-family: "Playfair Display", serif;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.terms__intro {
  max-width: 850px;
  margin: 0 auto 50px;
  text-align: center;
  font-size: 18px;
  color: #cfd8d0;
}

/* ---------- TERMS BLOCKS ---------- */
.terms__block {
  background: rgba(255, 255, 255, 0.05);
  border-left: 5px solid #9ccf6b; /* светло-зелёный акцент */
  border-radius: 10px;
  padding: 30px 25px;
  max-width: 850px;
  margin: 0 auto 35px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.terms__block:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.4);
  background: rgba(255, 255, 255, 0.07);
}

.terms__block h3 {
  color: #9ccf6b; /* зелёный акцент */
  font-size: 20px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.terms__block p,
.terms__block ul {
  font-size: 16px;
  color: #e7efe8;
}

.terms__block ul {
  list-style: disc;
  padding-left: 25px;
}

.terms__block a {
  color: #7ecb85; /* мягкий травяной зелёный */
  text-decoration: underline;
}

.terms__block a:hover {
  color: #c5d86d; /* оливковый */
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .terms {
    padding: 70px 15px;
  }

  .terms__title {
    font-size: 28px;
  }

  .terms__block {
    padding: 25px 18px;
  }
}
