/* ==========================================================================
   Base Styles & Variables
   ========================================================================== */
:root {
    --primary-color: #041E42; /* Royal Blue */
    --secondary-color: #D4A24C; /* Royal Gold */
    --text-color: #333333;
    -text-footer: #FFFFFF;
    --light-bg: #F8F9FA;
    --white: #FFFFFF;
    --dark-overlay: rgba(4, 30, 66, 0.7);
    
    --font-heading: 'Cinzel', serif;
    --font-body: 'Lato', sans-serif;
    
    --transition: all 0.3s ease-in-out;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .font-cinzel {
    font-family: var(--font-heading);
}

.text-gold {
    color: var(--secondary-color) !important;
}

.bg-primary-dark {
    background-color: var(--primary-color) !important;
}

.bg-gold {
    background-color: var(--secondary-color) !important;
}

.text-light-gray {
    color: #cccccc;
}

/* ==========================================================================
   Typography & Utilities
   ========================================================================== */
.section-padding {
    padding: 80px 0;
}

.section-title {
    margin-bottom: 50px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
}

.section-title .subtitle {
    color: var(--secondary-color);
    font-weight: 600;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

.section-title.text-start::after {
    left: 0;
    transform: none;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn-gold {
    background-color: var(--secondary-color);
    color: var(--white);
    border: 2px solid var(--secondary-color);
    transition: var(--transition);
}

.btn-gold:hover {
    background-color: transparent;
    color: var(--secondary-color);
}

.btn-outline-gold {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    transition: var(--transition);
}

.btn-outline-gold:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

/* ==========================================================================
   Navigation
   ========================================================================== */
#mainNavbar {
    background-color: transparent;
    transition: var(--transition);
    padding: 15px 0;
    position: absolute;
    width: 100%;
    z-index: 1030;
}

#mainNavbar.scrolled {
    background-color: var(--primary-color);
    padding: 10px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    animation: slideDown 0.5s ease-in-out;
}

.navbar-brand .brand-ra {
    font-size: 2.5rem;
    line-height: 1;
}

.navbar-brand .brand-sub {
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.nav-link {
    color: var(--white) !important;
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 10px;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-link:hover, .nav-link.active {
    color: var(--secondary-color) !important;
}

/* Dropdown */
.dropdown-menu {
    background-color: var(--primary-color);
    border: 1px solid var(--secondary-color);
    border-radius: 0;
    margin-top: 20px;
}

.dropdown-item {
    color: var(--white);
    font-family: var(--font-body);
    transition: var(--transition);
    padding: 10px 20px;
}

.dropdown-item:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

/* ==========================================================================
   Hero Slider
   ========================================================================== */
.hero-section {
    height: 100vh;
    position: relative;
}

.swiper-slide .slide-bg {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
}

.swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--dark-overlay), rgba(4, 30, 66, 0.4));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content h1 {
    font-size: 4rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease 0.3s;
}

.hero-content p {
    font-size: 1.2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease 0.5s;
}

.hero-content .btn-group {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease 0.7s;
}

.swiper-slide-active .hero-content h1,
.swiper-slide-active .hero-content p,
.swiper-slide-active .hero-content .btn-group {
    opacity: 1;
    transform: translateY(0);
}

.swiper-button-next, .swiper-button-prev {
    color: var(--secondary-color) !important;
}

/* ==========================================================================
   Features / Amenities Cards
   ========================================================================== */
.feature-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-bottom: 3px solid var(--secondary-color);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    background-color: var(--light-bg);
    color: var(--primary-color);
    font-size: 30px;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background-color: var(--secondary-color);
    color: var(--white);
}

/* ==========================================================================
   Footer & Utilities
   ========================================================================== */
.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
    color: var(--light-gray);
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

/* Floating WhatsApp */
.float-whatsapp {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    transition: var(--transition);
}

.float-whatsapp:hover {
    background-color: #128C7E;
    color: #fff;
    transform: scale(1.1);
}

