/********** Template CSS **********/
:root {
    --primary: #615743;
    --light: #f1f8ff;
    --dark: #313131;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-semi-bold {
    font-weight: 600 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity 0.5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Button ***/
.btn {
    font-weight: 500;
    text-transform: uppercase;
    transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #ffffff;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 2px;
}

/*** Navbar ***/
.navbar-dark {
    background-color: var(--dark) !important;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 15px 0;
    color: #ffffff;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover::after,
.navbar-dark .navbar-nav .nav-link.active::after {
    width: 100%;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-brand p {
    color: #ffffff;
    transition: all 0.3s ease;
}

.navbar-brand:hover p {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-dark {
        padding: 0.5rem 0;
    }
}

.booking {
    position: relative;
    margin-top: -100px !important;
    z-index: 1;
}

/* Google Fonts - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

@media (max-width: 700px) {
    .cookie-wrapper {
        width: 100%;
    }
}

.cookie-wrapper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 380px;
    background: rgba(255, 255, 255, 0.95);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 9999;
    border: 1px solid rgba(69, 169, 178, 0.2);
}

.cookie-wrapper.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-wrapper i {
    display: block;
    text-align: center;
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 15px;
    animation: bounce 2s infinite;
}

.cookie-wrapper h2 {
    color: var(--dark);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.cookie-wrapper .data {
    margin-bottom: 20px;
}

.cookie-wrapper .data p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.cookie-wrapper .data p a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.cookie-wrapper .data p a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.cookie-wrapper .data p a:hover::after {
    width: 100%;
}

.cookie-wrapper .buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.cookie-wrapper .cookie-button {
    padding: 10px 25px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-wrapper #acceptBtn {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(69, 169, 178, 0.3);
}

.cookie-wrapper #acceptBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(69, 169, 178, 0.4);
}

.cookie-wrapper #declineBtn {
    background-color: transparent;
    color: var(--dark);
    border: 2px solid var(--dark);
}

.cookie-wrapper #declineBtn:hover {
    background-color: var(--dark);
    color: white;
    transform: translateY(-2px);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

@media (max-width: 600px) {
    .cookie-wrapper {
        width: 90%;
        right: 5%;
        bottom: 20px;
        padding: 20px;
    }

    .cookie-wrapper .buttons {
        flex-direction: column;
    }

    .cookie-wrapper .cookie-button {
        width: 100%;
    }
}

.hidden {
    display: none;
}

header i {
    color: #615743;
    font-size: 32px;
    text-align: center;
}

header h2 {
    color: #615743;
    font-weight: 500;
    text-align: center;
}

.data {
    text-align: center;
}

.data p a {
    color: #615743;
    text-decoration: none;
    text-align: center !important;
}

.data p a:hover {
    text-decoration: underline;
}

.buttons {
    padding: 20px 0px;
    text-align: center;
}

.buttons .cookie-button {
    border: 2px solid #615743;
    color: #fff;
    padding: 8px 0;
    background: #615743;
    cursor: pointer;
    width: calc(100% / 2 - 10px);
    transition: all 0.5s ease;
    max-width: 150px;
    border-radius: 0;
}

.buttons #acceptBtn:hover {
    background-color: transparent;
    color: #615743;
}

#declineBtn {
    background-color: #fff;
    color: #615743;
}

#declineBtn:hover {
    background-color: #615743;
    color: #fff;
}

/* Footer Style */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #333;
    color: white;
    padding: 1rem;
}

.logo {
    font-size: 1.5rem;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
}

.burger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    height: 21px;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: white;
}

@media (max-width: 578px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background-color: #333;
    }

    .nav-links li {
        text-align: center;
        margin: 10px 0;
    }

    .burger {
        display: flex;
    }

    .nav-active {
        display: flex;
    }
}

.text-primary-blue {
    color: #615743;
}

.bg-light-gray {
    background-color: #F5F6F7;
}


.text-primary-blue {
    color: #615743;
}

.btn-primary-custom {
    background-color: #1E3A5F;
    border: none;
    border-radius: 0;
    position: relative;
    color: #fff;
    padding: 0.75rem 1.5rem;
}

.btn-primary-custom::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 4px;
    background-color: #edfcea;
    transition: width .3s ease;
}




