/*
Theme Name: Astra Child
Template: astra
Version: 1.0.0
Text Domain: astra-child
*/

/*=======================================================шапка*/
.site-header {
	 position: fixed !important;       
    top: 0 !important;                 
    left: 0 !important;                
    width: 100% !important;            
    z-index: 9999 !important;         
    background-color: rgba(0, 0, 0, 0.2) !important; 
    box-shadow: 0 2px 5px rgba(0,0,0,0.1) !important;
    backdrop-filter: blur(5px);        
	}
body {
  padding-top: 20px; 
}

/*====================================прозрачное мобильное меню*/
.main-navigation {
opacity: 0.99;
}

.ast-builder-menu-mobile li a {
  display: block;
  color: #fff !important;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.7); /* легка тінь */
  font-weight: 500;
  padding: 10px 0;
  transition: all 0.3s ease;
}

.ast-builder-menu-mobile{
	opacity: 0.9;
}
.ast-builder-menu-mobile:hover{
	opacity: 0.99;
}

.ast-builder-menu-mobile li,
.ast-builder-menu-mobile li a {
  border: none !important;
	text-align: right;
}

.ast-builder-menu-mobile {
   position: fixed !important;
	  top: 70px;
  right: 0px;
  height: 100vh;
  min-width: 240px;      
  max-width: 240px;
  padding: 20px 20px;
  transition: transform 0.3s ease;
 z-index: 9999 !important;
}

.ast-mobile-popup-drawer.active .ast-builder-menu-mobile {
  transform: translateX(0) !important;
}

.ast-builder-menu-mobile .menu-item a {
  color: #fff !important;
  font-size: 16px;
  padding: 12px 0;
  display: block;
  transition: color 0.3s ease;
}

.ast-builder-menu-mobile .menu-item a:hover {
  color: #ffd27f !important;
}

.ast-mobile-popup-drawer.active .menu-toggle-close {
  background: rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 8px;
  right: 15px;
  top: 15px;
}

/* =================================================главная*/
/*hero-блок----------------------------------------------*/
.glass-repair {
  position: relative;
  width: 100%;
  height: 50vh; /* ✅ половина висоти екрану */
  min-height: 400px; /* мінімум для ноутбуків */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #fff;
  padding: 80px 60px;
  box-sizing: border-box;
}

/* Фонове зображення */
.glass-repair .background-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(45%);
  z-index: 1;
}

/* Контейнер з текстом */
.glass-repair .overlay {
	padding: 40px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column; 
  align-items: flex-start;
  gap: 20px;
  max-width: 800px;
  text-align: left;
}

/* Заголовок */
.glass-repair h1 {
  color: #B19540;
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
  margin: 0;
}

/* Опис */
.glass-repair h2 {
  color: #FFFFFF;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
}

/* Кнопка */
.btn-diagnostic {
  display: inline-block;
  border: 2px solid #B19540;
  background: transparent;
  color: #B19540;
  font-weight: 600;
  padding: 14px 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.btn-diagnostic:hover {
  background-color: #B19540;
  color: #fff;
  transform: scale(1.05);
}

/* ===== 📱 Планшети */
@media (max-width: 1024px) {
  .glass-repair {
    height: 45vh;
    min-height: 350px;
    padding: 60px 40px;
  }

  .glass-repair h1 {
    font-size: 34px;
  }

  .glass-repair h2 {
    font-size: 18px;
  }

  .btn-diagnostic {
    padding: 12px 24px;
    font-size: 14px;
  }
}

/* ===== 📱 Мобільні */
@media (max-width: 768px) {
  .glass-repair {
	width:100%;
    height: auto;
    min-height: 280px;
    padding: 20px 20px;
  }

  .glass-repair .overlay {
    gap: 15px;
	width: 100%;
	  padding:5px;
  }

  .glass-repair h1 {
    font-size: 18px;
  }

  .glass-repair h2 {
    font-size: 14px;
  }

  .btn-diagnostic {
    font-size: 10px;
    padding: 10px 20px;
  }
}


/*====================блок опис сайту----------------------------*/
.about-repair {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 85vh;
  color: #fff;
  font-family: "Inter", sans-serif;
  background-color: #000;
  padding: 2rem 1rem;
}

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

.about-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  width: 100%;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 1.5rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}

.about-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: #ffd700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-content p,
.about-content ul {
  line-height: 1.7;
  margin-bottom: 1rem;
  color: #f0f0f0;
}

.about-content ul {
  list-style: disc;
  padding-left: 1.5rem;
}

.about-text {
  margin-top: 1.5rem;
  font-weight: 600;
  text-align: center;
  color: #ffd700;
}


/* 🧩 Адаптивність для планшетів */
@media (max-width: 992px) {
  .about-content {
    padding: 2.5rem 2rem;
  }

  .about-content h2 {
    font-size: 1.8rem;
  }
}

