:root {
  --bg-color: #202020;
  --text-color: #e6e6e6;
  --accent-color-1: #c8a158;
  --accent-color-2: #ff9e54;
  --primary-color: #b16219;
  --white: #ffffff;
  --dark: #333333;
  --light-gray: #f8f9fa;
  --border-color: #e0e0e0;
  --card-bg: rgba(65, 25, 25, 0.7);
  --section-spacing: 6rem;
  --element-spacing: 2rem;
  --transition: all 0.3s ease;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  background: #202020;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  color: #e6e6e6;
}
h1, h2, h3, h4, h5, h6 {
   font-family: "Mulish", sans-serif;
}

hr {
  height: 0;
  color: #eee;
  border: 1px solid #eee;
  margin: 2em 0 1em;
}
.container {
  max-width: 990px;
  padding: 0 15px;
  margin: 0 auto;
}
.form-group {
  margin-bottom: 15px;
  position: relative;
}
.input-text {
  display: block;
  width: 100%;
  height: 40px;
  padding: 0 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}
.input-subscribe {
  padding-right: 100px;
}
.btn-subscribe {
  color: #fff;
  background-color: #b18919;
  border-color: #b18919;
  cursor: pointer;
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  right: 0;
  padding: 0 10px;
  border: none;
  border-bottom-right-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.header {
  background-color: #292929;
  padding: 30px 0;
  position: relative;
  border-bottom: #b18919;

}
.header__row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.header__logo a {
  color: #000000;
  font-size: 160%;
  font-weight: 700;
  text-decoration: none;
  color: #f9f9f9;
}
.nav {
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin: 0;
}
.nav > li {
  margin-right: 30px;
}
.nav > li:last-child {
  margin-right: 0;
}
.nav > li > a {
  text-decoration: none;
  color: #b1b1b1;

}
.main {
  padding: 40px 0;
}


.btn-primary {
  display: inline-block;
  padding: 15px 30px;
  background-color: #0088c7;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  font-size: 110%;
  transition: background-color 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 136, 199, 0.3);
}

.btn-primary:hover {
  background-color: #006699;
  box-shadow: 0 5px 15px rgba(0, 136, 199, 0.4);
}


@media (max-width: 990px) {
  .container {
    max-width: 768px;
  }
}
@media (min-width: 769px) {
  .btn__open-nav {
    display: none;
  }
}
@media (max-width: 768px) {

  .btn__open-nav {
    display: block;
    border: none;
    background: none;
    width: 40px;
  }
  .btn__open-nav span {
    display: block;
    background-color: #fff;
    width: 100%;
    height: 5px;
    margin-bottom: 6px;
  }
  .btn__open-nav span:last-child {
    margin-bottom: 0;
  }
  .nav {
    position: absolute;
    left: 0px;
    right: 0px;
    top: 100%;
    z-index: 1;
    flex-direction: row;
    flex-wrap: wrap;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 11;
    display: none;
  }
  .nav.open {
    display: block;
  }
  .nav > li {
    width: 100%;
    padding: 0;
    margin: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
  }
  .nav > li > a {
    display: block;
    padding: 15px 15px;
  }
  
  .contact-section {
    padding: 30px 0;
  }
  .contact-section__row {
    flex-wrap: wrap;
    margin: 0 -15px -30px;
  }
  .contact-section__col {
    width: 100%;
    padding: 0 15px 30px;
  }
  .subscribe-form h3 {
    text-align: center;
  }

  .features__row {
    margin: 0 -15px -20px;
  }

  
  .icon-placeholder {
    font-size: 2.5rem;
  }
  
  .feature-item__content h3 {
    font-size: 120%;
  }
}
/* Cookie Popup styles */
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 20px;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.cookie-popup.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.cookie-popup-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.cookie-popup-text {
  flex: 1;
  color: #ffffff;
}

.cookie-popup-text h4 {
  margin: 0 0 10px 0;
  font-size: 120%;
  font-weight: 600;
  color: #ffffff;
}

