/*Обнуление*/
*{padding:0;margin:0;border:0;}
*,*:before,*:after{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;}
:focus,:active{outline:none;}
a:focus,a:active{outline:none;}
nav,footer,header,aside{display:block;}
html,body{height:100%;width:100%;font-size:100%;line-height:1;font-size:14px;-ms-text-size-adjust:100%;-moz-text-size-adjust:100%;-webkit-text-size-adjust:100%;}
input,button,textarea{font-family:inherit;}
/*input::-ms-clear{display:none;}*/
button{cursor:pointer;}
button::-moz-focus-inner{padding:0;border:0;}
a,a:visited{text-decoration:none;}
a:hover{text-decoration:none;}
/*ul li{list-style:none;}*/
img{vertical-align:top;}
h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit;}
/*--------------------*/
body{
    background: #EAD599;
    position: absolute;
    font-family: Inter, serif ;
}
body.lock {
    overflow: hidden;
}
body, html {
    overflow-x: hidden;
}
main{
    flex: 1;
}
/*--------------------*/
header{
    padding: 16px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #ca8200;
}
.header__container{
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header__logo h1{
    color: #FFF;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
    transition: 0.2s;
}
.header__logo h1:hover{
    color: #ffcc00;
    transition: 0.2s;
}
.header__navigation{
    display: flex;
    align-items: center;
    gap: 32px;
}
.header__navigation a{
    color: rgba(255, 255, 255, 0.93);
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 21.6px; /* 150% */
}
.header__navigation a:hover{
    text-decoration: underline;
}
.header__burger {
    display: none;
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
    z-index: 1100;
}
.header__burger span,
.header__burger::before,
.header__burger::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
    border-radius: 2px;
}
.header__burger span {
    top: 50%;
    transform: translateY(-50%);
}
.header__burger::before {
    top: 0;
}
.header__burger::after {
    bottom: 0;
}
.header__burger.active span {
    transform: scale(0);
}
.header__burger.active::before {
    top: 50%;
    transform: rotate(45deg);
}
.header__burger.active::after {
    bottom: 50%;
    transform: rotate(-45deg);
}
@media (max-width: 900px) {
    .header__burger {
        display: block;
    }

    .header__navigation {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 260px;
        background: #875e00;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 35px;
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        border-radius: 0;
    }

    .header__navigation a {
        font-size: 20px;
        color: #fff;
    }

    .header__navigation.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    body.lock {
        overflow: hidden;
    }
}
/*--------------------*/
.hero{
    background: url('../images/hero-bg.webp') no-repeat center center/cover;
    height: auto;
    position: relative;
    padding: 170px 20px 85px 20px;
}
.header18{
    padding: 10px;
    background: #ca8200;
}
.header18 p{
    color: #ffffff;
    text-align: center;
    font-size: 31.8px;
    font-style: normal;
    font-weight: 500;
    line-height: 38.4px; /* 120.755% */
}
.second-hero{
    padding: 155px 20px 0 20px;
}
.second-hero-title{
    display: flex;
    flex-direction: column;
}
.second-hero h2{
    color: #FFF;
    font-size: 31.5px;
    font-style: normal;
    font-weight: 500;
    line-height: 38.4px; /* 121.905% */
}
.second-hero p{
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    text-align: center;
}
.hero__container{
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero__title{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 100px;
}
.hero__title-text{
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #FFF;
    text-align: center;
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px; /* 62.5% */

}
.hero__title-text span{
    color: #FFF;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 30px; /* 150% */
    margin-top: 18px;
}
.hero__main{
    width: 100%;
    display: flex;
    justify-content: space-around;
    gap: 15px;
}
.hero__main-element{
    text-align: center;
}
.hero__main-element p{
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    margin-top: 21px;
    max-width: 215px;
}

@media (max-width: 1200px) {
    .hero__title {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 80px;
    }
    .hero__title-text {
        font-size: 42px;
    }
    .hero__main {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .hero {
        padding: 180px 20px 70px 20px;
    }
    .hero__title-text {
        font-size: 36px;
        line-height: 1.2;
    }
    .hero__title-text span {
        font-size: 18px;
    }
    .hero__main-element p {
        font-size: 15px;
        max-width: 200px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 140px 15px 60px 15px;
        background-position: center top;
    }
    .hero__title img {
        width: 120px;
    }
    .hero__title-text {
        font-size: 32px;
    }
    .hero__title-text span {
        font-size: 16px;
    }
    .hero__main {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    .hero__main-element img {
        width: 80px;
    }
    .hero__main-element p {
        font-size: 14px;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 120px 10px 50px 10px;
    }
    .hero__title {
        margin-bottom: 60px;
    }
    .hero__title-text {
        font-size: 26px;
    }
    .hero__title-text span {
        font-size: 14px;
        margin-top: 10px;
    }
    .hero__main-element img {
        width: 70px;
    }
    .hero__main-element p {
        font-size: 13px;
        line-height: 20px;
    }
}

/*--------------------*/
.mobile{
    padding: 50px 20px;
}
.mobile__container{
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.mobile__title{
    max-width: 1000px;
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 4px solid #ffc814;
    padding-bottom: 30px;
}
.mobile__title h2{
    font-size: 36px;
    color: #121212;
    margin-bottom: 21px;
    font-weight: 700;
}
.mobile__title h3{
    font-size: 32px;
    color: #121212;
    font-weight: 500;
}
.mobile__text p{
    color: #000000;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}
/*--------------------*/
.oferta {
    background-color: #E9AB00;
    padding: 40px 0;
}
.oferta__container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}
.oferta__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-items: center;
}
.oferta__item {
    position: relative;
    overflow: hidden;
    border-radius: 40px;
    aspect-ratio: 16/9;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.oferta__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
    border-radius: 1000px;
}
.oferta__item:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
.oferta__item:hover img {
    transform: scale(1.08);
}
@media (max-width: 1024px) {
    .oferta__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}
@media (max-width: 600px) {
    .oferta__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}



@media (max-width: 1200px) {
    .mobile__title h2 {
        font-size: 32px;
    }
    .mobile__title h3 {
        font-size: 28px;
    }
    .mobile__text p {
        font-size: 17px;
        line-height: 26px;
    }
}

@media (max-width: 992px) {
    .mobile {
        padding: 40px 15px;
    }
    .mobile__title {
        padding-bottom: 25px;
        margin-bottom: 25px;
    }
    .mobile__title h2 {
        font-size: 28px;
    }
    .mobile__title h3 {
        font-size: 24px;
    }
    .mobile__text p {
        font-size: 16px;
        line-height: 24px;
    }
}

@media (max-width: 768px) {
    .mobile__title {
        border-bottom: 3px solid #ffc814;
    }
    .mobile__title h2 {
        font-size: 24px;
    }
    .mobile__title h3 {
        font-size: 20px;
    }
    .mobile__text p {
        font-size: 15px;
        line-height: 22px;
        text-align: justify;
    }
}

@media (max-width: 480px) {
    .mobile {
        padding: 30px 10px;
    }
    .mobile__title {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    .mobile__title h2 {
        font-size: 20px;
    }
    .mobile__title h3 {
        font-size: 18px;
    }
    .mobile__text p {
        font-size: 14px;
        line-height: 20px;
        text-align: justify;
    }
}

/*--------------------*/
.wondering{
    padding: 60px 20px;
    background: #454006;
}
.wondering__container{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}
.wondering__container h2{
    color: #FFF;
    text-align: center;
    font-size: 31.9px;
    font-style: normal;
    font-weight: 500;
    line-height: 38.4px;
}
.wondering__container button {
    border-radius: 160px;
    background: #F8F9FA;
    max-width: 420px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 19px 20px;
    color: #212529;
    font-size: 13.6px;
    font-style: normal;
    font-weight: 700;
    line-height: 20.4px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}
.wondering__container button:hover {
    transform: scale(1.05);
    background: #ffffff;
    box-shadow: 0 0 20px rgba(255, 183, 0, 0.78);
    color: #111;
}
.wondering__container button:active {
    transform: scale(0.97);
    box-shadow: 0 0 10px rgba(255, 166, 0, 0.15);
}

.wondering__container p{
    color: #ffffff;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    max-width: 1200px;
    text-align: center;
}
/*--------------------*/
.gallery {
    background-color: #E9AB00;
    padding: 60px 20px;
}
.gallery__container {
    margin: 0 auto;
}
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 1fr;
    gap: 20px;
}
.gallery__item {
    position: relative;
    overflow: hidden;
}
.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 100px;

}
.gallery__item:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
}
@media (max-width: 1024px) {
    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .gallery__grid {
        grid-template-columns: 1fr;
    }
}
/*--------------------*/
.awards{
    padding: 60px 20px;
}
.awards__container{
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.awards__container h2{
    color: #212529;
    text-align: center;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 38.4px; /* 120% */
    padding-bottom: 23px;
    border-bottom: 4px solid #f89500;
}
.awards__container h3{
    color: #212529;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight:400;
    line-height: 24px; /* 150% */
    padding-top: 23px;
    margin-bottom: 36px;
}
.awards__photos{
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 15px;
}



@media (max-width: 1200px) {
    .awards__photos {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .awards__photos img {
        max-width: 220px;
    }
}

@media (max-width: 992px) {
    .awards {
        padding: 50px 15px;
    }
    .awards__container h2 {
        font-size: 28px;
        line-height: 34px;
    }
    .awards__container h3 {
        font-size: 15px;
        line-height: 22px;
        max-width: 700px;
    }
    .awards__photos img {
        max-width: 200px;
    }
}

@media (max-width: 768px) {
    .awards {
        padding: 40px 15px;
    }
    .awards__container h2 {
        font-size: 24px;
        padding-bottom: 18px;
    }
    .awards__container h3 {
        font-size: 14px;
        line-height: 20px;
        padding-top: 18px;
    }
    .awards__photos {
        flex-wrap: wrap;
        gap: 25px;
    }
    .awards__photos img {
        max-width: none;
    }
}

@media (max-width: 480px) {
    .awards {
        padding: 30px 10px;
    }
    .awards__container h2 {
        font-size: 20px;
        border-bottom: 3px solid #f8a100;
    }
    .awards__container h3 {
        font-size: 13px;
        line-height: 18px;
        margin-bottom: 25px;
    }
    .awards__photos {
        flex-direction: column;
        gap: 20px;
    }
    .awards__photos img {
    }
}

/*--------------------*/
.questions{
    padding: 60px 20px;
    background: #454006;
}
.questions__container{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.questions__container h2{
    color: #FFF;
    text-align: center;
    font-size: 31.8px;
    font-style: normal;
    font-weight: 500;
    line-height: 38.4px; /* 120.755% */
    margin-bottom: 24px;
}
.questions__container a {
    border-radius: 160px;
    background: #F8F9FA;
    max-width: 410px;
    padding: 19px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #212529;
    text-align: center;
    font-size: 13.6px;
    font-style: normal;
    font-weight: 700;
    line-height: 20.4px; /* 150% */
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}
.questions__container a:hover {
    transform: scale(1.05);
    background: #ffffff;
    box-shadow: 0 0 20px rgba(255, 183, 0, 0.89);
    color: #111;
}
.questions__container a:active {
    transform: scale(0.97);
    box-shadow: 0 0 10px rgba(160, 0, 255, 0.15);
}

/*--------------------*/
.trusted{
    padding: 60px 20px;
    margin-bottom: 100px;
}
.trusted__container{
    max-width: 1100px;
    margin: 0 auto;
}
.trusted__title{
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.trusted__title h2{
    color: #212529;
    text-align: center;
    font-size: 31.4px;
    font-style: normal;
    font-weight: 500;
    line-height: 38.4px; /* 122.293% */
    padding-bottom: 23px;
    border-bottom: 4px solid #f89500;
    max-width: 500px;
}
.trusted__title p{
    color: #212529;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    padding-top: 23px;
    text-align: center;
}
.trusted__main{
    max-width: 995px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}
.trusted__main img {
    transition: all 0.4s ease;
    border-radius: 12px;
    transform: scale(1);
}
.trusted__main img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 153, 0, 0.58);
    filter: brightness(1.05);
}

/*--------------------*/
.contact-block{
    padding: 20px;
    margin-bottom: 77px;
}
.contact-block__container{
    max-width: 730px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.contact-block__title{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 47px;
}
.contact-block__title h2{
    color: #212529;
    text-align: center;
    font-size: 31.6px;
    font-style: normal;
    font-weight: 500;
    line-height: 38.4px; /* 121.519% */
    padding-bottom: 23px;
    border-bottom: 4px solid #f88400;
    max-width: 500px;
}
.contact-block__title p{
    color: #6C757D;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    padding-top: 23px;
}
.contact-block__main{
    display: flex;
    width: 100%;
    justify-content: space-around;
    gap: 20px;
}
.contact-block__main-phone{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.contact-block__main-phone p{
    color: #212529;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
}
.contact-block__main-mail{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.contact-block__main-mail p{
    color: #f8a900;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
}



@media (max-width: 992px) {
    .contact-block {
        padding: 30px 15px;
        margin-bottom: 60px;
    }
    .contact-block__title h2 {
        font-size: 28px;
        line-height: 34px;
        padding-bottom: 20px;
    }
    .contact-block__title p {
        font-size: 15px;
        line-height: 22px;
        padding-top: 18px;
    }
    .contact-block__main {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .contact-block {
        padding: 25px 15px;
        margin-bottom: 50px;
    }
    .contact-block__title h2 {
        font-size: 24px;
        border-bottom: 3px solid #f8b200;
    }
    .contact-block__title p {
        font-size: 14px;
        line-height: 21px;
    }
    .contact-block__main {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    .contact-block__main-phone img,
    .contact-block__main-mail img {
        width: 60px;
    }
    .contact-block__main-phone p,
    .contact-block__main-mail p {
        font-size: 15px;
        line-height: 22px;
    }
}

@media (max-width: 480px) {
    .contact-block {
        padding: 20px 10px;
        margin-bottom: 40px;
    }
    .contact-block__title h2 {
        font-size: 20px;
    }
    .contact-block__title p {
        font-size: 13px;
        line-height: 20px;
    }
    .contact-block__main {
        gap: 30px;
    }
    .contact-block__main-phone img,
    .contact-block__main-mail img {
        width: 50px;
    }
    .contact-block__main-phone p,
    .contact-block__main-mail p {
        font-size: 14px;
    }
}

/*--------------------*/
.footer {
    background-color: #f6f6f8;
    color: #333;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
    padding-top: 20px;
    border-top: 3px solid #b87e00;
}
.footer__nav ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}
.footer__nav a {
    color: #444;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}
.footer__nav a:hover {
    color: #d4a53f;
}
.footer__bottom {
    max-width: 900px;
    margin: 30px auto 0px;
    padding: 0 20px;
}
.footer__bottom p {
    margin: 6px 0;
}
.footer__bottom a {
    color: #f8c600;
    text-decoration: none;
    font-weight: 600;
}
.footer__note {
    font-size: 13px;
    color: #666;
    margin-top: 10px;
}
@media (max-width: 768px) {
    .footer__nav ul {
        gap: 20px;
        font-size: 13px;
    }
    .footer__bottom {
        font-size: 13px;
    }
}
/*--------------------*/
.join {
    background-color: #fff;
    color: #111;
    font-family: "Inter", sans-serif;
    padding: 100px 0;
}
.join__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}
.join__title {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
}
.join__title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background-color: #f8b200;
    margin: 12px auto 0;
}
.join__content {
    font-size: 17px;
    line-height: 1.7;
    color: #222;
}
.join__content p {
    margin-bottom: 16px;
}
.join__content strong {
    font-weight: 700;
}
.join__content ul {
    list-style-type: disc;
    margin: 15px 0 25px 25px;
}
.join__content li {
    margin-bottom: 8px;
}
.join__email {
    color: #f8b200;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}
.join__email:hover {
    color: #f8a900;
}
.join__content a {
    color: #111;
    text-decoration: none;
    transition: color 0.3s;
}
.join__content a:hover {
    color: #f8a900;
}
@media (max-width: 768px) {
    .join {
        padding: 60px 0;
    }
    .join__title {
        font-size: 28px;
    }
    .join__content {
        font-size: 15px;
    }
}
/*-----------------*/
.policy {
    padding: 60px 20px;
    background-color: #fafafa;
    color: #222;
    font-family: "Inter", sans-serif;
}
.policy__container {
    max-width: 900px;
    margin: 0 auto;
}
.policy h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #111;
}
.policy h3 {
    font-size: 20px;
    margin: 25px 0 10px;
    color: #444;
}
.policy p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
}
.policy ul {
    margin: 15px 0 25px 20px;
    list-style-type: disc;
}
.policy li {
    margin-bottom: 10px;
    line-height: 1.6;
}
.policy a {
    color: #d4a53f;
    text-decoration: none;
}
.policy a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .policy {
        padding: 40px 15px;
    }
    .policy h2 {
        font-size: 24px;
    }
    .policy h3 {
        font-size: 18px;
    }
    .policy p,
    .policy li {
        font-size: 15px;
    }
}
@media (max-width: 480px) {
    .policy {
        padding: 30px 10px;
    }
    .policy h2 {
        font-size: 22px;
    }
    .policy h3 {
        font-size: 16px;
    }
    .policy p,
    .policy li {
        font-size: 14px;
        line-height: 1.5;
    }
}
/*--------------*/
.cookie-popup {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #333;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 16px;
    padding: 25px 30px;
    width: 90%;
    max-width: 1000px;
    z-index: 10000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}
.cookie-popup.show {
    opacity: 1;
    visibility: visible;
    bottom: 50px;
}
.cookie-popup__container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.cookie-popup p {
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
}
.cookie-popup a {
    color: #d4a03f;
    text-decoration: none;
}
.cookie-popup a:hover {
    text-decoration: underline;
}
.cookie-popup__buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
}
.cookie-btn {
    padding: 8px 22px;
    border-radius: 25px;
    border: 1px solid #a69346;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s ease;
}
.cookie-btn.accept {
    background: #f4e7cb;
    color: #3a392a;
}
.cookie-btn.reject {
    background: transparent;
    color: #3a352a;
}
.cookie-btn.accept:hover {
    background: #ebd3af;
}
.cookie-btn.reject:hover {
    background: rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .cookie-popup {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .cookie-popup__container {
        align-items: center;
    }

    .cookie-popup__buttons {
        flex-direction: row;
        justify-content: center;
    }

    .cookie-btn {
        font-size: 14px;
        padding: 7px 18px;
    }
}

@media (max-width: 480px) {
    .cookie-popup {
        width: 95%;
        bottom: 20px;
        padding: 18px;
    }

    .cookie-popup p {
        font-size: 14px;
    }

    .cookie-btn {
        font-size: 13px;
    }
}
/*--------------*/
.country-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 20000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}
.country-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(62, 40, 0, 0.8);
    z-index: 1;
    backdrop-filter: blur(3px);
}
.country-popup__content {
    position: relative;
    z-index: 2;
    background: #301600;
    color: #ffc400;
    padding: 40px 60px;
    border-radius: 14px;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: all 0.4s ease;
    transform: scale(0.9);
}
.country-popup.show {
    opacity: 1;
    visibility: visible;
}
.country-popup.show .country-popup__content {
    transform: scale(1);
}
.country-popup__content h3 {
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 600;
}
.country-popup__buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
}
.country-popup__buttons button {
    background: transparent;
    border: 1px solid #ffc400;
    color: #ffc400;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 28px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.country-popup__buttons button:hover {
    background: #ffc400;
    color: #000;
}
@media (max-width: 600px) {
    .country-popup__content {
        padding: 30px 20px;
        width: 90%;
    }

    .country-popup__buttons {
        flex-direction: column;
        gap: 15px;
    }

    .country-popup__buttons button {
        width: 100%;
        padding: 10px 0;
    }
}
/*--------------------*/
.contact-info {
    padding: 80px 20px;
}

.contact-info__container {
    max-width: 1150px;
    margin: 0 auto;
    text-align: center;
}

.contact-info__container h2 {
    font-size: 32px;
    font-weight: 600;
    color: #212529;
    margin-bottom: 15px;
}

.contact-info__container h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #f89500;
    margin: 12px auto 30px;
}