/* 📱 Адаптивність для телефонів */
@media (max-width: 600px) {
  .about-repair {
    min-height: auto;
    padding: 1.5rem 1rem;
  }

  .about-content {
    padding: 1.8rem 1.2rem;
    border-radius: 1rem;
  }

  .about-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .about-content p,
  .about-content ul {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .about-content ul {
    padding-left: 1.2rem;
  }
}

/*==========================блок послуги і ціни-------------------------*/
  .home-services {
  background-color: #0a0a0a;
  color: #fff;
  text-align: center;
  padding: 100px 60px;
  overflow: hidden;
}

.home-services h2 {
  color: #ffd700;
  text-transform: uppercase;
  font-size: 2.2rem;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.home-services-content {
    font-size: 16px;
    margin-bottom: 70px;
}

/* ====== КАРТКИ  */
.home-service-cards {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: nowrap; /* ✅ всі в один ряд */
  gap: 30px;
}

.home-card {
  background: #111;
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 1rem;
  overflow: hidden;
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.home-card:hover {
  transform: translateY(-6px);
  border-color: #ffd700;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.2);
}

/* ====== Зображення  */
.home-img-wrap {
  position: relative;
  overflow: hidden;
  height: 230px;
}

.home-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.home-card:hover .img-wrap img {
  transform: scale(1.05);
}

/* ====== Overlay  */
.home-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
  padding: 0 10px;
}

/* ====== Контент картки  */
.home-card-body {
  padding: 25px 25px 35px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.home-card-body h3 {
  color: #ffd700;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.home-card-body ul {
  list-style: none;
  padding: 0;
  margin: 15px 0 25px;
  text-align: left;
}

.home-card-body ul li {
  margin-bottom: 6px;
  color: #ccc;
  font-size: 0.95rem;
  position: relative;
  padding-left: 12px;
}

.home-card-body ul li::before {
  content: "•";
  color: #ffd700;
  position: absolute;
  left: 0;
}

/* ====== Кнопка  */
.home-btn-gold {
  text-decoration: none;
  color: #000;
  background-color: #ffd700;
  font-weight: 600;
  padding: 10px 25px;
  border-radius: 40px;
  text-transform: uppercase;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  align-self: center;
}

.home-btn-gold:hover {
  background-color: #fff;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

/* ====== Анімація появи  */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.3s; }
.fade-in:nth-child(3) { animation-delay: 0.5s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ====== 📱 Адаптивність */
@media (max-width: 1100px) {
  .home-service-cards {
    flex-wrap: wrap;
  }

  .home-card {
    flex: 1 1 calc(50% - 20px);
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .home-services {
    padding: 60px 20px;
  }

  .home-service-cards {
    flex-direction: column;
    align-items: center;
  }

  .home-card {
    width: 90%;
    max-width: 400px;
  }

  .home-services h2 {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }
}
	/*-===============================-блок шаги------------- */
.steps {
  background-color: #000;
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px;
  font-family: Arial, sans-serif;
  text-align: center;
}
.steps h2 {
     color: #fff;
  font-size: 2em;
  margin-bottom: 40px;
}

.step-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

/* Картки */
.step {
  flex: 1 1 calc(20% - 20px);
  background: #f8f9fa;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.step.show {
  opacity: 1;
  transform: translateY(0);
}

.circle {
  width: 50px;
  height: 50px;
  margin: 0 auto 15px auto;
  background: #007BFF;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2em;
}

/* Заголовок і текст */
.step h3 {
  margin: 0 0 10px 0;
  font-size: 1.2em;
}
.step p {
  font-size: 0.95em;
  color: #333;
}

/* Адаптив */
@media (max-width: 768px) {
  .step-list {
    flex-direction: column;
  }
  .step {
    flex: 1 1 100%;
  }
}
@media (max-width: 768px) {
  .steps {
    display: none !important;
  }
}
/* -===============================блог шаги для мобильних------------*/
.timeline-section {
  background-color: #000;
  max-width: 800px;
  margin: 0 auto;
  padding: 50px 20px;
  font-family: Arial, sans-serif;
}
.timeline-section h2 {
     color: #fff;
  text-align: center;
  font-size: 2em;
  margin-bottom: 50px;
}

/* Лінія */
.timeline {
  position: relative;
  margin: 0;
  padding-left: 30px;
  border-left: 3px solid #ddd;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 40px;
  width: 3px;
  height: 0;
  background: #007BFF;
  transition: height 0.4s ease;
  z-index: 1;
}

/* Крок */
.timeline-step {
  position: relative;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}
.timeline-step.show {
  opacity: 1;
  transform: translateY(0);
}
.timeline-step:last-child {
  margin-bottom: 0;
}

/* Кружки */
.timeline-step .circle {
  position: absolute;
  left: -11px;
  top: 0;
  width: 25px;
  height: 25px;
  background: #ddd;
  border-radius: 50%;
  color: #fff;
  font-size: 0.9em;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.4s;
}
.timeline-step.show .circle {
  background: #007BFF;
}

/* Текст */
.timeline-step .content {
  font-size: 0.9em;
  background: #f8f9fa;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.timeline-step h3 {
  margin: 0 0 10px 0;
  font-size: 1.2em;
}
.timeline-step p {
  margin: 0;
  font-size: 0.95em;
}
@media (min-width: 769px) {
  .timeline-section {
    display: none !important;
  }
}
/* ========================блок почему мы ================================= */
.why-us {
  background-color: #0a0a0a;
  color: #fff;
  padding: 100px 60px;
  text-align: center;
}

.why-us .container {
  max-width: 1200px;
  margin: 0 auto;
}

.why-us h2 {
  color: #B19540;
  font-size: 40px;
  text-transform: uppercase;
  margin-bottom: 60px;
  letter-spacing: 1px;
}

/* ====== Список */
.why-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  justify-items: center;
  align-items: start;
}

.why-item {
  background-color: #111;
  border: 1px solid rgba(177, 149, 64, 0.3);
  border-radius: 20px;
  padding: 30px 25px;
  text-align: left;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
}

.why-item:hover {
  border-color: #B19540;
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(177,149,64,0.3);
}

/* ====== Іконки ====== */
.why-item .icon {
  font-size: 32px;
  color: #B19540;
  margin-bottom: 12px;
}

/* ====== Текст ====== */
.why-item p {
  font-size: 16px;
  line-height: 1.6;
  color: #ddd;
}

.why-item strong {
  color: #fff;
  font-weight: 600;
}

/* ===== 📱 Планшети ===== */
@media (max-width: 1024px) {
  .why-us {
    padding: 80px 40px;
  }

  .why-us h2 {
    font-size: 32px;
  }

  .why-list {
    gap: 30px;
  }
}

/* ===== 📱 Мобільні ===== */
@media (max-width: 768px) {
  .why-us {
    padding: 60px 20px;
  }

  .why-us h2 {
    font-size: 26px;
    margin-bottom: 40px;
  }

  .why-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-item {
    padding: 25px 20px;
  }

  .why-item .icon {
    font-size: 28px;
  }

  .why-item p {
    font-size: 15px;
  }
}
/*  =========================== блок отзывы ======================================= */
.reviews-section {
  background-color: #000;
  max-width: 1400px;
  margin: 0px auto;
  padding: 40px;
  font-family: Arial, sans-serif;
  text-align: center;
}
.reviews-section h2 {
     color: #fff;
  font-size: 2em;
  margin-bottom: 40px;
}

/* Контейнер */
.reviews {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Картка */
.review-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px 20px;
  max-width: 300px;
  flex: 1 1 280px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  text-align: left;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* Рейтинг */
.rating {
  font-size: 1.2em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}
.rating span {
  font-size: 0.9em;
  color: #555;
  margin-left: 8px;
}

/* Текст */
.review-card .text {
  font-size: 0.95em;
  line-height: 1.6;
  color: #333;
  margin-bottom: 15px;
}

/* Автор */
.review-card .author {
  font-weight: bold;
  color: #007BFF;
  font-size: 0.95em;
  text-align: right;
}

/* Мобільна адаптація */
@media (max-width: 768px) {
  .reviews {
    flex-direction: column;
    align-items: center;
  }
}
/* ===========================Блок автосервис + СТА========================= */
.auto-services {
  position: relative;
  width: 100%;
  overflow: hidden;
  color: #fff;
  text-align: left;
  padding: 120px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== Фон ===== */
.auto-services .auto-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(45%);
  z-index: 1;
}

.auto-overlay {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  background: rgba(0, 0, 0, 0.55);
  border-radius: 24px;
  padding: 60px;
  box-shadow: 0 0 25px rgba(0,0,0,0.5);
}

.auto-content h2 {
  color: #B19540;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.auto-intro {
  font-size: 18px;
  color: #ddd;
  margin-bottom: 40px;
}

/* ===== Список ===== */
.auto-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 40px;
}

.auto-item {
  font-size: 17px;
  line-height: 1.6;
  color: #f5f5f5;
}

.auto-item strong {
  color: #B19540;
}

.auto-item.excluded {
  color: #bbb;
  font-style: italic;
}

/* ===== Кнопки ===== */
.auto-buttons {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.btn-gold {
  background: none;
  border: 2px solid #B19540;
  color: #B19540;
  padding: 14px 28px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-gold:hover {
  background: #B19540;
  color: #fff;
  transform: translateY(-3px);
}

.btn-call {
  background: #B19540;
  color: #000;
  padding: 14px 28px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-call:hover {
  background: #d1b45c;
  transform: translateY(-3px);
}

/* ===== 📱 Планшети ===== */
@media (max-width: 1024px) {
  .auto-overlay {
    padding: 40px;
  }

  .auto-content h2 {
    font-size: 32px;
  }

  .auto-intro {
    font-size: 16px;
  }

  .auto-item {
    font-size: 15px;
  }
}

/* ===== 📱 Мобільні ===== */
@media (max-width: 768px) {
  .auto-services {
    padding: 80px 20px;
  }

  .auto-overlay {
    padding: 30px 20px;
  }

  .auto-content h2 {
    font-size: 26px;
    text-align: center;
  }

  .auto-intro {
    font-size: 14px;
    text-align: center;
  }

  .auto-list {
    gap: 10px;
  }

  .auto-item {
    font-size: 14px;
    text-align: left;
  }

  .auto-buttons {
    justify-content: center;
    gap: 15px;
  }

  .btn-gold, .btn-call {
    padding: 10px 20px;
    font-size: 13px;
  }
}
/*---------блок логотипы-----------------------------*/
.brand-logos {
  background: #111;
  padding: 60px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
 }

.brand-logos__title {
  color: #f5d479;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 30px;
  font-size: 1.8em;
}

.brand-logos__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  justify-items: center;
  align-items: center;
}

.brand-logo {
   width: 100px;
  height: auto;
  filter: brightness(0) invert(1); /* робить чорний SVG білим */
  opacity: 0.8;
  transition: all 0.3s ease;
  margin: 10px;
}

/* 📱 Адаптив */
@media (max-width: 768px) {
  .brand-logos__title {
      margin-bottom: 30px;
    font-size: 1.4em;
  }
  .brand-logos__grid {
      grid-template-columns: repeat(auto-fit, minmax(40px, 3fr));
    gap: 15px;
  }
  .brand-logo {
    width: 40px;
  }
}	
/* 🛠 CTA блок — стиль E-STO */
.home-cta-section {
  background: linear-gradient(135deg, #1c1c1c, #2a2a2a);
  color: #fff;
  text-align: center;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(245, 212, 121, 0.2);
  border-bottom: 1px solid rgba(245, 212, 121, 0.2);
}

.home-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(245, 212, 121, 0.08), transparent 70%);
  opacity: 0.9;
}

.home-cta-section h2 {
  font-size: 2.4em;
  font-weight: 700;
  color: #f5d479;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}

.home-cta-section p {
  font-size: 1.15em;
  color: #ddd;
  margin-bottom: 40px;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.home-cta-btn {
  display: inline-block;
  background: linear-gradient(90deg, #f5d479, #dcb748);
  color: #1c1c1c;
  padding: 14px 40px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1em;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.home-cta-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(245, 212, 121, 0.4);
}

/* 📱 Адаптив */
@media (max-width: 768px) {
  .home-cta-section {
    padding: 70px 15px;
  }

  .home-cta-section h2 {
    font-size: 1.6em;
  }

  .home-cta-section p {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .home-cta-btn {
    padding: 12px 30px;
    font-size: 1em;
  }
}
/* ====================СТРАНИЦА ПОСЛУГИ======================== */
/* ===== Герой-блок: Послуги і ціни ===== */
    .services-hero {
  position: relative;
  width: 100%;
  height: 80vh; /* висота блоку — 80% екрану */
  min-height: 480px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

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

/* напівпрозорий чорний шар */
.services-hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.45);
  z-index: 2;
}

.services-hero-overlay {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 20px;
  max-width: 900px;
}

/* Заголовок */
.services-hero-title {
  font-size: 64px;
  font-weight: 700;
  color: #b19540;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

/* Підзаголовок */
.services-hero-subtitle {
  font-size: 20px;
  color: #f5f5f5;
  line-height: 1.4;
}

/* Адаптивність */
@media (max-width: 1024px) {
  .services-hero {
    height: 40vh;
  }
  .services-hero-title {
    font-size: 48px;
  }
  .services-hero-subtitle {
	  padding: 20px;
    font-size: 18px;
  }
}

    
@media (max-width: 768px) {
  .services-hero {
    height: 40vh;
    min-height: 250px;
    padding: 20px 20px;
  }
  .services-hero-title {
	font-size: 24px;
	
  }
  .services-hero-subtitle {
	  font-size: 14px;
  }
}

@media (max-width: 480px) {
  .services-hero {
    height: 20vh;
    min-height: 250px;
  }
  .services-hero-title {
    font-size: 20px;
  }
  .services-hero-subtitle {
    font-size: 13px;
  }
}
/*блок чому ми=====================*/
.choose-us-mini {
  background: #0f0f0f;
  color: #fff;
  padding: 20px 20px;
  text-align: center;
}

.choose-us-container {
  max-width: 1200px;
  margin: 0 auto;
}

.choose-us-title {
  font-size: 32px;
  color: #b19540;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.choose-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.choose-us-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(177, 149, 64, 0.1);
  padding: 24px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.choose-us-item:hover {
  border-color: #b19540;
  transform: translateY(-4px);
}

.choose-us-item h3 {
  font-size: 18px;
  color: #b19540;
  margin-bottom: 8px;
}

.choose-us-item p {
  font-size: 14px;
  color: #ddd;
  line-height: 1.5;
}

/* адаптивність */
@media (max-width: 768px) {
  .choose-us-title {
    font-size: 20px;
  }
  .choose-us-item h3 {
    font-size: 16px;
  }
  .choose-us-item p {
    font-size: 13px;
  }
}


/* блок вопросы - ответы */
.faq-section {
  max-width: 800px;
  margin: 40px auto;
  font-family: Arial, sans-serif;
}
.faq-section h2 {
	color:#B19540;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 15px;
	color: #000000;
  font-size: 16px;
  font-weight: bold;
  border: none;
  outline: none;
  background-color: rgba(0, 0, 0, 0.1); 
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); 
  cursor: pointer;
  transition: background 0.3s;
}

.faq-question:hover {
	color: #000000;
  background: #e2e2e2;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 15px;
}

.faq-answer p {
  margin: 15px 0;
}

.faq-item.active, .faq-answer {
  max-height: 500px;
  padding: 15px;
}
.faq-answer { display: none; }
.faq-item.active .faq-answer { display: block; }



/* Блок прайсу страница послуги =================== - картки (адаптовано під твій HTML) */
/* CSS для price-cards з унікальним префіксом pcx- */
.pcx-section,
.pcx-section * {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

/* Контейнер */
.pcx-container {
  max-width: 1400px;
  margin: 40px auto;
  padding: 20px;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color: #111;
}

/* Заголовок */
.pcx-title {
  font-size: 28px;
  margin: 0 0 18px;
  text-align: center;
  color: #fff;
}

/* Сітка карток */
.pcx-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  align-items: stretch;
}

/* Карта */
.pcx-card {
  background: #0f0f0f;           /* темна карточка відповідно до стилю сайту */
  border: 1px solid rgba(177,149,64,0.08); /* делікатна рамка gold */
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.45);
  display: flex;
  flex-direction: column;
  min-height: 340px;
  position: relative;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  color: #eaeaea;
}

/* hover */
.pcx-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.55);
  border-color: rgba(177,149,64,0.28);
}

/* Внутрішній блок — щоб контент тягнувся, а кнопка була внизу */
.pcx-card-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 auto;
}

/* Іконка і назва */
.pcx-icon {
  font-size: 34px;
  margin-bottom: 4px;
  color: #b19540;
}

.pcx-name {
  font-size: 18px;
  margin: 0 0 8px;
  color: #fff;
}

/* Список позицій */
.pcx-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}

.pcx-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px dashed rgba(255,255,255,0.03);
  font-size: 14px;
  color: #d7d7d7;
}

.pcx-list li:first-child {
  border-top: none;
}

/* Ціна */
.pcx-price {
  font-weight: 700;
  color: #b19540;
  white-space: nowrap;
}

/* Кнопка внизу картки */
.pcx-btn {
  display: inline-block;
  text-align: center;
  padding: 10px 14px;
  background: transparent;
  color: #b19540;
  border: 2px solid #b19540;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 18px; /* за замовчуванням відступ зверху */
  align-self: stretch; /* кнопка розтягується по ширині картки */
  transition: background .2s ease, color .2s ease, transform .12s ease;
}

/* Щоб кнопка була прилипла до низу незалежно від контенту */
.pcx-card .pcx-btn {
  margin-top: auto;
}

/* hover кнопки */
.pcx-btn:hover {
  background: #b19540;
  color: #0b0b0b;
  transform: translateY(-2px);
}

/* note під сіткою */
.pcx-note {
  margin-top: 18px;
  color: #dcdcdc;
  font-size: 14px;
  text-align: center;
}

/* невеликий бедж з data-code */
.pcx-card::after {
  content: attr(data-code);
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255,255,255,0.03);
  padding: 4px 8px;
  font-size: 12px;
  color: #dcdcdc;
  border-radius: 6px;
  pointer-events: none;
}

/* ширші екрани — збільшуємо мінімальну ширину колонок */
@media (min-width: 1200px) {
  .pcx-grid {
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  }
}

/* мобільні */
@media (max-width: 420px) {
  .pcx-title { font-size: 22px; }
  .pcx-card { padding: 14px; min-height: 280px; }
  .pcx-name { font-size: 16px; }
  .pcx-list li { font-size: 13px; }
  .pcx-btn { padding: 10px; font-size: 14px; }
}
/*   блок СТА===============================================*/
 .cta-repair {
  background: linear-gradient(135deg, #111 0%, #1e1e1e 100%);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

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

.cta-title {
  font-size: 32px;
  color: #b19540;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-text {
  font-size: 16px;
  color: #ddd;
  margin-bottom: 30px;
  line-height: 1.6;
}

.cta-btn {
  display: inline-block;
  padding: 14px 28px;
  background: #b19540;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #caa84b;
  transform: translateY(-3px);
}

.cta-phone {
  margin-top: 24px;
  font-size: 16px;
}

.cta-phone a {
  color: #b19540;
  font-weight: 700;
  text-decoration: none;
}

.cta-phone a:hover {
  text-decoration: underline;
}
/*================сторінка про нас ==============*/
/*блок херо =================================*/
.about-hero {
  position: relative;
  width: 100%;
  height: 45vh; /* розтягнута по ширині, не надто висока */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #fff;
  padding: 0 60px;
}

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

/* напівпрозорий золотий шар */
.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(177, 149, 64, 0.45),
    rgba(50, 40, 10, 0.6)
  );
  z-index: 2;
}

.about-overlay {
  position: relative;
  z-index: 3;
  text-align: left;
  max-width: 900px;
  padding: 0 40px;
}

.about-overlay h1 {
  font-size: 60px;
  font-weight: 800;
  color: #b19540;
  line-height: 1.1;
  margin-bottom: 20px;
}

.about-overlay p {
  font-size: 24px;
  line-height: 1.5;
  color: #fff;
}

    /* 📱 Адаптив hero-блоку */
@media (max-width: 768px) {
  .about-overlay {
    top: auto;
    left: 40%;
    transform: translateX(-50%);
    text-align: left;
    padding: 0 20px;
    width: 100%;
  }

  .about-overlay h1 {
    font-size: 38px;
    line-height: 1.1;
    margin-bottom: 12px;
  }

  .about-overlay p {
    font-size: 16px;
	}
}

/*-----блок наші цінності---------*/
.values-section {
  max-width: 1200px;
  margin: 5px auto;
  padding: 40px 20px;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  color: #fff;
  background: linear-gradient(180deg, #111 0%, #000 100%);
  border-top: 1px solid rgba(177, 149, 64, 0.3);
  border-bottom: 1px solid rgba(177, 149, 64, 0.3);
}

.values-section h2 {
  font-size: 2.5em;
  margin-bottom: 50px;
  color: #b19540; /* золото */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Сітка */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 35px;
  margin-bottom: 50px;
}

/* Картка */
.value-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 35px 25px;
  border-radius: 16px;
  border: 1px solid rgba(177, 149, 64, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  border-color: rgba(177, 149, 64, 0.6);
  box-shadow: 0 10px 30px rgba(177, 149, 64, 0.15);
}

.value-card .icon {
  font-size: 2.8em;
  margin-bottom: 15px;
}

.value-card h3 {
  font-size: 1.3em;
  color: #b19540;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 1em;
  color: #ddd;
  line-height: 1.6;
}

/* Текст внизу */
.values-text {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1em;
  line-height: 1.7;
  color: #ccc;
}

.values-text p + p {
  margin-top: 15px;
}

/* 📱 Адаптив */
@media (max-width: 768px) {
  .values-section {
    padding: 40px 15px;
  }

  .values-section h2 {
    font-size: 2em;
  }

  .value-card {
    padding: 25px 20px;
  }

  .value-card .icon {
    font-size: 2.4em;
  }
}
/*------------блок наш досвід--------*/
.stats-section {
  max-width: 1100px;
  margin: 40px 40px 40px 40px;
  padding: 20px;
  font-family: Arial, sans-serif;
  text-align: center;
}
.stats-section h2 {
     color: #fff;
  font-size: 2em;
  margin-bottom: 40px;
}

/* Горизонтальний ряд */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

/* Картка */
.stat-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 12px;
  width: 200px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* Іконка */
.stat-card .icon {
  font-size: 2.2em;
  margin-bottom: 10px;
}

/* Цифри */
.stat-card .number {
  font-size: 2em;
  font-weight: bold;
  color: #007BFF;
  margin-bottom: 6px;
}

/* Текст */
.stat-card p {
  font-size: 0.95em;
  color: #333;
  margin: 0;
}

/*---------блок майстри------------*/
 .masters-section {
        max-height: 600px;
  background: #111;
  color: #fff;
  padding: 20px 20px;
  font-family: 'Roboto', sans-serif;
}

.masters-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.masters-text {
  flex: 1 1 480px;
}

.masters-text h2 {
  font-size: 42px;
  color: #b19540;
  margin-bottom: 20px;
}

.masters-text p {
  font-size: 18px;
  line-height: 1.6;
  color: #ddd;
}

.masters-photo {
  flex: 1 1 210px;
  text-align: center;
}

.masters-photo{
  width: 100%;
  max-width: 460px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  object-fit: cover;
}

@media (max-width: 768px) {
  .masters-section {
      max-height: 500px;
    padding: 20px 10px;
  }

  .masters-content {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .masters-photo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    line-height: 0; /* прибирає “inline gap” */
  }

  .masters-photo{
    display: block;
    max-width: 320px;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
  }

  .masters-text {
    margin: 0;
    padding: 10px 0 0;
  }

  .masters-text h2 {
    font-size: 28px;
    color: #b89b4f;
    margin-bottom: 10px;
  }

  .masters-text p {
    font-size: 16px;
    color: #fff;
    line-height: 1.5;
    margin: 0 auto;
    max-width: 90%;
  }
}
/*----------блок СТА-------*/
.pronas-cta {
  background: #111;
  color: #fff;
  text-align: left;
  padding: 80px 60px;
}

.pronas-cta-content {
  max-width: 1200px;
  margin: 0 auto;
}

.pronas-cta h2 {
  color: #b89b4f;
  font-size: 2.2em;
  margin-bottom: 20px;
}

.pronas-cta p {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
}

.pronas-cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #d4af37, #b68c2b);
  color: #000;
  font-weight: 600;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: pulseGlow 2.5s infinite;
}

/* Ефект наведення */
.pronas-cta-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
  background: linear-gradient(135deg, #f3d36a, #cda837);
}

/* Ефект натискання */
.pronas-cta-button:active {
  transform: scale(0.96);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

/* Пульсація */
@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(212,175,55,0.5); }
  70% { box-shadow: 0 0 0 14px rgba(212,175,55,0); }
  100% { box-shadow: 0 0 0 0 rgba(212,175,55,0); }
}

/* 📱 Адаптив */
@media (max-width: 768px) {
  .pronas-cta-button {
	  width: 80%;
    max-width: 300px;
    padding: 14px 30px;
    font-size: 14px;
  }
}

.pronas-cta-phone {
  margin-top: 25px;
}
.pronas-cta-phone p {
  margin-bottom: 5px;
  font-size: 1em;
  color: #ddd;
}
.pronas-cta-phone a {
  color: #b89b4f;
  font-weight: bold;
  font-size: 1.3em;
  text-decoration: none;
}
.pronas-cta-phone a:hover {
  text-decoration: underline;
}

/* 📱 Адаптив */
@media (max-width: 768px) {
  .pronas-cta {
    padding: 60px 15px;
  }
  .pronas-cta h2 {
    font-size: 1.8em;
  }
 }

/*===================страница контакты===============*/
/* герой блок*/
 .contacts-hero {
  position: relative;
  width: 100%;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  color: #fff;
  font-family: "Roboto", sans-serif;
}

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

/* Напівпрозорий золотий шар поверх */
.contacts-hero .contacts-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(177, 149, 64, 0.25);
  mix-blend-mode: overlay;
  z-index: 2;
}