.cookie-popup-text p {
  margin: 0;
  line-height: 1.5;
  font-size: 95%;
  color: #e0e0e0;
}

.cookie-popup-text a {
  color: #4fc3f7;
  text-decoration: underline;
}

.cookie-popup-text a:hover {
  color: #29b6f6;
  text-decoration: none;
}

.cookie-popup-actions {
  display: flex;
  gap: 15px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 95%;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 120px;
}

.cookie-btn-accept {
  background-color: #b18919;
  color: #ffffff;
}

.cookie-btn-accept:hover {
  background-color: #3535d1;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(66, 66, 234, 0.4);
}

.cookie-btn-reject {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #666666;
}

.cookie-btn-reject:hover {
  background-color: #666666;
  border-color: #888888;
  transform: translateY(-2px);
}

/* Mobile adaptation for cookie popup */
@media (max-width: 768px) {
  .cookie-popup {
    padding: 15px;
  }
  
  .cookie-popup-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .cookie-popup-text h4 {
    font-size: 110%;
  }
  
  .cookie-popup-text p {
    font-size: 90%;
  }
  
  .cookie-popup-actions {
    width: 100%;
    justify-content: center;
    gap: 10px;
  }
  
  .cookie-btn {
    flex: 1;
    min-width: 100px;
    padding: 10px 20px;
    font-size: 90%;
  }
}

@media (max-width: 480px) {
  .cookie-popup-actions {
    flex-direction: column;
    gap: 10px;
  }
  
  .cookie-btn {
    width: 100%;
  }
}

/* Thank You Page styles */
.thank-you-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.thank-you-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  padding: 3rem 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.thank-you-icon {
  margin-bottom: 2rem;
}

.thank-you-icon i {
  font-size: 4rem;
  color: #4caf50;
  background: rgba(76, 175, 80, 0.1);
  padding: 1rem;
  border-radius: 50%;
  display: inline-block;
}

.thank-you-content h1 {
  color: var(--dark);
  margin-bottom: 1.5rem;
  font-size: 2.2rem;
  font-weight: 700;
}

.thank-you-content p {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.thank-you-content p:last-of-type {
  margin-bottom: 2.5rem;
}

.thank-you-actions .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  text-decoration: none;
  background: #292929;
  color: var(--white);
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(66, 66, 234, 0.3);
}

.thank-you-actions .btn-primary:hover {
  background: #3545d1;
  transform: translateY(-3px);
  color: var(--white);
}

.thank-you-actions .btn-primary i {
  font-size: 1.2rem;
}

/* Mobile adaptation for thank you page */
@media (max-width: 768px) {
  .thank-you-section {
    padding: 4rem 0;
  }
  
  .thank-you-content {
    padding: 2rem 1.5rem;
    margin: 0 1rem;
  }
  
  .thank-you-content h1 {
    font-size: 1.8rem;
  }
  
  .thank-you-content p {
    font-size: 1rem;
  }
  
  .thank-you-icon i {
    font-size: 3rem;
    padding: 0.8rem;
  }
}

@media (max-width: 480px) {
  .thank-you-content {
    padding: 1.5rem 1rem;
  }
  
  .thank-you-content h1 {
    font-size: 1.6rem;
  }
  
  .thank-you-actions .btn-primary {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
}

/*# sourceMappingURL=styles.css.map*/


/* Стили для футера */
.footer-section {
  background-color: #f5f5f5;
  color: #333333;
  padding: 4rem 0 2rem;
  position: relative;
}

.footer-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-color-1), var(--accent-color-2));
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-col {
  position: relative;
}

.footer-logo {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color-2);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--accent-color-1), var(--accent-color-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
}

.footer-title {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: #202020;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--accent-color-1);
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin-bottom: 0.75rem;
}

.footer-nav a {
  color: #555555;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  padding-left: 0;
}

.footer-nav a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color-2);
  transition: var(--transition);
}

