:root {
    --primary: #29a0b1;
    /* Teal-ish blue common in travel themes */
    --primary-dark: #1d7a8c;
    --secondary: #2d373c;
    /* Dark text */
    --accent: #fdc703;
    /* Bright yellow/orange for CTAs */
    --text-body: #747d88;
    --light: #f8f9fa;
    --white: #ffffff;
    --border-radius: 20px;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.4s ease;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-body);
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

/* Navbar - Transparent to Sticky */
/* Top Bar Stylet */
.top-header {
    background-color: var(--secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px 0;
    position: relative;
    z-index: 1002;
}

.top-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-left ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 25px;
}

.top-left li {
    color: #a0a0a0;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.top-left i {
    color: var(--accent);
    margin-right: 8px;
}

.top-right .social-links a {
    color: #a0a0a0;
    margin-left: 15px;
    font-size: 14px;
    transition: 0.3s;
}

.top-right .social-links a:hover {
    color: var(--accent);
}

/* Navbar - Moliva Style */
.navbar {
    position: absolute;
    top: 50px;
    /* Below Top Bar */
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0;
    background: #ffffff;
    /* White background requested */
    transition: all 0.4s ease;
}

.navbar.sticky {
    position: fixed;
    top: 0;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 20px 0;
}

.logo img {
    height: 55px;
    /* Slightly larger logo */
    transition: 0.3s;
}

/* Menu Styles */
.nav-menu {
    display: flex;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: var(--secondary);
    /* Dark text for white header */
    font-weight: 500;
    font-size: 17px;
    padding: 10px 0;
    display: block;
    font-family: 'Outfit', sans-serif;
}

.navbar.sticky .nav-menu a {
    color: var(--secondary);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent);
}

/* Button & Icons */
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-search-icon {
    color: var(--secondary);
    font-size: 20px;
    cursor: pointer;
}

.navbar.sticky .header-search-icon {
    color: var(--secondary);
}

.mobile-menu-toggle {
    display: none;
    padding: 10px;
    z-index: 1005;
}

.header-btn {
    background: var(--accent);
    color: var(--secondary);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: 0.3s;
}

.header-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* Hero Section */
.hero-wrapper {
    position: relative;
    height: 90vh;
    min-height: 700px;
    width: 100%;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 10s linear;
}

.hero-overlay {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 0 20px;
    z-index: 2;
}

.hero-subtitle {
    font-family: 'Yellowtail', cursive;
    font-size: 32px;
    color: var(--accent);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.hero-subtitle::before,
.hero-subtitle::after {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--accent);
}

.hero-title {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--white);
    font-family: 'Playfair Display', serif;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--white);
    opacity: 1;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
}

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

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }

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

@keyframes kenBurns {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.15);
    }
}

.hero-subtitle,
.hero-title,
.hero-content p,
.hero-content .header-btn {
    opacity: 0;
    animation-duration: 1s;
    animation-fill-mode: both;
}

.swiper-slide-active .hero-subtitle {
    animation-name: fadeInDown;
    animation-delay: 0.3s;
}

.swiper-slide-active .hero-title {
    animation-name: fadeInUp;
    animation-delay: 0.5s;
}

.swiper-slide-active .hero-content p {
    animation-name: fadeInUp;
    animation-delay: 0.7s;
}

.swiper-slide-active .hero-content .header-btn {
    animation-name: fadeInUp;
    animation-delay: 0.9s;
}

.swiper-slide-active .hero-bg {
    animation: kenBurns 10s linear forwards;
}

/* Internal Page Hero */
.page-hero {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 0;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero-title {
    font-size: 3.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 15px;
    color: #b0b0b0;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    list-style: none;
    font-weight: 500;
    opacity: 0.9;
}

.breadcrumb li a {
    color: var(--accent);
    text-decoration: none;
}

.breadcrumb li::after {
    content: '/';
    margin-left: 10px;
    color: #fff;
}

.breadcrumb li:last-child::after {
    content: none;
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
}

.contact-info-wrap {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-card {
    background: #f8faff;
    padding: 30px;
    border-radius: 20px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    background: #fff;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: #fff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.contact-details h4 {
    color: var(--secondary);
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.contact-details p,
.contact-details a {
    color: #666;
    text-decoration: none;
}

/* Contact Form */
.contact-form-wrap {
    background: #fff;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form .form-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--secondary);
}

.contact-form .form-control {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #eee;
    border-radius: 12px;
    background: #fcfcfc;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary);
    background: #fff;
    outline: none;
    box-shadow: 0 10px 20px rgba(41, 160, 177, 0.05);
}

/* Room & Tariff Styles */
.room-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.feature-pill {
    background: #fff;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.feature-pill:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.feature-pill i {
    font-size: 20px;
    color: var(--primary);
}

.tariff-section {
    background: #f8faff;
    padding: 80px 0;
    border-radius: 40px;
}

.price-table-wrap {
    overflow-x: auto;
    background: #fff;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

.modern-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
}

.modern-table th {
    text-align: left;
    padding: 20px;
    color: var(--secondary);
    font-weight: 700;
    border-bottom: 2px solid #eee;
}

.modern-table td {
    padding: 25px 20px;
    background: #fcfcfc;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.modern-table td:first-child {
    border-left: 1px solid #f0f0f0;
    border-radius: 15px 0 0 15px;
    font-weight: 600;
    color: var(--secondary);
}

.modern-table td:last-child {
    border-right: 1px solid #f0f0f0;
    border-radius: 0 15px 15px 0;
}

.price-tag {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.25rem;
}

/* Gallery Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 300px;
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(41, 160, 177, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-overlay i {
    color: #fff;
    font-size: 30px;
}

/* Search Box - Premium Pill Layout */
.search-area {
    position: relative;
    margin-top: -60px;
    z-index: 100;
    width: 90%;
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    background: var(--white);
    padding: 10px;
    border-radius: 100px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.search-form {
    display: flex;
    align-items: center;
    width: 100%;
}

.search-item {
    flex: 1;
    padding: 15px 30px;
    position: relative;
}

.search-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: #eee;
}

.search-item label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 5px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-item label i {
    color: var(--primary);
    font-size: 1.1rem;
}

.search-item .form-control {
    width: 100%;
    border: none;
    padding: 5px 0;
    color: var(--text-body);
    font-weight: 500;
    font-size: 1.05rem;
    background: transparent;
}

.search-btn-wrap {
    padding-right: 5px;
}

.search-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 18px 42px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-btn:hover {
    background: var(--secondary);
    transform: scale(1.05);
}

/* Sections General */
.section-padding {
    padding: 100px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
}

.container {
    width: 90%;
    max-width: 1320px;
    margin: 0 auto;
}

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

.section-tag {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.section-head h2 {
    font-size: 2.5rem;
}

/* Destination/Room Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

@media (max-width: 480px) {
    .card-grid {
        grid-template-columns: 1fr;
    }
}

.tour-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    /* box-shadow: var(--card-shadow); */
    border: 1px solid #edf1f4;
    transition: var(--transition);
}

.tour-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.card-img {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.card-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent);
    color: var(--secondary);
    padding: 5px 15px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.85rem;
}

.card-content {
    padding: 30px;
}

.card-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #888;
}

.card-meta i {
    color: var(--primary);
}

.card-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.card-title a {
    color: var(--secondary);
}

.card-title a:hover {
    color: var(--primary);
}

.card-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.price span {
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 700;
}

.btn-link {
    color: var(--text-body);
    font-weight: 500;
    font-size: 0.9rem;
}

.btn-link:hover {
    color: var(--primary);
}

/* Full Width CTA / Video */
.video-section {
    position: relative;
    padding: 120px 0;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 40, 50, 0.7);
}