/* new styles  */
:root {
  --bg-color: #f6f6f6;
  --text-color: #666565;
  --accent-color: #615743;
  --accent-dark: #313128;
  --code-bg: #171c22;
  --code-green: #413e2f;
  --code-line: rgba(98, 199, 140, 0.1);
  --footer-bg: #171c22;
  --footer-text: #e0e0e0;
  --footer-link: #a0a0a0;
  --footer-link-hover: #ffffff;
}


/* Типографіка */
.display-heading {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--accent-dark);
  margin-bottom: 1.5rem;
}

.subheading {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--accent-color);
  margin-bottom: 2rem;
  line-height: 1.4;
}

.description {
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  max-width: 800px;
}

/* Кнопки */
.btn-primary-custom {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: white;
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  border-radius: 0;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.btn-primary-custom:hover, 
.btn-primary-custom:focus {
  background-color: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Секції */
.section-spacer {
  padding: 7rem 0;
}

/* Стилі для головного екрану */
.hero-section {
  position: relative;
  overflow: hidden;
  background-color: white;
}

.hero-content {
  padding: 5rem 0;
}

.hero-img-container {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.hero-img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  transition: transform 0.7s ease;
}

.hero-img:hover {
  transform: scale(1.03);
}

.material-icons {
  vertical-align: middle;
  margin-right: 0.5rem;
}

/* Декоративні елементи */
.accent-line {
  width: 80px;
  height: 4px;
  background-color: var(--accent-color);
  margin-bottom: 2rem;
  display: inline-block;
}

/* Адаптивність */
@media (max-width: 991.98px) {
  .display-heading {
    font-size: 2.8rem;
  }
  
  .subheading {
    font-size: 1.3rem;
  }
  
  .hero-img-container {
    margin-top: 3rem;
    height: 400px;
  }
}

@media (max-width: 767.98px) {
  .display-heading {
    font-size: 2.2rem;
  }
  
  .section-spacer {
    padding: 5rem 0;
  }
  
  .hero-content {
    padding: 3rem 0;
  }
}
/* Стилі для блоку "Устойчивое и энергоэффективное строительство" */
.sustainable-section {
  position: relative;
  overflow: hidden;
 }
 
 .sustainable-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../img/sustainable-building-bg.webp') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  filter: brightness(0.3);
  z-index: 0;
 }
 
 .sustainable-content {
  position: relative;
  z-index: 1;
  color: white;
 }
 
 .sustainable-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
 }
 
 .sustainable-intro {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  max-width: 900px;
 }
 
 .sustainable-card {
  background-color: white;
  border-radius: 5px;
  padding: 2.5rem;
  height: 100%;
  transition: all 0.3s ease;
  color: var(--text-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  margin-bottom: 1.5rem;
 }
 
 .sustainable-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
 }
 
 .sustainable-card-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--accent-dark);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
 }
 
 .sustainable-card-title .material-icons {
  color: var(--accent-color);
  font-size: 1.8rem;
  margin-right: 0.8rem;
 }
 
 .sustainable-card-text {
  font-size: 1.05rem;
 }
 
 /* Стилі для блоку "Новые материалы" */
 .materials-section {
  background-color: white;
 }
 
 .materials-content {
  max-width: 900px;
  margin: 0 auto;
 }
 
 .materials-paragraph {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
 }
 
 /* Стилі для блоку "Последние статьи" */
 .articles-section {
  background-color: var(--bg-color);
 }
 
 .article-card {
  background-color: white;
  border-radius: 5px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
 }
 
 .article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
 }
 
 .article-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
 }
 
 .article-content {
  padding: 2rem;
 }
 
 .article-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--accent-dark);
  margin-bottom: 1rem;
 }
 
 .article-text {
  font-size: 1rem;
  margin-bottom: 0;
 }
