/* Hotel Footer Styles */
.hotel-footer {
    position: relative;
    background: #916952;
    color: white;
    font-family: 'Inria Serif', serif;
    padding: clamp(30px, 4vw, 60px) 0 0 0;
    overflow: hidden;
    min-height: clamp(350px, 25vw, 400px);
}

/* Decorative Swirls */
.footer-decorative-swirl {
    position: absolute;
    top: 0;
    z-index: 1;
    pointer-events: none;
}

.footer-swirl-left {
    left: 0;
    width: clamp(150px, 15vw, 250px);
    height: clamp(200px, 20vw, 350px);
}

.footer-swirl-right {
    right: 0;
    width: clamp(150px, 15vw, 250px);
    height: clamp(200px, 20vw, 350px);
}

.footer-decorative-swirl img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Main Footer Container */
.footer-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 
        clamp(280px, 20vw, 400px) 
        clamp(450px, 32vw, 650px) 
        clamp(200px, 15vw, 350px) 
        clamp(200px, 15vw, 350px) 
        clamp(120px, 10vw, 200px);
    gap: clamp(20px, 3vw, 60px);
    padding: 0 clamp(20px, 3vw, 60px);
    max-width: 100%;
    margin: 0 auto;
    align-items: start;
}

/* Left Section - Logo and Hotel Info */
.footer-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo-section {
    width: 100%;
}

.footer-logo {
    margin-bottom: clamp(15px, 2vw, 25px);
}

.footer-logo img {
    width: clamp(80px, 8vw, 120px);
    height: auto;
}

.footer-stars {
    margin-bottom: clamp(10px, 1.5vw, 20px);
}

.footer-stars img {
    width: clamp(100px, 12vw, 160px);
    height: auto;
}

.footer-hotel-title h2 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 400;
    letter-spacing: clamp(0.5px, 0.1vw, 1px);
    margin: 0 0 clamp(8px, 1vw, 15px) 0;
    line-height: 1.2;
}

.footer-location span {
    font-size: clamp(14px, 1.5vw, 18px);
    font-weight: 400;
    opacity: 0.9;
}

