/* CSS Variables */
:root {
    --whatsapp-green: #25D366; /* WhatsApp Green */
    --whatsapp-green-dark: #128C7E; /* WhatsApp Dark Green (for header/hover) */
    --whatsapp-message-bg: #DCF8C6; /* WhatsApp sent message bubble color */
    --whatsapp-chat-bg: #E5DDD5; /* WhatsApp chat background pattern-like color */
    --whatsapp-incoming-message-bg: #FFFFFF; /* WhatsApp incoming message */
    /* Brand Colors */
    --primary: #8a0101;
    --secondary: #FF4500;
    --accent: #FF6347;
    --dark: #1A1A1A;
    --light: #ffdbc5;
    --white: #ffffff;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #740000, #e93e00);
    --gradient-secondary: linear-gradient(135deg, rgba(255, 69, 0, 0.1), rgba(255, 0, 0, 0.1));

    /* Shadows */
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-large: 0 4px 20px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition: all 0.3s ease;
}

/* Basic Styling */
html,
main {
    margin: 0;
    padding: 0;
}

main {
    display: block; /* Ensure consistent block behavior */
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: var(--dark);
    /* overflow-x: hidden; /* Temporarily commented out to find specific overflow issues */
}

.main-header {
    background: var(--white);
    box-shadow: var(--shadow);
    border-bottom: 1px solid rgba(255, 69, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000; /* Ensures header is above the slide-in menu */
    transition: var(--transition);
}

.navbar {
    padding: 12px 0;
    background: var(--white);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo {
    height: 60px;
    width: auto;
}

.logo-text {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-left: 1rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.main-nav {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    color: var(--primary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 4px;
    transition: var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
    background: var(--gradient-primary);
    color: var(--dark);
}

.social-menu {
    display: flex;
    gap: 15px;
}

.social-menu a {
    color: var(--primary);
    text-decoration: none;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-menu a:hover {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--dark);
    margin: 5px 0;
    transition: all 0.3s ease-in-out; /* Combined transition for all properties */
    position: relative; /* Needed for transform reference if any child is absolute */
}

/* Mobile Menu Button Icon Animation to X */
.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg); /* Adjust 7px based on height (2px) + margin (5px) */
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
    /* Navigation & Header */
    .mobile-menu-btn {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 75%; /* Slightly reduced */
        max-width: 280px; /* Slightly reduced */
        height: 100vh;
        background: var(--white);
        padding: 20px;
        box-shadow: var(--shadow-large);
        flex-direction: column;
        align-items: flex-start;
        transition: left 0.3s ease-in-out;
        z-index: 999;
        display: flex;
        box-sizing: border-box; /* Ensure padding is included in width */
    }

    .nav-menu.active {
        left: 0;
    }

    .main-nav {
        flex-direction: column;
        width: 100%;
    }

    .social-menu {
        width: 100%;
        justify-content: center;
        margin-top: 20px;
    }

    .logo-text {
        font-size: 1.0rem; /* Significantly reduced font size */
        white-space: nowrap; /* Prevent wrapping */
        margin-left: 0.5rem; /* Reduce left margin */
        flex-shrink: 0; /* Prevent shrinking if space is tight */
    }

    .nav-logo {
        height: 50px;
        flex-shrink: 0; /* Prevent logo from shrinking too much */
    }

    /* Hero Section & Slideshow */
    .hero-title h1 {
        font-size: 2.5rem;
    }

    .hero-title p {
        font-size: 1.2rem;
    }

    .slide-arrow {
        padding: 0.8rem 1rem;
        font-size: 1.2rem;
    }
    
    .image-credit {
        font-size: 0.7rem;
        padding: 3px 8px;
        bottom: 10px;
        right: 10px;
    }

    /* Tours Section */
    .tour-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }

    #tours {
        padding: 60px 0;
    }

    #tours h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    /* Tour Modal */
    .tour-modal {
        width: 95%;
        margin: 20px auto;
    }

    .modal-header h2 {
        font-size: 1.5rem;
    }

    .modal-body {
        padding: 15px;
    }
    
    /* Explore Beaches Section */
    .explore-beaches-section {
        min-height: 400px;
    }
    
    .beaches-content h2 {
        font-size: 2.2rem;
    }
    
    .beaches-content p {
        font-size: 1rem;
    }
}