/* Контент */
.contacts-content {
  position: relative;
  z-index: 3;
  padding-left: 10%;
  max-width: 800px;
  text-align: left;
}

.contacts-content h1 {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #B19540;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contacts-content p {
  font-size: 22px;
  line-height: 1.5;
  color: #fff;
  max-width: 550px;
}

/* ===== Адаптив ===== */
@media (max-width: 1024px) {
  .contacts-content h1 {
    font-size: 54px;
  }
  .contacts-content p {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .contacts-hero {
    min-height: 60vh;
    justify-content: center;
    text-align: center;
  }
  .contacts-content {
    padding: 0 20px;
  }
  .contacts-content h1 {
    font-size: 40px;
  }
  .contacts-content p {
    font-size: 16px;
  }
}
/*--------блок социал-----------*/
.contact-info {
  background: #0f0f0f;
  color: #f2f2f2;
  padding: 40px 40px;
}

.contact-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
  gap: 30px;
  flex-wrap: wrap;
}

.contact-content {
  flex: 1 1 400px;
}

.contact-image {
  flex: 1 1 400px;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
}

.contact-content h2 {
  color: #f8c146;
  font-size: 1.9em;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-content p {
  font-size: 1.1em;
  line-height: 1.7;
  color: #ddd;
  margin-bottom: 25px;
}
.contact-map {
  flex: 1 1 500px;
  height: 450px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
}
.contact-divider {
  border: none;
  height: 2px;
  width: 100px;
  background: #f8c146;
  margin: 20px 0;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.05em;
  margin: 10px 0;
  color: #eaeaea;
}

.contact-list a {
  color: #f8c146;
  text-decoration: none;
}

.contact-list a:hover {
  text-decoration: underline;
}

.contact-button {
  display: inline-block;
  border: 1px solid #f8c146;
  color: #f8c146;
  padding: 12px 36px;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.contact-button:hover {
  background: #f8c146;
  color: #000;
  transform: translateY(-3px);
}

.social-icons {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.social-icons a img {
  width: 42px;
  height: 42px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.9;
}

.social-icons a:hover img {
  transform: scale(1.15);
  opacity: 1;
}

/* 📱 Адаптивність */
@media (max-width: 992px) {
  .contact-container {
    flex-direction: column;
    text-align: left;
  }
.contact-map {
    height: 350px;
  }
  .contact-image img {
    max-height: 400px;
    object-position: center;
  }

  .contact-divider {
    margin: 20px auto;
  }

  .contact-list li {
    justify-content: left;
  }

  .contact-button {
    margin: 20px auto;
  }

  .social-icons {
    justify-content: center;
  }
}
/*------------------бегущая строка--------------*/
.site-marquee {
  width: 100%;
  background: #111;
  color: #f8c146;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  border-top: 1px solid rgba(255, 215, 0, 0.3);
  border-bottom: 1px solid rgba(255, 215, 0, 0.3);
  padding: 10px 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.5px;
}

.marquee-inner {
  display: inline-flex;
  animation: marquee 18s linear infinite;
}

.marquee-inner span {
  padding-right: 80px;
	padding-top: 60px;
}

@keyframes marquee {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

/* 🖱️ Зупинка при наведенні */
.site-marquee:hover .marquee-inner {
  animation-play-state: paused;
}

/* 📱 Адаптив */
@media (max-width: 768px) {
  .site-marquee {
    font-size: 16px;
    padding: 8px 0;
  }
  .marquee-inner span {
    padding-right: 50px;
  }
}
/*==========страница лампы===========*/
/*--------------блок герой----------*/
 .hero-lamps {
  position: relative;
  height: 90vh;
  background: url('https://e-sto.com.ua/wp-content/uploads/2025/09/art-lampa-e-sto.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* вирівнюємо вліво */
  padding-left: 10%;
  text-align: left;
  color: #fff;
  overflow: hidden;
}

.hero-lamps-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 17, 17, 0.5);
  backdrop-filter: blur(2px);
}

.hero-lamps-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero-lamps-content h1 {
  font-size: clamp(3rem, 8vw, 7rem);
  color: #c8a02f;
  font-weight: 800;
  margin: 0;
  line-height: 1;
}

.hero-lamps-content p {
  font-size: clamp(1rem, 2.5vw, 1.6rem);
  color: #fff;
  font-weight: 600;
  margin-top: 0.5em;
  margin-left: 40%;
}

/* 📱 Адаптивність */
@media (max-width: 768px) {
  .hero-lamps {
    height: 65vh;
    padding-left: 5%;
  }
  .hero-lamps-content {
    max-width: 90%;
  }
  .hero-lamps-content h1 {
    font-size: 16vw;
  }
  .hero-lamps-content p {
    font-size: 4.5vw;
  }
}
/*-------------блок галерея ----------*/
.artworks-section {
  background-color: #000;
  color: #fff;
  padding: 80px 5%;
  text-align: center;
  border-top: 1px solid #222;
}

.artworks-intro p {
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #ddd;
  border-bottom: 2px solid #c8a02f;
  padding-bottom: 20px;
}

.artworks-title {
  font-size: 2rem;
  color: #f5f5f5;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: left;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.artworks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.art-card {
  background: #111;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.art-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.3);
}

.art-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.art-card p {
  padding: 15px;
  font-size: 1rem;
  color: #ddd;
  font-weight: 500;
  background-color: #000;
}

/* 📱 Адаптивність */
@media (max-width: 768px) {
  .artworks-section {
    padding: 50px 3%;
  }

  .artworks-intro p {
    font-size: 1rem;
  }

  .artworks-title {
    text-align: center;
  }

  .art-card img {
    height: 250px;
  }
}
/*--------блок ста лампы-------*/
/* === Метал з блиском і “царапинами” === */
.custom-art.scratched {
  position: relative;
  padding: 100px 20px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  overflow: hidden;
  background: radial-gradient(circle at 50% 50%, #333 0%, #1a1a1a 80%);
  background-blend-mode: overlay;
  isolation: isolate;
}

/* Імітація текстури металу */
.custom-art.scratched::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0px, rgba(255,255,255,0.04) 2px, transparent 3px, transparent 6px),
    repeating-linear-gradient(-135deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 2px, transparent 3px, transparent 7px);
  mix-blend-mode: overlay;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

/* Блиск, що рухається */
.custom-art.scratched::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.25) 50%,
    rgba(255,255,255,0) 100%
  );
  mix-blend-mode: soft-light;
  animation: shineMove 8s ease-in-out infinite;
  opacity: 0.6;
  pointer-events: none;
  z-index: 1;
}

