/* Navbar Styles */
.navbar .nav-link {
    font-weight: 500;
    transition: 0.3s;
}

.navbar .nav-link:hover {
    color: #ffc107 !important;
}

#custom-navbar {
    background: url('../img/head.jpg') center center / cover no-repeat;
    position: relative;
    min-height: 100px;
}

/* Overlay */
#custom-navbar::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 0;
}

/* Content above overlay */
#custom-navbar .container {
    position: relative;
    z-index: 2;
}

#custom-navbar.navbar {
    background-color: transparent !important;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #ffc107;
    border: none;
    padding: 11px 20px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 20;
}

/* Carousel Controls - Hidden */
.carousel-control-prev,
.carousel-control-next {
    display: none !important;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 120px;
    cursor: pointer;
    z-index: 5;
    background: transparent;
}

.slider-nav.left {
    left: 0;
}

.slider-nav.right {
    right: 0;
}

/* Section Title */
.section-title {
    font-size: 38px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    background: linear-gradient(45deg, #000000, #ab7f05);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
}

.section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #ffcc70);
    border-radius: 10px;
}

/* Image Styles */
.about-img,
.activity-img,
.gallery-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.gallery-img {
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.gallery-img:hover {
    transform: scale(1.07);
    box-shadow: 0 15px 35px rgba(0,0,0,0.35);
}

/* Gallery Section */
.gallery-section {
    background: #f9f9f9;
}

.gallery-section img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-section img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Footer Styles */
.resort-footer {
    position: relative;
    color: #ccc;
    background: url('../img/foot.png') no-repeat center center;
    background-size: cover;
    overflow: hidden;
    padding: 60px 0;
}

.resort-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 1;
}

.resort-footer .container {
    position: relative;
    z-index: 2;
}

.footer-title {
    color: #ffd700;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
    padding-bottom: 5px;
    position: relative;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ffd700;
    padding-left: 5px;
}

.footer-links li::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 2px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.footer-links li:hover::after {
    background: linear-gradient(90deg, #ffd700, #ffcc70);
    transform: scaleX(1.05);
}

.footer-divider {
    border-color: rgba(255,255,255,0.2);
    margin: 30px 0 10px 0;
}

.resort-footer a {
    color: #ccc;
    text-decoration: none;
}

.resort-footer a:hover {
    color: #ffd700;
}

/* Navigation Pills */
.nav-pills .nav-link,
.custom-tabs .nav-link {
    border-radius: 50px;
    padding: 10px 25px;
    margin: 0 5px;
    font-weight: 500;
    font-size: 16px;
    color: #555;
    transition: all 0.3s ease;
    position: relative;
    border: none !important;
    box-shadow: none !important;
}

.custom-tabs .nav-link {
    background: #f8f9fa;
    font-weight: 600;
}

.nav-pills .nav-link:hover,
.custom-tabs .nav-link:hover {
    color: #fff;
    background: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.nav-pills .nav-link.active,
.custom-tabs .nav-link.active {
    color: #fff;
    background: linear-gradient(135deg, #ffb400, #ff6b00);
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

.nav-pills .nav-link::after,
.custom-tabs .nav-link::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0%;
    height: 3px;
    background: #f6e27f;
    border-radius: 2px;
    transition: 0.3s ease;
    transform: translateX(-50%);
}

.nav-pills .nav-link:hover::after,
.nav-pills .nav-link.active::after,
.custom-tabs .nav-link:hover::after,
.custom-tabs .nav-link.active::after {
    width: 60%;
}

.custom-tabs .nav-link:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* Animation */
.animate-col {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

[data-animate="fade-right"] {
    transform: translateX(-50px);
}

[data-animate="fade-left"] {
    transform: translateX(50px);
}

.animate-col.visible {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

/* Modal Styles */
.modal-content {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
}

.modern-modal .modal-content {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: none;
    overflow: hidden;
    animation: zoomInModal 0.4s ease;
}

.modern-modal .modal-header {
    background: linear-gradient(135deg, #ff9800, #ff5722);
    border-bottom: none;
    padding: 20px 25px;
}

.modern-modal .modal-title,
.modal-title {
    color: #0c3c60;
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 0.5px;
}

.modern-modal .modal-title {
    color: #fff;
}

.modern-close {
    background: rgba(255,255,255,0.2);
    border: none;
    color: #fff;
    font-size: 18px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    transition: 0.3s;
}

.modern-close:hover {
    background: #fff;
    color: #ff5722;
}

.image-wrapper {
    padding: 25px;
}

.image-wrapper img {
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    transition: transform 0.4s ease;
}

.image-wrapper img:hover {
    transform: scale(1.05);
}

@keyframes zoomInModal {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-backdrop.show {
    background: rgba(0, 0, 0, 0.85);
}

.modal-body p {
    color: #555;
    font-size: 16px;
    line-height: 1.7;
}

.modal-footer .btn {
    transition: all 0.3s ease;
}

.modal-footer .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Floating Buttons (Merged duplicate) */
/*.floating-buttons {*/
/*    position: fixed;*/
/*    right: 20px;*/
/*    bottom: 100px;*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    gap: 15px;*/
/*    z-index: 9999;*/
/*}*/

/*.float-btn {*/
/*    width: 55px;*/
/*    height: 55px;*/
/*    border-radius: 50%;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    font-size: 22px;*/
/*    color: #fff;*/
/*    text-decoration: none;*/
/*    backdrop-filter: blur(10px);*/
/*    background: rgba(0, 0, 0, 0.7);*/
/*    box-shadow: 0 8px 25px rgba(0,0,0,0.3);*/
/*    transition: all 0.3s ease;*/
/*}*/

/*.float-btn:hover {*/
/*    transform: translateY(-5px) scale(1.1);*/
/*    box-shadow: 0 12px 30px rgba(0,0,0,0.4);*/
/*}*/

/*.facebook {*/
/*    background: linear-gradient(135deg, #1877f2, #0d5ed7);*/
/*}*/

/*.call {*/
/*    background: linear-gradient(135deg, #ff9800, #ff5722);*/
/*}*/

/*.whatsapp {*/
/*    background: linear-gradient(135deg, #25d366, #128c7e);*/
/*}*/

/* Responsive Media Queries */
@media (max-width: 768px) {
    .about-img,
    .activity-img,
    .gallery-img {
        height: 250px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .nav-pills .nav-link,
    .custom-tabs .nav-link {
        font-size: 14px;
        padding: 8px 15px;
        margin: 3px;
    }
}

@media (max-width: 576px) {
    .float-btn {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
}