/* Tour Grid Specific Styles */
.tour-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

.tour-card {
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(27, 60, 89, 0.1);
    will-change: transform, box-shadow;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
}

.tour-card.float-in {
    animation: fadeInUp 0.6s forwards;
}

.tour-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.tour-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tour-title {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.tour-description {
    color: var(--secondary);
    margin-bottom: 15px;
    flex-grow: 1;
}

.view-more-btn {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    text-align: center;
    margin-top: auto;
}

.view-more-btn:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

@media (max-width: 1200px) {
    .tour-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tour-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }

    #tours {
        padding: 60px 0;
    }

    #tours h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
}

/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(248, 155, 127, 0.8);
}

.tour-modal {
    display: none;
    position: relative;
    background: var(--white);
    margin: 50px auto;
    padding: 0;
    width: 90%;
    max-width: 800px;
    border-radius: 15px;
    overflow: hidden;
}

.modal-content {
    position: relative;
    padding: 30px;
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    color: var(--dark);
    cursor: pointer;
    transition: var(--transition);
    z-index: 1;
}

.close-modal:hover {
    color: var(--secondary);
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-header h3 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.modal-header .subtitle {
    font-size: 1.1rem;
    color: var(--secondary);
    margin: 0;
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        padding: 50px 20px;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        right: 0;
    }

    .main-nav {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .social-menu {
        margin: 30px 0 0;
        padding: 30px 0 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-left: none;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-anchor: none;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }

/* Header Styles */
.main-header {
    background: var(--white);
    box-shadow: var(--shadow);
    border-bottom: 1px solid rgba(255, 69, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 12px 0;
    background: var(--white);
}

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

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 15px;
    padding: 8px;
    border-radius: 4px;
    transition: var(--transition);
}

.logo a:hover {
    background: var(--gradient-secondary);
}

.nav-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    vertical-align: middle;
    transition: var(--transition);
}

.logo:hover .nav-logo {
    transform: scale(1.05);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-weight: 600;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.main-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.main-nav a {
    color: var(--primary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 4px;
    transition: var(--transition);
    position: relative;
}

.main-nav a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.main-nav a:hover:after,
.main-nav a.active:after {
    transform: scaleX(1);
    transform-origin: left;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary);
    background: var(--gradient-secondary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    margin-left: 20px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--white);
    margin: 5px 0;
    transition: var(--transition);
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 84px;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 20px;
        transform: translateY(-100%);
        transition: var(--transition);
        opacity: 0;
        visibility: hidden;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .main-nav {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .main-nav a {
        padding: 10px 20px;
        width: 100%;
        text-align: center;
    }
}

/* Hero Section */
.hero-slideshow {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    margin-top: 84px;
}

.slides {
    position: relative;
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: opacity;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(255, 0, 0, 0.1),
        rgba(255, 69, 0, 0.1)
    );
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 3;
    width: 90%;
    max-width: 800px;
}

.hero-title h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    padding: 0.5rem 0;
}

.hero-title p {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    color: var(--white);
    background: rgba(0, 0, 0, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    backdrop-filter: blur(5px);
    display: inline-block;
}

.slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 3;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.slide-arrow:hover {
    background: var(--gradient-primary);
    transform: translateY(-50%) scale(1.1);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}



/* Slide Navigation */
.slide-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 2;
}

.slide-nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slide-nav-dot.active {
    background: var(--white);
    transform: scale(1.2);
}

/* Slide Arrows */
.slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.slide-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
}

.slide-arrow.prev {
    left: 20px;
}

.slide-arrow.next {
    right: 20px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title h1 {
        font-size: 3rem;
    }
    
    .hero-title p {
        font-size: 1.5rem;
    }
    
    .slide-content p {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .hero-title h1 {
        font-size: 2.5rem;
    }
    
    .hero-title p {
        font-size: 1.2rem;
    }
    
    .slide-content p {
        font-size: 1.1rem;
    }
    
    .slide-arrow {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title h1 {
        font-size: 2rem;
    }
    
    .hero-title p {
        font-size: 1rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
}

/* Tours Section */
#tours {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light) 0%, #E8F0F7 100%);
    position: relative;
}

#tours::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(27, 60, 89, 0.03) 0%, rgba(46, 196, 182, 0.03) 100%);
    pointer-events: none;
}

#tours h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary);
    font-size: 2.5rem;
    font-weight: 600;
    position: relative;
}