.section-title {
  margin-bottom: 30px;
}
/* Стилі для блоку "Миссия проекта" */
.mission-section {
  background-color: white;
 }
 
 .mission-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
 }
 
 .mission-content {
  flex: 1;
  padding-right: 2rem;
 }
 
 .mission-image-container {
  flex: 1;
  min-width: 300px;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
 }
 
 .mission-image {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
 }
 
 .mission-image-container:hover .mission-image {
  transform: scale(1.05);
 }
 
 .mission-title {
  margin-bottom: 2rem;
 }
 
 .mission-title strong {
  color: var(--accent-color);
 }
 
 .mission-text {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
 }
 
 /* Стилі для блоку "Почему это актуально" */
 .relevance-section {
  background-color: var(--bg-color);
 }
 
 .relevance-list {
  list-style: none;
  padding-left: 0;
  margin-top: 3rem;
 }
 
 .relevance-item {
  display: flex;
  align-items: flex-start;
  background-color: white;
  padding: 2rem;
  border-radius: 5px;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
 }
 
 .relevance-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
 }
 
 .relevance-icon {
  background-color: var(--accent-color);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  flex-shrink: 0;
 }
 
 .relevance-icon .material-icons {
  font-size: 24px;
 }
 
 .relevance-content {
  flex: 1;
 }
 
 .relevance-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent-dark);
  margin-bottom: 0.5rem;
 }
 
 .relevance-text {
  font-size: 1.05rem;
  margin-bottom: 0;
 }
 
 /* Стилі для блоку "Команда и источники" */
 .team-section {
  background-color: white;
 }
 
 .team-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
 }
 
 .team-content {
  flex: 1;
  padding-right: 2rem;
 }
 
 .team-image-container {
  flex: 1;
  min-width: 300px;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
 }
 
 .team-image {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
 }
 
 .team-image-container:hover .team-image {
  transform: scale(1.05);
 }
 
 .team-text {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
 }
 
 /* Медіа-запити для адаптивності */
 @media (max-width: 991.98px) {
  .mission-content, .team-content {
    padding-right: 0;
    margin-bottom: 2rem;
  }
  
  .mission-container, .team-container {
    flex-direction: column;
  }
  
  .mission-image-container, .team-image-container {
    width: 100%;
  }
 }

 /* Стилі для блоку "Инновационные подходы" */
.approaches-section {
  background-color: var(--bg-color);
 }
 
 .approaches-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
 }
 
 .approaches-content {
  flex: 1;
  min-width: 300px;
 }
 
 .approaches-image-container {
  flex: 1;
  min-width: 300px;
  padding-left: 2rem;
  position: relative;
 }
 
 .approaches-image {
  width: 100%;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
 }
 
 .approaches-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
 }
 
 .benefits-list {
  list-style: none;
  padding-left: 0;
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
 }
 
 .benefit-item {
  flex: 1 0 45%;
  min-width: 200px;
  margin-right: 5%;
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
 }
 
 .benefit-item::before {
  content: '\e876'; /* Material Icons check */
  font-family: 'Material Icons';
  margin-right: 0.8rem;
  color: var(--accent-color);
 }
 
 /* Стилі для блоку "Цифровизация" */
 .digitalization-section {
  background-color: white;
 }
 
 .digitalization-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
 }
 
 .digitalization-content {
  flex: 1;
  min-width: 300px;
  order: 2;
  padding-left: 2rem;
 }
 
 .digitalization-image-container {
  flex: 1;
  min-width: 300px;
  order: 1;
  position: relative;
 }
 
 .digitalization-image {
  width: 100%;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
 }
 
 .digitalization-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
 }
 
 .application-list {
  list-style: none;
  padding-left: 0;
  margin-top: 2rem;
 }
 
 .application-item {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
 }
 
 .application-item::before {
  content: '\e037'; /* Material Icons play_circle_filled */
  font-family: 'Material Icons';
  margin-right: 0.8rem;
  color: var(--accent-color);
 }
 
 /* Стилі для блоку "Автоматизация процессов" */
 .automation-section {
  background-color: var(--bg-color);
 }
 
 .automation-content {
  background-color: white;
  border-radius: 5px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
 }

 .automation-title {
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
 }
 
 .automation-text {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
 }
 
 /* Медіа-запити для адаптивності */
 @media (max-width: 991.98px) {
  .approaches-container, .digitalization-container {
    flex-direction: column;
  }
  
  .approaches-image-container, .digitalization-content {
    padding-left: 0;
    margin-top: 2rem;
  }
  
  .digitalization-content {
    order: 2;
  }
  
  .digitalization-image-container {
    order: 1;
  }
  
  .benefit-item {
    flex: 1 0 100%;
    margin-right: 0;
  }
  
  .automation-content {
    padding: 2rem;
  }
 }