@keyframes shineMove {
  0% { transform: translateX(-200%); }
  50% { transform: translateX(100%); }
  100% { transform: translateX(-200%); }
}

/* Затемнення країв */
.custom-art-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0,0,0,0.3), rgba(0,0,0,0.9));
  z-index: 2;
}

/* Контент поверх металу */
.custom-art-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

/* Заголовок */
.custom-art h2 {
  font-size: 2.6em;
  color: #fff;
  margin-bottom: 25px;
  text-shadow: 0 0 15px rgba(255,215,0,0.4);
  display: flex;
  align-items: center;
  gap: 10px;
}

.custom-art .highlight {
  color: #f7c948;
  text-shadow: 0 0 10px rgba(255,215,0,0.6);
}

.custom-art p {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #eee;
}

.custom-art ul {
  list-style: none;
  margin-bottom: 35px;
  padding-left: 0;
}

.custom-art ul li {
  font-size: 1.1em;
  margin-bottom: 12px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.custom-art ul li:hover {
  transform: translateX(10px);
  color: #f7c948;
}

/* Кнопка */
.custom-art-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
}

.custom-art-btn {
  display: inline-block;
  position: relative;
  overflow: hidden;
  padding: 14px 40px;
  border: 2px solid #f7c948;
  border-radius:40px;
  color: #f7c948;
  font-weight: bold;
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.custom-art-btn span {
  position: relative;
  z-index: 2;
}

.custom-art-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,215,0,0.1), rgba(255,215,0,0.8), rgba(255,215,0,0.1));
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.custom-art-btn:hover::before {
  transform: translateX(100%);
}