.footer-nav a:hover {
  color: var(--accent-color-2);
  padding-left: 5px;
}

.footer-nav a:hover::before {
  width: 100%;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.footer-contact-item .material-icons {
  color: var(--accent-color-1);
  margin-right: 0.75rem;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.footer-legal {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 1.5rem;
}

.footer-legal .footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-legal .footer-nav li {
  margin-bottom: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  color: #777777;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-legal .footer-nav {
    flex-direction: column;
    gap: 0.75rem;
  }
}

/* Стилі для головного екрану сторінки "О нас" */
.about-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background-color: var(--bg-color);
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/hero-bg-2.webp');
  background-size: cover;
  background-position: center;
  filter: brightness(0.3);
  z-index: 0;
}

.about-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, var(--bg-color), transparent);
  z-index: 1;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 3rem 2rem;
  border-left: 5px solid var(--accent-color-1);
}

.about-hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--white);
  line-height: 1.1;
  opacity: 0.9;
}

.about-hero-subtitle {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--accent-color-1);
  font-weight: 600;
}

.about-hero-description {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-color);
  max-width: 800px;
}

.about-page-title {
  position: absolute;
  top: 3rem;
  left: 3rem;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-color-1);
  font-weight: 600;
  padding: 0.5rem 1rem;
  border: 2px solid var(--accent-color-1);
  z-index: 2;
}

.about-hero-divider {
  width: 150px;
  height: 3px;
  background-color: var(--accent-color-1);
  margin: 1.5rem 0 2rem;
}

/* Анімація для заголовка */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-hero-title {
  animation: fadeInUp 0.8s ease-out forwards;
}

.about-hero-subtitle {
  animation: fadeInUp 0.8s ease-out 0.3s forwards;
  opacity: 0;
  transform: translateY(20px);
}

.about-hero-divider {
  animation: fadeInUp 0.8s ease-out 0.5s forwards;
  opacity: 0;
  transform: translateY(20px);
}

.about-hero-description {
  animation: fadeInUp 0.8s ease-out 0.7s forwards;
  opacity: 0;
  transform: translateY(20px);
}

/* Медіазапити для адаптивності */
@media (max-width: 992px) {
  .about-hero-title {
    font-size: 3.5rem;
  }
  
  .about-hero-subtitle {
    font-size: 2rem;
  }
  
  .about-page-title {
    top: 2rem;
    left: 2rem;
  }
}

@media (max-width: 768px) {
  .about-hero-title {
    font-size: 2.8rem;
  }
  
  .about-hero-subtitle {
    font-size: 1.8rem;
  }
  
  .about-hero-description {
    font-size: 1.1rem;
  }
  
  .about-hero-content {
    padding: 2.5rem 1.5rem;
  }
  
  .about-page-title {
    font-size: 1rem;
    top: 1.5rem;
    left: 1.5rem;
  }
}

@media (max-width: 576px) {
  .about-hero-title {
    font-size: 2.2rem;
  }
  
  .about-hero-subtitle {
    font-size: 1.5rem;
  }
  
  .about-hero-description {
    font-size: 1rem;
  }
  
  .about-hero-content {
    padding: 2rem 1rem;
  }
  
  .about-page-title {
    font-size: 0.9rem;
    top: 1rem;
    left: 1rem;
    padding: 0.4rem 0.8rem;
  }
  
  .about-hero-divider {
    width: 100px;
    margin: 1rem 0 1.5rem;
  }
}

@media (max-width: 400px) {
  .about-hero-title {
    font-size: 1.8rem;
  }
  
  .about-hero-subtitle {
    font-size: 1.3rem;
  }
}

/* new styles  */
/* Загальні стилі */
:root {
  --bg-color: #202020;
  --text-color: #e6e6e6;
  --accent-color-1: #c8a158;
  --accent-color-2: #ff9e54;
  --primary-color: #b16219;
  --white: #ffffff;
  --dark: #333333;
  --light-gray: #f8f9fa;
  --border-color: #e0e0e0;
  --card-bg: rgba(65, 25, 25, 0.7);
  --section-spacing: 6rem;
  --element-spacing: 2rem;
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Arial', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
}