/* Стилі для блоку "Энергоэффективные решения" */
.energy-section {
  background-color: white;
 }
 
 .energy-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
 }
 
 .energy-content {
  flex: 1;
  min-width: 300px;
 }
 
 .energy-image-container {
  flex: 1;
  min-width: 300px;
  padding-left: 2rem;
  position: relative;
 }
 
 .energy-image {
  width: 100%;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease;
 }
 
 .energy-image:hover {
  transform: scale(1.03);
 }
 
 .energy-text {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
 }
 
 .energy-text strong {
  color: var(--accent-dark);
  font-weight: 600;
 }
 
 /* Стилі для блоку "Экологичные материалы" */
 .eco-materials-section {
  background-color: var(--bg-color);
 }
 
 .eco-card {
  background-color: white;
  border-radius: 5px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
 }
 
 .eco-card:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
 }
 
 .eco-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background-color: rgba(97, 87, 67, 0.05);
  border-radius: 0 0 0 100px;
 }
 
 .eco-text {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
 }
 
 .eco-text strong {
  color: var(--accent-color);
  font-weight: 600;
 }
 
 /* Стилі для блоку "Примеры из Казахстана" */
 .examples-section {
  background-color: white;
 }
 
 .example-card {
  background-color: white;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
  transition: all 0.3s ease;
 }
 
 .example-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
 }
 
 .example-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
 }
 
 .example-content {
  padding: 2rem;
 }
 
 .example-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--accent-dark);
  margin-bottom: 1rem;
 }
 
 .example-title strong {
  color: var(--accent-color);
 }
 
 .example-text {
  font-size: 1.05rem;
  margin-bottom: 0;
 }
 
 /* Медіа-запити для адаптивності */
 @media (max-width: 991.98px) {
  .energy-container {
    flex-direction: column;
  }
  
  .energy-image-container {
    padding-left: 0;
    margin-top: 2rem;
    width: 100%;
  }
  
  .eco-card {
    padding: 2rem;
  }
 }
 /* Стилі для блоку "Контактная информация" */
.contact-section {
  background-color: var(--bg-color);
 }
 
 .contact-info-container {
  background-color: white;
  border-radius: 5px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
 }
 
 .contact-intro {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
 }
 
 .contact-details {
  display: inline-block;
  text-align: left;
  margin-top: 1rem;
 }
 
 .contact-item {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
 }
 
 .contact-icon {
  color: var(--accent-color);
  margin-right: 1rem;
  flex-shrink: 0;
 }
 
 .contact-text {
  font-size: 1.05rem;
 }
 
 .contact-text strong {
  color: var(--accent-dark);
  font-weight: 600;
 }
 
 /* Стилі для блоку "Форма обратной связи" */
 .feedback-section {
  background-color: white;
 }
 
 .feedback-container {
  background-color: var(--bg-color);
  border-radius: 5px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
 }
 
 .feedback-title {
  font-size: 2rem;
  color: var(--accent-dark);
  margin-bottom: 1rem;
  text-align: center;
 }
 
 .feedback-subtitle {
  font-size: 1.1rem;
  color: var(--text-color);
  margin-bottom: 2rem;
  text-align: center;
 }
 
 .form-floating {
  margin-bottom: 1.5rem;
 }
 
 .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem rgba(97, 87, 67, 0.25);
 }
 
 .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
 }
 
 .btn-primary:hover,
 .btn-primary:focus {
  background-color: var(--accent-dark);
  border-color: var(--accent-dark);
 }
 
 /* Стилі для блоку "Время ответа и расположение" */
 .schedule-section {
  background-color: var(--bg-color);
 }
 
 .schedule-container {
  background-color: white;
  border-radius: 5px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
 }
 
 .schedule-text {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
 }
 
 .schedule-details {
  margin-bottom: 2rem;
 }
 
 .schedule-item {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: flex-start;
 }
 
 .schedule-icon {
  color: var(--accent-color);
  margin-right: 1rem;
  flex-shrink: 0;
 }
 
 .schedule-info {
  font-size: 1.05rem;
 }
 
 .schedule-info strong {
  color: var(--accent-dark);
  font-weight: 600;
 }
 
 .map-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  overflow: hidden;
  border-radius: 5px;
 }
 
 .map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
 }
 
 /* Медіа-запити для адаптивності */
 @media (max-width: 767.98px) {
  .contact-info-container,
  .feedback-container,
  .schedule-container {
    padding: 2rem;
  }
  
  .feedback-title {
    font-size: 1.75rem;
  }
 }
 /* Стилі для блоку "FAQ — Часто задаваемые вопросы" */