.custom-art-btn:hover {
  background: #f7c948;
  color: #111;
  box-shadow: 0 0 15px rgba(255,215,0,0.5);
}

/* Телефон */
.custom-art-phone {
  color: #fff;
  font-size: 1.1em;
}

.custom-art-phone strong {
  color: #f7c948;
  font-size: 1.4em;
  font-weight: 700;
}

/* Адаптив */
@media (max-width: 768px) {
  .custom-art {
    text-align: center;
    padding: 70px 20px;
  }

  .custom-art h2 {
    justify-content: center;
    font-size: 2em;
  }

  .custom-art-actions {
    flex-direction: column;
    align-items: center;
  }

  .custom-art-btn {
    width: 100%;
    max-width: 280px;
  }
}

/*----------блок отзывы-------*/
.art-reviews {
  padding: 60px 20px;
  background: #000000;
  text-align: center;
  max-width: 800px;
  margin: auto;
}
.art-reviews h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #fff;
}
.art-slider {
  position: relative;
  overflow: hidden;
}
.art-slide {
  display: none;
  background: #f1f1f1; /* світло-сірий фон */
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.art-slide.active {
  display: block;
  animation: fade 0.5s ease-in-out;
}
@keyframes fade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.art-review-text {
  font-size: 1rem;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.5;
}
.art-review-author {
  font-weight: bold;
  color: #555;
  font-size: 0.9rem;
}
.art-controls {
  margin-top: 15px;
}
.art-controls button {
  background: #d4af37; /* золотий */
  color: #fff;
  border: none;
  padding: 8px 14px;
  margin: 0 5px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  transition: background 0.3s;
}
.art-controls button:hover {
  background: #b8860b; /* темніше золото при наведенні */
}
.art-dots {
  margin-top: 10px;
  font-size: 16px;
  color: #bbb;
  letter-spacing: 6px; /* відстань між крапками */
}
.art-dots .active {
  color: #d4af37; /* золота активна крапка */
}

/*===========================страница востановление после дтп=============*/
/*------------------герой блок-------------*/
.hero-dtp {
  position: relative;
  width: 100%;
  height: 80vh;
  background: url('https://e-sto.com.ua/wp-content/uploads/2025/10/Комплексний-ремонт-bmw-після-дтп.png') center/cover no-repeat; /* 👉 заміни на своє зображення */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-dtp-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}

.hero-dtp-content {
  position: relative;
  z-index: 2;
  max-width: 100%;
  color: #fff;
  padding: 80px;
}

.hero-dtp-content h1 {
    color: #fff;
  font-size: 56px;
  line-height: 1.1;
  margin-top: 50px;
  margin-bottom: 50px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-dtp-content p {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 50px;
}

.hero-dtp-btn {
  display: inline-block;
  background: linear-gradient(135deg, #d4af37, #b68c2b);
  color: #000;
  font-weight: 600;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: pulseGlow 2.5s infinite;
}

.hero-dtp-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
  background: linear-gradient(135deg, #f3d36a, #cda837);
}

@media (max-width: 1024px) {
  .hero-dtp {
    height: 70vh;
    max-height: 500px;
    background-position: center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left; /* робимо більш гармонійно */
    padding: 0 20px;
  }

  .hero-dtp-overlay {
    background: rgba(0, 0, 0, 0.6); /* трохи темніше — для контрасту тексту */
  }

  .hero-dtp-content {
    max-width: 700px;
    padding: 40px 20px;
  }

  .hero-dtp-content h1 {
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .hero-dtp-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
  }

  .hero-dtp-btn {
    font-size: 17px;
    padding: 14px 32px;
    border-radius: 40px;
  }
}

@media (max-width: 768px) {
  .hero-dtp {
    height: 80vh;
    background-position: center;
  }

  .hero-dtp-content {
    padding: 40px 20px;
  }

  .hero-dtp-content h1 {
    font-size: 28px;
  }

  .hero-dtp-content p {
    font-size: 14px;
  }

  .hero-dtp-btn {
    font-size: 14px;
    padding: 12px 22px;
  }
}
/*-------------------блок что мы делаем----------*/
.repair-services-metal {
  background: linear-gradient(145deg, #1a1a1a, #2c2c2c);
  padding: 100px 20px;
  color: #fff;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #bdbdbd, #f1f1f1, #a9a9a9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  max-width: 800px;
  margin: 0 auto 60px;
  font-size: 18px;
  color: #cfcfcf;
}

.repair-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.repair-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 40px 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.repair-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.repair-card:hover::before {
  opacity: 1;
}

.repair-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.1);
}

.icon.metallic img {
  width: 70px;
  height: 70px;
  display: block;
  margin: 0 auto 20px;
  filter: grayscale(100%) brightness(1.6) contrast(1.2) drop-shadow(0 0 4px rgba(255,255,255,0.3));
  transition: all 0.3s ease;
}

.repair-card:hover .icon.metallic img {
  filter: grayscale(0%) brightness(2) contrast(1.3) drop-shadow(0 0 6px rgba(255,255,255,0.6));
}

.repair-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #e6e6e6;
}

.repair-card p {
  font-size: 15px;
  color: #bfbfbf;
  line-height: 1.6;
}

/* 📱 Адаптив */
@media (max-width: 1024px) {
  .section-title {
    font-size: 34px;
  }
  .section-subtitle {
    font-size: 16px;
  }
  .repair-card {
    padding: 30px 16px;
  }
  .icon.metallic img {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 600px) {
  .repair-services-metal {
    padding: 70px 15px;
  }
  .section-title {
    font-size: 28px;
  }
  .section-subtitle {
    font-size: 15px;
  }
}
/*--------------блок почему мы-----------*/
 .advantages-section {
  background: radial-gradient(circle at center, #1c1c1c, #0f0f0f);
  color: #fff;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.advantages-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('https://www.transparenttextures.com/patterns/brushed-alum-dark.png');
  opacity: 0.2;
}

.advantages-section h2 {
  font-size: 2.4em;
  margin-bottom: 60px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #e6e6e6;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.adv-card-cont {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 40px 25px;
  transition: transform 0.4s ease, background 0.4s ease;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.adv-card-cont:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.1);
}

.adv-card {
  width: 70px;
  height: 70px;
  filter: invert(1) brightness(1.2);
  margin-bottom: 25px;
  transition: transform 0.3s ease;
}

.adv-card:hover {
  transform: scale(1.1);
}

.adv-card-cont h3 {
  font-size: 1.3em;
  color: #fff;
  margin-bottom: 10px;
}

.adv-card-cont p {
  color: #ccc;
  font-size: 0.95em;
  line-height: 1.6;
}

/* 📱 Адаптив */
@media (max-width: 768px) {
  .advantages-section {
    padding: 70px 15px;
  }
  .advantages-section h2 {
    font-size: 1.9em;
  }
  .adv-card-cont {
    padding: 30px 20px;
  }
  .adv-card {
    width: 60px;
    height: 60px;
  }
}
/*-----------блок галерея ---------*/
.restoration-gallery {
  background: #121212;
  color: #fff;
  padding: 100px 20px;
  text-align: center;
  position: relative;
}

.restoration-gallery h2 {
  font-size: 2.4em;
  text-transform: uppercase;
  margin-bottom: 60px;
  color: #e6e6e6;
  letter-spacing: 1px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.gallery-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  transition: transform 0.4s ease;
}

.gallery-card:hover {
  transform: translateY(-8px);
}

.img-container {
  position: relative;
  overflow: hidden;
}

.img-container-img {
  width: 100%;
  display: block;
  transition: opacity 0.6s ease;
}

.img-container-img.after {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.img-container:hover img.after {
  opacity: 1;
}

.gallery-card h3 {
  font-size: 1.3em;
  margin: 20px 0 10px;
  color: #fff;
}

.gallery-card p {
  font-size: 0.95em;
  color: #ccc;
  padding: 0 20px 25px;
  line-height: 1.6;
}

/* 📱 Адаптив */
@media (max-width: 768px) {
  .restoration-gallery {
    padding: 70px 15px;
  }
  .restoration-gallery h2 {
    font-size: 1.9em;
  }
}
/*----------------блок ста--------*/
.repair-cta {
  background: linear-gradient(135deg, #1e1e1e, #2a2a2a);
  color: #fff;
  text-align: center;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

.repair-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 215, 0, 0.08), transparent 70%);
  opacity: 0.9;
}

.repair-cta__content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  margin: 0 auto;
}

.repair-cta__title {
  font-size: 2.4em;
  color: #f5d479;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.repair-cta__text {
  font-size: 1.1em;
  color: #ccc;
  margin-bottom: 40px;
  line-height: 1.6;
}

.repair-cta__btn {
  display: inline-block;
  background: linear-gradient(90deg, #f5d479, #dcb748);
  color: #1c1c1c;
  padding: 14px 40px;
  font-weight: bold;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1em;
  transition: all 0.3s ease;
  margin-top: 30px;
}

.repair-cta__btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(245, 212, 121, 0.5);
}

.repair-cta__phone {
  margin-top: 30px;
  font-size: 1.1em;
}

.repair-cta__phone a {
  color: #f5d479;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.repair-cta__phone a:hover {
  color: #fff;
}

/* 📱 Адаптив */
@media (max-width: 768px) {
  .repair-cta__title {
    font-size: 1.8em;
  }

  .repair-cta__text {
    font-size: 1em;
  }

  .repair-cta__btn {
    padding: 12px 30px;
    font-size: 1em;
  }
}
/*---------------политика конф---------*/
 .privacy-policy {
    background: #f8f8f8;
    padding: 60px 20px;
    font-family: "Inter", sans-serif;
    line-height: 1.7;
    color: #222;
  }
  .privacy-policy .container {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 40px 50px;
    border-radius: 16px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
  }
  .privacy-policy h1 {
    font-size: 2.4em;
    color: #111;
    text-align: center;
    margin-bottom: 30px;
  }
  .privacy-policy h2 {
    color: #c5a93d;
    font-size: 1.4em;
    margin-top: 40px;
  }
  .privacy-policy a {
    color: #c5a93d;
    text-decoration: none;
  }
  .privacy-policy a:hover {
    text-decoration: underline;
  }


