.footer-section {
    position: relative;
    background-color: #013220; 
    color: #ffffff;
    padding-top: 0;
    margin-top: 40px;
    font-family: 'Poppins', sans-serif;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    left: 0;
    right: 0;
   
}

.footer-slanted-edge {
    width: 100%;
    height: 100px;
    background-color: #013220;
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
    position: absolute;
    top: -99px;
    left: 0;
    z-index:1;
}

.footer-content {
    padding-top: 60px;
}

.hotel-title {
    font-weight: 600;
    font-size: 1.3rem;
    letter-spacing: 1px;
}

.contact-item {
    font-size: 0.85rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.contact-item i {
    color: #d4af37; 
    margin-right: 8px;
}


.social-square {
    width: 35px;
    height: 35px;
    background: #ffffff;
    color: #013220;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1rem;
    transition: 0.3s;
}

.social-square:hover {
    background: #d4af37;
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-line {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 40px 0 20px 0;
}

/* Navigation Links */
.footer-nav-links a {
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 1px;
    transition: 0.3s;
}

.footer-nav-links a:hover {
    color: #d4af37;
}

.copyright-bar p {
    margin-bottom: 0;
}

/* --- Footer Styling --- */
.footer-section {
    position: relative;
    background-color: #013220; 
    color: #ffffff;
    padding-bottom: 20px;
    margin-top: 80px; 
    font-family: 'Poppins', sans-serif;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.footer-slanted-edge {
    width: 100%;
    height: 70px; 
    background-color: #013220;
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
    position: absolute;
    top: -69px;
    left: 0;
}

.contact-item {
    font-size: 0.8rem !important; 
    background: rgba(255, 255, 255, 0.03);
    padding: 6px 12px !important;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px !important;
    display: inline-flex;
    align-items: center;
    transition: 0.3s;
}

.contact-item:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: #d4af37;
}
.social-square {
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important; 
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 0.9rem !important;
}


.footer-nav-links a {
    font-size: 0.75rem !important;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px !important;
}


@media (max-width: 991px) {
    .footer-content {
        padding-top: 40px !important;
    }

    .hotel-title {
        font-size: 1.1rem !important;
        margin-bottom: 20px !important;
    }

    .contact-item {
        margin-bottom: 10px !important;
        width: fit-content;
    }

    .footer-line {
        margin: 25px 0 15px 0 !important;
    }

    .copyright-bar {
        font-size: 0.7rem !important;
        opacity: 0.7;
    }

    .footer-nav-links {
        gap: 10px !important;
        justify-content: center !important;
        flex-wrap: wrap;
    }
}

