/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: #07077C;
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    min-height: 80px;
    display: block !important;
}

.nav-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    flex-wrap: nowrap;
    overflow: visible;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 0;
    flex-shrink: 0;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-right: 0;
    flex-shrink: 0;
    flex-wrap: nowrap;
    overflow: visible;
}

.nav-logo {
    width: 50px;
    height: 50px;
    border-radius: 0px;
    object-fit: cover;
    text-transform: uppercase;
}

.nav1-logo {
    width: 165px;
    height: 165px;
    border-radius: 0px;
    object-fit: cover;
    text-transform: uppercase;
}

.logo {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 8px;
    position: relative;
    white-space: nowrap;
}

.nav-link:hover {
    color: #ffd700;
    background: rgba(255, 255, 255, 0.1);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 12px;
    gap: 5px;
    z-index: 1002;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Contact Icons */
.contact-icons {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 20px;
    flex-shrink: 0;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-icon:hover {
    background: #ffd700;
    color: #000;
    transform: translateY(-2px);
    border-color: #ffd700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.contact-icon i {
    font-size: 1.2rem;
}

/* Dropdown */
.dropdown {
    position: relative;
    display: inline-block;
    white-space: nowrap;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: #07077C;
    backdrop-filter: blur(15px);
    min-width: 250px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 15px;
    z-index: 1001;
    left: 0;
    right: auto;
    margin-right: 20px;
}

/* Desktop hover functionality - only on screens larger than mobile */
@media (min-width: 769px) {
    .dropdown:hover .dropdown-content {
        display: block;
    }
}

.dropdown-content a {
    color: #fff;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin: 5px 0;
    font-size: 0.95rem;
}

.dropdown-content a:hover {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    transform: translateX(5px);
}

/* Resorts Dropdown - 2 Columns */
.resorts-dropdown {
    min-width: 500px;
    gap: 10px;
    padding: 20px;
}

.dropdown:hover .resorts-dropdown {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.resorts-dropdown .dropdown-item {
    margin: 0;
}

.resorts-dropdown .dropdown-item a {
    margin: 2px 0;
    padding: 10px 14px;
    font-size: 0.9rem;
}

/* Sub-dropdown */
.dropdown-item {
    position: relative;
}

.sub-dropdown {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    min-width: 180px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 15px;
    margin-left: 5px;
}

.dropdown-item:hover .sub-dropdown {
    display: block;
}

/* Resort dropdown specific styles */
.resort-dropdown {
    min-width: 600px;
    padding: 15px;
    left: 0;
    right: auto;
    margin-right: 20px;
}

.dropdown-row {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.dropdown-row:last-child {
    margin-bottom: 0;
}

.dropdown-row a {
    flex: 1;
    min-width: 90px;
    text-align: center;
    padding: 10px 8px;
    font-size: 0.9rem;
    margin: 0;
}

/* Hero Section with Carousel */
.hero-section {
    margin-top: 80px;
    position: relative;
    height: 80vh;
    overflow: hidden;
}

.carousel {
    position: relative;
    height: 100%;
    width: 100%;
}

.carousel-container {
    height: 100%;
    width: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 100px;
}

.banner {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 15px;
    color: #fff;
    max-width: 400px;
    text-align: center;
    border: 2px solid #ffd700;
}

.banner-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffd700;
    font-family: 'Playfair Display', serif;
}

.banner-text {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #fff;
}

.banner-code {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ff6b6b;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ff6b6b;
}

/* Carousel Controls */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 15px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    color: #ffd700;
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #ffd700;
    transform: scale(1.2);
}

/* Contact Form Section */
.contact-form-section {
    background: linear-gradient(rgb(255, 255, 255), rgb(255, 255, 255)), url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 40px 0;
    position: relative;
}

.contact-form-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-form {
    background: rgba(60, 130, 214, 0.95);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    flex-wrap: nowrap;
}

.form-field {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.form-field label {
    color: #fff;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-field input,
.form-field select {
    padding: 12px 15px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    background: #fff;
}

.form-field input:focus,
.form-field select:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.form-field input::placeholder {
    color: #999;
}

.inquire-btn {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    flex-shrink: 0;
    align-self: flex-end;
    min-width: 120px;
}

.inquire-btn:hover {
    background: #fff;
    color: #3C82D6;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* About Us Section */
.about-section {
    padding: 80px 0;
    background: #fff;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-text h3 {
    color: #333;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 40px;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    font-size: 2.5rem;
    color: #3C82D6;
    margin-bottom: 15px;
}

.feature-item h4 {
    color: #333;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.destination-item {
    padding: 25px;
    background: linear-gradient(135deg, #3C82D6, #1e40af);
    border-radius: 15px;
    color: #fff;
}

.destination-item h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffd700;
}

.destination-item p {
    color: #e0e0e0;
    line-height: 1.6;
    margin: 0;
}

/* Search Section */
.search-section {
    background: #fff;
    padding: 40px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.search-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.search-box {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 50px;
    padding: 15px 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid #e9ecef;
}

.search-box i {
    color: #6c757d;
    margin-right: 15px;
    font-size: 1.2rem;
}

.search-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 1.1rem;
    outline: none;
    color: #333;
}

.search-input::placeholder {
    color: #6c757d;
}

.search-btn {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Locations Section */
.locations-section {
    padding: 80px 0;
    background: #fff;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #333;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.location-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.location-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.location-content {
    padding: 25px;
}

.location-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.villa-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.villa-link {
    color: #666;
    text-decoration: none;
    padding: 8px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid #eee;
}

.villa-link:hover {
    color: #ff6b6b;
    padding-left: 10px;
}

/* Resorts Section */
.resorts-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.resorts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.resort-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.resort-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.resort-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.resort-content {
    padding: 20px;
}

.resort-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.resort-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Contact Button */
.contact-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: #fff;
    padding: 15px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.contact-btn i {
    font-size: 1.5rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    padding: 20px;
    box-sizing: border-box;
    overflow-y: auto;
}

.modal-content {
    background-color: #fff;
    margin: 5vh auto;
    padding: 0;
    border-radius: 15px;
    width: 95%;
    max-width: 1000px;
    max-height: 90vh;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
    overflow-y: auto;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: #000;
}

.modal-body {
    display: flex;
    min-height: 400px;
}

.modal-image {
    width: 45%;
    max-width: 400px;
    object-fit: contain;
    border-radius: 15px 0 0 15px;
    flex-shrink: 0;
    padding: 15px;
    box-sizing: border-box;
    background: #f8f9fa;
    margin: 8px;
    border: 1px solid #e9ecef;
    max-height: 500px;
}

.membership-content {
    flex: 1;
    padding: 30px;
    overflow-y: auto;
    max-height: 70vh;
    background: #fff;
}

.membership-title {
    color: #1e3c72;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}

.membership-price {
    color: #9BCF13;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-align: center;
}

.membership-validity {
    color: #1e3c72;
    font-size: 1rem;
    margin-bottom: 20px;
    text-align: center;
    font-style: italic;
}

.offer-section {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #ffd700;
}

.offer-section h4 {
    color: #1e3c72;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.offer-section h5 {
    color: #2a5298;
    font-size: 1rem;
    font-weight: 600;
    margin: 10px 0 5px 0;
}

.offer-section ol {
    margin: 8px 0;
    padding-left: 20px;
}

.offer-section li {
    color: #333;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 5px;
}

.offer-section p {
    color: #333;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 5px 0;
}

.food-note {
    background: #fff3cd;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    color: #856404;
    margin-top: 10px;
    border-left: 3px solid #ffc107;
}

.membership-summary {
    background: #e3f2fd;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    margin-top: 20px;
    border: 2px solid #2196f3;
}

.membership-summary p {
    margin: 5px 0;
    color: #1565c0;
    font-weight: 600;
}

.final-price {
    font-size: 1.2rem;
    color: #9BCF13 !important;
}

/* Membership Payment Modal Styles */
.membership-payment-content {
    flex: 1;
    padding: 30px;
    text-align: center;
}

.membership-payment-content .modal-image {
    width: 45%;
    max-width: 400px;
    object-fit: cover;
    border-radius: 15px 0 0 15px;
    flex-shrink: 0;
    padding: 20px;
    box-sizing: border-box;
    background: #f8f9fa;
    margin: 10px;
    border: 1px solid #e9ecef;
}

.membership-payment-content .modal-body {
    display: flex;
    min-height: 400px;
}

.membership-price-highlight {
    color: #9BCF13;
    font-size: 1.6rem;
    font-weight: 700;
    margin: 10px 0;
}

.payment-cta {
    margin-top: 25px;
}

.payment-cta p {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.payment-button {
    background: #25d366;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.payment-button:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

.contact-info {
    color: #666;
    margin: 8px 0;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-container {
        justify-content: space-between;
        align-items: center;
        flex-direction: row;
        padding: 0 20px;
    }
    
    .nav-right {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #07077C;
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 20px 15px;
        transition: left 0.3s ease;
        z-index: 1001;
        overflow-y: auto;
    }
    
    .nav-right.mobile-menu-active {
        left: 0;
    }
    
    .nav-right .nav-link {
        width: 100%;
        text-align: center;
        padding: 10px 15px;
        margin: 3px 0;
        border-radius: 6px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 1rem;
    }
    
    .nav-right .dropdown {
        width: 100%;
        margin: 5px 0;
    }
    
    .nav-right .dropdown .nav-link {
        justify-content: space-between;
        display: flex;
        align-items: center;
        gap: 10px;
        position: relative;
    }
    
    .nav-right .dropdown .nav-link i {
        transition: transform 0.3s ease;
    }
    
    .nav-right .dropdown.mobile-dropdown-active .nav-link i {
        transform: rotate(180deg);
    }
    
    /* Mobile-specific dropdown styles */
    .nav-right .dropdown-content {
        position: static;
        display: none !important;
        background: #07077c;
        width: 100%;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        border-radius: 8px;
        margin-top: 8px;
        padding: 12px;
        transition: all 0.3s ease;
        border: 2px solid rgba(255, 215, 0, 0.3);
        backdrop-filter: blur(5px);
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
    }
    
    .nav-right .dropdown.mobile-dropdown-active .dropdown-content {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        max-height: 500px !important;
        animation: slideDown 0.3s ease-out;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            max-height: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            max-height: 500px;
            transform: translateY(0);
        }
    }
    
    /* On mobile, disable hover and use click only */
    .dropdown:hover .dropdown-content {
        display: none;
    }
    
    .resorts-dropdown {
        grid-template-columns: 1fr;
        min-width: 100%;
        gap: 5px;
        padding: 10px;
    }
    
    .dropdown-content a {
        padding: 8px 12px;
        margin: 1px 0;
        border-radius: 4px;
        font-size: 0.9rem;
        display: block;
        width: 100%;
        box-sizing: border-box;
    }
    
    .dropdown-item {
        width: 100%;
        display: block;
    }
    
    .dropdown-item a {
        color: #fff !important;
        text-decoration: none;
        display: block;
        width: 100%;
        background: rgba(255, 255, 255, 0.05);
        transition: all 0.3s ease;
    }
    
    .dropdown-item a:hover,
    .dropdown-item a:active,
    .dropdown-item a:focus {
        background: rgba(255, 215, 0, 0.2) !important;
        color: #ffd700 !important;
        transform: translateX(3px);
    }
    
    /* Special styling for Buy Membership */
    .buy-membership-item a {
        background: rgba(255, 107, 53, 0.2) !important;
        border: 1px solid rgba(255, 107, 53, 0.4);
        font-weight: 600;
        animation: pulse 2s infinite;
    }
    
    .buy-membership-item a:hover {
        background: rgba(255, 107, 53, 0.4) !important;
        color: #ff6b35 !important;
        box-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
    }
    
    @keyframes pulse {
        0% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.4); }
        70% { box-shadow: 0 0 0 5px rgba(255, 107, 53, 0); }
        100% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0); }
    }
    
    /* Membership dropdown specific styles */
    .dropdown:has(.buy-membership-item) .dropdown-content {
        min-width: 280px;
    }
    
    .dropdown:has(.buy-membership-item) .dropdown-content .dropdown-item {
        margin: 8px 0;
    }
    
    .dropdown:has(.buy-membership-item) .dropdown-content .dropdown-item a {
        padding: 12px 16px;
        font-size: 0.95rem;
        font-weight: 500;
    }
    
    /* Fallback for browsers that don't support :has() */
    .dropdown .buy-membership-item {
        margin: 8px 0;
    }
    
    .dropdown .buy-membership-item a {
        padding: 12px 16px;
        font-size: 0.95rem;
        font-weight: 500;
    }
    
    .contact-icons {
        gap: 12px;
        margin-left: 0;
        margin-top: 15px;
        justify-content: center;
        width: 100%;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .contact-icon i {
        font-size: 1rem;
    }
    
    .nav-center {
        gap: 10px;
    }
    
    .resorts-dropdown {
        min-width: 300px;
        grid-template-columns: 1fr;
        gap: 5px;
        padding: 15px;
    }
    
    .resorts-dropdown .dropdown-item a {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    .nav-logo {
        width: 55px;
        height: 55px;
    }
    
    /* Mobile specific membership dropdown */
    .dropdown:has(.buy-membership-item) .dropdown-content {
        min-width: 100%;
        padding: 12px;
    }
    
    .dropdown:has(.buy-membership-item) .dropdown-content .dropdown-item {
        margin: 4px 0;
    }
    
    .dropdown:has(.buy-membership-item) .dropdown-content .dropdown-item a {
        padding: 10px 14px;
        font-size: 0.9rem;
    }
    
    /* Fallback for mobile */
    .dropdown .buy-membership-item {
        margin: 4px 0;
    }
    
    .dropdown .buy-membership-item a {
        padding: 10px 14px;
        font-size: 0.9rem;
    }
    
    .resorts-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .contact-form {
        flex-direction: column;
        gap: 12px;
        padding: 20px 15px;
    }
    
    .form-field {
        width: 100%;
    }
    
    .inquire-btn {
        width: 100%;
        margin-top: 10px;
    }
    
    .about-text h3 {
        font-size: 1.5rem;
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hero-section {
        height: 50vh;
        margin-top: 80px;
    }
    
    .carousel-content {
        padding: 0 20px;
        justify-content: center;
    }
    
    .banner {
        max-width: 100%;
        padding: 30px 20px;
    }
    
    .banner-title {
        font-size: 2rem;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
    }
    
    .search-box {
        flex-direction: column;
        gap: 15px;
        border-radius: 15px;
    }
    
    .search-input {
        text-align: center;
    }
    
    .carousel-btn {
        padding: 10px;
        font-size: 1rem;
    }
    
    .contact-btn {
        bottom: 20px;
        right: 20px;
        padding: 12px 15px;
    }

    .modal-body {
        flex-direction: column;
    }
    
    .modal-image {
        width: 100%;
        border-radius: 15px 15px 0 0;
        max-height: 250px;
        padding: 10px;
        object-fit: contain;
    }
    
    .membership-content {
        padding: 15px;
    }
    
    .modal-content {
        margin: 10px auto;
        max-height: 95vh;
        width: 98%;
    }
}

@media (max-width: 480px) {
    .nav-link {
        font-size: 0.9rem;
        padding: 8px 10px;
    }
    
    .nav-logo {
        width: 35px;
        height: 35px;
    }
    
    .contact-icons {
        gap: 8px;
    }
    
    .contact-icon {
        width: 35px;
        height: 35px;
    }
    
    .contact-icon i {
        font-size: 0.9rem;
    }
    
    .resorts-dropdown {
        min-width: 280px;
        padding: 12px;
    }
    
    .resorts-dropdown .dropdown-item a {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .resorts-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-form-section {
        padding: 40px 0;
    }
    
    .contact-form {
        padding: 25px 15px;
    }
    
    .form-field label {
        font-size: 0.85rem;
    }
    
    .form-field input {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .inquire-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .about-text h3 {
        font-size: 1.3rem;
    }
    
    .about-text p {
        font-size: 0.9rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature-item {
        padding: 20px 15px;
    }
    
    .feature-item i {
        font-size: 2rem;
    }
    
    .feature-item h4 {
        font-size: 1.1rem;
    }
    
    .destination-item {
        padding: 20px;
    }
    
    .hero-section {
        height: 50vh;
    }
    
    .banner-title {
        font-size: 1.5rem;
    }
    
    .banner-text {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Footer Styles */
.footer {
    background: #07077C;
    color: #fff;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-logo {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    border: 2px solid #ffd700;
    margin-bottom: 15px;
}

.footer-section h3 {
    color: #ffd700;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: #ffd700;
    border-radius: 2px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-item i {
    color: #ffd700;
    font-size: 1.2rem;
    width: 20px;
}

.contact-item a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #ffd700;
}

.contact-item span {
    color: #e0e0e0;
    line-height: 1.5;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a {
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links li a::before {
    content: '→';
    margin-right: 8px;
    color: #ffd700;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: #ffd700;
    transform: translateX(5px);
}

.footer-links li a:hover::before {
    opacity: 1;
}

/* Footer Social Links */
.footer-social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #e0e0e0 !important;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 0;
    border-radius: 8px;
}

.footer-social-link:visited {
    color: #e0e0e0 !important;
}

.footer-social-link:link {
    color: #e0e0e0 !important;
}

.footer-social-link:hover {
    color: #ffd700;
    transform: translateX(5px);
}

.footer-social-link i {
    font-size: 1.4rem;
    width: 24px;
    text-align: center;
}

.footer-social-link span {
    font-size: 1rem;
    font-weight: 500;
}

/* Individual social platform hover colors */
.footer-social-link[href*="youtube"]:hover {
    color: #FF0000 !important;
}

.footer-social-link[href*="whatsapp"]:hover {
    color: #25D366 !important;
}

.footer-social-link[href*="instagram"]:hover {
    color: #E4405F !important;
}

.footer-social-link[href*="facebook"]:hover {
    color: #1877F2 !important;
}

.footer-social-link[href*="photos"]:hover {
    color: #4285f4 !important;
}

.footer-section p {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #ffd700;
    color: #1e3c72;
    transform: translateY(-3px);
}

/* Social Media Icons in Footer */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-icon i {
    font-size: 1.3rem;
}

/* Individual social media platform colors */
.social-icon.youtube:hover {
    background: #FF0000;
    border-color: #FF0000;
}

.social-icon.whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
}

.social-icon.twitter:hover {
    background: #000000;
    border-color: #000000;
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #e6683c;
}

.social-icon.facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 20px;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.footer-bottom p {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-section h3 {
        font-size: 1.2rem;
    }
    
    .contact-item {
        font-size: 0.9rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
        margin-top: 15px;
        gap: 12px;
    }
    
    .footer-social-links {
        align-items: center;
        gap: 12px;
    }
    
    .footer-social-link {
        justify-content: center;
        text-align: center;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
    
    .social-icon i {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-container {
        gap: 25px;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
    }
    
    .contact-item {
        font-size: 0.85rem;
    }
    
    .social-icons {
        gap: 10px;
        margin-top: 12px;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
    }
    
    .social-icon i {
        font-size: 1rem;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }
}

/* Membership dropdown specific styles */
.dropdown:has(.buy-membership-item) .dropdown-content {
    min-width: 280px;
}

.dropdown:has(.buy-membership-item) .dropdown-content .dropdown-item {
    margin: 8px 0;
}

.dropdown:has(.buy-membership-item) .dropdown-content .dropdown-item a {
    padding: 12px 16px;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Fallback for browsers that don't support :has() */
.dropdown .buy-membership-item {
    margin: 8px 0;
}

.dropdown .buy-membership-item a {
    padding: 12px 16px;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Mobile specific membership dropdown */
@media (max-width: 768px) {
    .dropdown:has(.buy-membership-item) .dropdown-content {
        min-width: 100%;
        padding: 12px;
    }
    
    .dropdown:has(.buy-membership-item) .dropdown-content .dropdown-item {
        margin: 4px 0;
    }
    
    .dropdown:has(.buy-membership-item) .dropdown-content .dropdown-item a {
        padding: 10px 14px;
        font-size: 0.9rem;
    }
    
    /* Fallback for mobile */
    .dropdown .buy-membership-item {
        margin: 4px 0;
    }
    
    .dropdown .buy-membership-item a {
        padding: 10px 14px;
        font-size: 0.9rem;
    }
}
