* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:Arial, Helvetica, sans-serif;
}

html {
  scroll-behavior: smooth;
}

ul, ol {
    list-style: none;
}

p {
    font-size: clamp(18px, 5vw, 22px);
}

h2 {
    user-select: none;
}

.contacts p {
        text-align: center;
}

.burger-menu {
    display: none;
}

h4 {
    font-size: clamp(16px, 5vw, 32px);
    margin-bottom: 10px;
}

h5 {
    user-select: none;
    font-size: clamp(16px, 5vw, 20px);
}

a:link,
a:visited {
    font-weight: 600;
    text-decoration: none;
    position: relative;
    color: #000000;
    transition: color 0.5s ease;
}

nav a::after,
footer a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background-color: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

nav a:hover::after,
footer a:hover::after {
    transform: scaleX(1);
}

:root {
    --main-background: #EFEFF0;
    --header-background: #FFD66C;
    --section-header-background: #FEE299;
    --button-background: #FFEDBF;
}

body {
    width: 65%;
    margin: 0 auto;
    background: var(--main-background);
}

/* HEADERS */

.header,
.header nav {
    display: flex;
    flex-direction: row;
}

.header,
.header-about,
.header-services,
.header-gallery,
.header-contacts {
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background-color: var(--header-background);
    border-radius: 0 0 20px 20px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

section h5 {
    position: sticky;
}

.header nav {
    font-size: clamp(16px, 5vw, 18px);
    gap: 40px;
}

.header-about,
.header-services,
.header-gallery,
.header-contacts {
    text-align: center;
    background-color: var(--section-header-background);
    position: sticky;
    top: 0;
    z-index: 10;
}

.header-gallery {
    margin-bottom: 30px;
}

/* MAIN */

section div:last-child, .section-main {
    padding: 25px 35px;
}

.section-main, .section-main div:last-child {
    padding-bottom: 0;
}

.section-main,
.main-info {
    display: flex;
}

.section-main {
    position: relative;
    align-items: center;
    justify-content: space-between;
}

.section-main img {
    z-index: 10;
    width: 30%;
    height: auto;
}

.golden-spray-wrapper {
    right: 15%;
    position: absolute;
    box-shadow: 
        0 0 60px rgb(255, 212, 70),
        0 0 80px rgb(255, 191, 40),
        0 0 100px rgb(180, 129, 20),
        0 0 120px rgb(255, 226, 60);
}

.main-info {
    padding-left: 10%;
    text-align: center;
    gap: 15px;
    flex-direction: column;
}

.main-info h4, 
.oferta {
    user-select: none;
    transition: transform 1s ease;
}

.main-info h4:hover {
    transform: scale(1.1);
}

.oferta:hover {
    transform: scale(1.1);
}

.main-paragraph {
    user-select: none;
    font-size: clamp(16px, 5vw, 32px);
    padding: 15px 20px;
    background-color: var(--button-background);
    border-radius: 20px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    transition: transform 1.5s ease;
}

.main-paragraph:hover {
    transform: scale(1.1);
}

.content-about {
    user-select: none;
    text-align: center;
}

.about-first, 
.about-second {
    transition: transform 1.5s ease;
}

.about-first:hover, 
.about-second:hover {
    transform: scale(1.05);
}

.content-about li {
    transition: transform 1.5s ease;
}

.content-about li:hover {
    background: linear-gradient(to right, #ff6a00, #ee0979);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: scale(1.1)
}

.about-first {
    font-weight: 700;
    margin-bottom: 15px;
}

.about-second {
    margin-bottom: 25px;
}

li img {
    width: 55px;
    height: auto;
}

li {
    display: flex;
    gap: 10px;
    align-items: center;
    margin: 0 auto;
    padding-left: 10%;
    margin-bottom: 20px;
}

.content-services {
    padding: 15%;
    display: grid;
    /* grid-template-columns: repeat(2, 1fr); */
    grid-template-rows: repeat(2, 1fr);  
    gap: 15px;
    justify-items: center;
    align-items: center;
}

.content-services div {
    user-select: none;
    padding: 20px;
    background-color: var(--header-background);
    border-radius: 20px;
    text-align: center;
    width: 95%;
    height: 2000px;  
    display: flex;
    flex-direction: column;   
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    transition: transform 0.7s ease;
}

.content-services div:hover {
    border: 1px solid #c5c5c5;
    background: linear-gradient(to right, #ff6a00, #ee0979);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: scale(1.1);
}

.slider {
    margin: 0 auto;
    width: 500px;
    height: 300px;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}

.slides {
    display: flex;
    transition: transform 0.6s;
    width: 100%;
    height: 100%;
    gap: 20px; /* расстояние между фотографиями */
}

.slide {
    min-width: 500px;
    height: 300px;
    padding: 0 0;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.slider-prev {
    left: 10px;
}

.slider-next {
    right: 10px;
}

.slider-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
    gap: 14px;
    margin-bottom: 10px;
}

.slider-indicator[type="radio"] {
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 3px solid #fff;
    background: #FFD66C;
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s;
    outline: none;
    box-shadow: 0 0 4px #FFD66C;
    position: relative;
}

.slider-indicator[type="radio"]:checked {
    background: #FEE299;
    border-color: #FFD66C;
    box-shadow: 0 0 8px #FFD66C;
}

.content-contacts {
    display: flex;
    flex-direction: column;
}

.contacts-header {
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.contacts_map-widget {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.contacts {
    align-self: center;
    margin: 0 auto;
    justify-content: center;
}

.contacts li {
    transition: transform 1.5s ease;
    padding-left: 0;
}

.contacts li a {
    display: flex;
    align-items: center; /* центрируем иконку и текст */
    gap: 12px;
    font-size: 1.4rem;
    text-decoration: none; /* уберёт подчёркивание, если нужно */
    color: inherit;        /* чтобы наследовал цвет */
}

.contacts li:hover {
    transform: scale(1.1);
}

.contacts li img {
    width: 45px;   /* можно уменьшить, чтобы текст смотрелся гармоничнее */
    height: auto;
}


.widget-map {
    border-radius: 40px;
    filter: drop-shadow(6px 6px 6px rgba(0, 0, 0, 0.35));
}

.oferta {
    border-radius: 25px;
    border: 1px solid #c5c5c5;
    font-size: clamp(16px, 5vw, 28px);
    font-weight: 700;
    padding: 15px 30px;
    width: auto;
    background-color: var(--button-background);
    align-self: center;
}

footer {
    text-align: center;
    padding: 25px 40px;
    background-color: var(--header-background);
}

.slideshow-container {
  max-width: 100%;
  width: 70%;
  height: auto;
  position: relative;
  margin: 0 auto;
}

.mySlides {
  display: none;
}

.mySlides img {
    border-radius: 30px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@media (max-width: 900px) {
   .nav-desktop {
        display: none;
    }
    .btn-burger {
        display: flex;
    }
    .burger-menu {
        display: block;
    }
    .header {
        position: relative;
    }

    body {
        width: 90%;
        padding: 0 5px;
    }

    .header-services,
    .header-gallery,
    .header-contacts {
        flex-direction: column;
        padding: 20px 25px;
        font-size: 1rem;
    }

    header {
        padding: 20px 25px;
    }
    
    .section-main {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 8px 0 8px;
    }
    .section-main img {
        width: 70%;
        margin: 0 auto;
        margin-top: 18px;
    }
    .main-info {
        padding-left: 0;
        width: 100%;
    }
    .content-services {
        padding: 5%;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 1fr);
        gap: 10px;
    }
    .content-services div {
        width: 100%;
        height: auto;
        font-size: 1rem;
    }
    .contacts_map-widget {
        flex-direction: column;
        gap: 20px;
    }
    .widget-map iframe {
        width: 100% !important;
        height: 220px !important;
    }
}

@media (max-width: 600px) {
    .nav-desktop {
        display: none;
    }
    .btn-burger {
        display: flex;
    }
    .burger-menu {
        display: block;
    }
    .header {
        position: relative;
    }

    body {
        width: 100%;
        padding: 0 2px;
    }
    h2 {
        font-size: 1.3rem;
    }
    h4 {
        font-size: 1.1rem;
    }
    h5 {
        font-size: 1rem;
    }
    p {
        font-size: 1rem;
    }

    .header-about,
    .header-services,
    .header-contacts {
        padding: 8px 4px;
        font-size: 0.9rem;
    }

    .section-main {
        padding: 10px 2px 0 2px;
    }
    .section-main img {
        width: 60%; /* уменьшить фото */
        margin-top: 10px;
    }
    .main-info {
        gap: 8px;
    }
    .main-paragraph {
        font-size: 1rem;
        padding: 8px 10px;
    }
    .about-first,
    .about-second {
        font-size: 1rem;
    }
    .about-list li,
    li {
        padding-left: 0;
        gap: 6px;
        font-size: 0.95rem;
    }
    li img,
    .contacts li img {
        width: 32px;
    }
    .content-services {
        padding: 2%;
        gap: 6px;
    }
    .content-services div {
        padding: 10px;
        font-size: 0.95rem;
        min-height: 80px; /* одинаковая высота плиток */
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .contacts_map-widget {
        gap: 10px;
    }
    .widget-map iframe {
        height: 120px !important;
    }
    .oferta {
        font-size: 1rem;
        padding: 8px 10px;
    }
    footer {
        padding: 10px 2px;
        font-size: 0.9rem;
    }
}

/* Базовые стили для бургер-меню и кнопки */
.burger-menu {
    display: none;
}
.btn-burger {
    display: flex;
}

/* Выезжающее меню */
.burger-menu .nav-mobile {
    position: fixed;
    top: 0;
    right: -320px;
    width: 70vw;
    max-width: 320px;
    height: 100vh;
    background: var(--header-background);
    box-shadow: -2px 0 12px rgba(0,0,0,0.15);
    padding: 60px 30px 30px 30px;
    z-index: 100;
    gap: 24px;
    display: flex;
    flex-direction: column;
    transition: right 0.3s;
}
.burger-menu.open .nav-mobile {
    right: 0;
}
.burger-menu .nav-mobile a {
    font-size: 1.2rem;
    color: #111;
    font-weight: 700;
    padding: 12px 0;
    border-bottom: 1px solid #fff3;
    text-decoration: none;
    transition: color 0.3s;
}
.burger-menu .nav-mobile a:last-child {
    border-bottom: none;
}
.burger-menu .nav-mobile a:hover {
    color: #ee0979;
}

/* Показывать бургер-меню и кнопку при ширине < 1200px */
@media (max-width: 1200px) {
    .golden-spray-wrapper {
        display: none;
    }

    .header .nav-desktop {
        display: none;
    }
    .btn-burger {
        display: flex;
    }
    .burger-menu {
        display: block;
    }
    .header {
        position: relative;
    }
    body {
        width: 90%;
    }

    .section-gallery {
        margin-bottom: 0;
    }
}

/* Скрыть бургер-меню и кнопку на десктопе, показать nav-desktop */
@media (min-width: 1201px) {

    .nav-desktop {
        display: none;
    }
    .burger-menu {
        display: none !important;
    }
    .btn-burger {
        display: none !important;
    }

}

/* Мобильные стили */
@media (max-width: 600px) {
    body {
        width: 100%;
        padding: 0 2px;
    }
    h2 {
        font-size: 1.3rem;
    }
    h4 {
        font-size: 1.1rem;
    }
    h5 {
        font-size: 1rem;
    }
    p {
        font-size: 1rem;
    }
    .header-about,
    .header-services,
    .header-gallery,
    .header-contacts {
        padding: 8px 4px;
        font-size: 0.9rem;
    }
    .section-main {
        padding: 10px 2px 0 2px;
    }
    .section-main img {
        width: 60%;
        margin-top: 10px;
    }
    .main-info {
        gap: 8px;
    }
    .main-paragraph {
        font-size: 1rem;
        padding: 8px 10px;
    }
    .about-first,
    .about-second {
        font-size: 1rem;
    }
    .about-list li,
    li {
        padding-left: 0;
        gap: 6px;
        font-size: 0.95rem;
    }
    li img,
    .contacts li img {
        width: 32px;
    }
    .content-services {
        padding: 2%;
        gap: 6px;
    }
    .content-services div {
        padding: 10px;
        font-size: 0.95rem;
        min-height: 80px;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
 
    .contacts_map-widget {
        gap: 10px;
    }
    .widget-map iframe {
        height: 120px !important;
    }
    .oferta {
        font-size: 1rem;
        padding: 8px 10px;
    }
    footer {
        padding: 10px 2px;
        font-size: 0.9rem;
    }
}

/* Для плиток услуг на всех разрешениях */
.content-services div {
    min-height: 130px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-gallery {
    margin-bottom: 30px;
}

.section-contacts {
    /* margin-top: 40px; */
}


/* Hide desktop nav and show burger on mobile */
@media (max-width: 600px) {

    .nav-desktop {
        display: none;
    }
    .btn-burger {
        display: flex;
    }
    .burger-menu {
        display: block;
    }
    .header {
        position: relative;
    }
}

/* Бургер-кнопка */
.btn-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 101;
    margin-left: auto;
}
.btn-burger span {
    display: block;
    width: 28px;
    height: 4px;
    margin: 4px 0;
    background: #111;
    border-radius: 2px;
    transition: 0.3s;
}
.btn-burger.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.btn-burger.open span:nth-child(2) {
    opacity: 0;
}
.btn-burger.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Выезжающее меню */
.burger-menu {
    display: none;
}
.burger-menu .nav-mobile {
    position: fixed;
    top: 0;
    right: -320px;
    width: 70vw;
    max-width: 320px;
    height: 100vh;
    background: var(--header-background);
    box-shadow: -2px 0 12px rgba(0,0,0,0.15);
    padding: 60px 30px 30px 30px;
    z-index: 100;
    gap: 24px;
    display: flex;
    flex-direction: column;
    transition: right 0.3s;
}
.burger-menu.open .nav-mobile {
    right: 0;
}

.burger-menu .nav-mobile a {
    font-size: 1.2rem;
    color: #111;
    font-weight: 700;
    padding: 12px 0;
    border-bottom: 1px solid #fff3;
    text-decoration: none;
    transition: color 0.3s;
}
.burger-menu .nav-mobile a:last-child {
    border-bottom: none;
}
.burger-menu .nav-mobile a:hover {
    color: #ee0979;
}

/* Показывать бургер-меню и кнопку при ширине < 1200px */
@media (max-width: 1200px) {
    .nav-desktop {
        display: none;
    }
    .btn-burger {
        display: flex;
    }
    .burger-menu {
        display: block;
    }
    .header {
        position: relative;
    }
    body {
        width: 90%;
    }
}

/* Скрыть бургер-меню и кнопку на десктопе, показать nav-desktop */
@media (min-width: 1201px) {
    .nav-desktop {
        display: none;
    }
    .burger-menu {
        display: none !important;
    }
    .btn-burger {
        display: none !important;
    }
}

/* Мобильные стили */
@media (max-width: 600px) {
    body {
        width: 100%;
        padding: 0 2px;
    }
    h2 {
        font-size: 1.3rem;
    }
    h4 {
        font-size: 1.1rem;
    }
    h5 {
        font-size: 1rem;
    }
    p {
        font-size: 1rem;
    }
    .header-about,
    .header-services,
    .header-gallery,
    .header-contacts {
        padding: 8px 4px;
        font-size: 0.9rem;
    }
    .section-main {
        padding: 10px 2px 0 2px;
    }
    .section-main img {
        width: 60%;
        margin-top: 10px;
    }
    .main-info {
        gap: 8px;
    }
    .main-paragraph {
        font-size: 1rem;
        padding: 8px 10px;
    }
    .about-first,
    .about-second {
        font-size: 1rem;
    }
    .about-list li,
    li {
        padding-left: 0;
        gap: 6px;
        font-size: 0.95rem;
    }
    li img,
    .contacts li img {
        width: 32px;
    }
    .content-services {
        padding: 2%;
        gap: 6px;
    }
    .content-services div {
        padding: 10px;
        font-size: 0.95rem;
        min-height: 80px;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .contacts_map-widget {
        gap: 10px;
    }

    .contacts p {
        text-align: center;
    }

    .widget-map iframe {
        height: 120px !important;
    }
    .oferta {
        font-size: 1rem;
        padding: 8px 10px;
    }
    footer {
        padding: 10px 2px;
        font-size: 0.9rem;
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:Arial, Helvetica, sans-serif;
}

html {
  scroll-behavior: smooth;
}

ul, ol {
    list-style: none;
}

p {
    font-size: clamp(18px, 5vw, 22px);
}

h2 {
    user-select: none;
}

.burger-menu {
    display: none;
}

h4 {
    font-size: clamp(16px, 5vw, 32px);
    margin-bottom: 10px;
}

h5 {
    user-select: none;
    font-size: clamp(16px, 5vw, 20px);
}

a:link,
a:visited {
    font-weight: 600;
    text-decoration: none;
    position: relative;
    color: #000000;
    transition: color 0.5s ease;
}

nav a::after,
footer a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background-color: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

nav a:hover::after,
footer a:hover::after {
    transform: scaleX(1);
}

:root {
    --main-background: #EFEFF0;
    --header-background: #FFD66C;
    --section-header-background: #FEE299;
    --button-background: #FFEDBF;
}

body {
    width: 65%;
    margin: 0 auto;
    background: var(--main-background);
}

/* HEADERS */

.header,
.header nav {
    display: flex;
    flex-direction: row;
}

.header,
.header-about,
.header-services,
.header-gallery,
.header-contacts {
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background-color: var(--header-background);
    border-radius: 0 0 20px 20px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

section h5 {
    position: sticky;
}

.header nav {
    font-size: clamp(16px, 5vw, 18px);
    gap: 40px;
}

.header-about,
.header-services,
.header-gallery,
.header-contacts {
    text-align: center;
    background-color: var(--section-header-background);
    position: sticky;
    top: 0;
    z-index: 10;
}

.header-gallery {
    margin-bottom: 30px;
}

/* MAIN */

section div:last-child, .section-main {
    padding: 25px 35px;
}

.section-main, .section-main div:last-child {
    padding-bottom: 0;
}

.section-main,
.main-info {
    display: flex;
}

.section-main {
    position: relative;
    align-items: center;
    justify-content: space-between;
}

.section-main img {
    z-index: 10;
    width: 30%;
    height: auto;
}

.golden-spray-wrapper {
    right: 15%;
    position: absolute;
    box-shadow: 
        0 0 60px rgb(255, 212, 70),
        0 0 80px rgb(255, 191, 40),
        0 0 100px rgb(180, 129, 20),
        0 0 120px rgb(255, 226, 60);
}

.main-info {
    padding-left: 10%;
    text-align: center;
    gap: 15px;
    flex-direction: column;
}

.main-info h4, 
.oferta {
    user-select: none;
    transition: transform 1s ease;
}

.main-info h4:hover {
    transform: scale(1.1);
}

.oferta:hover {
    transform: scale(1.1);
}



.main-paragraph {
    user-select: none;
    font-size: clamp(16px, 5vw, 32px);
    padding: 15px 20px;
    background-color: var(--button-background);
    border-radius: 20px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    transition: transform 1.5s ease;
}

.main-paragraph:hover {
    transform: scale(1.1);
}

.content-about {
    user-select: none;
    text-align: center;
}

.about-first, 
.about-second {
    transition: transform 1.5s ease;
}

.about-first:hover, 
.about-second:hover {
    transform: scale(1.05);
}

.content-about li {
    transition: transform 1.5s ease;
}

.content-about li:hover {
    background: linear-gradient(to right, #ff6a00, #ee0979);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: scale(1.1)
}

.about-first {
    font-weight: 700;
    margin-bottom: 15px;
}

.about-second {
    margin-bottom: 25px;
}

li img {
    width: 55px;
    height: auto;
}

li {
    display: flex;
    gap: 10px;
    align-items: center;
    margin: 0 auto;
    padding-left: 10%;
    margin-bottom: 20px;
}

.content-services {
    padding: 15%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* grid-template-rows: repeat(2, 1fr);   */
    gap: 15px;
    justify-items: center;
    align-items: center;
}

.content-services div {
    user-select: none;
    padding: 20px;
    background-color: var(--header-background);
    border-radius: 20px;
    text-align: center;
    width: 95%;
    height: 130px;  
    display: flex;   
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    transition: transform 0.7s ease;
}

.content-services div:hover {
    border: 1px solid #c5c5c5;
    background: linear-gradient(to right, #ff6a00, #ee0979);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: scale(1.1);
}

.slider {
    margin: 0 auto;
    width: 500px;
    height: 300px;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}

.slides {
    display: flex;
    transition: transform 0.6s;
    width: 100%;
    height: 100%;
    gap: 20px; /* расстояние между фотографиями */
}

.slide {
    min-width: 500px;
    height: 300px;
    padding: 0 0;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.slider-prev {
    left: 10px;
}

.slider-next {
    right: 10px;
}

.slider-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
    gap: 14px;
    margin-bottom: 10px;
}

.slider-indicator[type="radio"] {
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 3px solid #fff;
    background: #FFD66C;
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s;
    outline: none;
    box-shadow: 0 0 4px #FFD66C;
    position: relative;
}

.slider-indicator[type="radio"]:checked {
    background: #FEE299;
    border-color: #FFD66C;
    box-shadow: 0 0 8px #FFD66C;
}

.content-contacts {
    display: flex;
    flex-direction: column;
}

.contacts-header {
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.contacts_map-widget {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.contacts {
    align-self: center;
    margin: 0 auto;
    justify-content: center;
}

.contacts li {
    transition: transform 1.5s ease;
    padding-left: 0;
}

.contacts li a {
    display: flex;
    align-items: center; /* центрируем иконку и текст */
    gap: 12px;
    font-size: 1.4rem;
    text-decoration: none; /* уберёт подчёркивание, если нужно */
    color: inherit;        /* чтобы наследовал цвет */
}

.contacts li:hover {
    transform: scale(1.1);
}

.contacts li img {
    width: 45px;   /* можно уменьшить, чтобы текст смотрелся гармоничнее */
    height: auto;
}


.widget-map {
    border-radius: 40px;
    filter: drop-shadow(6px 6px 6px rgba(0, 0, 0, 0.35));
}

.oferta {
    border-radius: 25px;
    border: 1px solid #c5c5c5;
    font-size: clamp(16px, 5vw, 28px);
    font-weight: 700;
    padding: 15px 30px;
    width: auto;
    background-color: var(--button-background);
    align-self: center;
}

footer {
    text-align: center;
    padding: 25px 40px;
    background-color: var(--header-background);
}

.slideshow-container {
  max-width: 100%;
  width: 70%;
  height: auto;
  position: relative;
  margin: 0 auto;
}

.mySlides {
  display: none;
}

.mySlides img {
    border-radius: 30px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

/* ====== Responsive Design ====== */
/* @media (max-width: 1200px) {
   .nav-desktop {
        display: none;
    }
    .btn-burger {
        display: flex;
    }
    .burger-menu {
        display: block;
    }
    .header {
        position: relative;
    }

    body {
        width: 90%;
    }
    .slider,
    .slideshow-container,
    .slides,
    .slide,
    .mySlides img {
        width: 100%;
        min-width: unset;
        max-width: 100%;
    }
    .slider,
    .slideshow-container {
        height: 220px;
    }
    .slide,
    .mySlides {
        height: 220px;
    }
} */



@media (max-width: 900px) {
   .nav-desktop {
        display: none;
    }
    .btn-burger {
        display: flex;
    }
    .burger-menu {
        display: block;
    }
    .header {
        position: relative;
    }

    body {
        width: 90%;
        padding: 0 5px;
    }

    .header-services,
    .header-gallery,
    .header-contacts {
        flex-direction: column;
        padding: 20px 25px;
        font-size: 1rem;
    }

    header {
        padding: 20px 25px;
    }
    
    .section-main {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 8px 0 8px;
    }
    .section-main img {
        width: 70%;
        margin: 0 auto;
        margin-top: 18px;
    }
    .main-info {
        padding-left: 0;
        width: 100%;
    }
    .content-services {
        padding: 5%;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 1fr);
        gap: 10px;
    }
    .content-services div {
        width: 100%;
        height: auto;
        font-size: 1rem;
    }
    .contacts_map-widget {
        flex-direction: column;
        gap: 20px;
    }
    .widget-map iframe {
        width: 100% !important;
        height: 220px !important;
    }
}

@media (max-width: 600px) {
    .nav-desktop {
        display: none;
    }
    .btn-burger {
        display: flex;
    }
    .burger-menu {
        display: block;
    }
    .header {
        position: relative;
    }

    body {
        width: 100%;
        padding: 0 2px;
    }
    h2 {
        font-size: 1.3rem;
    }
    h4 {
        font-size: 1.1rem;
    }
    h5 {
        font-size: 1rem;
    }
    p {
        font-size: 1rem;
    }

    .header-about,
    .header-services,
    .header-contacts {
        padding: 8px 4px;
        font-size: 0.9rem;
    }

    .section-main {
        padding: 10px 2px 0 2px;
    }
    .section-main img {
        width: 60%; /* уменьшить фото */
        margin-top: 10px;
    }
    .main-info {
        gap: 8px;
    }
    .main-paragraph {
        font-size: 1rem;
        padding: 8px 10px;
    }
    .about-first,
    .about-second {
        font-size: 1rem;
    }
    .about-list li,
    li {
        padding-left: 0;
        gap: 6px;
        font-size: 0.95rem;
    }
    li img,
    .contacts li img {
        width: 32px;
    }
    .content-services {
        padding: 2%;
        gap: 6px;
    }
    .content-services div {
        padding: 10px;
        font-size: 0.95rem;
        min-height: 80px; /* одинаковая высота плиток */
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .contacts_map-widget {
        gap: 10px;
    }

    .widget-map iframe {
        height: 200px !important;
    }
    .oferta {
        font-size: 1rem;
        padding: 8px 10px;
    }
    footer {
        padding: 10px 2px;
        font-size: 0.9rem;
    }
}

/* Базовые стили для бургер-меню и кнопки */
.burger-menu {
    display: none;
}
.btn-burger {
    display: flex;
}

/* Выезжающее меню */
.burger-menu .nav-mobile {
    position: fixed;
    top: 0;
    right: -320px;
    width: 70vw;
    max-width: 320px;
    height: 100vh;
    background: var(--header-background);
    box-shadow: -2px 0 12px rgba(0,0,0,0.15);
    padding: 60px 30px 30px 30px;
    z-index: 100;
    gap: 24px;
    display: flex;
    flex-direction: column;
    transition: right 0.3s;
}
.burger-menu.open .nav-mobile {
    right: 0;
}
.burger-menu .nav-mobile a {
    font-size: 1.2rem;
    color: #111;
    font-weight: 700;
    padding: 12px 0;
    border-bottom: 1px solid #fff3;
    text-decoration: none;
    transition: color 0.3s;
}
.burger-menu .nav-mobile a:last-child {
    border-bottom: none;
}
.burger-menu .nav-mobile a:hover {
    color: #ee0979;
}

/* Показывать бургер-меню и кнопку при ширине < 1200px */
@media (max-width: 1200px) {
    .golden-spray-wrapper {
        display: none;
    }

    .header .nav-desktop {
        display: none;
    }
    .btn-burger {
        display: flex;
    }
    .burger-menu {
        display: block;
    }
    .header {
        position: relative;
    }
    body {
        width: 90%;
    }

    .section-gallery {
        margin-bottom: 0;
    }
}

/* Скрыть бургер-меню и кнопку на десктопе, показать nav-desktop */
@media (min-width: 1201px) {

    .nav-desktop {
        display: none;
    }
    .burger-menu {
        display: none !important;
    }
    .btn-burger {
        display: none !important;
    }

}

/* Мобильные стили */
@media (max-width: 600px) {
    body {
        width: 100%;
        padding: 0 2px;
    }
    h2 {
        font-size: 1.3rem;
    }
    h4 {
        font-size: 1.1rem;
    }
    h5 {
        font-size: 1rem;
    }
    p {
        font-size: 1rem;
    }
    .header-about,
    .header-services,
    .header-gallery,
    .header-contacts {
        padding: 8px 4px;
        font-size: 0.9rem;
    }
    .section-main {
        padding: 10px 2px 0 2px;
    }
    .section-main img {
        width: 60%;
        margin-top: 10px;
    }
    .main-info {
        gap: 8px;
    }
    .main-paragraph {
        font-size: 1rem;
        padding: 8px 10px;
    }
    .about-first,
    .about-second {
        font-size: 1rem;
    }
    .about-list li,
    li {
        padding-left: 0;
        gap: 6px;
        font-size: 0.95rem;
    }
    li img,
    .contacts li img {
        width: 32px;
    }
    .content-services {
        padding: 2%;
        gap: 6px;
    }
    .content-services div {
        padding: 10px;
        font-size: 0.95rem;
        min-height: 80px;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
 
    .contacts_map-widget {
        gap: 10px;
    }
    .widget-map iframe {
        height: 400px !important;
    }
    .oferta {
        font-size: 1rem;
        padding: 8px 10px;
    }
    footer {
        padding: 10px 2px;
        font-size: 0.9rem;
    }
}

/* Для плиток услуг на всех разрешениях */
.content-services div {
    min-height: 130px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-gallery {
    margin-bottom: 30px;
}

.section-contacts {
    /* margin-top: 40px; */
}


/* Hide desktop nav and show burger on mobile */
@media (max-width: 600px) {

    .nav-desktop {
        display: none;
    }
    .btn-burger {
        display: flex;
    }
    .burger-menu {
        display: block;
    }
    .header {
        position: relative;
    }
}

/* Бургер-кнопка */
.btn-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 101;
    margin-left: auto;
}
.btn-burger span {
    display: block;
    width: 28px;
    height: 4px;
    margin: 4px 0;
    background: #111;
    border-radius: 2px;
    transition: 0.3s;
}
.btn-burger.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.btn-burger.open span:nth-child(2) {
    opacity: 0;
}
.btn-burger.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Выезжающее меню */
.burger-menu {
    display: none;
}
.burger-menu .nav-mobile {
    position: fixed;
    top: 0;
    right: -320px;
    width: 70vw;
    max-width: 320px;
    height: 100vh;
    background: var(--header-background);
    box-shadow: -2px 0 12px rgba(0,0,0,0.15);
    padding: 60px 30px 30px 30px;
    z-index: 100;
    gap: 24px;
    display: flex;
    flex-direction: column;
    transition: right 0.3s;
}
.burger-menu.open .nav-mobile {
    right: 0;
}

.burger-menu .nav-mobile a {
    font-size: 1.2rem;
    color: #111;
    font-weight: 700;
    padding: 12px 0;
    border-bottom: 1px solid #fff3;
    text-decoration: none;
    transition: color 0.3s;
}
.burger-menu .nav-mobile a:last-child {
    border-bottom: none;
}
.burger-menu .nav-mobile a:hover {
    color: #ee0979;
}

/* Показывать бургер-меню и кнопку при ширине < 1200px */
@media (max-width: 1200px) {
    .nav-desktop {
        display: none;
    }
    .btn-burger {
        display: flex;
    }
    .burger-menu {
        display: block;
    }
    .header {
        position: relative;
    }
    body {
        width: 90%;
    }
}

/* Скрыть бургер-меню и кнопку на десктопе, показать nav-desktop */
@media (min-width: 1201px) {
    .nav-desktop {
        display: none;
    }
    .burger-menu {
        display: none !important;
    }
    .btn-burger {
        display: none !important;
    }
}

/* Мобильные стили */
@media (max-width: 600px) {
    body {
        width: 100%;
        padding: 0 2px;
    }
    h2 {
        font-size: 1.3rem;
    }
    h4 {
        font-size: 1.1rem;
    }
    h5 {
        font-size: 1rem;
    }
    p {
        font-size: 1rem;
    }
    .header-about,
    .header-services,
    .header-gallery,
    .header-contacts {
        padding: 8px 4px;
        font-size: 0.9rem;
    }
    .section-main {
        padding: 10px 2px 0 2px;
    }
    .section-main img {
        width: 60%;
        margin-top: 10px;
    }
    .main-info {
        gap: 8px;
    }
    .main-paragraph {
        font-size: 1rem;
        padding: 8px 10px;
    }
    .about-first,
    .about-second {
        font-size: 1rem;
    }
    .about-list li,
    li {
        padding-left: 0;
        gap: 6px;
        font-size: 0.95rem;
    }
    li img,
    .contacts li img {
        width: 32px;
    }
    .content-services {
        padding: 2%;
        gap: 6px;
    }
    .content-services div {
        padding: 10px;
        font-size: 0.95rem;
        min-height: 80px;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .contacts_map-widget {
        gap: 10px;
    }
    .widget-map iframe {
        height: 300px !important;
    }
    .oferta {
        font-size: 1rem;
        padding: 8px 10px;
    }
    footer {
        padding: 10px 2px;
        font-size: 0.9rem;
    }
}