#tours h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--secondary);
    margin: 15px auto 0;
    border-radius: 2px;
}

.tour-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.tour-card {
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(27, 60, 89, 0.1);
    will-change: transform;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
}

.tour-card.float-in {
    animation: fadeInUp 0.6s ease forwards;
}

.tour-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.tour-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tour-title {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.tour-description {
    color: var (--secondary);
    margin-bottom: 15px;
    flex-grow: 1;
}

.view-more-btn {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    text-align: center;
    margin-top: auto;
}

.view-more-btn:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

@media (max-width: 1200px) {
    .tour-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tour-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }

    #tours {
        padding: 60px 0;
    }

    #tours h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
}

/* About Section */
#about {
    padding: 5rem 2rem;
    background: var(--white);
}

.about-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

/* Contact Section */
#contact {
    padding: 5rem 2rem;
    background: var(--gradient-primary);
    color: var(--white);
}
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out;
}
.contact-info {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

/* Reviews Section */
.reviews-section {
    padding: 5rem 2rem;
    background: var(--light);
}

.reviews-container {
    max-width: 1400px;
    margin: 0 auto;
}

.reviews-header {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.review-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    animation: float 6s ease-in-out infinite;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
}

.review-info h4 {
    color: var(--dark);
    margin: 0;
}

.review-date {
    color: #666;
    font-size: 0.9rem;
}

.review-rating {
    color: var(--secondary);
    margin: 1rem 0;
}

.review-content {
    color: var(--dark);
    font-style: italic;
    line-height: 1.6;
}

.tripadvisor-cta {
    text-align: center;
    margin-top: 3rem;
}

.tripadvisor-button {
    display: inline-flex;
    align-items: center;
    background: var(--gradient-secondary);
    color: var(--dark);
    padding: 1rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow);
    margin: 0.5rem;  /* Add spacing around buttons */
}

.tripadvisor-button {
    display: inline-flex;
    align-items: center;
    background: var(--gradient-secondary);
    color: var(--dark);
    padding: 1rem 1rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow);
    margin: 0.5rem;  /* Add spacing around buttons */
}

@media (max-width: 768px) {
    .tripadvisor-button {
        margin: 1rem;  /* Increase spacing on mobile */
        width: calc(100% - 2rem);  /* Full width minus margins */
        justify-content: center;
        padding: 1.2rem 1.5rem;  /* Slightly larger touch target */
    }
    
    .tripadvisor-cta {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

.tripadvisor-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-large);
}

.tripadvisor-button i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

/* Modal Styles */

.tour-modal {
    display: none;
    position: relative;
    background: var(--white);
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 25px 50px -12px rgba(11, 27, 45, 0.3);
    transform: scale(0.95);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tour-modal.active {
    transform: scale(1);
    opacity: 1;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    background: var(--white);
    border: none;
    color: var(--dark);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.close-modal:hover {
    color: var(--primary);
    transform: rotate(90deg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.modal-content {
    margin-top: 10px;
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-header h3 {
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.modal-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.tour-details {
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.tour-details h4 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--secondary);
    padding-bottom: 10px;
}

.tour-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tour-details > ul > li {
    margin-bottom: 25px;
    font-weight: 600;
    color: var(--dark);
    font-size: 1.1rem;
}

.tour-details > ul > li > ul {
    margin-top: 10px;
    padding-left: 20px;
    font-weight: normal;
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    border-left: 3px solid var(--secondary);
}

.tour-info {
    margin-top: 30px;
    padding: 20px;
    background: var(--gradient-secondary);
    border-radius: 10px;
    color: var(--dark);
}

.tour-info p {
    margin: 10px 0;
    font-size: 1.1rem;
}

.book-now-btn {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 10, 10, 0.2);
}

.book-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 10, 10, 0.3);
}

@media (max-width: 768px) {
    .tour-modal {
        width: 95%;
        padding: 25px;
        margin: 15px;
    }

    .modal-header h3 {
        font-size: 1.8rem;
    }

    .modal-image {
        height: 200px;
    }

    .tour-details {
        padding: 15px;
    }

    .book-now-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* Stats Section */
.stats-section {
    background: var(--gradient-primary);
    padding: 5rem 2rem;
    color: var(--white);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-item i {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 1rem 0;
    color: var(--white);
}

.stat-item p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-item {
        padding: 1.5rem;
    }

    .stat-item i {
        font-size: 2rem;
    }

    .stat-item h3 {
        font-size: 2rem;
    }

    .stat-item p {
        font-size: 1rem;
    }
}

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

/* Particles Canvas */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Footer Styles */
.main-footer {
    background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%);
    border-top: 1px solid rgba(255, 69, 0, 0.1);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #FFFFFF;
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.footer-section h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.4s ease;
    display: inline-block;
    padding: 5px 0;
    position: relative;
    padding-left: 0;
}

.footer-section ul li a:before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%) scaleX(0);
    width: 6px;
    height: 6px;
    background: var(--gradient-primary);
    border-radius: 50%;
    transition: all 0.4s ease;
    opacity: 0;
}