/* Center Section - Contact Info */
.footer-center {
    display: flex;
    flex-direction: column;
    gap: clamp(15px, 2vw, 25px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: clamp(12px, 1.5vw, 20px);
}

.footer-contact-icon {
    width: clamp(16px, 2vw, 20px);
    height: clamp(16px, 2vw, 20px);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-contact-icon svg {
    width: 100%;
    height: 100%;
}

.footer-contact-text {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.4;
}

.footer-legal-links {
    display: flex;
    gap: clamp(20px, 3vw, 40px);
    margin-top: clamp(20px, 2vw, 30px);
}

.footer-legal-links a {
    color: white;
    text-decoration: none;
    font-size: clamp(14px, 1.5vw, 17px);
    font-weight: 700;
    transition: opacity 0.3s ease;
}

.footer-legal-links a:hover {
    opacity: 0.7;
}

/* Navigation Sections */
.footer-nav-section {
    display: contents;
}

.footer-nav-column {
    display: flex;
    flex-direction: column;
    gap: clamp(8px, 1vw, 12px);
}

.footer-nav-column a {
    color: white;
    text-decoration: none;
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 400;
    line-height: 1.3;
    transition: opacity 0.3s ease;
}

.footer-nav-column a:hover {
    opacity: 0.7;
}

/* Language Switcher */
.footer-languages {
    display: flex;
    flex-direction: column;
    gap: clamp(6px, 1vw, 10px);
    align-items: flex-end;
}

.footer-lang-link {
    color: white;
    text-decoration: none;
    font-size: clamp(14px, 1.5vw, 17px);
    font-weight: 700;
    transition: opacity 0.3s ease;
}

.footer-lang-link:hover,
.footer-lang-link.active {
    opacity: 0.7;
}

/* Social Media Icons */
.footer-social {
    position: absolute;
    bottom: clamp(80px, 8vw, 120px);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: clamp(15px, 2vw, 25px);
    z-index: 3;
}

.footer-social-link {
    width: clamp(40px, 4vw, 50px);
    height: clamp(40px, 4vw, 50px);
    border: 1px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-link:hover {
    background: white;
    transform: scale(1.1);
}

.footer-social-link img {
    width: clamp(16px, 2vw, 24px);
    height: clamp(16px, 2vw, 24px);
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.footer-social-link:hover img {
    filter: brightness(0) invert(0);
}

/* Copyright */
.footer-copyright {
    position: absolute;
    bottom: clamp(20px, 3vw, 40px);
    right: clamp(20px, 3vw, 60px);
    z-index: 3;
}

.footer-copyright span {
    font-size: clamp(14px, 1.5vw, 17px);
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
}

.footer-copyright strong {
    font-weight: 700;
    text-transform: uppercase;
}

/* Tablet Styles */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
        gap: clamp(25px, 4vw, 40px);
    }
    
    .footer-left {
        grid-column: 1 / 3;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        text-align: left;
    }
    
    .footer-center {
        grid-column: 1 / 2;
    }
    
    .footer-nav-section {
        grid-column: 2 / 3;
        display: flex;
        gap: clamp(30px, 5vw, 50px);
    }
    
    .footer-languages {
        grid-column: 1 / 3;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: clamp(20px, 3vw, 30px);
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hotel-footer {
        padding: clamp(20px, 4vw, 30px) 0 0 0;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: clamp(20px, 4vw, 30px);
        padding: 0 clamp(15px, 4vw, 30px);
    }
    
    .footer-left {
        grid-column: 1;
        flex-direction: column;
        text-align: center;
    }
    
    .footer-center,
    .footer-nav-section,
    .footer-languages {
        grid-column: 1;
    }
    
    .footer-nav-section {
        display: block;
    }
    
    .footer-nav-column {
        margin-bottom: clamp(20px, 4vw, 30px);
    }
    
    .footer-social {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        justify-content: center;
        margin: clamp(20px, 4vw, 30px) 0;
    }
    
    .footer-copyright {
        position: relative;
        bottom: auto;
        right: auto;
        text-align: center;
        margin: clamp(15px, 3vw, 20px) 0 clamp(10px, 2vw, 15px) 0;
    }
    
    .footer-swirl-left,
    .footer-swirl-right {
        display: none;
    }
}

/* React Hotel Services Styles */
    .react-hotel-services {
        height: 700px;
        position: relative;
        overflow: hidden;
        font-family: 'Inria Serif', serif;
        background: #000;
        display: flex;
    }

    .react-hotel-left {
        width: clamp(300px, 25.26vw, 485px);
        height: 100%;
        position: relative;
        flex-shrink: 0;
    }

    .react-hotel-left-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    .react-hotel-left-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .react-hotel-left-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(0deg, rgba(145, 105, 82, 0.15) 0%, rgba(145, 105, 82, 0.15) 100%);
     }

    .react-hotel-left-content {
        position: relative;
        z-index: 2;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: clamp(20px, 4vw, 60px);
        color: white;
    }

    .react-hotel-title {
        text-align: center;
        margin-bottom: clamp(30px, 5vw, 60px);
    }

    .react-hotel-title h2 {
        font-size: clamp(28px, 4vw, 36px);
        font-weight: 700;
        letter-spacing: 1.08px;
        margin-bottom: clamp(10px, 2vw, 20px);
        line-height: 1.2;
        color: white;
        font-family: 'Inria Serif', serif;
        margin-top: 0;
    }

    .react-hotel-title p {
        font-size: clamp(18px, 2.5vw, 24px);
        font-weight: 400;
        opacity: 0.9;
        background: rgba(157, 128, 113, 0.20);
        padding: clamp(15px, 2vw, 25px) clamp(20px, 3vw, 40px);
        border-radius: 5px;
        backdrop-filter: blur(10px);
        color: white;
        font-family: 'Inria Serif', serif;
        margin: 0;
    }

    .react-hotel-stars {
        display: flex;
        gap: clamp(8px, 1vw, 12px);
        align-items: center;
        justify-content: center;
    }

    .react-hotel-star {
        width: clamp(16px, 2vw, 20px);
        height: clamp(16px, 2vw, 20px);
        filter: brightness(0) invert(1);
    }

    .react-hotel-right {
        flex: 1;
        height: 100%;
        position: relative;
        overflow: hidden;
    }

    .react-hotel-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        transition: opacity 0.6s ease, transform 0.7s ease;
    }

    .react-hotel-slide-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    .react-hotel-slide-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .react-hotel-slide-content {
        background: rgba(145, 105, 82, 0.80);
        border-radius: 8px;
        backdrop-filter: blur(6px);
        padding: clamp(30px, 4vw, 60px);
        width: clamp(650px, 65vw, 950px);
        max-width: 85%;
        color: white;
        text-align: left;
        position: absolute;
        top: 50%;
        left: 40%;
        transform: translate(-50%, -50%);
        z-index: 2;
    }

    .react-hotel-slide-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: clamp(20px, 3vw, 40px);
    }

    .react-hotel-logo {
        width: clamp(40px, 6vw, 80px);
        height: auto;
    }

    .react-hotel-slide-controls {
        display: flex;
        align-items: center;
        gap: clamp(15px, 2vw, 25px);
    }

    .react-hotel-slide-number {
        font-family: 'Inter', sans-serif;
        font-size: clamp(50px, 7vw, 70px);
        font-weight: 400;
        line-height: 1;
        color: white;
        margin-right: clamp(10px, 1vw, 15px);
    }

    .react-hotel-arrows {
        display: flex;
        flex-direction: column;
        gap: clamp(8px, 1vw, 12px);
    }

    .react-hotel-arrow {
        width: clamp(35px, 4vw, 50px);
        height: clamp(35px, 4vw, 50px);
        background: transparent;
        border: 1.5px solid white;
        border-radius: 3px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        padding: 0;
    }

    .react-hotel-arrow:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: scale(1.05);
    }

    .react-hotel-arrow:disabled {
        opacity: 0.3;
        cursor: not-allowed;
    }

    .react-hotel-arrow img {
        width: clamp(12px, 1.5vw, 16px);
        height: auto;
        filter: brightness(0) invert(1);
    }

    .react-hotel-slide h3 {
        font-size: clamp(28px, 4vw, 34px);
        font-weight: 400;
        margin-bottom: clamp(20px, 3vw, 30px);
        line-height: 1.2;
        font-family: 'Inria Serif', serif;
        color: white;
        margin-top: 0;
    }

    .react-hotel-slide p {
        font-size: clamp(14px, 1.8vw, 16px);
        font-weight: 300;
        line-height: 1.5;
        margin-bottom: clamp(25px, 4vw, 35px);
        opacity: 0.95;
        font-family: 'Inria Serif', serif;
        color: white;
        margin-top: 0;
    }

    .react-hotel-btn {
        background: transparent;
        border: 1px solid white;
        color: white;
        padding: clamp(8px, 1.5vw, 12px) clamp(40px, 6vw, 54px);
        border-radius: 5px;
        font-family: 'Inria Serif', serif;
        font-size: clamp(15px, 2vw, 17px);
        font-weight: 400;
        cursor: pointer;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .react-hotel-btn:hover {
        background: white;
        color: #916952;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
    }

    /* Tablet Styles */
    @media (max-width: 1024px) {
        .react-hotel-services {
            height: 600px;
            flex-direction: column;
        }
        
        .react-hotel-left {
            width: 100%;
            height: clamp(200px, 35vh, 300px);
        }
        
        .react-hotel-left-content {
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            padding: clamp(20px, 4vw, 40px);
        }
        
        .react-hotel-title {
            margin-bottom: 0;
            flex: 1;
            margin-left: clamp(20px, 4vw, 40px);
            margin-right: clamp(20px, 4vw, 40px);
            text-align: left;
        }
        
        .react-hotel-slide-content {
            width: clamp(400px, 80vw, 600px);
            left: 50%;
        }
    }

    /* Mobile Styles */
    @media (max-width: 768px) {
        .react-hotel-services {
            height: 500px;
        }
        
        .react-hotel-left {
            height: clamp(180px, 30vh, 250px);
        }
        
        .react-hotel-left-content {
            padding: clamp(15px, 3vw, 25px);
        }
        
        .react-hotel-title {
            margin-left: clamp(15px, 3vw, 20px);
            margin-right: clamp(15px, 3vw, 20px);
        }
        
        .react-hotel-title h2 {
            font-size: clamp(22px, 5vw, 28px);
        }
        
        .react-hotel-title p {
            font-size: clamp(14px, 3.5vw, 18px);
            padding: clamp(10px, 2vw, 15px) clamp(15px, 3vw, 25px);
        }
        
        .react-hotel-slide-content {
            width: clamp(300px, 90vw, 500px);
            padding: clamp(20px, 4vw, 30px);
            left: 50%;
        }
        
        .react-hotel-slide-header {
            flex-direction: column;
            gap: 20px;
        }
        
        .react-hotel-slide-controls {
            align-self: flex-end;
        }
    }