.faq-section {
  background-color: white;
 }
 
 .accordion-container {
  max-width: 900px;
  margin: 0 auto;
 }
 
 .accordion-item {
  border: none;
  background-color: transparent;
  margin-bottom: 1rem;
 }
 
 .accordion-header {
  background-color: transparent;
 }
 
 .accordion-button {
  background-color: var(--bg-color);
  color: var(--accent-dark);
  font-size: 1.2rem;
  font-weight: 600;
  padding: 1.5rem;
  border-radius: 5px !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
 }
 
 .accordion-button:not(.collapsed) {
  background-color: var(--accent-color);
  color: white;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
 }
 
 .accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(97, 87, 67, 0.25);
 }
 
 .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23615743'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
 }
 
 .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
 }
 
 .accordion-body {
  padding: 1.5rem;
  font-size: 1.1rem;
  background-color: white;
  border-radius: 0 0 5px 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
 }
 
 .accordion-body strong {
  color: var(--accent-color);
 }
 
 .accordion-question-number {
  color: var(--accent-color);
  margin-right: 0.5rem;
 }
 
 /* Адаптивність */
 @media (max-width: 767.98px) {
  .accordion-button {
    font-size: 1.1rem;
    padding: 1.25rem;
  }
  
  .accordion-body {
    padding: 1.25rem;
    font-size: 1rem;
  }
 }

/* Стилі для секції "О нас" (головний екран) */
#contact-hero {
  position: relative;
  background-color: var(--accent-dark);
  overflow: hidden;
 }
 
 #contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--accent-dark) 0%, var(--accent-color) 100%);
  opacity: 0.95;
  z-index: 1;
 }
 
 .contact-hero-wrapper {
  position: relative;
  z-index: 2;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
 }
 
 .contact-hero-content {
  padding: 5rem 1rem;
 }
 
 #contact-hero h1 {
  color: white;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
 }

 /* Адаптивність */
 @media (max-width: 767.98px) {
  #contact-hero h1 {
    font-size: 2.5rem;
  }
  
  .contact-hero-content {
    padding: 4rem 1rem;
  }
 }
 
 @media (max-width: 575.98px) {
  #contact-hero h1 {
    font-size: 2rem;
  }
  
  .contact-hero-content {
    padding: 3rem 1rem;
  }
  
  #contact-hero h1::after {
    width: 60px;
  }
 }
 /* Футер */
 .footer {
  background-color: var(--footer-bg);
  color: var(--footer-text);
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, var(--accent-color), var(--code-green));
  z-index: 1;
}

.footer-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  background-image: 
      linear-gradient(var(--code-green) 1px, transparent 1px),
      linear-gradient(90deg, var(--code-green) 1px, transparent 1px);
  background-size: 30px 30px;
  z-index: 0;
}

.footer-brand {
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.footer-brand a {
  text-decoration: none;
}

.footer-brand p {
  font-size: 2rem;
  font-weight: 700;
  color: var(--footer-text);
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}

.footer-brand p::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--code-green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.footer-brand:hover p::after {
  transform: scaleX(1);
}

.footer-links {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.footer-link {
  color: var(--footer-link);
  text-decoration: none;
  margin-bottom: 1rem;
  transition: color 0.3s, transform 0.3s;
  display: inline-block;
  position: relative;
}

.footer-link::before {
  content: ">";
  position: absolute;
  left: -15px;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  transform: translateX(-5px);
}

.footer-link:hover {
  color: var(--footer-link-hover);
  transform: translateX(10px);
}

.footer-link:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-contact {
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  color: var(--footer-link);
}

.footer-contact-item i {
  margin-right: 0.5rem;
  color: var(--code-green);
}

.footer-legal {
  margin-top: 1.5rem;
  position: relative;
  z-index: 1;
}

.footer-legal p {
  margin-bottom: 0.5rem;
}

.footer-code-decoration {
  position: absolute;
  font-family: monospace;
  color: var(--footer-text);
  opacity: 0.05;
  z-index: 0;
  font-size: 0.8rem;
}

.footer-code-decoration.bottom-right {
  bottom: 2rem;
  right: 2rem;
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
  color: var(--footer-link);
  font-size: 0.9rem;
}

.copyright a {
  color: var(--code-green);
  text-decoration: none;
}

@media (max-width: 767.98px) {
  .footer-brand, .footer-links, .footer-contact {
      text-align: center;
  }
  
  .footer-links {
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
  }
  
  .footer-link {
      margin: 0 0.5rem;
  }
  
  .footer-contact-item {
      justify-content: center;
  }
  
  .footer-legal {
      text-align: center;
  }
  
  .footer-code-decoration {
      display: none;
  }
}