.video-content {
    position: relative;
    z-index: 2;
}

.video-content h2,
.video-content p {
    color: var(--white);
}

.play-btn {
    width: 80px;
    height: 80px;
    background: var(--white);
    color: var(--primary);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

/* Footer */
footer {
    background: #1a2b3c;
    color: #b0b0b0;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-widget h4 {
    color: var(--white);
    margin-bottom: 25px;
}

.footer-links li {
    list-style: none;
    margin-bottom: 12px;
}

.footer-links a {
    color: #b0b0b0;
    transition: 0.3s;
}

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

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.hide-mobile {
    display: block;
}

.show-mobile {
    display: none;
}

@media (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }

    .show-mobile {
        display: block !important;
    }
}

/* Responsive */
@media (max-width: 991px) {
    .navbar {
        position: fixed;
        top: 0;
        background: var(--white);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    }

    .top-header {
        display: none;
        /* Hide top bar on mobile for cleaner look */
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        display: none;
        /* Hidden by default */
        animation: slideInUp 0.3s ease forwards;
        z-index: 1001;
    }

    .navbar .nav-menu.active {
        display: flex !important;
    }

    .nav-menu li {
        width: 100%;
        text-align: left;
    }

    .nav-menu a {
        padding: 15px 30px;
        border-bottom: 1px solid #f5f5f5;
        font-size: 16px;
    }

    .mobile-menu-toggle {
        display: block !important;
        margin-left: 15px;
    }

    .header-btn {
        padding: 10px 20px;
        font-size: 12px;
    }

    .logo img {
        height: 45px;
    }

    /* Hero title adjust */
    .hero-title {
        font-size: 2.8rem;
    }

    .search-area {
        margin-top: 0;
        padding: 20px;
        border-radius: 20px;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

/* WhatsApp Support Widget */
.whatsapp-support {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background-color: #25d366;
    color: #fff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-support:hover {
    transform: scale(1.1) translateY(-10px);
    background-color: #20b355;
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
    animation: none;
}

.whatsapp-tooltip {
    position: absolute;
    right: 85px;
    background: #fff;
    color: #2d373c;
    padding: 10px 20px;
    border-radius: 15px;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    transition: all 0.4s ease;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 8px 0 8px 8px;
    border-style: solid;
    border-color: transparent transparent transparent #fff;
}

.whatsapp-support:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .whatsapp-support {
        bottom: 25px;
        right: 25px;
        width: 55px;
        height: 55px;
        font-size: 30px;
    }

    .whatsapp-tooltip {
        display: none;
    }

    /* Hero Slider Mobile Adjustments */
    .hero-wrapper {
        min-height: 450px !important;
        height: 70vh !important;
    }

    .hero-title {
        font-size: 1.6rem !important;
        line-height: 1.2 !important;
    }

    .hero-subtitle {
        font-size: 16px !important;
    }

    .hero-subtitle::before,
    .hero-subtitle::after {
        width: 20px !important;
    }

    .hero-content p {
        font-size: 0.85rem !important;
    }

    .hero-content .header-btn {
        padding: 10px 20px !important;
        font-size: 12px !important;
    }

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

    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 14px !important;
    }
}

/* Google Review Badge */
.google-review-box {
    margin-top: 25px;
}

@keyframes googleBtnPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 10px 30px rgba(66, 133, 244, 0.25);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
}

.google-review-btn {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: googleBtnPulse 2s infinite ease-in-out;
}

.google-review-btn:hover {
    animation-play-state: paused;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    background: #f8f9fa;
}

.g-content {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    line-height: 1.2;
    width: 100%;
}

.g-content span {
    font-size: 11px;
    color: #5f6368;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.g-content strong {
    font-size: 18px;
    color: #202124;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
}