/* ============================
   BASE RESET
============================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

/* ============================
   UNIVERSAL LINK STYLES
============================ */
a {
  text-decoration: none;
  color: #28e032; /* основний акцентний колір */
  transition: color 0.3s ease, transform 0.2s ease;
}

a:hover,
a:focus {
  color: #005bb5; /* трохи темніший для hover */
  transform: scale(1.02); /* легкий ефект збільшення */
}

a:active {
  color: #003d80; /* натиснутий стан */
}

/* Для посилань у текстових блоках (параграфи, статті) */
p a,
li a,
span a {
  color: #28e032;
  border-bottom: 1px dotted #28e032; /* subtle underline для readability */
}

p a:hover,
li a:hover,
span a:hover {
  color: #005bb5;
  border-bottom: 1px solid #005bb5; /* hover підкреслення більш помітне */
}


/* Навігаційні посилання */
.nav-list a {
  color: #333; /* темний колір для десктопного меню */
  text-transform: uppercase;
  font-weight: 600;
  padding: 5px 0;
}

.nav-list a:hover,
.nav-list a:focus {
  color: #28e032;
  border-bottom: 2px solid #28e032;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.header-bar {
     background: rgb(1 21 8);
  backdrop-filter: blur(6px);
  padding: 15px 0;
  border-bottom: 1px solid rgba(120, 255, 150, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.brand img {
  height: 55px;
  border-radius: 6px;
}

/* Navigation */
.nav-wrap {
  flex: 1;
  margin-left: 40px;
}

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

.nav-links li a {
  color: #d8ffd9;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s, transform 0.3s;
}

.nav-links li a:hover {
  color: #66ff80;
  transform: scale(1.05);
}

/* Phone Button */
.btn-phone {
  background-color: #28a745;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.3s;
}

.btn-phone:hover {
  background-color: #1c7e34;
  transform: translateY(-2px);
}

/* ============================
   BURGER FOR MOBILE
============================ */
.burger-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.burger-toggle span {
  width: 28px;
  height: 3px;
  background-color: #d8ffd9;
  border-radius: 2px;
  transition: 0.3s ease;
}

/* ============================
   MAIN CONTENT (ALL PAGES)
============================ */

main {
  padding: 60px 0;
}

h1, h2, h3 {
  color: #000000;
}

p, li {
  color: #797979;
}

/* Карточки, секції */
section, .cookie-container, .faq-section .faq-item {

  padding: 25px;
  margin-bottom: 25px;
  border: 1px solid rgba(100, 255, 150, 0.15);
}

/* FAQ */
.faq-item h3 {
  color: #9effae;
}

/* Links */
a {
  color: #8aff97;
  transition: 0.3s;
}

a:hover {
  color: #5aff70;
}

/* ============================
   RESPONSIVE
============================ */
@media (max-width: 900px) {

  .nav-wrap {
    position: absolute;
    top: 80px;
    right: 0;
    background: rgba(10, 25, 15, 0.95);
    width: 100%;
    padding: 20px 0;
    display: none;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .burger-toggle {
    display: flex;
  }

  .nav-wrap.nav-active {
    display: block;
  }
}


/* CONTACT INFO */
.contact-info {
  display: flex;
  gap: 25px;
  font-size: 0.95rem;
  flex-direction: column;
  text-align: right;
}

.contact-info a {
  color: #e0e0e0;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.contact-info a:hover {
  color: #30ff36;
}

/* BURGER MENU */
.burger-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 26px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.burger-toggle span {
  display: block;
  height: 4px;
  width: 100%;
  background-color: #f1f1f1;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* ============================
   RESPONSIVE
============================ */
@media (max-width: 1024px) {
  .contact-info {
    font-size: 0.85rem;
    gap: 15px;
  }

  .nav-links {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .nav-wrap {
    display: none;
    position: absolute;
    top: 100%;
    right: 25px;
    background: #2b3a50;
    border-radius: 10px;
    width: 220px;
    padding: 20px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    flex-direction: column;
    gap: 15px;
    z-index: 999;
  }

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

  .nav-links {
    flex-direction: column;
    gap: 15px;
  }

  .burger-toggle {
    display: flex;
  }

  .contact-info {
    display: none;
  }
}


.main-nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

.main-nav a {
  font-weight: 600;
  color: #28e032;
  transition: color 0.3s;
}

.main-nav a:hover {
  color: #005bb5;
}


/* ============================
   HERO BANNER
============================ */
.hero-banner {
  background: linear-gradient(rgb(20 60 32 / 70%), rgb(30 38 90 / 70%)), url(images/hero.jpg) center / cover no-repeat;
  color: #FFF5F5;
  text-align: center;
  padding: 220px 20px 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}


.hero-title {
  font-size: 3.2rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  line-height: 1.2;
  margin-bottom: 25px;
  color: #30ff36; /* яскраво-червоний заголовок */
  text-shadow: 1px 1px 6px rgba(0,0,0,0.5);
}

.hero-subtitle {
  font-size: 1.5rem;
  max-width: 650px;
  margin: 0 auto 35px;
  line-height: 1.6;
  color: #ffffff; /* світлий червоний для підзаголовку */
}

.btn-cta {
  background-color: #30ff36; /* червоний акцент кнопки */
  color: #ffffff;
  padding: 16px 42px;
  border-radius: 10px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}

.btn-cta:hover {
  background-color: #28e032; /* темніший червоний при hover */
  transform: translateY(-3px);
  color: #222;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* ============================
   RESPONSIVE
============================ */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.6rem;
  }

  .hero-subtitle {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .hero-banner {
    padding: 180px 15px 140px;
  }

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

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

  .btn-cta {
    padding: 14px 32px;
    font-size: 0.95rem;
  }
}

/* ============================
   ABOUT SECTION
============================ */
.about-section {
  padding: 100px 20px;
  background-color: #f9f9f9;
}

.about-container {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.about-text {
  flex: 1 1 500px;
}

.about-text h2 {
  font-size: 2.8rem;
  margin-bottom: 25px;
  color: #222;
  font-weight: 700;
}

.about-text p {
  font-size: 1.1rem;
  margin-bottom: 15px;
  line-height: 1.8;
  color: #444;
}

.about-text ul {
  margin: 15px 0;
  padding-left: 20px;
  list-style: disc;
  color: #555;
}

.about-text ul li {
  margin-bottom: 10px;
}

.about-text .btn-cta {
  margin-top: 20px;
}

/* Зображення */
.about-image {
  flex: 1 1 450px;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  object-fit: cover;
  max-height: 600px;
}

/* ============================
   RESPONSIVE
============================ */
@media (max-width: 1024px) {
  .about-container {
    gap: 30px;
  }

  .about-image img {
    max-height: 350px;
  }
}

@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
  }

  .about-text h2 {
    font-size: 2.2rem;
  }

  .about-text p,
  .about-text ul li {
    font-size: 1rem;
  }

  .about-image img {
    max-height: 300px;
  }
}


/* ============================
   SERVICES SECTION
============================ */
.services-section {
  padding: 80px 0;
  background-color: #f5f7fa;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #222;
}

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

.service-card {
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card h3 {
  margin-bottom: 15px;
  color: #28e032;
}

/* ============================
   TESTIMONIALS SECTION
============================ */
.testimonials-section {
  padding: 80px 0;
  text-align: center;
}

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

.testimonial-card {
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

blockquote {
  font-style: italic;
  color: #555;
}
/* ============================
   FOOTER MAIN
============================ */
.site-footer {
  background: linear-gradient(160deg, #0b2614 0%, #134726 50%, #1d6b3a 100%);
  color: #eaffea;
  font-family: "Inter", sans-serif;
  padding: 90px 20px 45px;
  border-top: 2px solid rgba(120,255,150,0.2);
}

.footer-main {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

/* Блоки футера */
.footer-contact,
.footer-about,
.footer-hours,
.footer-social {
  flex: 1 1 260px;
  position: relative;
  padding: 25px;
  border-radius: 12px;
}

.footer-contact:hover,
.footer-about:hover,
.footer-hours:hover,
.footer-social:hover {
  background: rgba(255, 255, 255, 0.07);
  transition: 0.3s ease;
}

.footer-main h3 {
  font-size: 1.6rem;
  color: #9affaa;
  margin-bottom: 15px;
  font-weight: 700;
}

.footer-main p,
.footer-main a {
  font-size: 1rem;
  line-height: 1.7;
  color: #dbffdb;
}

.footer-main a {
  text-decoration: none;
  transition: color 0.3s;
}

.footer-main a:hover {
  color: #7aff8a;
}

/* Новий блок соцмереж */
.social-links {
  list-style: none;
  padding: 0;
  margin: 15px 0 0;
}

.social-links li {
  margin-bottom: 8px;
}

.social-links a {
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ============================
   FOOTER BOTTOM
============================ */
.footer-bottom {
  border-top: 1px solid rgba(100,255,150,0.25);
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.9rem;
  margin-bottom: 12px;
  color: #c7f8cc;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 25px;
  padding: 0;
  margin: 0;
}

.footer-nav a {
  color: #eaffea;
  font-weight: 600;
  text-transform: uppercase;
  transition: 0.3s;
}

.footer-nav a:hover {
  color: #82ff93;
}

/* ============================
   RESPONSIVE
============================ */
@media (max-width: 1024px) {
  .footer-main {
    gap: 35px;
  }
}

@media (max-width: 768px) {
  .footer-main {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-nav ul {
    flex-direction: column;
    gap: 15px;
  }
}



/* ============================
   CONTACT US SECTION
============================ */
.contact-us-section {
  background-color: #1f1f1f; /* темний фон для контрасту */
  color: #fff;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-us-container {
  max-width: 700px;
  margin: 0 auto;
  z-index: 1;
  position: relative;
}

.contact-us-section .section-title {
  font-size: 2.8rem;
  color: #30ff36; /* червоний акцент */
  margin-bottom: 15px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  line-height: 1.2;
}

.contact-us-section .section-subtitle {
  font-size: 1.3rem;
  color: #ffffff; /* світлий червоний для підзаголовку */
  margin-bottom: 40px;
  line-height: 1.6;
}

.contact-us-section .btn-cta {
  display: inline-block;
  background-color: #30ff36; /* основний червоний акцент */
  color: #fff;
  padding: 16px 42px;
  border-radius: 8px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-us-section .btn-cta:hover {
  background-color: #28e032; /* темніший червоний */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Декоративний легкий градієнт або хвиля */
.contact-us-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgb(48 255 81 / 10%), rgb(68 255 48 / 5%));
  z-index: 0;
}

/* ============================
   RESPONSIVE
============================ */
@media (max-width: 1024px) {
  .contact-us-section {
    padding: 80px 20px;
  }

  .contact-us-section .section-title {
    font-size: 2.4rem;
  }

  .contact-us-section .section-subtitle {
    font-size: 1.15rem;
  }
}

@media (max-width: 768px) {
  .contact-us-section {
    padding: 60px 15px;
  }

  .contact-us-section .section-title {
    font-size: 2rem;
  }

  .contact-us-section .section-subtitle {
    font-size: 1rem;
  }

  .contact-us-section .btn-cta {
    padding: 14px 32px;
    font-size: 0.95rem;
  }
}

/* ============================
   FEEDBACK FORM SECTION
============================ */
.feedback-form-section {
  background-color: #f9f9f9;
  padding: 80px 20px;
  text-align: center;
  font-family: 'Arial', sans-serif;
  color: #333;
}

.feedback-form-section h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: #28e032;
}

.feedback-form-section p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.feedback-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.form-group label {
  font-weight: bold;
  margin-bottom: 8px;
  color: #222;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #28e032;
  box-shadow: 0 0 5px rgba(0, 115, 230, 0.3);
  outline: none;
}

.feedback-form textarea {
  resize: vertical;
}

/* ============================
   RESPONSIVE
============================ */
@media (max-width: 768px) {
  .feedback-form-section {
    padding: 60px 15px;
  }

  .feedback-form-section h2 {
    font-size: 1.8rem;
  }

  .feedback-form-section p {
    font-size: 1rem;
  }
}

html {
  scroll-behavior: smooth;
}

.tips-section {
  padding: 70px 20px;
  background-color: #fff8f5;
}

.tips-section h2 {
  font-size: 2.2rem;
  margin-bottom: 25px;
  color: #28e032;
  text-align: center;
}

.tips-section ul {
  list-style: square inside;
  max-width: 700px;
  margin: 0 auto;
  padding-left: 0;
}

.tips-section ul li {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 14px;
  color: #2c2c2c;
}


.faq-section {
  padding: 80px 20px;
  background-color: #f5f5f5;
}

.faq-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #28e032;
  text-align: center;
}

.faq-item {
  margin-bottom: 25px;
  border-left: 3px solid #28e032;
  padding-left: 15px;
}

.faq-item h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: #222;
}

.faq-item p {
  font-size: 1.1rem;
  color: #444;
}


/* ============================
   FEATURED POST SECTION
============================ */
.featured-post {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f4f4f4, #e9ecef);
  font-family: 'Poppins', sans-serif;
}

.featured-container {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* IMAGE */
.featured-image {
  flex: 1 1 450px;
}

.featured-image img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

/* CONTENT */
.featured-content {
  flex: 1 1 450px;
}

.featured-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1a3d2f;
}

.featured-summary {
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 20px;
  color: #2c2c2c;
  line-height: 1.6;
}

/* LIST / HIGHLIGHTS */
.featured-highlights {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.featured-highlights li {
  margin-bottom: 12px;
  background: #ffffff;
  padding: 12px 16px;
  border-left: 5px solid #1fa46d;
  border-radius: 6px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.05);
  font-size: 0.98rem;
  color: #333;
}

.featured-highlights li strong {
  color: #1a3d2f;
}

/* READ MORE BUTTON */
.featured-content .btn-cta {
  display: inline-block;
  margin-top: 10px;
  background: #1fa46d;
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.featured-content .btn-cta:hover {
  background: #147d52;
  transform: translateY(-2px);
}

/* ============================
   RESPONSIVE
============================ */
@media (max-width: 992px) {
  .featured-title {
    font-size: 2rem;
  }

  .featured-container {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .featured-container {
    flex-direction: column;
    text-align: center;
  }

  .featured-highlights li {
    text-align: left;
  }

  .featured-image img {
    border-radius: 10px;
  }
}