.footer-section ul li a:hover {
    color: #FFFFFF;
    padding-left: 15px;
}

.footer-section ul li a:hover:before {
    transform: translateY(-50%) scaleX(1);
    opacity: 1;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.contact-info li i {
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.15), rgba(255, 0, 0, 0.15));
    border: 1px solid rgba(255, 69, 0, 0.2);
    transition: all 0.4s ease;
    color: #FF4500;
    font-size: 1.2rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-info li:hover i {
    transform: scale(1.1);
    background: var(--gradient-primary);
    color: #FFFFFF;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.2);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.4rem;
    padding: 12px;
    border-radius: 50%;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
}

.social-links a:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg) translateX(-100%);
    transition: all 0.6s ease;
}

.social-links a:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.2);
}

.social-links a:hover:before {
    transform: rotate(45deg) translateX(100%);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.footer-bottom:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, 
        rgba(255, 69, 0, 0) 0%,
        rgba(255, 69, 0, 0.2) 50%,
        rgba(255, 69, 0, 0) 100%
    );
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom a {
    color: #FF4500;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-bottom a:hover {
    color: #FF0000;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section h4:after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-info li {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* Mobile Responsive Styles */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        padding: 50px 20px;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        right: 0;
    }

    .main-nav {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .social-menu {
        margin: 30px 0 0;
        padding: 30px 0 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-left: none;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section h4:after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-info li {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.2rem;
    }

    .nav-logo {
        height: 40px;
    }

    .footer-section h4 {
        font-size: 1.1rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }

    nav ul {
        flex-direction: column;
        gap: 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .slide-btn {
        padding: 0.8rem;
        font-size: 1.2rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.float-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate {
    opacity: 1;
    transform: translate(0, 0);
}

/* Performance Improvements */


/* Modal Styles */
.modal-header .subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-top: -10px;
    margin-bottom: 20px;
    font-style: italic;
}

.tour-details h4 {
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.tour-details h4:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.tour-details > ul {
    margin-bottom: 40px;
}

.tour-details > ul > li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 20px;
}

.tour-details > ul > li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 1.5em;
    line-height: 1;
}

.tour-details > ul > li > ul {
    margin-top: 8px;
    padding-left: 20px;
    font-weight: normal;
    color: #555;
    line-height: 1.6;
    border-left: 3px solid var(--secondary);
    background: rgba(253, 131, 93, 0.05);
    padding: 15px 20px;
    border-radius: 0 10px 10px 0;
}

.tour-info {
    background: var(--gradient-secondary);
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.tour-info p {
    margin: 12px 0;
    font-size: 1.05rem;
    color: var(--dark);
}

.tour-info strong {
    color: var(--primary);
    margin-right: 10px;
}

.book-now-btn {
    width: 100%;
    max-width: 300px;
    margin: 20px auto;
    display: block;
    background: var(--gradient-primary);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 10, 10, 0.2);
}

.book-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 10, 10, 0.3);
}

@media (max-width: 768px) {
    .modal-header .subtitle {
        font-size: 1rem;
        margin-top: -5px;
    }

    .tour-details > ul > li {
        font-size: 1rem;
    }

    .tour-details > ul > li > ul {
        padding: 12px 15px;
        font-size: 0.95rem;
    }

    .tour-info {
        padding: 20px;
    }

    .tour-info p {
        font-size: 1rem;
    }

    .book-now-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(255, 0, 0, 0.05),
        rgba(255, 69, 0, 0.1)
    );
    z-index: 1;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
    align-items: stretch;
}