/* Утилітарні класи */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.accent-text {
  color: var(--accent-color-1);
}

.vertical-line {
  width: 3px;
  height: 100px;
  background-color: var(--accent-color-1);
  margin-bottom: 2rem;
}

/* Стилі для главної секції */
.hero-section {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.4);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(32, 32, 32, 0.85) 0%, rgba(32, 32, 32, 0.6) 50%, rgba(32, 32, 32, 0.3) 100%);
  z-index: -1;
}

.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 8%;
  max-width: 650px;
  z-index: 1;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  position: relative;
}

.hero-title::after {
  content: '';
  display: block;
  width: 100px;
  height: 3px;
  background-color: var(--accent-color-1);
  margin: 1.5rem 0;
}

.hero-subtitle {
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: var(--accent-color-2);
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  line-height: 1.8;
}

.about-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border: 1px solid var(--accent-color-1);
  color: var(--accent-color-1);
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 1px;
  margin-bottom: 2rem;
  transition: var(--transition);
}

.about-badge:hover {
  background-color: var(--accent-color-1);
  color: var(--dark);
}

/* Медіа запити для адаптивності */
@media (max-width: 768px) {
  .hero-content {
    padding-left: 5%;
    max-width: 90%;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .vertical-line {
    height: 70px;
  }
}
/* Стилі для блоку "Добро пожаловать" */
.welcome-section {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.welcome-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.5);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background-color: var(--accent-color-1);
  margin: 1rem 0;
}

.section-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.8;
  max-width: 800px;
}

.content-box {
  background-color: rgba(32, 32, 32, 0.8);
  padding: 3rem;
  border-left: 3px solid var(--accent-color-1);
  max-width: 600px;
}

/* Стилі для блоку "Популярные стили" */
.styles-section {
  padding: var(--section-spacing) 0;
  background-color: var(--bg-color);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.styles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.style-card {
  border: 1px solid var(--border-color);
  border-radius: 5px;
  overflow: hidden;
  transition: var(--transition);
}

.style-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.style-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.card-content {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--accent-color-2);
}

.card-text {
  font-size: 1rem;
  line-height: 1.6;
}

/* Стилі для блоку "Последние тренды" */
.trends-section {
  padding: var(--section-spacing) 0;
  background-color: rgba(32, 32, 32, 0.9);
}

.trends-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  align-items: center;
}

.trends-content {
  padding-right: 2rem;
}

.trends-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.trend-image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 5px;
  transition: var(--transition);
}

.trend-image:hover {
  transform: scale(1.05);
}

/* Стилі для блоку "Планировка и зонирование" */
.planning-section {
  padding: var(--section-spacing) 0;
  background-color: var(--bg-color);
}

.planning-container {
  max-width: 800px;
  margin: 0 auto;
  border-left: 3px solid var(--accent-color-1);
  padding-left: 2rem;
}

/* Стилі для блоку "Цветовые решения" */
.colors-section {
  padding: var(--section-spacing) 0;
  background-color: rgba(32, 32, 32, 0.9);
}

.color-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.color-block {
  display: flex;
  flex-direction: column;
}

.color-icon {
  color: var(--accent-color-1);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.color-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--accent-color-2);
}