.contact-info__buttons {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 60px;
}

.contact-btn {
    background: #7e5200;
    color: #fff;
    font-weight: 600;
    border: none;
    padding: 10px 25px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: #7e5200;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 153, 0, 0.3);
}
.contact-info__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}
.contact-info__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #212529;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-info__item img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    transition: transform 0.4s ease;
}
.contact-info__item:hover img {
    transform: scale(1.1);
    filter: brightness(1.1);
}
.contact-info__item:hover {
    transform: translateY(-6px);
}
.contact-info__item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}
.contact-info__item p {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.6;
}
@media (max-width: 992px) {
    .contact-info__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .contact-info__buttons {
        flex-direction: column;
        gap: 20px;
    }
}
@media (max-width: 600px) {
    .contact-info__grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .contact-info__container h2 {
        font-size: 26px;
    }
}

/*-----------------------*/
.contact-form {
    background: #7e5200;
    padding: 80px 20px;
    color: #fff;
}
.contact-form__container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.contact-form__container h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
}
.contact-form__container h2::after {
    content: "";
    display: block;
    width: 70px;
    height: 3px;
    background: #fff;
    margin: 10px auto 40px;
}
.contact-form__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-form__form input,
.contact-form__form textarea {
    width: 100%;
    padding: 14px 18px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    outline: none;
    color: #212529;
    transition: all 0.3s ease;
}
.contact-form__form input:focus,
.contact-form__form textarea:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.4);
    transform: scale(1.01);
}
.contact-form__form textarea {
    resize: none;
}
.contact-form__form button {
    margin-top: 10px;
    border: none;
    background: #fff;
    color: #111;
    font-weight: 700;
    font-size: 14px;
    border-radius: 50px;
    padding: 16px 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: center;
}
.contact-form__form button:hover {
    background: #f3f3f3;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}
@media (max-width: 768px) {
    .contact-form__container h2 {
        font-size: 26px;
    }
    .contact-form__form input,
    .contact-form__form textarea {
        font-size: 15px;
    }
    .contact-form__form button {
        width: 100%;
    }
}