.contact-card {
    background: rgba(26, 26, 26, 0.95);
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 69, 0, 0.2);
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(255, 0, 0, 0.1),
        rgba(255, 69, 0, 0.15)
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.25);
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.card-icon i {
    font-size: 28px;
    color: white;
}

.contact-card:hover .card-icon {
    transform: scale(1.1);
}

.card-icon i {
    font-size: 24px;
    color: var(--white);
}

.contact-card h3 {
    color: white;
    margin: 0 0 15px 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.contact-card p {
    color: #ccc;
    margin: 0 0 15px 0;
    line-height: 1.6;
    flex-grow: 1;
}

.contact-link {
    display: block;
    color: var(--accent);
    margin: 8px 0;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 15px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    border: 1px solid rgba(255, 69, 0, 0.2);
    word-break: break-word;
    position: relative;
    padding-left: 0;
}

.contact-link:hover {
    color: white;
    background: rgba(255, 69, 0, 0.3);
    transform: translateY(-2px);
    border-color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    position: relative;
    z-index: 2;
}

@media (max-width: 1200px) {
    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
    }
}

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

    .contact-cards {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 20px;
        max-width: 500px;
    }

    .contact-card {
        padding: 30px 20px;
    }

    .card-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 20px;
    }

    .card-icon i {
        font-size: 26px;
    }

    .contact-card h3 {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }

    .contact-card p {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .contact-link {
        padding: 8px 15px;
        font-size: 0.95rem;
        margin: 6px 0;
    }
}

.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
    z-index: 100;
    display: flex
;
    align-items: center;
    justify-content: center;
    transition: all 0.3sease;
}

/* Mobile Navigation */
@media screen and (max-width: 768px) {
    .nav-container {
        padding: 1rem;
    }

    .mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        z-index: 1000;
    }

    .mobile-menu-btn span {
        display: block;
        width: 25px;
        height: 3px;
        background: #333;
        margin: 5px 0;
        transition: 0.3s;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.95);
        padding: 80px 20px;
        transition: 0.3s;
        box-shadow: -2px 0 5px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        right: 0;
    }

    .main-nav {
        flex-direction: column;
        align-items: center;
    }

    .main-nav li {
        margin: 1rem 0;
    }

    /* Tour Cards Mobile Layout */
    .tour-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem;
    }

    /* Modal Mobile Styling */
    .modal-content {
        width: 95%;
        margin: 20px auto;
        padding: 15px;
    }

    .tour-details {
        padding: 15px;
    }

    /* Hero Section Mobile */
    .hero-title h1 {
        font-size: 2rem;
        padding: 0 1rem;
    }

    .hero-title p {
        font-size: 1.2rem;
    }

    /* Reviews Section Mobile */
    .reviews-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    /* Contact Section Mobile */
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }

    /* Floating WhatsApp Button */
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
    }
}

/* Touch-friendly improvements */
@media (hover: none) {
    .view-more-btn,
    .book-now-btn {
        padding: 12px 24px; /* Larger touch targets */
    }

    .slide-arrow {
        padding: 05px;
        opacity: 0.8;
    }
}

/* Hero Slideshow */
.hero-slideshow {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 84px;
}

.slides {
    position: relative;
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    will-change: opacity;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(255, 0, 0, 0.1),
        rgba(255, 69, 0, 0.1)
    );
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.image-credit {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.6);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 300;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.slide:hover .image-credit {
    opacity: 1;
}



/* Book Now Button Styles */
.book-now-btn {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    box-shadow: 0 2px 10px rgba(138, 1, 1, 0.15);
}

.book-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(138, 1, 1, 0.25);
}

.book-now-btn:active {
    transform: translateY(1px);
}

.book-now-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(138, 1, 1, 0.3);
}

/* Explore Beautiful Beaches Section */
.explore-beaches-section {
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    color: #fff;
}

.beaches-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.beaches-bg-video {
    position: absolute;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.beaches-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(138, 1, 1, 0.6), rgba(255, 69, 0, 0.6));
    z-index: 1;
}

.beaches-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeIn 1.2s ease-out;
}