/* Медіа запити для адаптивності */
@media (max-width: 992px) {
  .trends-container {
    grid-template-columns: 1fr;
  }
  
  .trends-content {
    padding-right: 0;
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  
  .content-box {
    padding: 2rem;
    max-width: 100%;
  }
  
  .color-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .styles-grid {
    grid-template-columns: 1fr;
  }
  
  .trends-images {
    grid-template-columns: 1fr;
  }
}
/* Стилі для блоку "Освещение в интерьере" */
.lighting-section {
  padding: var(--section-spacing) 0;
  background-color: var(--bg-color);
}

.lighting-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.icon-list {
  margin-top: 2rem;
}

.icon-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.icon-item .material-icons {
  color: var(--accent-color-1);
  font-size: 1.5rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.icon-content h4 {
  font-size: 1.1rem;
  color: var(--accent-color-2);
  margin-bottom: 0.5rem;
}

.icon-content p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Стилі для блоку "Бюджетные решения" */
.budget-section {
  padding: var(--section-spacing) 0;
  background-color: rgba(32, 32, 32, 0.9);
}

.budget-container {
  max-width: 800px;
  margin: 0 auto;
  border-left: 3px solid var(--accent-color-1);
  padding-left: 2rem;
}

.budget-tips {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.tip-card {
  background-color: rgba(200, 161, 88, 0.1);
  padding: 1.5rem;
  border-radius: 5px;
  transition: var(--transition);
}

.tip-card:hover {
  transform: translateY(-5px);
  background-color: rgba(200, 161, 88, 0.15);
}

/* Стилі для блоку "О компании" */
.about-section {
  padding: var(--section-spacing) 0;
  background-color: var(--bg-color);
}

.about-container {
  max-width: 800px;
  margin: 0 auto;
}

.highlight-text {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--accent-color-2);
  margin-bottom: 1.5rem;
  font-style: italic;
}

/* Стилі для блоку "Наша философия" */
.philosophy-section {
  padding: var(--section-spacing) 0;
  background-color: rgba(32, 32, 32, 0.9);
}

.philosophy-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.philosophy-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Стилі для блоку "Почему мы" */
.why-us-section {
  padding: var(--section-spacing) 0;
  background-color: var(--bg-color);
}

.advantages-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.advantage-card {
  padding: 2rem;
  border-top: 3px solid var(--accent-color-1);
  background-color: rgba(32, 32, 32, 0.5);
  transition: var(--transition);
}

.advantage-card:hover {
  transform: translateY(-10px);
  background-color: rgba(32, 32, 32, 0.8);
}

.advantage-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-color-1);
  opacity: 0.3;
  margin-bottom: 1rem;
}

.advantage-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--accent-color-2);
}

/* Додаткові медіа запити для адаптивності */
@media (max-width: 992px) {
  .lighting-container,
  .philosophy-container {
    grid-template-columns: 1fr;
  }
  
  .advantages-container {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 576px) {
  .icon-item {
    flex-direction: column;
  }
  
  .icon-item .material-icons {
    margin-bottom: 0.5rem;
  }
  
  .budget-container,
  .planning-container {
    padding-left: 1rem;
  }
  
  .advantage-card {
    padding: 1.5rem;
  }
}
/* Стилі для блоку "Услуги" */
.services-section {
  padding: var(--section-spacing) 0;
  background-color: rgba(32, 32, 32, 0.9);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.service-card {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition);
}

.service-card:hover .service-image {
  transform: scale(1.05);
}

.service-content {
  padding: 1.5rem;
  background-color: var(--bg-color);
  border-top: 3px solid var(--accent-color-1);
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--accent-color-2);
}

.service-description {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-link {
  display: inline-block;
  color: var(--accent-color-1);
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
}

.service-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color-1);
  transition: var(--transition);
}

.service-link:hover::after {
  width: 100%;
}

/* Стилі для блоку "Особенности" */
.features-section {
  padding: var(--section-spacing) 0;
  background-color: var(--bg-color);
}

.features-container {
  max-width: 900px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.feature-card {
  position: relative;
  padding: 2rem;
  border-left: 3px solid var(--accent-color-1);
  background-color: rgba(32, 32, 32, 0.5);
  transition: var(--transition);
}

.feature-card:hover {
  background-color: rgba(32, 32, 32, 0.8);
  transform: translateX(5px);
}

.feature-icon {
  color: var(--accent-color-1);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.feature-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--accent-color-2);
}