.my-float {
    margin-top: 15px;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Scroll Progress */
.scroll-progress-container {
    width: 100%;
    height: 4px;
    background: transparent;
    position: fixed;
    top: 0;
    z-index: 1031;
}

.scroll-progress-bar {
    height: 4px;
    background: var(--secondary-color);
    width: 0%;
}

@keyframes slideDown {
    from { top: -100px; }
    to { top: 0; }
}
.hover-lift {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .hover-lift:hover {
        transform: translateY(-10px);
        box-shadow: 0 1rem 3rem rgba(0,0,0,.15)!important;
    }
    .transition-scale {
        transition: transform 0.5s ease;
    }
    .team-card:hover .transition-scale {
        transform: scale(1.1);
    }
    .team-card .social-links a {
        width: 35px;
        height: 35px;
        line-height: 35px;
        background: #f8f9fa;
        border-radius: 50%;
        transition: all 0.3s ease;
    }
    .team-card .social-links a:hover {
        background: var(--secondary-color);
        color: #fff !important;
    }

    .max-w-700 { max-width: 700px; }
    .letter-spacing-2 { letter-spacing: 2px; }
    
    .service-img img {
        transition: transform 0.7s ease;
    }
    .service-row:hover .service-img img {
        transform: scale(1.05);
    }

    .icon-box-hover {
        transition: all 0.3s ease;
        border-bottom: 3px solid transparent !important;
    }
    .icon-box-hover:hover {
        transform: translateY(-5px);
        border-bottom: 3px solid var(--secondary-color) !important;
    }
    .icon-circle {
        width: 70px;
        height: 70px;
        line-height: 70px;
        background-color: var(--primary-color);
        border-radius: 50%;
        transition: all 0.3s ease;
    }
    .icon-box-hover:hover .icon-circle {
        background-color: var(--secondary-color);
        transform: rotateY(180deg);
    }

    .max-w-700 { max-width: 700px; }
    .destination-card .img-wrapper img {
        transition: transform 0.5s ease;
    }
    .destination-card:hover .img-wrapper img {
        transform: scale(1.1);
    }
    .destination-card .card-overlay {
        opacity: 0;
        transition: all 0.3s ease;
    }
    .destination-card:hover .card-overlay {
        opacity: 1;
    }
    .letter-spacing-2 { letter-spacing: 2px; }
    .hover-gold:hover span { color: var(--secondary-color) !important; transition: var(--transition); }
    .accordion-button:not(.collapsed) {
        background-color: var(--secondary-color);
        color: var(--white) !important;
    }
    .accordion-button:focus { box-shadow: none; border-color: rgba(0,0,0,.125); }
    .form-control::placeholder { color: #aaa; }
    .form-control:focus { background-color: rgba(255,255,255,0.1); border-color: var(--secondary-color); color: #fff; box-shadow: none; }

    .max-w-700 { max-width: 700px; }
    
    .filter-btn {
        background-color: var(--white);
        border: 1px solid rgba(4, 30, 66, 0.15);
        color: var(--primary-color);
        padding: 10px 24px;
        font-weight: 600;
        font-size: 0.9rem;
        letter-spacing: 1px;
        border-radius: 0;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .filter-btn:hover, .filter-btn.active {
        background-color: var(--primary-color);
        color: var(--white);
        border-color: var(--primary-color);
    }

    .gallery-card {
        height: 100%;
    }

    .gallery-overlay {
        background: linear-gradient(to top, rgba(4, 30, 66, 0.95), rgba(4, 30, 66, 0.4));
        opacity: 0;
        transform: translateY(10px);
        transition: all 0.4s ease;
        padding: 20px;
    }

    .gallery-card:hover .gallery-overlay {
        opacity: 1;
        transform: translateY(0);
    }

    .transition-scale {
        transition: transform 0.6s ease;
    }

    .gallery-card:hover .transition-scale {
        transform: scale(1.1);
    }

    .icon-circle-view {
        width: 50px;
        height: 50px;
        line-height: 50px;
        background-color: var(--secondary-color);
        color: var(--white);
        border-radius: 50%;
        text-align: center;
        font-size: 1.2rem;
        transition: transform 0.3s ease, background-color 0.3s ease;
    }

    .icon-circle-view:hover {
        transform: scale(1.1);
        background-color: var(--white);
        color: var(--secondary-color) !important;
    }
