* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a4d2e;
    --secondary-color: #d4af37;
    --dark-color: #0d1b1e;
    --light-color: #f8f9fa;
    --accent-color: #c9a961;
    --whatsapp-color: #25D366;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

/* WhatsApp Floating Button & Modal */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--whatsapp-color), #128C7E);
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float.active {
    background: #dc3545;
}

.whatsapp-float.active i:before {
    content: "\f00d";
}

.whatsapp-menu {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 320px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
    z-index: 999;
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    max-height: 550px;
    overflow-y: auto;
}

.whatsapp-menu.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.whatsapp-menu-header {
    background: linear-gradient(135deg, var(--whatsapp-color), #128C7E);
    color: white;
    padding: 20px;
    border-radius: 20px 20px 0 0;
    text-align: center;
}

.whatsapp-menu-header h5 {
    margin: 0;
    font-weight: 600;
    font-size: 1.1rem;
}

.whatsapp-menu-header p {
    margin: 5px 0 0 0;
    font-size: 0.85rem;
    opacity: 0.9;
}

.whatsapp-menu-body {
    padding: 12px;
}

.whatsapp-menu-item {
    display: flex;
    align-items: center;
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 8px;
    background: #f8f9fa;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.whatsapp-menu-item:hover {
    background: #e9f7ef;
    border-color: var(--whatsapp-color);
    transform: translateX(5px);
}

.whatsapp-menu-item i {
    font-size: 1.5rem;
    color: var(--whatsapp-color);
    margin-right: 12px;
    width: 35px;
    text-align: center;
}

.whatsapp-menu-item-content h6 {
    margin: 0;
    font-size: 0.95rem;
    color: #2c3e50;
    font-weight: 600;
}

.whatsapp-menu-item-content p {
    margin: 2px 0 0 0;
    font-size: 0.8rem;
    color: #7f8c8d;
}

.whatsapp-quick-btn {
    background: var(--whatsapp-color);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    width: 100%;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.whatsapp-quick-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, var(--dark-color), #1a2930);
    color: white;
    padding: 10px 0;
    font-size: 0.85rem;
}

.top-bar a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.top-bar a:hover {
    color: var(--secondary-color);
}

.top-bar i {
    margin-right: 5px;
}

/* Navbar */
.navbar {
    background: #f4f4f5 !important;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    background: #f4f4f5 !important;
    padding: 0.5rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color) !important;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-link {
    color: rgb(0, 0, 0) !important;
    margin: 0 10px;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

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

/* Hero Section - Swiper */
.hero-swiper {
    height: 100vh;
    width: 100%;
}

.hero-slide {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
}

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-content {
    text-align: center;
    z-index: 2;
    animation: fadeInUp 1s ease;
    padding: 0 15px;
    position: relative;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
    line-height: 1.2;
    color: white;
}

.hero-content .subtitle {
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 300;
    letter-spacing: 1px;
    color: white;
}

.hero-content .tagline {
    font-size: 1.1rem;
    margin-bottom: 35px;
    opacity: 0.95;
    font-weight: 400;
    color: white;
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border: none;
    padding: 14px 35px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
    color: white;
    position: relative;
    overflow: hidden;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.6);
    color: white;
}

.btn-whatsapp {
    background: linear-gradient(135deg, var(--whatsapp-color), #128C7E);
    border: none;
    padding: 14px 35px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    color: white;
    margin-left: 10px;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
    color: white;
}

/* Swiper Pagination & Navigation */
.swiper-pagination-bullet {
    background: white;
    opacity: 0.5;
    width: 12px;
    height: 12px;
}

.swiper-pagination-bullet-active {
    background: var(--secondary-color);
    opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
    color: white;
    background: rgba(26, 77, 46, 0.6);
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
}

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

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #1a4d2e 0%, #0d1b1e 100%);
    color: white;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.stat-item {
    text-align: center;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--secondary-color), #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.95;
    font-weight: 300;
}

/* Hotel Properties Section */
.property-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    margin-bottom: 30px;
    height: 450px;
}

.property-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.property-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.property-card:hover .property-card-img {
    transform: scale(1.1);
}

.property-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 60%, transparent 100%);
    padding: 35px 25px;
    color: white;
}

.property-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.property-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 12px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.property-location {
    font-size: 0.95rem;
    margin-bottom: 15px;
    opacity: 0.95;
}

.property-location i {
    color: var(--secondary-color);
    margin-right: 6px;
}