.beaches-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.beaches-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.beaches-cta-btn {
    display: inline-block;
    background: #fff;
    color: #8a0101;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.beaches-cta-btn:hover {
    background: #ffdbc5;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: #FF4500;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}



@media (max-width: 480px) {
    .explore-beaches-section {
        min-height: 350px;
        padding: 3rem 0;
    }
    
    .beaches-content h2 {
        font-size: 1.8rem;
    }
    
    .beaches-cta-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Force correct styles for TripAdvisor icon in header social menu */
.social-menu a i.fab.fa-tripadvisor::before,
.social-menu a i.fab.fa-tripadvisor {
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400 !important;
    content: "\f262" !important;
    font-style: normal !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Force correct styles for TripAdvisor icon in footer social links */
.footer-section .social-links a i.fab.fa-tripadvisor::before,
.footer-section .social-links a i.fab.fa-tripadvisor {
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400 !important;
    content: "\f262" !important;
    font-style: normal !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* General rule to ensure .fab icons use the correct font-family if overridden by a generic 'i' tag rule */
i.fab {
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400 !important;
}

/* WhatsApp Chat Modal Styles */
.whatsapp-chat-modal {
    display: none; /* Hidden by default */
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    max-width: 90%;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
    z-index: 1001; /* Above other content but below critical popups if any */
    flex-direction: column;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.whatsapp-chat-header {
    background: var(--whatsapp-green-dark);
    color: var(--white);
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.whatsapp-chat-header .chat-logo {
    height: 30px;
    width: 30px; /* Ensure width and height are equal for a circle */
    margin-right: 10px;
    border-radius: 50%;
    object-fit: cover; /* Ensures image covers the area, good for non-square images */
    border: 1px solid var(--white); /* Optional: adds a little border like some profile pics */
}

.whatsapp-chat-header .chat-title {
    font-weight: 600;
    font-size: 1.1rem;
}

.whatsapp-chat-header .close-chat-btn {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0 5px;
    line-height: 1;
}

.whatsapp-chat-body {
    display: flex;
    flex-direction: column;
    height: 400px; /* Adjust as needed */
}

.chat-messages {
    flex-grow: 1;
    padding: 15px;
    overflow-y: auto;
    background-color: var(--whatsapp-chat-bg); /* Changed to WhatsApp like bg */
    /* For an actual WhatsApp background image, you'd use: */
    /* background-image: url('path/to/whatsapp-bg-pattern.png'); */
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chat-message {
    padding: 8px 12px;
    border-radius: 15px;
    max-width: 80%;
    word-wrap: break-word;
    font-size: 0.9rem;
}

.omaari-message {
    background-color: var(--whatsapp-incoming-message-bg); /* Changed to WhatsApp incoming style */
    color: var(--dark);
    align-self: flex-start;
    border-bottom-left-radius: 7.5px; /* WhatsApp typical radius */
    border-bottom-right-radius: 7.5px;
    border-top-right-radius: 7.5px;
    border-top-left-radius: 0; /* Flat corner for tail effect, though tail is complex */
    box-shadow: 0 1px 0.5px rgba(0,0,0,0.13);
}

/* User message style (if you decide to show user's typed message in chat) */
.user-message {
    background-color: var(--primary);
    color: var(--white);
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}

.chat-input-area {
    display: flex;
    padding: 10px;
    border-top: 1px solid #eee;
    background-color: var(--white);
}

.chat-input-area textarea {
    flex-grow: 1;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 10px 15px;
    resize: none;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    margin-right: 10px;
    min-height: 40px; /* Ensure it's tall enough for one line + padding */
    max-height: 80px; /* Prevent excessive expansion */
}

.chat-input-area .send-chat-btn {
    background: var(--whatsapp-green);
    color: var(--white);
    border: none;
    border-radius: 20px;
    padding: 0 15px;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.chat-input-area .send-chat-btn:hover {
    background-color: var(--whatsapp-green-dark);
}

.chat-input-area .send-chat-btn i {
    margin-left: 5px;
}

/* Responsive adjustments for the chat modal */
@media (max-width: 400px) {
    .whatsapp-chat-modal {
        width: 100%;
        max-width: 100%;
        bottom: 0;
        right: 0;
        border-radius: 0;
    }
    .whatsapp-chat-header {
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }
    .whatsapp-chat-body {
        height: calc(100vh - 120px); /* Adjust based on header/footer or other elements */
    }
}