/* Медіа запити для адаптивності */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .service-image {
    height: 200px;
  }
}
/* Стилі для блоку "ПОРТФОЛИО" */
.portfolio-section {
  padding: var(--section-spacing) 0;
  background-color: rgba(32, 32, 32, 0.9);
}

.portfolio-category {
  margin-bottom: 5rem;
}

.portfolio-category:last-child {
  margin-bottom: 0;
}

.category-header {
  margin-bottom: 3rem;
}

.category-title {
  font-size: 2.2rem;
  color: var(--accent-color-2);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.category-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 70%;
  height: 2px;
  background-color: var(--accent-color-1);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
  transition: var(--transition);
}

.gallery-item:hover {
  transform: translateY(-10px);
}

.gallery-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover .gallery-image {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.3));
}

.gallery-title {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.gallery-description {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
}

.gallery-item:hover .gallery-description {
  max-height: 100px;
  opacity: 1;
  margin-top: 0.5rem;
}

.view-more {
  display: inline-block;
  margin-top: 2.5rem;
  padding: 0.8rem 2rem;
  background-color: transparent;
  border: 2px solid var(--accent-color-1);
  color: var(--accent-color-1);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
}

.view-more:hover {
  background-color: var(--accent-color-1);
  color: var(--dark);
}

/* Медіа запити для адаптивності */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-image {
    height: 300px;
  }
  
  .gallery-description {
    max-height: 100px;
    opacity: 1;
    margin-top: 0.5rem;
  }
}
/* Стилі для блоку "Контактная информация" */
.contact-section {
  padding: var(--section-spacing) 0;
  background-color: var(--bg-color);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info {
  padding-right: 2rem;
}

.contact-details {
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-icon {
  color: var(--accent-color-1);
  font-size: 1.5rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.contact-content h4 {
  font-size: 1.1rem;
  color: var(--accent-color-2);
  margin-bottom: 0.5rem;
}

.contact-content p, 
.contact-content a {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-color);
  text-decoration: none;
  transition: var(--transition);
}

.contact-content a:hover {
  color: var(--accent-color-1);
}

.working-hours {
  margin-top: 2.5rem;
  border-left: 3px solid var(--accent-color-1);
  padding-left: 1.5rem;
}

.working-hours h4 {
  font-size: 1.2rem;
  color: var(--accent-color-2);
  margin-bottom: 1rem;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.map-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 75%; /* Соотношение сторон карты 4:3 */
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Стилі для форми */
.form-section {
  padding: var(--section-spacing) 0;
  background-color: rgba(32, 32, 32, 0.9);
}

.feedback-form {
  max-width: 800px;
  margin: 0 auto;
  padding: 2.5rem;
  background-color: var(--bg-color);
  border-radius: 5px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border-top: 3px solid var(--accent-color-1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-row .form-group {
  margin-bottom: 0;
}

.form-label {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  color: var(--accent-color-2);
}

.form-input {
  width: 100%;
  padding: 0.8rem 1rem;
  font-size: 1rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  color: var(--text-color);
  transition: var(--transition);
}

.form-input:focus {
  outline: none;
  border-color: var(--accent-color-1);
  background-color: rgba(255, 255, 255, 0.1);
}

.form-textarea {
  height: 150px;
  resize: vertical;
}

.error-message {
  display: none;
  font-size: 0.8rem;
  color: #e74c3c;
  margin-top: 0.5rem;
}

.form-submit {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: var(--accent-color-1);
  border: none;
  border-radius: 4px;
  color: var(--dark);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.form-submit:hover {
  background-color: var(--accent-color-2);
  transform: translateY(-3px);
}

/* Медіа запити для адаптивності */
@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .contact-info {
    padding-right: 0;
    margin-bottom: 2rem;
  }
  
  .map-container {
    padding-bottom: 60%;
  }
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .feedback-form {
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  .hours-item {
    flex-direction: column;
    margin-bottom: 1rem;
  }
}