.property-features {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.property-features span {
    font-size: 0.85rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 12px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.property-features i {
    color: var(--secondary-color);
    margin-right: 6px;
}

/* Section Styling */
.section-padding {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

.section-title p {
    color: #666;
    font-size: 1.1rem;
    margin-top: 10px;
    font-weight: 300;
}

/* Room Cards */
.room-card {
    border: none;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    margin-bottom: 30px;
    background: white;
    height: 100%;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.room-card-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.room-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.room-card:hover img {
    transform: scale(1.15);
}

.room-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--secondary-color);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.room-card .card-body {
    padding: 25px;
}

.room-card h5 {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.room-price {
    color: var(--secondary-color);
    font-size: 1.6rem;
    font-weight: 800;
}

.room-features {
    display: flex;
    gap: 12px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.room-features li {
    font-size: 0.9rem;
    color: #666;
}

.room-features i {
    color: var(--primary-color);
    margin-right: 5px;
}

/* Property Filter Buttons */
.property-filter-wrapper {
    text-align: center;
    margin-bottom: 40px;
}

.property-filters {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding: 15px;
    background: white;
    border-radius: 50px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.property-filter-btn {
    padding: 12px 25px;
    border: 2px solid transparent;
    background: #f8f9fa;
    color: var(--primary-color);
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.property-filter-btn i {
    margin-right: 6px;
}

.property-filter-btn:hover {
    background: linear-gradient(135deg, #e9ecef, #dee2e6);
    transform: translateY(-2px);
}

.property-filter-btn.active {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    border-color: var(--secondary-color);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.property-label {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(26, 77, 46, 0.9);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    backdrop-filter: blur(5px);
}

.room-item {
    transition: all 0.3s ease;
}

.room-item.hide {
    display: none;
}

/* Facilities Section - Swiper */
.facilities-swiper {
    padding: 20px 0 60px;
}

.facilities-swiper .swiper-slide {
    height: auto;
}

.facility-item {
    text-align: center;
    padding: 30px 20px;
    transition: all 0.4s ease;
    border-radius: 18px;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    margin-bottom: 20px;
}

.facility-item:hover {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.facility-icon {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.facility-item h5 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.facility-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Blog Section - Swiper */
.blog-swiper {
    padding: 20px 0 60px;
}

.blog-swiper .swiper-slide {
    height: auto;
}

.blog-card {
    border: none;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    background: white;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.blog-card-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.blog-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.blog-card:hover img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--secondary-color);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-card .card-body {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: #999;
}

.blog-meta i {
    color: var(--secondary-color);
    margin-right: 5px;
}

.blog-card h5 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-excerpt {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-read-more {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    color: var(--accent-color);
    gap: 8px;
}

.blog-read-more i {
    margin-left: 5px;
    transition: margin-left 0.3s ease;
}

.blog-read-more:hover i {
    margin-left: 10px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(26, 77, 46, 0.97), rgba(13, 27, 30, 0.97)),
        url('https://images.unsplash.com/photo-1542314831-068cd1dbfeeb?w=1920') center/cover;
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 300;
}

/* Testimonial - Swiper */
.testimonial-swiper {
    padding: 20px 0 60px;
}

.testimonial-swiper .swiper-slide {
    height: auto;
}

.testimonial-card {
    background: white;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    color: var(--secondary-color);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.stars {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
}

/* Contact Cards */
.contact-card {
    background: white;
    border-radius: 18px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 20px;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.contact-card.whatsapp .contact-icon {
    background: linear-gradient(135deg, var(--whatsapp-color), #128C7E);
}

.contact-card h5 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-color);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--dark-color), #1a2930);
    color: white;
    padding: 60px 0 25px;
    position: relative;
}

.footer h5 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 1.2rem;
}

.footer a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

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

.footer ul li {
    margin-bottom: 10px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background: var(--primary-color);
    margin-right: 10px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
    padding-left: 0;
}

/* Scroll to Top */
#scrollTopBtn {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: none;
    z-index: 998;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

#scrollTopBtn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content .subtitle {
        font-size: 1.3rem;
    }

    .property-card {
        height: 400px;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .cta-section h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .top-bar {
        font-size: 0.75rem;
    }

    .top-bar a {
        margin: 0 5px;
        display: inline-block;
        padding: 5px 0;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content .subtitle {
        font-size: 1.1rem;
    }

    .hero-content .tagline {
        font-size: 0.95rem;
    }

    .btn-whatsapp {
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
    }

    .btn-primary-custom {
        width: 100%;
    }

    .property-card {
        height: 350px;
    }

    .property-card h3 {
        font-size: 1.5rem;
    }

    .whatsapp-menu {
        width: calc(100% - 40px);
        right: 20px;
        left: 20px;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .cta-section p {
        font-size: 1.1rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .stat-icon {
        font-size: 2rem;
    }

    .navbar-brand {
        font-size: 1.3rem;
    }

    .nav-link {
        margin: 5px 0;
    }
}

@media (max-width: 576px) {

    .hero-swiper,
    .hero-slide {
        height: 90vh;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .section-padding {
        padding: 60px 0;
    }

    .room-card-img-wrapper,
    .blog-card-img-wrapper {
        height: 200px;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 26px;
        bottom: 15px;
        right: 15px;
    }

    #scrollTopBtn {
        bottom: 80px;
        right: 15px;
        width: 40px;
        height: 40px;
    }

    .property-filters {
        border-radius: 20px;
        gap: 8px;
    }

    .property-filter-btn {
        width: 100%;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

.video-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.video-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.video-wrapper iframe {
    width: 100%;
    display: block;
}

.video-info {
    padding: 25px;
    flex-grow: 1;
}

.video-info h5 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.video-info p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 8px;
}

.video-info .text-muted {
    color: #999 !important;
    font-size: 0.85rem;
}

.video-info .text-muted i {
    color: var(--secondary-color);
    margin-right: 5px;
}

@media (max-width: 768px) {
    .video-wrapper iframe {
        height: 220px;
    }

    .video-info {
        padding: 20px;
    }

    .video-info h5 {
        font-size: 1.1rem;
    }
}

/* === Hide Top Bar on Mobile === */
@media (max-width: 768px) {
    .top-bar {
        display: none !important;
    }
}

/* Gallery Swiper */
.gallery-swiper {
    padding: 20px 0 60px;
}

.gallery-swiper .swiper-slide {
    height: auto;
}

.gallery-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    height: 400px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 25px;
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    color: white;
    position: relative;
    width: 100%;
}

.gallery-content h5 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.gallery-content p {
    font-size: 1rem;
    margin-bottom: 15px;
    opacity: 0.95;
}

.gallery-content i {
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 2.5rem;
    color: var(--secondary-color);
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s ease;
}

.gallery-card:hover .gallery-content i {
    opacity: 1;
    transform: scale(1);
}

/* Swiper Navigation */
.gallery-swiper .swiper-pagination-bullet {
    background: var(--secondary-color);
    opacity: 0.5;
    width: 12px;
    height: 12px;
}

.gallery-swiper .swiper-pagination-bullet-active {
    opacity: 1;
}

.gallery-swiper .swiper-button-next,
.gallery-swiper .swiper-button-prev {
    color: white;
    background: rgba(26, 77, 46, 0.8);
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.gallery-swiper .swiper-button-next:after,
.gallery-swiper .swiper-button-prev:after {
    font-size: 20px;
}

.gallery-swiper .swiper-button-next:hover,
.gallery-swiper .swiper-button-prev:hover {
    background: var(--secondary-color);
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    animation: zoomIn 0.3s ease;
}

#lightboxImage {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.8);
    transition: opacity 0.3s ease;
}

.lightbox-caption {
    text-align: center;
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.lightbox-close {
    position: fixed;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: var(--secondary-color);
    transform: rotate(90deg);
    border-color: var(--secondary-color);
}

.lightbox-prev,
.lightbox-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-50%) scale(1.1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .section-title h2 {
        font-size: 2rem;
    }

    .gallery-card {
        height: 300px;
    }

    .gallery-content h5 {
        font-size: 1.2rem;
    }

    .gallery-content p {
        font-size: 0.9rem;
    }

    .lightbox-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .lightbox-prev {
        left: 15px;
    }

    .lightbox-next {
        right: 15px;
    }

    #lightboxImage {
        max-height: 70vh;
    }

    .lightbox-caption {
        font-size: 1rem;
        margin-top: 15px;
    }

    .gallery-swiper .swiper-button-next,
    .gallery-swiper .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .gallery-swiper .swiper-button-next:after,
    .gallery-swiper .swiper-button-prev:after {
        font-size: 16px;
    }
}

/* About Image Wrapper */
.about-image-wrapper {
    position: relative;
    padding: 20px;
}

.about-main-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.about-secondary-img {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 45%;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border: 5px solid white;
    z-index: 3;
}

.about-badge {
    position: absolute;
    top: 50px;
    left: -30px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
    z-index: 4;
    animation: float 3s ease-in-out infinite;
}

.badge-content {
    text-align: center;
    color: white;
}

.badge-content h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0;
    line-height: 1;
}

.badge-content p {
    font-size: 0.85rem;
    margin: 5px 0 0 0;
    font-weight: 600;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* About Content */
.about-content {
    padding-left: 30px;
}

.about-subtitle {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 15px;
}

.about-subtitle i {
    margin-right: 8px;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 25px;
    line-height: 1.3;
}

.about-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

/* About Features */
.about-features {
    margin: 35px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.8rem;
    color: white;
}

.feature-text h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

/* About CTA */
.about-cta {
    margin-top: 35px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}



/* Responsive */
@media (max-width: 992px) {
    .about-content {
        padding-left: 0;
        margin-top: 30px;
    }

    .about-title {
        font-size: 2rem;
    }

    .about-secondary-img {
        width: 40%;
        bottom: -15px;
        right: -15px;
    }

    .about-badge {
        width: 120px;
        height: 120px;
        top: 40px;
        left: -20px;
    }

    .badge-content h3 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .about-image-wrapper {
        padding: 10px;
    }

    .about-secondary-img {
        width: 35%;
    }

    .about-badge {
        width: 100px;
        height: 100px;
        top: 30px;
        left: -10px;
    }

    .badge-content h3 {
        font-size: 1.8rem;
    }

    .badge-content p {
        font-size: 0.75rem;
    }

    .about-title {
        font-size: 1.8rem;
    }

    .about-cta {
        flex-direction: column;
    }

    .about-cta .btn {
        width: 100%;
    }
}


/* Detail Blog */
 /* Breadcrumb */
 .breadcrumb-section {
    background: linear-gradient(135deg, var(--primary-color), #0d1b1e);
    padding: 30px 0;
    color: white;
}

.breadcrumb {
    background: transparent;
    margin: 0;
    padding: 0;
}

.breadcrumb-item a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #ffd700;
}

.breadcrumb-item.active {
    color: white;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.5);
}

/* Blog Header */
.blog-header {
    position: relative;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
}

.blog-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
}

.blog-header-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    color: white;
    z-index: 2;
}

.blog-category-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.blog-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.blog-meta {
    display: flex;
    gap: 25px;
    font-size: 0.95rem;
    opacity: 0.95;
}

.blog-meta i {
    color: var(--secondary-color);
    margin-right: 5px;
}

/* Blog Content */
.blog-content {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    margin-bottom: 40px;
}

.blog-content h2 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 2rem;
    margin: 40px 0 20px;
}

.blog-content h3 {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.5rem;
    margin: 30px 0 15px;
}

.blog-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.blog-content ul, .blog-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.blog-content li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

.blog-content img {
    width: 100%;
    border-radius: 15px;
    margin: 30px 0;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.blog-content blockquote {
    background: #f8f9fa;
    border-left: 5px solid var(--secondary-color);
    padding: 25px 30px;
    margin: 30px 0;
    border-radius: 10px;
    font-style: italic;
    color: #666;
}

.destination-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    margin: 20px 0;
    border-left: 5px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.destination-card:hover {
    background: #e9ecef;
    transform: translateX(10px);
}

.destination-card h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.destination-number {
    background: var(--secondary-color);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* Sidebar */
.sidebar-widget {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.sidebar-widget h4 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--secondary-color);
}

.author-card {
    text-align: center;
}

.author-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.author-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.author-role {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.author-bio {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.recent-post-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s ease;
    cursor: pointer;
}

.recent-post-item:hover {
    transform: translateX(5px);
}

.recent-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.recent-post-img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
}

.recent-post-content h5 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
    line-height: 1.3;
}

.recent-post-date {
    font-size: 0.8rem;
    color: #999;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-item {
    background: #f8f9fa;
    color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

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

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, var(--primary-color), #0d1b1e);
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin: 40px 0;
}

.cta-box h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.95;
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border: none;
    padding: 14px 35px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
    color: white;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.6);
    color: white;
}

/* Related Posts */
.related-posts {
    padding: 60px 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

.blog-card {
    border: none;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    background: white;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
}

.blog-card-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.blog-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.blog-card:hover img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--secondary-color);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-card .card-body {
    padding: 25px;
}

.blog-card h5 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-excerpt {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-read-more {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    color: var(--accent-color);
    gap: 8px;
}

.blog-read-more i {
    margin-left: 5px;
    transition: margin-left 0.3s ease;
}

.blog-read-more:hover i {
    margin-left: 10px;
}

/* Share Buttons */
.share-buttons {
    display: flex;
    gap: 10px;
    margin: 30px 0;
}

.share-btn {
    padding: 10px 20px;
    border-radius: 25px;
    border: none;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.share-btn:hover {
    transform: translateY(-3px);
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.whatsapp {
    background: var(--whatsapp-color);
}

.share-btn.linkedin {
    background: #0077b5;
}

/* Responsive */
@media (max-width: 992px) {
    .blog-title {
        font-size: 2rem;
    }
    .blog-content {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .blog-header {
        height: 350px;
    }
    .blog-title {
        font-size: 1.5rem;
    }
    .blog-header-content {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }
    .blog-content {
        padding: 25px 20px;
    }
    .blog-content h2 {
        font-size: 1.5rem;
    }
    .blog-meta {
        flex-wrap: wrap;
        gap: 15px;
    }
    .share-buttons {
        flex-wrap: wrap;
    }
}

@media (max-width: 576px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 26px;
        bottom: 15px;
        right: 15px;
    }
    #scrollTopBtn {
        bottom: 80px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
}