/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #121212;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    z-index: 10000;
    border-top: 1px solid #333;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    font-size: 14px;
    color: #ccc;
    flex: 1;
    min-width: 300px;
}

.cookie-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.cookie-btn.accept {
    background-color: #8B7355;
    color: white;
}

.cookie-btn.accept:hover {
    background-color: #9A7F63;
}

.cookie-btn.decline {
    background-color: transparent;
    color: #ccc;
    border: 1px solid #555;
}

.cookie-btn.decline:hover {
    background-color: #555;
    color: white;
}

.cookie-link {
    color: #8B7355;
    text-decoration: underline;
    font-size: 12px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 80px;
}

.nav-left {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #8B7355;
}

.logo {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 2px;
}

.contact-btn {
    background-color: #8B7355;
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.contact-btn:hover {
    background-color: #9A7F63;
    transform: translateY(-2px);
}

.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.burger-menu span {
    width: 25px;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 40px;
    flex-direction: column;
    gap: 20px;
}

.mobile-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 1px solid #333;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: #535353;
    background-image: url(../images/hero.png);
    background-position: center;
    background-size: cover;
    padding-top: 80px;
}

.hero-content {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.hero-text {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.hero-subtitle {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    color: #8B7355;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: 0;
    font-weight: 700;
    color: transparent;

    letter-spacing: 4px;
}

.hero-image {
    width: 100%;
    max-width: 600px;
    height: 400px;
    margin: 0 auto 40px;
    position: relative;
}

.hero-building {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #8B7355, #D4AF37);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.hero-building::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 70%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.hero-description {
    max-width: 400px;
   
}

.hero-description p {
    font-size: 14px;
    line-height: 1.2;
    color: #cccccc;
    margin-top: 30px;
}

.discover-btn {
    background-color: #8B7355;
    color: #ffffff;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.discover-btn:hover {
    background-color: #9A7F63;
    transform: translateY(-3px);
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: #1a1a1a;
}

.about-content {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
}

.about-content h2 {
    color: #FFF;
font-family: Cinzel;
font-size: 14px;
font-style: normal;
font-weight: 700;
line-height: normal;
letter-spacing: 6.3px;
text-transform: uppercase;
}

.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: #cccccc;
    max-width: 600px;
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background-color: #8B7355;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 60px;
    text-align: center;
}

.stat-number {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Titles */
.section-title {
    font-family: 'Cinzel', serif;
    font-size: 36px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

/* Advantages Section */
.advantages {
    padding: 100px 0;
    background-color: #1a1a1a;
}

.advantages-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: #8B7355;
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.advantages-text {
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 0 40px;
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
    color: #cccccc;
}

.advantages-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.advantage-card {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 50.76%, #000 92.91%);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    position: relative;
    min-height: 353px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.advantage-card img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.advantage-card:hover {
    transform: translateY(-10px);
}

.advantage-image {
    width: 100%;
    height: 200px;
    background-color: #8B7355;
    position: relative;
}

.advantage-img-1 {
    background: linear-gradient(135deg, #8B7355, #D4AF37);
}

.advantage-img-2 {
    background: linear-gradient(135deg, #6B5B95, #8B7355);
}

.advantage-img-3 {
    background: linear-gradient(135deg, #88D8B0, #8B7355);
}

.advantage-img-4 {
    background: linear-gradient(135deg, #FF6B6B, #8B7355);
}

.advantage-card h4 {
    padding: 20px 20px 10px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.advantage-card p {
    padding: 0 20px 20px;
    font-size: 14px;
    color: #cccccc;
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 100px 0;
   
}

.services-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #8B7355;
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.services-text {
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 0 40px;
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
    color: #cccccc;
}

.services-list {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

.service-item {
    display: flex;
    align-items: flex-start;
    padding: 30px 0;
    border-bottom: 1px solid #333;
    transition: all 0.3s ease;
}

.service-item:hover {
    background-color: rgba(139, 115, 85, 0.1);
    padding-left: 20px;
}

.service-number {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    font-weight: 600;
    color: #8B7355;
    margin-right: 40px;
    min-width: 60px;
}

.service-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-content p {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.6;
}

/* Reviews Section */
.reviews {
    padding: 100px 0;
    background-color: #1a1a1a;
}

.reviews-text {
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 0 40px;
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
    color: #cccccc;
}

.reviews-slider-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

.reviewsSwiper {
    padding-bottom: 60px;
}

.reviewsSwiper .swiper-slide {
    height: auto;
}

.review-item {
    border-radius: 8px;
border: 1px solid #D4AF37;
background: #1A1A1A;
padding: 17px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: transform 0.3s ease;
}

.review-item img {
   width: 100%;
}

.review-stars {
    font-size: 20px;
    color: #8B7355;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.review-item h4 {
    font-size: 14px;
    font-weight: 600;
    color: #8B7355;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.review-item p {
    font-size: 16px;
    color: #cccccc;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
    flex-grow: 1;
}

.review-location {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: auto;
}

/* Swiper Navigation */
.reviewsSwiper .swiper-button-next,
.reviewsSwiper .swiper-button-prev {
    color: #8B7355;
    width: 50px;
    height: 50px;
    margin-top: -25px;
    background-color: rgba(42, 42, 42, 0.8);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.reviewsSwiper .swiper-button-next:hover,
.reviewsSwiper .swiper-button-prev:hover {
    background-color: #8B7355;
    color: #ffffff;
    transform: scale(1.1);
}

.reviewsSwiper .swiper-button-next::after,
.reviewsSwiper .swiper-button-prev::after {
    font-size: 18px;
    font-weight: bold;
}

/* Swiper Pagination */
.reviewsSwiper .swiper-pagination {
    bottom: 20px;
}

.reviewsSwiper .swiper-pagination-bullet {
    background-color: #555;
    width: 12px;
    height: 12px;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.reviewsSwiper .swiper-pagination-bullet-active {
    background-color: #8B7355;
    opacity: 1;
    transform: scale(1.2);
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background-color: #2a2a2a;
}

.faq-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #8B7355;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
}

.faq-list {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 40px 0;
}

.faq-item {
    border-bottom: 1px solid #333;
    margin-bottom: 20px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #8B7355;
}

.faq-question h4 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: inherit;
}

.faq-toggle {
    font-size: 24px;
    font-weight: 300;
    color: #8B7355;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 25px;
}

.faq-answer p {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: #1a1a1a;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-content h2 {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.contact-content p {
    font-size: 16px;
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background-color: #2a2a2a;
    border: 2px solid #333;
    border-radius: 10px;
    color: #ffffff;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8B7355;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888;
}

.submit-btn {
    background-color: #8B7355;
    color: #ffffff;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    align-self: flex-start;
}

.submit-btn:hover {
    background-color: #9A7F63;
    transform: translateY(-2px);
}

.contact-image {
    height: 400px;
    max-width: 531px;
    width: 100%;
}

.contact-image img {
    width: 100%;
    margin-top: 40px;
}

.contact-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8B7355, #D4AF37);
    border-radius: 15px;
}

/* Footer */
.footer {
    background-color: #8B7355;
    padding: 60px 0;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.footer-logo {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 40px;
    letter-spacing: 3px;
}

.footer-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-section {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-section span {
    margin: 0 10px;
}

/* Responsive Design */
@media (max-width: 1023px) {
    .contact-btn {
        display: none;
    }
    .nav-left {
        display: none;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .mobile-menu.active {
        display: flex;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }
    
    .hero-content,
    .about-content,
    .advantages-text,
    .services-text,
    .reviews-text,
    .stats-container,
    .advantages-grid,
    .services-list,
    .reviews-slider-container,
    .faq-list,
    .contact-container {
        padding: 0 20px;
    }

    .hero {
        background-image: url(../images/hero-mob.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    }
    
    .hero-title {
        font-size: 16vw;
        color: #fff;
    }

    .hero-subtitle {
        border-radius: 83px;
        border: 1px #fff solid;
background: rgba(0, 0, 0, 0.00);
padding: 9px 24px;
color: #fff;
    }

    .hero-text {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .service-item {
        flex-direction: column;
        text-align: center;
    }
    
    .service-number {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content p {
        min-width: auto;
        margin-bottom: 15px;
    }
    
    /* Reviews Swiper Mobile */
    .reviewsSwiper .swiper-button-next,
    .reviewsSwiper .swiper-button-prev {
        display: none;
    }
    
    .review-item {
        padding: 30px 20px;
    }
    
    .review-item p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 90vh;
      
       padding-top: 140px;
       padding-bottom: 60px;
    }

    .hero-content {
        height: 100%;
        min-height: auto;
    }

    .about-content {
        flex-direction: column;
    }
    
    .hero-image {
        height: 250px;
    }
    
    .hero-title {
      
        margin-bottom: 20px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .contact-content h2 {
        font-size: 24px;
    }
    
    .footer-logo {
        font-size: 36px;
    }
}

              .page {
                padding: 80px 0;
              }
              
              .page__inner {
                padding-top: 40px;
                width: 100%;
                margin: 0 auto;
                display: flex;
                  flex-direction: column;
                  row-gap: 18px;
                  line-height: 1.4;
              }

              .page__inner p {
                padding-bottom: 10px;
                padding-top: 8px;
              }

              .page__inner strong {
                font-weight: 600;
              }

              .page__inner ul {
                padding-left: 20px;
                list-style-type: disc;
              }

              .thank {
                padding-top: 140px;
                padding-bottom: 140px;
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 40px;
                text-align: center;
              }

              .thank-list {
                width: 100%;
                max-width: 1200px;
                margin: 0 auto 40px;
                display: flex;
                flex-direction: column;
                padding: 40px 24px;
                color: #121212;
                background: #E1E0DA;
              }

              .consent {
                border-radius: 10px;
                  background: #F5F5F5;
                    padding: 30px;
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;
                    gap: 15px;
                    max-width: 830px;
                    width: 95%;
                    position: fixed;
                    left: 10%;
                    bottom: 50px;
                    transform: translateX(-10%);
                    z-index: 21;
                 
                   
                }

               
                
                .consent__text {
                  font-size: 14px;
                  color: #131313;
                  span {
                    display: block;
                    font-size: 30px;
                    text-transform: uppercase;
                  }
                }
                
                .consent__buttons {
                  display: flex;
                 
                  gap: 30px;
                  align-items: center;
                  width: 100%;
                 
                }       
                
                @media (max-width: 900px) {
                  .consent {
                    left: 50%;
                    transform: translateX(-50%);
                  }
                  .consent__buttons {
                    justify-content: center;
                    flex-direction: column;
                  }
                }

                .button {
                  position: relative;
                  align-self: center;
                  display: flex;
                  align-items: center;
                  justify-content: center;
                  text-decoration: none;
                  border: none;
                  border-radius: 20px;
                 
                  max-width: 400px;
                  min-height: 48px;
                  padding: 0 24px;
                  font-family:
                    Roboto,
                    -apple-system,
                    Roboto,
                    Helvetica,
                    sans-serif;
                  font-size: 18px;
                  font-weight: 700;
                  color: rgba(255, 255, 255, 1);
                  white-space: nowrap;
                  text-transform: uppercase;
                  cursor: pointer;
                }

                