/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Georgia', 'Times New Roman', serif;
    position: relative;
}

/* Burger Menu */
.burger-menu-wrapper {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
}

.burger-menu-btn {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid white;
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 0;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.burger-menu-btn:hover {
    background: rgba(0, 0, 0, 0.9);
}

.burger-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.burger-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.burger-menu {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid white;
    border-radius: 4px;
    padding: 20px 40px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.burger-menu.active {
    opacity: 1;
    visibility: visible;
}

.burger-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

.burger-menu-list li {
    margin: 15px 0;
}

.burger-menu-list a {
    color: white;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.burger-menu-list a:hover {
    color: #ffd700;
    text-decoration: none;
}

.row {
    margin: 0;
}

/* Первая секция (header) - полная высота */
/* Используем класс column-left и column-right, которые есть только в header */
.column-left,
.column-right {
    min-height: 100vh;
}

/* Убираем высоту 100vh для других секций */
.section-2 .row,
.section-4 .row,
.section-5 {
    min-height: auto !important;
}

.header-left {
    background-image: url('../img/header-left.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.column-left-top {
    min-height: 100vh;
}

.column-left-bottom {
    min-height: 100vh;
}

.logo-block {
    text-align: center;
    color: white;
    max-width: 370px;
    margin-right: 40px;
}

.logo-icon {
    margin-bottom: 20px;
}

.logo-icon img {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.logo-text {
    font-size: 72px;
    font-weight: bold;
    letter-spacing: 4px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin: 0;
    margin-bottom: 15px;
}

.logo-description {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin: 0;
    margin-bottom: 15px;
    opacity: 0.9;
}

.logo-subdescription {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 300;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin: 0;
    margin-bottom: 25px;
    opacity: 0.85;
    line-height: 1.2;
    letter-spacing: 0.3px;
}

.logo-divider {
    width: 100px;
    height: 1px;
    background: rgba(255, 255, 255, 0.6);
    margin: 25px auto 25px;
}

.btn-reserve {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
    text-decoration: none;
    padding: 12px 35px;
    border: 2px solid white;
    background: transparent;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.btn-reserve:hover {
    background: white;
    color: #2c1810;
    text-decoration: none;
    text-shadow: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,255,255,0.3);
}

.header-right {
    background-image: url('../img/header-right.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.contact-info {
    color: white;
    max-width: 370px;
    text-align: center;
    padding-top: 50px;
    margin-left: 40px;
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-info .phone {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-info .phone a {
    color: white;
    text-decoration: none;
}

.contact-info .phone a:hover {
    text-decoration: none;
}

.contact-info .address {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 15px;
    opacity: 0.9;
    line-height: 1.8;
}

.contact-info .email {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 300;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 15px;
    opacity: 0.85;
    line-height: 1.2;
    letter-spacing: 0.3px;
}

.contact-info .email a {
    color: white;
    text-decoration: none;
}

.contact-info .email a:hover {
    text-decoration: none;
}

.hours {
    margin-top: 25px;
    font-family: 'Montserrat', sans-serif;
}

.hours p {
    margin-bottom: 8px;
    font-size: 15px;
}

.hours strong {
    color: white;
}

/* Section 2 */
.section-2 {
    background-image: url('../img/section2left.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: auto;
}

.section-2-left {
    padding: 60px 0;
}

.section-2-right {
    padding: 60px 0;
}

.section-2-content {
    background: rgba(255, 255, 255, 0.75);
    padding: 40px;
    max-width: 370px;
    margin-right: 40px;
    color: rgb(0, 0, 0);
    text-align: center;
    border: 2px solid rgb(0, 0, 0);
    outline: 2px solid rgb(0, 0, 0);
    outline-offset: 4px;
}

.section-2-content .logo-divider {
    background: rgba(0, 0, 0, 0.6);
}

.section-2-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    margin-bottom: 15px;
    opacity: 0.9;
}

.section-2-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 300;
    margin: 0;
    opacity: 0.85;
    line-height: 1.2;
    letter-spacing: 0.3px;
}

.section-2-right-content {
    background: rgba(0, 0, 0, 0.75);
    padding: 20px;
    max-width: 370px;
    margin-left: 40px;
    margin-bottom: 20px;
    color: white;
    text-align: center;
}

.section-2-right-content p {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 300;
    margin: 0;
    line-height: 1.2;
    letter-spacing: 0.3px;
}

.section-2-right-description {
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    max-width: 370px;
    margin-left: 40px;
    color: rgb(0, 0, 0);
    text-align: center;
}

.section-2-right-description p {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 300;
    margin: 0;
    line-height: 1.4;
    letter-spacing: 0.3px;
}

/* Responsive Design */
@media (max-width: 767.98px) {
    
    .column-right {
        min-height: auto !important;
    }
    
    .header-right {
        min-height: auto !important;
    }
    
    .column-right-top {
        min-height: auto !important;
    }
    
    .contact-overlay {
        position: relative !important;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
    }
    
    .section-2-left {
        padding: 40px 0 !important;
    }
    
    .section-2-right {
        padding: 40px 0 !important;
    }
    
    .section-2-content {
        margin-right: 0;
        margin-left: 0;
        max-width: 100%;
        border: none !important;
        outline: none !important;
    }
    
    .section-2-right {
        justify-content: center !important;
    }
    
    .section-2-right-content {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
        margin-bottom: 15px;
    }
    
    .section-2-right-description {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
    }
    
    .logo-block {
        margin-right: 0;
        max-width: none;
    }
    
    .logo-text {
        font-size: 48px;
    }
    
    .column-right {
        justify-content: center !important;
    }
    
    .contact-info {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
    }
    
    .contact-info .phone {
        font-size: 32px;
    }
}

/* Section 4 - Menu */
.section-4 {
    padding: 80px 0;
    background: #ffffff;
}

.section-4 .row {
    min-height: auto;
}

.section-4-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 50px;
    color: #2c1810;
}

.section-4-tabs {
    border-bottom: none;
    margin-bottom: 40px;
}

.section-4-tabs .nav-item {
    margin: 0 5px;
}

.section-4-tabs .nav-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    padding: 12px 20px;
    border: none;
    border-bottom: 2px solid transparent;
    background: transparent;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.section-4-tabs .nav-link i {
    font-size: 20px;
    transition: all 0.3s ease;
}

.section-4-tabs .nav-link span {
    display: block;
}

.section-4-tabs .nav-link:hover {
    color: #d4a574;
    border-bottom-color: #d4a574;
}

.section-4-tabs .nav-link:hover i {
    transform: scale(1.1);
    color: #d4a574;
}

.section-4-tabs .nav-link.active {
    color: #d4a574;
    border-bottom-color: #d4a574;
    background: transparent;
}

.section-4-tabs .nav-link.active i {
    color: #d4a574;
}

.section-4-content {
    padding-top: 20px;
}

.menu-section-header {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    gap: 20px;
}

.menu-section-divider {
    flex: 1;
    height: 2px;
    background: #d4a574;
}

.menu-section-title-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    text-align: center;
}

.menu-section-title-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-section-title-wrapper i {
    font-size: 28px;
    color: #d4a574;
}

.menu-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 400;
    color: #d4a574;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.menu-section-sizes {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #2c1810;
}

.menu-item-horizontal {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.menu-item-horizontal:last-child {
    border-bottom: none;
}

.menu-item-image-circle {
    width: 180px;
    height: 180px;
    min-width: 80px;
    border-radius: 50%;
    overflow: hidden;
    background: #f0f0f0;
}

.menu-item-image-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.menu-item-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    color: #2c1810;
    margin-bottom: 8px;
}

.menu-item-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #666;
    line-height: 1.5;
    margin-bottom: 8px;
}

.menu-item-weight {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #888;
    margin-bottom: 8px;
}

.menu-item-price {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: #2c1810;
    margin-top: auto;
}

/* Responsive Design для Section 4 */
@media (max-width: 767.98px) {
    .section-4 {
        padding: 50px 0;
    }
    
    .section-4-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .section-4-tabs {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .section-4-tabs .nav-item {
        margin: 5px;
    }
    
    .section-4-tabs .nav-link {
        padding: 10px 15px;
        font-size: 12px;
    }
    
    .section-4-tabs .nav-link i {
        font-size: 18px;
    }
    
    .menu-section-header {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .menu-section-divider {
        width: 100%;
    }
    
    .menu-section-title-wrapper {
        gap: 6px;
    }
    
    .menu-section-title-content {
        gap: 10px;
    }
    
    .menu-section-title {
        font-size: 24px;
    }
    
    .menu-section-title-wrapper i {
        font-size: 22px;
    }
    
    .menu-section-sizes {
        font-size: 12px;
    }
    
    .menu-item-horizontal {
        gap: 15px;
        padding: 12px 0;
    }
    
    .menu-item-image-circle {
        width: 70px;
        height: 70px;
        min-width: 70px;
    }
    
    .menu-item-title {
        font-size: 18px;
    }
    
    .menu-item-description {
        font-size: 13px;
    }
    
    .menu-item-weight {
        font-size: 12px;
    }
    
    .menu-item-price {
        font-size: 16px;
    }
}

/* Section About Us */
.section-about {
    padding: 80px 0;
    background: #f9f9f9;
}

.section-about-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 600;
    color: #2c1810;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.section-about-description {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.section-about-description p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.section-about-description p:last-child {
    margin-bottom: 0;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.about-feature-item {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.about-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.about-feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #d4a574 0%, #c8955c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    transition: all 0.3s ease;
}

.about-feature-item:hover .about-feature-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #c8955c 0%, #d4a574 100%);
}

.about-feature-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    color: #2c1810;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-feature-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

/* Section 5 - Gallery Slider */
.section-5 {
    padding: 60px 0;
    background: #ffffff;
    overflow: hidden;
    position: relative;
}

/* Section 6 - Contacts */
.section-6-contacts {
    width: 100%;
    padding: 80px 0;
    margin: 0;
    overflow: hidden;
    position: relative;
    background: #f9f9f9;
}

.map-section-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn-show-map {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #d4a574 0%, #c8955c 100%);
    color: white;
    border: none;
    border-radius: 5px;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-show-map:hover {
    background: linear-gradient(135deg, #c8955c 0%, #d4a574 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-show-map:active {
    transform: translateY(0);
}

.btn-show-map i {
    font-size: 20px;
}

.map-container {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
    margin-top: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.map-container.show {
    display: block !important;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    pointer-events: auto;
}

.gallery-slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.gallery-slider-track {
    display: flex;
    will-change: transform;
}

.gallery-slider-item {
    flex-shrink: 0;
    width: 300px;
    height: 400px;
    margin-right: 20px;
    overflow: hidden;
    border-radius: 8px;
}

.gallery-slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive Design для Section 5 */
@media (max-width: 767.98px) {
    .section-5 {
        padding: 40px 0;
    }
    
    .gallery-slider-item {
        width: 250px;
        height: 160px;
        margin-right: 15px;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c1810 0%, #1a0f08 100%);
    color: white;
    padding: 60px 0 20px;
    margin-top: 0;
}

.footer-column {
    margin-bottom: 40px;
}

.footer-column h5 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffd700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column p {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
}

.footer-column a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: #ffd700;
    text-decoration: none;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #ffd700;
    color: #2c1810;
    transform: translateY(-3px);
}

.footer-hours p {
    font-size: 14px;
    margin-bottom: 5px;
}

.footer-hours strong {
    color: #ffd700;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 40px;
}

.footer-bottom p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    margin-bottom: 15px;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.footer-links a {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ffd700;
    text-decoration: none;
}

.footer-separator {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 5px;
}

/* Privacy Policy Modal */
.privacy-modal {
    border-radius: 10px;
    border: none;
}

.privacy-modal .modal-header {
    background: linear-gradient(135deg, #2c1810 0%, #4a2c1a 100%);
    color: white;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px 10px 0 0;
}

.privacy-modal .modal-header .close {
    color: white;
    opacity: 0.8;
}

.privacy-modal .modal-header .close:hover {
    opacity: 1;
}

.privacy-modal .modal-body {
    padding: 30px;
    background: #f9f9f9;
    max-height: 70vh;
    overflow-y: auto;
}

.privacy-modal .modal-body h6 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: #2c1810;
    margin-top: 20px;
    margin-bottom: 10px;
}

.privacy-modal .modal-body h6:first-child {
    margin-top: 0;
}

.privacy-modal .modal-body p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.privacy-modal .modal-body ul {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
    padding-left: 20px;
}

.privacy-modal .modal-body ul li {
    margin-bottom: 8px;
}

.privacy-modal .modal-body a {
    color: #2c1810;
    text-decoration: underline;
}

.privacy-modal .modal-body a:hover {
    color: #d4a574;
}

.privacy-modal .modal-footer {
    border-top: 1px solid #e0e0e0;
    padding: 15px 30px;
    background: #f9f9f9;
    border-radius: 0 0 10px 10px;
}

.privacy-modal .btn-secondary {
    background: #2c1810;
    border: none;
    color: white;
    padding: 8px 20px;
    transition: all 0.3s ease;
}

.privacy-modal .btn-secondary:hover {
    background: #4a2c1a;
    color: white;
}

/* Responsive Design for About Section */
@media (max-width: 767.98px) {
    .section-about {
        padding: 60px 0;
    }
    
    .section-about-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .section-about-description {
        margin-bottom: 40px;
        text-align: center;
    }
    
    .section-about-description p {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 15px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .about-feature-item {
        padding: 30px 20px;
    }
    
    .about-feature-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }
    
    .about-feature-title {
        font-size: 20px;
    }
    
    .about-feature-description {
        font-size: 14px;
    }
}

/* Responsive Design for Contacts Section */
@media (max-width: 767.98px) {
    .section-6-contacts {
        padding: 60px 0;
    }
    
    .btn-show-map {
        padding: 14px 30px;
        font-size: 16px;
        gap: 10px;
    }
    
    .btn-show-map i {
        font-size: 18px;
    }
    
    .map-container {
        height: 400px;
        margin-top: 20px;
    }
    
    .map-container iframe {
        height: 400px;
    }
}

/* Scroll to Top Button */
.scroll-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d4a574 0%, #c8955c 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.scroll-to-top-btn.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.scroll-to-top-btn:hover {
    background: linear-gradient(135deg, #c8955c 0%, #d4a574 100%);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.scroll-to-top-btn:active {
    transform: translateY(-3px);
}

.scroll-to-top-btn i {
    font-size: 20px;
}

/* Responsive Design for Footer */
@media (max-width: 767.98px) {
    .footer-column {
        margin-bottom: 30px;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 8px;
    }
    
    .footer-separator {
        display: none;
    }
    
    .privacy-modal .modal-body {
        padding: 20px;
        max-height: 60vh;
    }
    
    .scroll-to-top-btn {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 18px;
    }
    
    .scroll-to-top-btn i {
        font-size: 18px;
    }
}
