/* 
==============================================
Destinations Section
==============================================
*/
:root {
    --primary-color: #E67E22; /* This should match your existing primary color */
    --primary-color-rgb: 230, 126, 34; /* RGB version of your primary color for opacity */
}
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    grid-gap: var(--spacing-lg);
}

.destination-card {
    position: relative;
    height: 300px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--box-shadow-sm);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destination-card:hover img {
    transform: scale(1.1);
}

.destination-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: var(--spacing-md);
    color: white;
    transform: translateY(0);
    transition: transform 0.3s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.destination-card:hover .destination-content {
    transform: translateY(-10px);
}

.destination-content h3 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-xs);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    
}

.destination-content p {
    font-size: var(--font-size-sm);
    margin-bottom: var(--spacing-md);
    opacity: 0.9;
}

.destination-content .btn {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.destination-card:hover .destination-content .btn {
    opacity: 1;
    transform: translateY(0);
}

/* 
==============================================
Testimonials Section
==============================================
*/
.testimonials {
    overflow: hidden;
    padding: 70px 0;
    position: relative;
}

.testimonials-slider {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.testimonials-wrapper {
    display: flex;
    width: 100%;
    overflow: hidden;
}

.testimonial-item {
    flex: 0 0 100%;
    min-width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
    display: none;
}

.testimonial-item.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.testimonial-content {
    background-color: #fff;
    padding: 30px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-sm);
    margin-bottom: 20px;
    position: relative;
}

.testimonial-content::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 30px;
    width: 20px;
    height: 20px;
    background-color: #fff;
    transform: rotate(45deg);
}

.testimonial-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--spacing-sm);
}

.google-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.rating {
    color: var(--accent-color);
    margin-bottom: var(--spacing-sm);
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-gray);
    margin-bottom: var(--spacing-md);
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: var(--spacing-md);
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: var(--spacing-sm);
    object-fit: cover;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.author-info h4 {
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.author-info span {
    color: var(--text-gray);
    font-size: var(--font-size-sm);
}

.testimonial-arrows {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
    width: 110%;
    margin-left: -5%;
    padding: 0;
}

.prev-arrow,
.next-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: var(--text-light);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.prev-arrow:hover,
.next-arrow:hover {
    background-color: var(--primary-color);
    transform: scale(1.1);
}

.prev-arrow i,
.next-arrow i {
    font-size: 1.2rem;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    margin: 0 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.3);
}

.google-reviews-link {
    text-align: center;
    margin-top: 40px;
}

.google-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    margin-bottom: 15px;
    background-color: white;
    color: #444;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.google-btn:hover {
    background-color: #f8f8f8;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.google-btn img {
    width: 24px;
    height: 24px;
    margin-right: 12px;
}

/* 
==============================================
Why Choose Us Section
==============================================
*/
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    grid-gap: var(--spacing-lg);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    padding: var(--spacing-md);
    border-radius: var(--border-radius-md);
    background-color: #fff;
    box-shadow: var(--box-shadow-sm);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.feature-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: var(--spacing-md);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
}

.feature-content h3 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-xs);
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

.feature-item:hover .feature-content h3 {
    color: var(--primary-color);
}

.feature-content p {
    color: var(--text-gray);
}

/* 
==============================================
Newsletter Section
==============================================
*/
.newsletter {
    background-color: var(--secondary-color);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1539020140153-e479b8c62d67?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1974&q=80') center/cover no-repeat;
    opacity: 0.1;
    z-index: 0;
}

.newsletter-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.newsletter-content h2 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-xs);
}

.newsletter-content p {
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    width: 100%;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: var(--border-radius-sm) 0 0 var(--border-radius-sm);
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
}

.newsletter-form input:focus {
    outline: none;
}

.newsletter-form .btn {
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
}

/* 
==============================================
CTA Section
==============================================
*/
.cta {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1539020140153-e479b8c62d67?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1974&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    padding: var(--spacing-xl) 0;
}

.cta-content {
    animation: fadeIn 1s ease;
}

.cta-content h2 {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--spacing-sm);
    color: var(--text-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.cta-content p {
    margin-bottom: var(--spacing-lg);
    color: rgba(255, 255, 255, 0.9);
}

.cta .btn-light:hover {
    color: var(--primary-color);
}

/* 
==============================================
Footer
==============================================
*/
.site-footer {
    background-color: var(--dark-color);
    color: var(--text-light);
    padding-top: var(--spacing-xl);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-about {
    margin-bottom: var(--spacing-lg);
}

.footer-about .logo {
    margin-bottom: var(--spacing-sm);
}

.footer-about .logo h2 {
    font-size: var(--font-size-xl);
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-md);
}

.social-links {
    display: flex;
    gap: var(--spacing-xs);
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-3px);
}

.footer-links h3,
.footer-contact h3,
.footer-newsletter h3 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-md);
    color: var(--text-light);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact ul li i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-sm);
}

.footer-newsletter-form {
    display: flex;
    position: relative;
}

.footer-newsletter-form input {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
}

.footer-newsletter-form input:focus {
    outline: none;
}

.footer-newsletter-form button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-color);
    color: var(--text-light);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-newsletter-form button:hover {
    background-color: #d06a1e;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-links {
    display: flex;
    gap: var(--spacing-md);
}

.footer-bottom-links a {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

/* 
==============================================
Back to Top Button
==============================================
*/
.back-to-top {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    width: 50px !important;
    height: 50px !important;
    background-color: var(--primary-color) !important;
    color: var(--text-light) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0  !important;
    visibility: hidden !important;
    transition: all 0.3s ease !important;
    z-index: 99 !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3) !important;
}

.back-to-top.active {
    opacity: 1 !important;
    visibility: visible !important;
    animation: pulse 2s infinite !important; 
}

.back-to-top:hover {
    background-color: var(--secondary-color) ;
    color: var(--text-light);
    animation: none !important;
    transform: translateY(-5px) !important;
}

/* 
==============================================
Responsive Styles (All in the same CSS file)
==============================================
*/

/* Large Devices (Desktops, less than 1200px) */
@media (max-width: 1200px) {
    :root {
        --font-size-3xl: 2.25rem;
        --font-size-2xl: 1.75rem;
    }

    .container {
        max-width: 960px;
    }

    .hero-content h1 {
        font-size: 2.25rem;
    }

    .tours-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }

    .features-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

/* Medium Devices (Tablets, less than 992px) */
@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }

    .site-header {
        background-color: var(--secondary-color);
        position: relative;
        padding: 15px 0;
    }

    /* Mobile menu styles */
    .mobile-menu-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 280px;
        height: 100vh;
        background-color: var(--secondary-color);
        padding: 80px 20px 20px;
        transition: right 0.3s ease-in-out;
        z-index: 99;
        overflow-y: auto;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav .nav-links {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav .nav-links li {
        margin: 0;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .main-nav .nav-links li a {
        display: block;
        padding: 15px 0;
        color: var(--text-light);
    }

    /* Booking form */
    .booking-section {
        margin-top: 30px;
    }

    .quick-booking-form {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Grid layouts */
    .activities-grid,
    .services-grid,
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Newsletter section */
    .newsletter-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-content {
        margin-bottom: 20px;
    }

    .newsletter-form {
        width: 100%;
        max-width: 100%;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Space between book now and menu toggle */
    .btn.btn-primary {
        margin-right: 15px;
    }
}

/* Small Devices (Landscape Phones, less than 768px) */
@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }

    :root {
        --font-size-3xl: 2rem;
        --font-size-2xl: 1.75rem;
        --font-size-xl: 1.25rem;
    }

    .section-padding {
        padding: 50px 0;
    }

    .hero {
        height: auto;
        min-height: 500px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .booking-form-container {
        margin-top: 30px;
    }

    .quick-booking-form {
        grid-template-columns: 1fr;
        padding: 15px;
    }

    .tours-grid {
        grid-template-columns: 1fr;
    }

    .activities-grid,
    .services-grid,
    .destinations-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 5px;
    }

    .testimonial-arrows {
        width: 100%;
        margin-left: 0;
    }

    .prev-arrow,
    .next-arrow {
        width: 40px;
        height: 40px;
    }
}

/* Extra Small Devices (Portrait Phones, less than 576px) */
@media (max-width: 576px) {
    .section-header h2 {
        font-size: 1.75rem;
    }

    .header-right {
        margin-left: auto;
    }

    .language-selector {
        margin-right: 10px;
    }

    .btn.btn-primary {
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    .feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .feature-icon {
        margin-right: 0;
        margin-bottom: var(--spacing-sm);
    }

    .testimonial-author img {
        width: 50px;
        height: 50px;
    }

    .back-to-top {
        width: 40px !important;
        height: 40px !important;
        bottom: 20px    !important;
        right: 20px !important;
    }
}

/* Landscape Orientation for Mobile Devices */
@media (max-height: 450px) and (orientation: landscape) {
    .hero {
        height: auto;
        padding: 100px 0;
    }

    .booking-form-container {
        position: relative;
        bottom: auto;
        margin-top: 30px;
    }

    .main-nav {
        padding-top: 60px;
    }

    .main-nav .nav-links li a {
        padding: 10px 0;
    }
}
/* Prevent horizontal scroll globally */
body {
  overflow-x: hidden;
}

/* Smallest screens like S8 (360px width) */
@media (max-width: 400px) {
    
  .tours-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
  }

  .tour-card {
    margin: 0;
    padding-inline: 0.5rem;
  }
}
/* Prevent horizontal scroll globally */
body {
  overflow-x: hidden;
}


/* Smallest screens like S8 (360px width) */
@media (max-width: 380px) {
  .tours-grid {
    padding: 0;
    margin: 0 auto;
    width: 100%;
  }

  .tour-card {
    width: calc(100vw - 30px); /* Adjust 30px as needed */
    margin: 0 auto;
  }
}


/*
Main Stylesheet for Merrakechy Tour
All styles including responsive design and animations in one file
==============================================
*/

/* 
==============================================
CSS Variables
==============================================
*/
:root {
    /* Main Colors */
    --primary-color: #E57C23;
    /* Terracotta/Orange - Moroccan inspired */
    --secondary-color: #025464;
    /* Deep Teal */
    --accent-color: #E8AA42;
    /* Desert Gold */
    --light-color: #F8F9FA;
    --dark-color: #212529;
    --gray-color: #6C757D;
    --light-gray: #E9ECEF;

    /* Background Colors */
    --bg-light: #F8F9FA;
    --bg-dark: #025464;

    /* Text Colors */
    --text-dark: #212529;
    --text-light: #F8F9FA;
    --text-gray: #6C757D;

    /* Font Families */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;

    /* Font Sizes */
    --font-size-base: 1rem;
    --font-size-sm: 0.875rem;
    --font-size-lg: 1.25rem;
    --font-size-xl: 1.5rem;
    --font-size-2xl: 2rem;
    --font-size-3xl: 2.5rem;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;

    /* Border Radius */
    --border-radius-sm: 0.25rem;
    --border-radius-md: 0.5rem;
    --border-radius-lg: 1rem;

    /* Box Shadow */
    --box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    --box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);

    /* Animation Speed */
    --transition-speed: 0.3s;
}

/* 
==============================================
Reset and Base Styles
==============================================
*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #fff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all var(--transition-speed) ease;
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 
==============================================
Animations
==============================================
*/
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Animation classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.animate {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-right.animate {
    opacity: 1;
    transform: translateX(0);
}

/* 
==============================================
Utility Classes
==============================================
*/
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section-padding {
    padding: var(--spacing-xl) 0;
}

.text-center {
    text-align: center;
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-dark {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.section-header {
    margin-bottom: var(--spacing-xl);
    text-align: center;
    position: relative;
    padding-bottom: 15px;
    animation: fadeIn 1s ease;
}

.section-header h2 {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--spacing-xs);
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.section-header:hover h2::after {
    width: 100px;
}

.section-header p {
    color: var(--text-gray);
    max-width: 700px;
    margin: var(--spacing-md) auto 0;
}

.section-footer {
    margin-top: var(--spacing-lg);
}

/* 
==============================================
Buttons
==============================================
*/
.btn {
    display: inline-block;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.75rem 1.5rem;
    font-size: var(--font-size-base);
    line-height: 1.5;
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-speed) ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
    z-index: -1;
}

.btn:hover:before {
    width: 100%;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #d06a1e;
    /* Slightly darker orange */
    border-color: #d06a1e;
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--text-light);
    border-color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: #014352;
    /* Slightly darker teal */
    border-color: #014352;
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-light {
    background-color: var(--light-color);
    color: var(--text-dark);
    border-color: var(--light-color);
}

.btn-light:hover {
    background-color: #e2e6ea;
    border-color: #e2e6ea;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    align-items: center;
    display: inline-flex;
    justify-content: center;
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
    
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-full {
    width: 100%;
}

/* 
==============================================
Header Styles
==============================================
*/
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 100;
    transition: all var(--transition-speed) ease;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo a {
    display: flex;
    align-items: center;
    color: var(--text-light);
}

.logo h1,
.logo h2 {
    font-size: var(--font-size-xl);
    font-weight: 700;
}

.logo span {
    color: var(--primary-color);
}

.main-nav .nav-links {
    display: flex;
    align-items: center;
}

.main-nav .nav-links li {
    margin: 0 var(--spacing-sm);
}

.main-nav .nav-links a {
    color: var(--text-light);
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.main-nav .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-speed) ease;
}

.main-nav .nav-links a:hover::after,
.main-nav .nav-links a.active::after {
    width: 100%;
}

.main-nav .nav-links a:hover,
.main-nav .nav-links a.active {
    color: var(--primary-color);
}

.header-right {
    display: flex;
    align-items: center;
}


/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    position: relative;
    margin-left: 20px;
    z-index: 1000;
    padding: 0;
}

.mobile-menu-toggle span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background-color: var(--light-color);
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.mobile-menu-toggle span:nth-child(1) {
    top: 10px;
}

.mobile-menu-toggle span:nth-child(2) {
    top: 20px;
}

.mobile-menu-toggle span:nth-child(3) {
    top: 30px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    top: 20px;
    transform: rotate(135deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.mobile-menu-toggle.active span:nth-child(3) {
    top: 20px;
    transform: rotate(-135deg);
}

/* Menu Overlay for Mobile */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 90;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Sticky Header */
.site-header.sticky {
    position: fixed;
    background-color: var(--secondary-color);
    box-shadow: var(--box-shadow);
    padding: 10px 0;
    animation: slideInDown 0.5s ease;
}

@keyframes slideInDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

/* 
==============================================
Hero Section
==============================================
*/
.hero {
    position: relative;
    height: 85vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/assets/images/hero/');
    background-size: cover;
    background-position: center;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeIn 1s ease;
}

.hero-content h1 {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--spacing-md);
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-lg);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
}

.hero-buttons .btn {
    min-width: 160px;
}

/* 
==============================================
Booking Form
==============================================
*/
.booking-section {
    position: relative;
    margin-top: -80px;
    margin-bottom: 30px;
    z-index: 10;
}

.booking-form-container {
    width: 100%;
}

.quick-booking-form {
    background-color: var(--bg-light);
    padding: var(--spacing-md);
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow);
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto;
    grid-gap: var(--spacing-md);
    align-items: end;
    animation: fadeIn 1s ease;
}

.form-header {
    grid-column: 1 / -1;
    margin-bottom: var(--spacing-sm);
}

.form-header h3 {
    color: var(--secondary-color);
    font-size: var(--font-size-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: var(--font-size-sm);
    margin-bottom: 5px;
    color: var(--text-gray);
}

.form-group input,
.form-group select {
    padding: 12px;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(229, 124, 35, 0.2);
}

/* 
==============================================
Activities Section
==============================================
*/
.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    grid-gap: var(--spacing-lg);
}

.activity-card {
    background-color: #fff;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--box-shadow-sm);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
}

.activity-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.activity-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed) ease;
}

.activity-card:hover .activity-img img {
    transform: scale(1.05);
}

.activity-price {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 5px 10px;
    border-radius: var(--border-radius-sm);
    font-weight: 500;
    z-index: 1;
}

.activity-content {
    padding: var(--spacing-md);
}

.activity-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--spacing-xs);
    font-size: var(--font-size-sm);
    color: var(--text-gray);
}

.activity-info span {
    display: flex;
    align-items: center;
}

.activity-info i {
    margin-right: 5px;
    color: var(--primary-color);
}

.activity-content h3 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-xs);
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

.activity-card:hover .activity-content h3 {
    color: var(--primary-color);
}

.activity-content p {
    margin-bottom: var(--spacing-md);
    color: var(--text-gray);
}

/* 
==============================================
Tours Section
==============================================
*/
.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    grid-gap: var(--spacing-lg);
}

.tour-card {
    background-color: #fff;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--box-shadow-sm);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
}

.tour-img {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.tour-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed) ease;
}

.tour-card:hover .tour-img img {
    transform: scale(1.05);
}

.tour-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--accent-color);
    color: var(--text-dark);
    padding: 5px 10px;
    border-radius: var(--border-radius-sm);
    font-weight: 500;
    z-index: 1;
}

.tour-content {
    padding: var(--spacing-md);
}

.tour-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--spacing-xs);
    font-size: var(--font-size-sm);
    color: var(--text-gray);
}

.tour-info span {
    display: flex;
    align-items: center;
}

.tour-info i {
    margin-right: 5px;
    color: var(--primary-color);
}

.tour-content h3 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-xs);
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

.tour-card:hover .tour-content h3 {
    color: var(--primary-color);
}

.tour-content p {
    margin-bottom: var(--spacing-md);
    color: var(--text-gray);
}

.tour-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: var(--spacing-md);
}

.tour-features span {
    background-color: var(--light-gray);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: var(--font-size-sm);
    display: flex;
    align-items: center;
    transition: background-color 0.3s ease;
}

.tour-features span:hover {
    background-color: #e0e0e0;
}

.tour-features i {
    margin-right: 5px;
    color: var(--primary-color);
}

/* 
==============================================
Transport Services Section
==============================================
*/
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    grid-gap: var(--spacing-lg);
}

.service-card {
    background-color: #fff;
    border-radius: var(--border-radius-md);
    padding: var(--spacing-lg);
    text-align: center;
    box-shadow: var(--box-shadow-sm);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-sm);
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-gray);
    margin-bottom: var(--spacing-md);
}

.service-price {
    font-weight: 600;
    font-size: var(--font-size-lg);
    color: var(--accent-color);
    margin-bottom: var(--spacing-md);
}

/* 
==============================================
Additional CSS Styles for Merrakechy Tour
These styles should be added to the main.css file
==============================================
*/

/* Menu open body state */
body.menu-open {
    overflow: hidden;
}

/* Form field focus states */
input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(229, 124, 35, 0.2);
}

/* Images for activity cards */
.activity-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Make sure these URLs are added to your CSS */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('https://images.unsplash.com/photo-1489749798305-4fea3ae63d43?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1974&q=80');
}

.cta {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('https://images.unsplash.com/photo-1539020140153-e479b8c62d67?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1974&q=80');
}

/* Additional transitions for buttons */
.btn {
    transition: all 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

/* Smooth scrolling for whole page */
html {
    scroll-behavior: smooth;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo {
    width: 80px;
    height: auto;
    animation: pulse 1.2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}


@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Additional animation for section headers */
.section-header {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Make sure these keyframes are in your CSS */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

/* Add staggered animation for cards */
.activity-card:nth-child(1),
.tour-card:nth-child(1),
.service-card:nth-child(1),
.destination-card:nth-child(1),
.feature-item:nth-child(1) {
    animation-delay: 0.1s;
}

.activity-card:nth-child(2),
.tour-card:nth-child(2),
.service-card:nth-child(2),
.destination-card:nth-child(2),
.feature-item:nth-child(2) {
    animation-delay: 0.2s;
}

.activity-card:nth-child(3),
.tour-card:nth-child(3),
.service-card:nth-child(3),
.destination-card:nth-child(3),
.feature-item:nth-child(3) {
    animation-delay: 0.3s;
}

.activity-card:nth-child(4),
.tour-card:nth-child(4),
.service-card:nth-child(4),
.destination-card:nth-child(4),
.feature-item:nth-child(4) {
    animation-delay: 0.4s;
}

/* Make sure mobile menu transitions smoothly */
.main-nav {
    transition: right 0.3s ease-in-out, opacity 0.3s ease;
}

/* Additional hover effects */
.nav-links a {
    position: relative;
    overflow: hidden;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-links a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Make sure hover states work on mobile */
@media (hover: none) {
    .btn:hover {
        transform: none !important;
        box-shadow: none !important;
    }

    .activity-card:hover,
    .tour-card:hover,
    .service-card:hover,
    .destination-card:hover {
        transform: none !important;
    }
}

/* 
==============================================
Image Placeholder URLs for Merrakechy Tour
Add these to your CSS and ensure the images are properly displayed
==============================================
*/

/* Hero Image */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('https://images.unsplash.com/photo-1539840093138-9c5e79e279a0?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
}

/* Activities Placeholder Images */
/* Replace these URLs in your HTML file */
.activity-img img[src*="quad-biking.jpg"] {
    content: url('https://images.unsplash.com/photo-1528234591848-04e3f4429f22?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1974&q=80');
}

.activity-img img[src*="camel-ride.jpg"] {
    content: url('https://images.unsplash.com/photo-1566354719544-c78198296e8b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80');
}

.activity-img img[src*="hot-air-balloon.jpg"] {
    content: url('https://images.unsplash.com/photo-1453872302360-eed3c5f8ff66?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80');
}

.activity-img img[src*="cooking-class.jpg"] {
    content: url('https://images.unsplash.com/photo-1606788075764-8cdf5e049e7a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80');
}

/* Tours Placeholder Images */
.tour-img img[src*="atlas-mountains.jpg"] {
    content: url('https://images.unsplash.com/photo-1635182584834-08bd42a48087?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
}

.tour-img img[src*="sahara.jpg"] {
    content: url('https://images.unsplash.com/photo-1633505412556-82c0921e8f4a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1286&q=80');
}

.tour-img img[src*="essaouira.jpg"] {
    content: url('https://images.unsplash.com/photo-1534430480872-3498386e7856?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
}

/* Destinations Placeholder Images */
.destination-card img[src*="marrakech.jpg"] {
    content: url('https://images.unsplash.com/photo-1597212618440-806262de4f6b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1074&q=80');
}

.destination-card img[src*="sahara.jpg"] {
    content: url('https://images.unsplash.com/photo-1548235045-1a031c196634?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1074&q=80');
}

.destination-card img[src*="chefchaouen.jpg"] {
    content: url('https://images.unsplash.com/photo-1548019979-e5f8e1a06f9a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1223&q=80');
}

.destination-card img[src*="atlas.jpg"] {
    content: url('https://images.unsplash.com/photo-1548108156-0fbea7d46233?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80');
}

/* CTA Background */
.cta {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('https://images.unsplash.com/photo-1585670143897-9a58762dd2d2?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80');
}

/* Testimonial Author Images */
.testimonial-author img[src*="testimonial1.jpg"] {
    content: url('https://randomuser.me/api/portraits/women/44.jpg');
}

.testimonial-author img[src*="testimonial2.jpg"] {
    content: url('https://randomuser.me/api/portraits/men/32.jpg');
}

.testimonial-author img[src*="testimonial3.jpg"] {
    content: url('https://randomuser.me/api/portraits/women/68.jpg');
}

.testimonial-author img[src*="testimonial4.jpg"] {
    content: url('https://randomuser.me/api/portraits/women/54.jpg');
}

/* Google Icon Placeholder */
img[alt="Google Review"],
img[alt="Google"] {
    content: url('https://upload.wikimedia.org/wikipedia/commons/5/53/Google_%22G%22_Logo.svg');
    width: 20px;
    height: 20px;
}

/* 
/* 
==============================================
Responsive Fixes for Mobile Menu and Search Bar
Add these to your main.css file to fix the issues
==============================================
*/

/* Fix for header width on mobile */
@media (max-width: 768px) {
    .site-header {
        width: 100%;
        overflow: hidden;
        padding: 10px 0;
    }

    .header-wrapper {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Make sure logo is responsive */
    .logo h1,
    .logo h2 {
        font-size: 1.2rem;
    }

    .logo-img {
        width: 40px;
        height: 40px;
    }

    /* Ensure menu stays in viewport */
    .main-nav {
        width: 80%;
        max-width: 300px;
        right: -100%;
        z-index: 999;
        height: 100%;
        overflow-y: auto;
        box-sizing: border-box;
    }

    /* Fix mobile menu toggle position */
    .mobile-menu-toggle {
        position: relative;
        z-index: 1001;
        width: 30px;
        height: 30px;
        margin-left: 10px;
    }

    .mobile-menu-toggle span {
        width: 100%;
    }

    .mobile-menu-toggle span:nth-child(1) {
        top: 6px;
    }

    .mobile-menu-toggle span:nth-child(2) {
        top: 14px;
    }

    .mobile-menu-toggle span:nth-child(3) {
        top: 22px;
    }

    /* Fix booking form container */
    .booking-section {
        margin-top: 20px;
        padding: 0 15px;
        box-sizing: border-box;
        width: 100%;
    }

    .booking-form-container {
        width: 100%;
        box-sizing: border-box;
    }

    .quick-booking-form {
        width: 100%;
        box-sizing: border-box;
        grid-template-columns: 1fr;
        padding: 20px 15px;
    }

    /* Fix form elements */
    .form-group {
        width: 100%;
        margin-bottom: 15px;
    }

    .form-group input,
    .form-group select {
        width: 100%;
        box-sizing: border-box;
    }

    /* Fix for overflow issues in sections */
    section {
        width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    /* Ensure full-width containers */
    .container {
        width: 100%;
        box-sizing: border-box;
        padding: 0 15px;
    }

    /* Fix hero content */
    .hero-content {
        width: 100%;
        box-sizing: border-box;
        padding: 0 15px;
    }

    /* Fix for hero height on mobile */
    .hero {
        height: auto;
        min-height: 500px;
        padding: 100px 0 150px;
    }

    /* Make sure buttons are reasonably sized */
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    /* Ensure proper spacing for the header elements */
    .header-right {
        display: flex;
        align-items: center;
    }

    /* Space between language selector and book now button */
    .language-selector {
        margin-right: 10px;
    }

    /* Make the Book Now button more compact on mobile */
    .header-right .btn-primary {
        padding: 8px 15px;
        font-size: 14px;
    }

    /* Fix for screen orientation issues */
    @media (orientation: landscape) and (max-height: 500px) {
        .hero {
            min-height: 400px;
            padding: 70px 0;
        }

        .booking-section {
            margin-top: 10px;
        }

        .quick-booking-form {
            padding: 15px;
        }

        .main-nav {
            padding-top: 60px;
        }

        .main-nav .nav-links li a {
            padding: 8px 0;
        }
    }
}

/* Extra small devices (phones smaller than iPhone SE) */
@media (max-width: 375px) {

    .logo h1,
    .logo h2 {
        font-size: 1.1rem;
    }

    .header-right .btn-primary {
        padding: 6px 10px;
        font-size: 12px;
    }

    

    .mobile-menu-toggle {
        width: 25px;
        height: 25px;
        margin-left: 5px;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }
}

/* 
==============================================
Mobile Menu Fix - Final Solution
Replace the existing mobile menu CSS with this code
==============================================
*/

/* Mobile menu specific styles */
@media (max-width: 992px) {

    /* Header adjustments */
    .site-header {
        background-color: var(--secondary-color);
        position: relative;
        padding: 10px 0;
    }

    /* Logo size for mobile */
    .logo h1,
    .logo h2 {
        font-size: 1.2rem;
    }

    /* Menu toggle button styling */
    .mobile-menu-toggle {
        display: block;
        background: transparent;
        border: none;
        width: 32px;
        height: 32px;
        position: relative;
        margin-left: 15px;
        padding: 0;
        cursor: pointer;
        z-index: 1001;
    }

    .mobile-menu-toggle span {
        display: block;
        position: absolute;
        height: 3px;
        width: 100%;
        background-color: var(--light-color);
        border-radius: 3px;
        opacity: 1;
        left: 0;
        transform: rotate(0deg);
        transition: .25s ease-in-out;
    }

    .mobile-menu-toggle span:nth-child(1) {
        top: 8px;
    }

    .mobile-menu-toggle span:nth-child(2) {
        top: 16px;
    }

    .mobile-menu-toggle span:nth-child(3) {
        top: 24px;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        top: 16px;
        transform: rotate(135deg);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
        left: -60px;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        top: 16px;
        transform: rotate(-135deg);
    }

    /* Menu overlay */
    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.6);
        z-index: 99;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .menu-overlay.active {
        display: block;
        opacity: 1;
    }

    /* Mobile menu positioning */
    .main-nav {
        position: fixed;
        top: 0;
        right: -280px;
        /* Start offscreen */
        width: 280px;
        height: 100%;
        background-color: var(--secondary-color);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
        z-index: 100;
        transition: right 0.3s ease;
        padding: 80px 0 30px;
        overflow-y: auto;
    }

    .main-nav.active {
        right: 0;
    }

    /* Nav links styling */
    .main-nav .nav-links {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 0 20px;
    }

    .main-nav .nav-links li {
        width: 100%;
        margin: 0 0 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .main-nav .nav-links a {
        display: block;
        padding: 12px 0;
        color: var(--text-light);
        transition: all 0.3s ease;
    }

    .main-nav .nav-links a:hover,
    .main-nav .nav-links a.active {
        color: var(--primary-color);
        padding-left: 10px;
    }

    /* Header right elements */
    .header-right {
        display: flex;
        align-items: center;
    }

    .language-selector {
        margin-right: 10px;
    }

    .language-selector a {
        color: var(--text-light);
        margin-right: 8px;
        font-size: 14px;
    }

    /* Book now button */
    .header-right .btn-primary {
        padding: 8px 16px;
        font-size: 14px;
    }
}

/* Additional fixes for very small screens */
@media (max-width: 375px) {

    .logo h1,
    .logo h2 {
        font-size: 1.1rem;
    }

    .header-right .btn-primary {
        padding: 6px 12px;
        font-size: 13px;
    }

    .mobile-menu-toggle {
        margin-left: 10px;
    }
}

/* For body when menu is open - prevent scrolling */
body.menu-open {
    overflow: hidden;
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    height: 85vh;
    min-height: 500px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-content {
    text-align: center;
    color: var(--text-light);
    z-index: 2;
    animation: fadeInUp 0.8s ease;
}

.hero-content h1 {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--spacing-md);
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-lg);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    margin: 0 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-slider {
        height: auto;
        min-height: 600px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}

/* 
==============================================
Contact Page Styles
Add these to your main.css file
==============================================
*/

/* Contact Info Section */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-method {
    background-color: #fff;
    padding: 30px 20px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-color: rgba(229, 124, 35, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    font-size: 30px;
    color: var(--primary-color);
}

.contact-method h3 {
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.contact-method p {
    color: var(--text-gray);
    margin-bottom: 15px;
}

.contact-link {
    display: block;
    color: var(--primary-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--secondary-color);
}

/* Contact Form Section */
.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    background-color: #fff;
    padding: 40px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-sm);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--secondary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-primary);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(229, 124, 35, 0.2);
}

.form-checkbox {
    display: flex;
    align-items: center;
}

.form-checkbox input {
    width: auto;
    margin-right: 10px;
}

.form-checkbox label {
    margin-bottom: 0;
    font-weight: normal;
}

.form-checkbox a {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-form .btn {
    margin-top: 10px;
    padding: 12px 30px;
}

/* Map Section */
.map-section {
    padding: 0;
}

.map-container {
    overflow: hidden;
    border-radius: 0;
    line-height: 0;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Operating Hours Section */
.hours-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hours-content h2 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.hours-list {
    margin: 30px 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--light-gray);
}

.hours-list .day {
    font-weight: 500;
    color: var(--secondary-color);
}

.hours-list .time {
    color: var(--primary-color);
}

.hours-note {
    font-style: italic;
    color: var(--text-gray);
    font-size: 14px;
}

.hours-image {
    overflow: hidden;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow);
}

.hours-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hours-image:hover img {
    transform: scale(1.05);
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #fff;
    border-radius: var(--border-radius-md);
    margin-bottom: 15px;
    box-shadow: var(--box-shadow-sm);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(229, 124, 35, 0.05);
}

.faq-question h3 {
    margin: 0;
    font-size: 18px;
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

.faq-toggle {
    color: var(--primary-color);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 20px 20px;
    color: var(--text-gray);
}

.faq-item.active .faq-question h3 {
    color: var(--primary-color);
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

/* CTA Buttons for Contact Page */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.cta-buttons .btn i {
    margin-right: 8px;
}

/* Thank You Page Styles */
.thank-you-container {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 60px 20px;
}

.thank-you-icon {
    font-size: 80px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.thank-you-container h1 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.thank-you-container p {
    color: var(--text-gray);
    margin-bottom: 30px;
}

.return-home {
    margin-top: 20px;
}

/* Responsive Styles for Contact Page */
@media (max-width: 992px) {
    .contact-form {
        padding: 30px;
    }

    .hours-container {
        grid-template-columns: 1fr;
    }

    .hours-image {
        grid-row: 1;
        max-height: 400px;
    }

    .hours-content {
        grid-row: 2;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 576px) {
    .contact-method {
        padding: 20px 15px;
    }

    .contact-form {
        padding: 20px 15px;
    }

    .faq-question h3 {
        font-size: 16px;
    }
}

/* 
==============================================
Additional CSS for Privacy Policy and Thank You Pages
Add these to your main.css file
==============================================
*/

/* Privacy Policy Page Styles */
.privacy-policy-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-sm);
}

.last-updated {
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 30px;
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section h2 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 24px;
}

.policy-section h3 {
    color: var(--primary-color);
    margin: 20px 0 15px;
    font-size: 20px;
}

.policy-section p,
.policy-section li {
    color: var(--text-gray);
    margin-bottom: 15px;
    line-height: 1.6;
}

.policy-section ul {
    padding-left: 25px;
    margin-bottom: 20px;
}

.policy-section ul li {
    margin-bottom: 10px;
}

.contact-list {
    background-color: var(--light-gray);
    padding: 20px 25px;
    border-radius: var(--border-radius-sm);
    list-style: none;
}

.contact-list li {
    margin-bottom: 10px;
    padding-left: 0;
}

.contact-list a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.contact-list a:hover {
    color: var(--secondary-color);
}

/* Thank You Page Additional Styles */
.thank-you-container {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    background-color: #fff;
    padding: 50px 40px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-sm);
}

.thank-you-icon {
    font-size: 80px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.thank-you-container h1 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.thank-you-container p {
    color: var(--text-gray);
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 1.6;
}

.info-box {
    background-color: rgba(229, 124, 35, 0.1);
    border-radius: var(--border-radius-sm);
    padding: 20px 25px;
    margin: 30px 0;
    text-align: left;
}

.info-box p {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.info-box ul {
    list-style: none;
    padding: 0;
}

.info-box ul li {
    padding-left: 25px;
    margin-bottom: 12px;
    position: relative;
    color: var(--text-gray);
}

.info-box ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.return-home {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.return-home .btn {
    padding: 12px 24px;
}

.return-home .btn i {
    margin-right: 8px;
}

/* Responsive Fixes for New Pages */
@media (max-width: 768px) {
    .privacy-policy-content {
        padding: 25px;
    }

    .thank-you-container {
        padding: 30px 20px;
    }

    .return-home {
        flex-direction: column;
        align-items: center;
    }

    .return-home .btn {
        width: 100%;
        margin-bottom: 15px;
    }
}

/* Fix the page hero section positioning */
.page-hero {
    position: relative;
    padding: 120px 0 70px;
    /* Increased top padding to push content down */
    margin-top: 0;
    /* Remove any margin */
    background-size: cover;
    background-position: center;
    text-align: center;
    color: var(--text-light);
}

/* Make sure site header is properly positioned */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(2, 84, 100, 0.9);
    /* Semi-transparent background */
    padding: 15px 0;
}

/* Adjust page hero content */
.page-hero-content {
    position: relative;
    z-index: 5;
}

.page-hero-content h1 {
    font-size: var(--font-size-2xl);
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-hero-content p {
    font-size: var(--font-size-lg);
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Add a gradient overlay to improve text readability */
.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.5));
    z-index: 1;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-hero {
        padding: 100px 0 60px;
        /* Slightly less padding on smaller screens */
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 100px 0 50px;
    }

    .page-hero-content h1 {
        font-size: 1.75rem;
    }

    .page-hero-content p {
        font-size: 1rem;
    }
}

/* 
==============================================
About Page Styles
Add these to your main.css file
==============================================
*/

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text h2 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: var(--font-size-2xl);
}

.about-text p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.value-item {
    text-align: center;
    padding: 20px;
    background-color: #fff;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.value-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(229, 124, 35, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.value-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.value-item h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 18px;
}

.value-item p {
    color: var(--text-gray);
    font-size: 14px;
    margin: 0;
}

/* Stats Counter Section */
.stats-counter {
    display: flex;
    justify-content: space-around;
    text-align: center;
    margin: 50px 0;
    flex-wrap: wrap;
}

.stat-item {
    position: relative;
    padding: 20px;
    flex: 1;
    min-width: 200px;
}

.stat-icon {
    margin-bottom: 15px;
}

.stat-icon img {
    width: 50px;
    height: 50px;
    filter: invert(56%) sepia(75%) saturate(1429%) hue-rotate(346deg) brightness(90%) contrast(96%);
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--secondary-color);
    font-weight: 700;
    display: inline-block;
    margin: 0;
}

.counter-suffix {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
}

.stat-item p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-top: 10px;
}

.ratings-display {
    background-color: #fff;
    border-radius: var(--border-radius-md);
    padding: 20px;
    box-shadow: var(--box-shadow-sm);
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rating-header {
    text-align: left;
}

.rating-header h3 {
    color: var(--secondary-color);
    margin-bottom: 5px;
    font-size: 1.5rem;
}

.rating-stars {
    margin-bottom: 10px;
}

.rating-stars i {
    color: var(--accent-color);
    font-size: 18px;
    margin-right: 2px;
}

.rating-header p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.tripadvisor-badge img {
    height: 40px;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    background-color: #fff;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--box-shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
}

.member-image {
    height: 280px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-info {
    padding: 20px;
    text-align: center;
}

.member-info h3 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.member-position {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.member-bio {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.member-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(229, 124, 35, 0.1);
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.member-social a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Activities Tabs Section */
.activities-tabs-container {
    margin-top: 40px;
    background-color: #fff;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-sm);
    overflow: hidden;
}

.activities-tabs {
    display: flex;
    border-bottom: 1px solid #eee;
    overflow-x: auto;
    scrollbar-width: none;
    /* For Firefox */
    -ms-overflow-style: none;
    /* For Internet Explorer and Edge */
}

.activities-tabs::-webkit-scrollbar {
    display: none;
    /* For Chrome, Safari, and Opera */
}

.activity-tab {
    padding: 20px;
    min-width: 180px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    background-color: #f9f9f9;
}

.activity-tab.active {
    border-bottom-color: var(--primary-color);
    background-color: #fff;
}

.tab-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tab-icon img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
    filter: grayscale(100%);
}

.activity-tab.active .tab-icon img {
    filter: none;
    transform: scale(1.1);
}

.activity-tab:hover .tab-icon img {
    filter: grayscale(0);
}

.activity-tab h3 {
    font-size: 16px;
    margin: 0;
    color: var(--text-gray);
    transition: color 0.3s ease;
}

.activity-tab.active h3 {
    color: var(--primary-color);
    font-weight: 600;
}

.activity-tab:hover h3 {
    color: var(--primary-color);
}

.activity-content-container {
    position: relative;
    min-height: 400px;
}

.activity-content {
    display: none;
    animation: fadeIn 0.5s ease;
    padding: 30px;
}

.activity-content.active {
    display: block;
}

.activity-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.activity-image {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--box-shadow-sm);
}

.activity-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.activity-content:hover .activity-image img {
    transform: scale(1.03);
}

.activity-details h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.activity-details p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.activity-features {
    margin-bottom: 25px;
    padding-left: 0;
    list-style-type: none;
}

.activity-features li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 10px;
    color: var(--text-gray);
}

.activity-features li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--primary-color);
}

.activity-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.watch-culture-btn {
    display: flex;
    align-items: center;
    gap: 8px;
}

.watch-culture-btn i {
    font-size: 1.2rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .about-values {
        grid-template-columns: repeat(3, 1fr);
    }

    .stats-counter {
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat-item {
        flex: 0 0 calc(50% - 20px);
    }

    .activity-content-wrapper {
        grid-template-columns: 1fr;
    }

    .ratings-display {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .rating-header {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .about-values {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .stat-item {
        flex: 0 0 100%;
    }

    .activities-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
    }

    .activity-tab {
        min-width: 140px;
        padding: 15px 10px;
    }

    .tab-icon {
        width: 40px;
        height: 40px;
    }

    .tab-icon img {
        width: 30px;
        height: 30px;
    }

    .activity-tab h3 {
        font-size: 14px;
    }

    .activity-content {
        padding: 20px 15px;
    }
}

/* Animation for counters */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.counter,
.counter-suffix {
    animation: countUp 1s ease forwards;
}

/* 
==============================================
Updated Stats Counter and Activities Tabs Styles
==============================================
*/

/* Stats Counter Section */
.stats-counter {
    display: flex;
    justify-content: space-around;
    text-align: center;
    margin: 50px 0;
    flex-wrap: wrap;
}

.stat-item {
    position: relative;
    padding: 30px;
    flex: 1;
    min-width: 200px;
    background-color: #fff;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-sm);
    margin: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.stat-icon {
    margin-bottom: 20px;
}

.stat-icon i {
    font-size: 40px;
    color: var(--primary-color);
    background-color: rgba(229, 124, 35, 0.1);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.stat-item:hover .stat-icon i {
    transform: scale(1.1);
}

.counter-wrapper {
    margin-bottom: 10px;
}

.counter {
    font-size: 3.5rem;
    color: var(--secondary-color);
    font-weight: 700;
    display: inline-block;
    margin: 0;
}

.counter-suffix {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.stat-item p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-top: 10px;
}

/* Activities Tabs Section */
.activities-tabs {
    display: flex;
    background-color: #fff;
    border-radius: var(--border-radius-md) var(--border-radius-md) 0 0;
    overflow-x: auto;
    scrollbar-width: none;
    /* For Firefox */
    -ms-overflow-style: none;
    /* For Internet Explorer and Edge */
    box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.05);
}

.activities-tabs::-webkit-scrollbar {
    display: none;
    /* For Chrome, Safari, and Opera */
}

.activity-tab {
    padding: 20px 15px;
    min-width: 140px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    background-color: #fff;
    flex: 1;
}

.activity-tab.active {
    border-bottom-color: var(--primary-color);
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.tab-icon {
    margin: 0 auto 15px;
    width: 60px;
    height: 60px;
    background-color: rgba(229, 124, 35, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tab-icon i {
    font-size: 24px;
    color: var(--text-gray);
    transition: color 0.3s ease, transform 0.3s ease;
}

.activity-tab.active .tab-icon i {
    color: var(--primary-color);
    transform: scale(1.1);
}

.activity-tab:hover .tab-icon i {
    color: var(--primary-color);
}

.activity-tab h3 {
    font-size: 16px;
    margin: 0;
    color: var(--text-gray);
    transition: color 0.3s ease;
}

.activity-tab.active h3 {
    color: var(--secondary-color);
    font-weight: 600;
}

.activity-tab:hover h3 {
    color: var(--secondary-color);
}

.activity-content-container {
    background-color: #fff;
    border-radius: 0 0 var(--border-radius-md) var(--border-radius-md);
    box-shadow: var(--box-shadow-sm);
}

/* Updated Counter Animation */
@keyframes countUp {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.counter,
.counter-suffix {
    opacity: 0;
}

.counter.animate,
.counter-suffix.animate {
    animation: countUp 0.5s forwards;
}

/* Fixed fa-hot-air-balloon icon (since it doesn't exist natively) */
.fa-hot-air-balloon:before {
    content: "\f072";
    /* Using plane icon as fallback */
    transform: rotate(45deg);
    display: inline-block;
}

/* Media Queries */
@media (max-width: 992px) {
    .stats-counter {
        flex-wrap: wrap;
    }

    .stat-item {
        flex: 0 0 calc(50% - 20px);
        min-width: unset;
    }
}

@media (max-width: 768px) {
    .stat-item {
        flex: 0 0 100%;
        margin: 10px 0;
    }

    .counter {
        font-size: 3rem;
    }

    .counter-suffix {
        font-size: 2rem;
    }

    .activities-tabs {
        flex-wrap: nowrap;
    }

    .activity-tab {
        min-width: 120px;
        padding: 15px 10px;
    }
}

/* 
==============================================
Gallery Page Styles
Create a file named gallery.css in your css directory
==============================================
*/

/* Gallery Filter */
.gallery-filter {
    padding-bottom: 20px;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.filter-btn {
    padding: 10px 20px;
    background-color: #fff;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
    font-size: 14px;
    color: var(--text-gray);
}

.filter-btn.active,
.filter-btn:hover {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

/* Gallery Grid */
.gallery-section {
    padding: 0 0 var(--spacing-xl);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-item {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--box-shadow-sm);
    position: relative;
    height: 250px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
}

.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: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    color: #fff;
    text-align: left;
    width: 100%;
}

.gallery-info h3 {
    font-size: 18px;
    margin-bottom: 5px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.gallery-info p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 0;
}

.view-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-item:hover .view-icon {
    opacity: 1;
    transform: translateY(0);
}

.view-icon i {
    color: #fff;
    font-size: 16px;
}

.gallery-load-more {
    text-align: center;
    margin-top: 30px;
}

/* Video Gallery */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.video-item {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--box-shadow-sm);
    background-color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
}

.video-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
    cursor: pointer;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-item:hover .video-thumbnail img {
    transform: scale(1.1);
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(229, 124, 35, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-play-button i {
    color: #fff;
    font-size: 24px;
}

.video-thumbnail:hover .video-play-button {
    background-color: var(--primary-color);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: 20px;
}

.video-info h3 {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.video-info p {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 0;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
}

.video-modal-content {
    position: relative;
    margin: auto;
    padding: 0;
    width: 80%;
    max-width: 800px;
    top: 50%;
    transform: translateY(-50%);
}

.video-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Instagram Feed */
.instagram-feed {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin-top: 40px;
}

.instagram-item {
    position: relative;
    overflow: hidden;
    padding-top: 100%;
    /* 1:1 Aspect Ratio */
}

.instagram-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-item:hover img {
    transform: scale(1.1);
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

.instagram-overlay i {
    color: #fff;
    font-size: 24px;
}

.instagram-follow {
    text-align: center;
    margin-top: 30px;
}

.instagram-follow .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Lightbox Customization */
.lb-data .lb-details {
    width: 100%;
    text-align: center;
}

.lb-data .lb-caption {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}

.lb-data .lb-number {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
}

/* Make sure hidden gallery items stay hidden */
.gallery-item.hidden {
    display: none;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .video-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }

    .instagram-feed {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .filter-btn {
        padding: 8px 15px;
        font-size: 13px;
    }

    .video-modal-content {
        width: 95%;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .instagram-feed {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item {
        height: 200px;
    }

    .gallery-info h3 {
        font-size: 16px;
    }

    .gallery-info p {
        font-size: 12px;
    }

    .filter-buttons {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
        flex-wrap: nowrap;
    }

    .filter-btn {
        white-space: nowrap;
    }
}

/* 
==============================================
Services Page Styles
Create a file named services.css in your css directory
==============================================
*/

/* Main Layout Styles */
.services-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
}

/* Sidebar Styles */
.sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-nav {
    background-color: #fff;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-sm);
    padding: 25px;
    margin-bottom: 30px;
}

.sidebar-nav h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--light-gray);
}

.sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.sidebar-menu li a {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: var(--text-gray);
    border-radius: var(--border-radius-sm);
    transition: all 0.3s ease;
    font-weight: 500;
}

.sidebar-menu li a i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
    color: var(--primary-color);
}

.sidebar-menu li a:hover,
.sidebar-menu li.active a {
    background-color: rgba(229, 124, 35, 0.1);
    color: var(--primary-color);
    transform: translateX(5px);
}

.sidebar-menu li.active a {
    font-weight: 600;
}

.sidebar-cta {
    background-color: var(--secondary-color);
    border-radius: var(--border-radius-md);
    padding: 25px;
    color: #fff;
}

.sidebar-cta h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.sidebar-cta p {
    margin-bottom: 20px;
    opacity: 0.9;
    font-size: 14px;
}

.whatsapp-contact {
    margin-top: 15px;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #25D366;
    color: white;
    padding: 10px;
    border-radius: var(--border-radius-sm);
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    color: white;
    transform: translateY(-3px);
}

/* Content Section Styles */
.content-section {
    display: none;
}

.content-section.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Services Grid Styles */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.service-card {
    background-color: #fff;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--box-shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
}

.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 10px;
    border-radius: var(--border-radius-sm);
    font-size: 12px;
    font-weight: 500;
    z-index: 1;
}

.service-info {
    padding: 20px;
}

.service-title {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.service-title h3 {
    font-size: 18px;
    color: var(--secondary-color);
    margin: 0;
}

.service-price {
    color: var(--text-gray);
    font-size: 14px;
}

.service-price span {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 18px;
}

.service-meta {
    display: flex;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--text-gray);
}

.service-meta span {
    display: flex;
    align-items: center;
    margin-right: 15px;
}

.service-meta i {
    margin-right: 5px;
    color: var(--primary-color);
}

.service-info p {
    margin-bottom: 15px;
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
}

.service-rating {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.stars {
    color: var(--accent-color);
    margin-right: 10px;
}

.service-rating span {
    font-size: 14px;
    color: var(--text-gray);
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.service-features span {
    background-color: var(--light-gray);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    color: var(--text-gray);
}

.service-features i {
    margin-right: 5px;
    color: var(--primary-color);
}

.service-actions {
    display: flex;
    gap: 10px;
}

.service-actions .btn {
    flex: 1;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Destinations Grid Styles */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.destination-card {
    position: relative;
    height: 250px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--box-shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destination-card:hover img {
    transform: scale(1.1);
}

.destination-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.destination-card:hover .destination-content {
    transform: translateY(-10px);
}

.destination-content h3 {
    margin-bottom: 5px;
    font-size: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.destination-content p {
    margin-bottom: 15px;
    font-size: 14px;
    opacity: 0.9;
}

.destination-btn {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid white;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.destination-card:hover .destination-btn {
    opacity: 1;
    transform: translateY(0);
}

.destination-btn:hover {
    background-color: white;
    color: var(--secondary-color);
}


/* Promotions Styles */
.promotions-container {
    margin-top: 30px;
}

.promotion-card {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
    background-color: white;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--box-shadow-sm);
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promotion-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.promotion-content {
    padding: 30px;
    position: relative;
}

.promotion-tag {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 10px;
    border-radius: var(--border-radius-sm);
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 15px;
}

.promotion-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.promotion-content p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.promotion-features {
    margin-bottom: 20px;
}

.promotion-features li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: var(--text-gray);
}

.promotion-features li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--primary-color);
}

.promotion-timer {
    margin-bottom: 20px;
    background-color: var(--light-gray);
    padding: 15px;
    border-radius: var(--border-radius-sm);
}

.promotion-timer p {
    margin-bottom: 10px;
    color: var(--secondary-color);
    font-weight: 500;
}

.countdown {
    display: flex;
    gap: 10px;
    color: var(--text-gray);
    font-size: 14px;
}

.countdown span {
    font-weight: 600;
    color: var(--primary-color);
    margin-right: 3px;
}

.promotion-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-gray);
    font-size: 16px;
}

.new-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.per-person {
    font-size: 14px;
    color: var(--text-gray);
}

.promotion-note {
    font-style: italic;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.promotion-image {
    overflow: hidden;
}

.promotion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.promotion-card:hover .promotion-image img {
    transform: scale(1.05);
}

/* Modal Styles */
.service-modal,
.booking-modal,
.destination-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.service-modal-content,
.booking-modal-content,
.destination-modal-content {
    position: relative;
    background-color: #fff;
    margin: 5% auto;
    width: 90%;
    max-width: 900px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    color: var(--text-gray);
    cursor: pointer;
    z-index: 10;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.modal-close:hover {
    background-color: var(--primary-color);
    color: white;
}

.service-modal-wrapper,
.destination-modal-wrapper {
    padding: 30px;
}

/* Booking Modal Styles */
.booking-modal-wrapper {
    padding: 0;
}

.booking-modal-header {
    background-color: var(--secondary-color);
    color: white;
    padding: 30px;
    border-radius: var(--border-radius-md) var(--border-radius-md) 0 0;
}

.booking-modal-header h2 {
    margin-bottom: 5px;
}

.booking-modal-header .service-title {
    opacity: 0.9;
    font-size: 16px;
}

.booking-form-container {
    padding: 30px;
}

.booking-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.booking-form-section h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--light-gray);
}

.booking-summary {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: var(--border-radius-sm);
    margin-bottom: 20px;
}

.booking-summary h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 18px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
}

.summary-label {
    color: var(--text-gray);
}

.summary-value {
    font-weight: 500;
    color: var(--secondary-color);
}

.summary-item.total {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 16px;
}

.summary-item.total .summary-value {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 18px;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.form-actions .btn {
    flex: 1;
}

/* Service Detail Modal Styles */
.service-detail-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
}

.service-detail-gallery {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-md);
    height: 300px;
    margin-bottom: 20px;
}

.service-detail-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-content h2 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 24px;
}

.service-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.meta-item {
    display: flex;
    align-items: center;
    color: var(--text-gray);
    font-size: 14px;
}

.meta-item i {
    margin-right: 5px;
    color: var(--primary-color);
}

.service-detail-description {
    margin-bottom: 30px;
}

.service-detail-description p {
    color: var(--text-gray);
    margin-bottom: 15px;
    line-height: 1.7;
}

.service-detail-features h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 18px;
}

.feature-list {
    margin-bottom: 30px;
}

.feature-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    color: var(--text-gray);
}

.feature-list li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--primary-color);
}

.service-detail-sidebar {
    background-color: var(--light-gray);
    padding: 25px;
    border-radius: var(--border-radius-md);
}

.sidebar-box {
    margin-bottom: 25px;
}

.sidebar-box h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.price-box {
    margin-bottom: 20px;
}

.price-label {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 5px;
}

.price-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.price-value small {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-gray);
}

.sidebar-text {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.sidebar-box .btn {
    width: 100%;
    margin-bottom: 10px;
}

.sidebar-meta {
    margin-bottom: 15px;
}

.sidebar-meta-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-gray);
    font-size: 14px;
}

.sidebar-meta-item:last-child {
    border-bottom: none;
}

.sidebar-meta-item span:last-child {
    font-weight: 500;
    color: var(--secondary-color);
}

/* Destination Modal Styles */
.destination-detail-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.destination-hero {
    position: relative;
    height: 300px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    margin-bottom: 30px;
}

.destination-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.destination-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
}

.destination-hero-overlay h2 {
    font-size: 28px;
    margin-bottom: 10px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.destination-hero-overlay p {
    font-size: 16px;
    opacity: 0.9;
}

.destination-content h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 20px;
}

.destination-content p {
    color: var(--text-gray);
    margin-bottom: 15px;
    line-height: 1.7;
}

.destination-highlights {
    margin: 30px 0;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.highlight-item {
    background-color: white;
    padding: 20px;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--box-shadow-sm);
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(229, 124, 35, 0.1);
}

.highlight-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.highlight-item h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.highlight-item p {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 0;
}

.destination-activities {
    margin-bottom: 30px;
}

.destination-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

/* Animation for Modal Content */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-modal-wrapper,
.booking-modal-wrapper,
.destination-modal-wrapper {
    animation: fadeUp 0.4s ease;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .services-container {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: relative;
        top: 0;
    }

    .sidebar-nav {
        margin-bottom: 20px;
    }

    .sidebar-menu {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 10px;
        gap: 10px;
    }

    .sidebar-menu li {
        flex-shrink: 0;
    }

    .sidebar-menu li a {
        white-space: nowrap;
    }

    .sidebar-cta {
        display: none;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }

    .promotion-card {
        grid-template-columns: 1fr;
    }

    .promotion-image {
        height: 250px;
        order: -1;
    }

    .service-detail-container {
        grid-template-columns: 1fr;
    }

    .booking-form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 768px) {

    .services-grid,
    .destinations-grid {
        grid-template-columns: 1fr;
    }

    .service-modal-content,
    .booking-modal-content,
    .destination-modal-content {
        width: 95%;
        margin: 10% auto;
    }

    .service-modal-wrapper,
    .destination-modal-wrapper {
        padding: 20px;
    }

    .booking-modal-header,
    .booking-form-container {
        padding: 20px;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }
}

.destination-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.destination-modal-content {
    position: relative;
    background-color: #fff;
    margin: 5% auto;
    width: 90%;
    max-width: 1000px;  /* Adjust as needed */
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.destination-modal-wrapper {
    padding: 30px;
}

/* Responsive Styles for Services Page */
@media (max-width: 992px) {
    .services-container {
        grid-template-columns: 1fr;
        padding: 10px;
    }

    .sidebar {
        position: static;
        margin-bottom: 20px;
    }

    .sidebar-menu {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch; /* Smooth scrolling for iOS */
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* Internet Explorer 10+ */
    }

    .sidebar-menu::-webkit-scrollbar {
        display: none; /* WebKit */
    }

    .sidebar-menu li {
        flex-shrink: 0;
        margin-right: 10px;
    }

    .sidebar-menu li a {
        white-space: nowrap;
        padding: 10px;
        font-size: 14px;
    }

    .services-grid,
    .destinations-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 15px;
    }

    .service-card,
    .destination-card {
        width: 100%; /* Full width */
        margin-bottom: 15px;
    }

    .service-image {
        height: 200px; /* Consistent image height */
    }

    .service-info {
        padding: 15px;
    }

    .service-title {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-price {
        margin-top: 5px;
    }

    .service-actions {
        flex-direction: column;
        gap: 10px;
    }

    .service-actions .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .sidebar-menu {
        padding: 0 10px;
    }

    .sidebar-menu li a {
        font-size: 12px;
        padding: 8px;
    }

    .service-detail-container {
        flex-direction: column;
    }

    .service-detail-main,
    .service-detail-sidebar {
        width: 100%;
    }

    .service-detail-gallery img {
        height: 250px;
        object-fit: cover;
    }

    .booking-modal-content {
        width: 95%;
        margin: 10% auto;
    }

    .booking-form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}
@media (max-width: 768px) {
    .services-container {
        display: block; /* Stack elements vertically */
        padding: 10px;
    }

    .sidebar {
        position: static;
        margin-bottom: 20px;
    }

    .sidebar-menu {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 10px 0;
        gap: 10px; /* Space between category buttons */
    }

    .sidebar-menu::-webkit-scrollbar {
        display: none;
    }

    .sidebar-menu li {
        flex-shrink: 0;
    }

    .sidebar-menu li a {
        display: inline-flex;
        align-items: center;
        white-space: nowrap;
        padding: 8px 15px;
        background-color: #f0f0f0;
        border-radius: 20px;
        font-size: 14px;
    }

    .sidebar-menu li a i {
        margin-right: 5px;
        font-size: 16px;
    }

    .sidebar-menu li.active a {
        background-color: #e0e0e0;
        color: var(--primary-color);
    }

    .main-content {
        width: 100%;
    }

    .services-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 15px;
    }

    .service-card {
        width: 100%;
        margin-bottom: 15px;
    }

    .service-image {
        height: 200px;
    }

    .service-info {
        padding: 15px;
    }

    .service-actions {
        flex-direction: column;
        gap: 10px;
    }

    .service-actions .btn {
        width: 100%;
    }
}
/* 
==============================================
Booking confirmation page
==============================================
*/
.booking-confirmation {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    text-align: center;
}

.confirmation-content {
    max-width: 500px;
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.confirmation-icon {
    font-size: 80px;
    color: #929775;
    margin-bottom: 20px;
}

.booking-summary {
    background-color: #f0f0f0;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.confirmation-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Add this to your main.css or create a new search.css file */

.search-results-container {
    padding: 40px 0;
    background-color: #f5f5f5;
  }
  
  .search-results-header {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .search-results-header h2 {
    color: var(--secondary-color, #025464);
    margin-bottom: 10px;
  }
  
  .search-results-header p {
    color: var(--text-gray, #666);
  }
  
  .search-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
  }
  
  .search-results-actions {
    text-align: center;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .search-results-grid {
      grid-template-columns: 1fr;
    }
  }

  /* Add these specific selectors to your CSS file */
.popular-activities .activity-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.popular-activities .activity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.popular-activities .activity-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.popular-activities .activity-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.popular-activities .activity-card:hover .activity-img img {
    transform: scale(1.05);
}

.popular-activities .activity-price {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #E57C23;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: 500;
    z-index: 2;
}

.popular-activities .activity-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.popular-activities .activity-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.875rem;
    color: #6C757D;
}

.popular-activities .activity-info span {
    display: flex;
    align-items: center;
}

.popular-activities .activity-info i {
    margin-right: 5px;
    color: #E57C23;
}

.popular-activities .activity-content h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #025464;
    font-weight: 600;
}

.popular-activities .activity-content p {
    color: #6C757D;
    margin-bottom: 15px;
    line-height: 1.6;
}

.popular-activities .btn-outline {
    margin-top: auto;
    align-self: flex-start;
}
/* Styles for destination cards on index page */
.featured-destinations .destination-card {
    position: relative;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-destinations .destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.featured-destinations .destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-destinations .destination-card:hover img {
    transform: scale(1.1);
}

.featured-destinations .destination-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    z-index: 2;
}

.featured-destinations .destination-content h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.featured-destinations .destination-content p {
    font-size: 14px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.featured-destinations .btn-light {
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid white;
    color: white;
    transition: all 0.3s ease;
}

.featured-destinations .btn-light:hover {
    background-color: white;
    color: #025464;
}
/* Destination cards in services page */
#destinations .destination-card {
    position: relative;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#destinations .destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

#destinations .destination-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    /* Darker gradient for better text visibility */
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    z-index: 2;
}

#destinations .destination-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: white;
    /* Add text shadow for better readability */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

#destinations .destination-content p {
    font-size: 16px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.95);
    /* Add text shadow for better readability */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

/* Make the button more visible */
#destinations .destination-content .btn-light {
    background-color: rgba(255, 255, 255, 0.3);
    border: 1.5px solid white;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
}

#destinations .destination-content .btn-light:hover {
    background-color: white;
    color: #025464;
    transform: translateY(-3px);
}
/* Footer Responsive Fixes */
@media (max-width: 768px) {
    .site-footer .container {
      padding: 0 15px;
    }
    
    .footer-content {
      display: flex;
      flex-direction: column;
      gap: 30px;
    }
    
    .footer-about, 
    .footer-links, 
    .footer-contact, 
    .footer-newsletter {
      width: 100%;
      margin-bottom: 20px;
    }
    
    .footer-bottom {
      flex-direction: column;
      gap: 15px;
      text-align: center;
      padding: 15px 0;
    }
    
    .footer-bottom-links {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    
    /* Newsletter adjustment */
    .newsletter-form {
      width: 100%;
    }
    
    /* Social links adjustment */
    .social-links {
      justify-content: center;
    }
  }
  
  /* For extra small screens */
  @media (max-width: 480px) {
    .footer-content {
      text-align: center;
    }
    
    .footer-contact ul li {
      justify-content: center;
    }
    
    .footer-about .logo {
      justify-content: center;
    }
  }

  /* Transparent header at top */
.site-header {
    background-color: transparent;
    transition: background-color 0.3s ease;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
  }
  
  /* Solid header after scrolling */
  .site-header.scrolled {
    background-color: #025464; /* Your teal color */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  /* Make sure text is readable against any background */
  .site-header .nav-links a,
  .site-header .logo a {
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  }

  /* Rental Tabs Styling */


  
  /* Tab Content */
  .tab-content {
    display: none;
  }
  
  .tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
  }
  
  /* Rental Info Box */
.logo img {
    max-height: 50px; /* Adjust this value based on your preferred logo size */
    width: auto;
    display: block;
}

.site-header.sticky .logo img {
    max-height: 40px; /* Slightly smaller logo when scrolled */
    transition: max-height 0.3s ease;
}

/* For mobile devices */
@media (max-width: 768px) {
    .logo img {
        max-height: 40px; /* Smaller logo on mobile */
    }
}
  
  /* Category Icons */
  .category-item i {
    margin-right: 10px;
    color: var(--primary-color);
  }

  /*====logo===*/ 
.logo img {
    height: 80px;
    width: auto;
    margin-top: -15px;
    margin-bottom: -15px; 
    position: relative;
    z-index: 10; 
  }
  
  .logo {
    overflow: visible;
    position: relative;
  }
  
  .site-header.sticky .logo img {
    height: 70px; 
    margin-top: -10px;
    margin-bottom: -10px;
  }

/* For mobile devices */
@media (max-width: 768px) {
    .logo img {
        max-height: 40px; /* Smaller logo on mobile */
    }
}

/* Language Selector Styles */
.language-selector {
    display: flex;
    align-items: center;
    margin-right: 15px;
}

.language-selector a {
    color: var(--text-light);
    margin-right: 8px;
    font-size: 14px;
    font-weight: 500;
    padding: 5px 8px;
    border-radius: 3px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.language-selector a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.language-selector a.active {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .language-selector {
        margin-right: 10px;
    }
    
    .language-selector a {
        padding: 3px 6px;
        font-size: 12px;
    }
}
/* Logo styles for navbar */
.logo img {
    max-height: 60px; /* Adjust as needed to fit your navbar */
    width: auto;
}

/* Footer logo styles */
.footer-logo {
    max-height: 80px; /* Larger in footer */
    width: auto;
    margin-bottom: 1rem;
}

/* Styles for program details page */
.tour-detail-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.tour-detail-main {
    flex: 1 1 65%;
}

.tour-detail-sidebar {
    flex: 1 1 30%;
}

.tour-detail-gallery img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.tour-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.meta-item i {
    color: var(--primary-color);
}

.tour-detail-description {
    margin-bottom: 2rem;
}

.tour-detail-itinerary {
    margin-bottom: 2rem;
}

.itinerary-item {
    display: flex;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.itinerary-time {
    flex: 0 0 100px;
    font-weight: 500;
    color: var(--primary-color);
}

.itinerary-content h4 {
    margin-bottom: 0.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.feature-list li i {
    color: var(--primary-color);
    margin-top: 5px;
}

.sidebar-box {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.price-box {
    text-align: center;
    margin-bottom: 1.5rem;
}

.price-label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.price-value {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.price-value small {
    font-size: 1rem;
    color: #666;
}

.sidebar-text {
    margin-bottom: 1rem;
}

.sidebar-meta-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.sidebar-meta-item:last-child {
    border-bottom: none;
}

/* Checkout page styles */
.checkout-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.checkout-main {
    flex: 1 1 65%;
}

.checkout-sidebar {
    flex: 1 1 30%;
}

.checkout-header {
    margin-bottom: 2rem;
}

.checkout-section {
    background: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: inherit;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-checkbox input {
    width: auto;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.booking-summary {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}

.summary-divider {
    height: 1px;
    background: #ddd;
    margin: 1rem 0;
}

.summary-item.total {
    font-weight: 600;
    font-size: 1.1rem;
}

.checkout-info {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 1.5rem;
}

.checkout-info ul {
    list-style: none;
    padding: 0;
}

.checkout-info li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.checkout-info li i {
    color: var(--primary-color);
    margin-top: 5px;
}

/* Confirmation page styles */
.confirmation-container {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.confirmation-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.confirmation-icon {
    font-size: 3rem;
    color: #4CAF50;
}

.confirmation-icon.error {
    color: #f44336;
}

.booking-number {
    background: #f9f9f9;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 2rem;
    text-align: center;
}

.booking-number .label {
    font-weight: 500;
    margin-right: 0.5rem;
}

.booking-number .value {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.booking-info {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.info-column {
    flex: 1;
    min-width: 250px;
}

.info-column h3 {
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
}

.info-column ul {
    list-style: none;
    padding: 0;
}

.info-column li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px dashed #eee;
}

.info-column li span:first-child {
    font-weight: 500;
}

.payment-info {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.confirmation-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.what-next {
    background: #f5f5f5;
    padding: 1.5rem;
    border-radius: 8px;
}

.what-next h3 {
    margin-bottom: 1rem;
}

.what-next ol {
    margin: 0 0 1rem 1.5rem;
}

.what-next ol li {
    margin-bottom: 0.5rem;
}

.error-message {
    text-align: center;
    padding: 2rem 0;
}

/* WhatsApp floating button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 99;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    background-color: #128C7E;
    transform: translateY(-10px);
}
/* Services Page Specific Styles */

/* Service Cards */
.service-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.service-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 20px;
    z-index: 1;
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background-color: #f9f9f9;
}

.service-icon i {
    font-size: 3rem;
    color: var(--primary-color);
}

.service-icon h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: white;
    margin: 0;
    padding: 15px;
    text-align: center;
}

.service-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-title {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.service-title h3 {
    margin: 0;
    font-size: 1.3rem;
    color: #333;
    flex: 1;
}

.service-price {
    white-space: nowrap;
    color: #666;
    font-size: 0.9rem;
}

.service-price span {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.service-price small {
    font-size: 0.8rem;
    color: #999;
}

.service-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.service-meta span {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: #666;
}

.service-meta i {
    margin-right: 5px;
    color: var(--primary-color);
}

.service-info p {
    margin-bottom: 15px;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    flex: 1;
}

.service-rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.stars {
    display: flex;
    color: #FFD700;
}

.service-rating span {
    font-size: 0.85rem;
    color: #666;
}

.service-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.service-actions .btn {
    flex: 1;
}

/* Services Filter Styles */
.services-filter-section {
    background-color: #f9f9f9;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 0;
}

.services-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.filter-btn {
    background: none;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
}

.filter-btn:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.filter-btn.active {
    color: var(--primary-color);
}

.filter-btn.active:after {
    width: 80%;
}

.filter-btn:hover {
    color: var(--primary-color);
}

.filter-btn:hover:after {
    width: 80%;
}

/* Content Filter Styles */
.content-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.content-filter-btn {
    background: none;
    border: 2px solid #eee;
    border-radius: 30px;
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.content-filter-btn.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.content-filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.content-filter-btn.active:hover {
    color: white;
}

/* Content Section Styles */
.content-section {
    display: none;
}

.content-section.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.section-header p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Destinations Styles */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.destination-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 300px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destination-card:hover img {
    transform: scale(1.1);
}

.destination-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    transition: transform 0.3s ease;
}

.destination-card:hover .destination-content {
    transform: translateY(-10px);
}

.destination-content h3 {
    margin-top: 0;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.destination-content p {
    margin-bottom: 15px;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Media Queries for Responsive Design */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .services-filter {
        flex-wrap: wrap;
    }
    
    .filter-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .destination-card {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .service-title {
        flex-direction: column;
    }
    
    .service-price {
        margin-top: 5px;
    }
    
    .service-actions {
        flex-direction: column;
    }
    
    .service-actions .btn {
        width: 100%;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
    }
}

/* Replace or update this section in your CSS */
.filter-btn {
    background: none;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
}

.filter-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.filter-btn.active {
    color: var(--primary-color);
    background-color: transparent; /* Ensure no background color when active */
}

.filter-btn.active::after {
    width: 80%;
}

.filter-btn:hover {
    color: var(--primary-color);
    background-color: transparent; /* Ensure no background color on hover */
}

.filter-btn:hover::after {
    width: 80%;
}

/* Content filter buttons (the subcategory filters) */
.content-filter-btn {
    background: none;
    border: 2px solid #eee;
    border-radius: 30px;
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.content-filter-btn.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.content-filter-btn:hover:not(.active) {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background-color: transparent;
}
/* Direct logo styling */
.site-header .logo a img {
    width: 200px !important; /* Force width instead of height */
    height: auto !important;
    object-fit: contain;
    max-width: none !important;
    display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .site-header .logo a img {
        width: 150px !important;
    }
}

@media (max-width: 576px) {
    .site-header .logo a img {
        width: 120px !important;
    }
}

/* Ensure the header has enough height */
.site-header {
    padding: 15px 0;
}

.header-wrapper {
    display: flex;
    align-items: center;
}
/* Add this to your main.css file */
.destination-card.highlighted {
    box-shadow: 0 0 20px rgba(var(--primary-color-rgb), 0.6);
    transform: translateY(-10px);
    transition: all 0.5s ease;
}

.search-message {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    display: inline-block;
    margin-top: 10px;
    font-size: 0.9rem;
}

/* Contact Options Button - Isolated and Conflict-Free */
.contact-options-wrapper {
  position: fixed !important;
  bottom: 30px !important;
  left: 30px !important;
  z-index: 999 !important;
  animation: none !important;
  transform: none !important;
}

.contact-options-toggle {
  width: 60px !important;
  height: 60px !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #e67e22, #d35400) !important;
  color: white !important;
  border: none !important;
  font-size: 24px !important;
  cursor: pointer !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
  z-index: 1000 !important;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  animation: none !important;
  opacity: 1 !important;
}

.contact-options-toggle:hover {
  transform: scale(1.1) !important;
  animation: none !important;
}

.contact-options-toggle:active {
  transform: scale(0.95) !important;
  animation: none !important;
}

.contact-options-menu {
  position: absolute !important;
  bottom: 75px !important;
  left: 0 !important;
  background: white !important;
  border-radius: 12px !important;
  width: 180px !important;
  padding: 15px !important;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15) !important;
  opacity: 0 !important;
  transform: translateY(20px) scale(0.9) !important;
  pointer-events: none !important;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  animation: none !important;
}

.contact-options-wrapper:hover .contact-options-menu {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
  pointer-events: all !important;
  animation: none !important;
}

.contact-option-title {
  text-align: center !important;
  font-weight: 600 !important;
  color: #555 !important;
  margin-bottom: 12px !important;
  padding-bottom: 8px !important;
  border-bottom: 1px solid #eee !important;
  animation: none !important;
}

.contact-option {
  display: flex !important;
  align-items: center !important;
  padding: 12px 15px !important;
  border-radius: 8px !important;
  margin-bottom: 8px !important;
  color: #555 !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
  animation: none !important;
  opacity: 1 !important;
  transform: none !important;
}

.contact-option:last-child {
  margin-bottom: 0 !important;
}

.contact-option i {
  font-size: 20px !important;
  margin-right: 12px !important;
}

.contact-option span {
  font-weight: 500 !important;
}

.contact-option.whatsapp:hover {
  background-color: rgba(37, 211, 102, 0.1) !important;
  color: #25d366 !important;
}

.contact-option.phone:hover {
  background-color: rgba(52, 152, 219, 0.1) !important;
  color: #3498db !important;
}

.contact-option.email:hover {
  background-color: rgba(155, 89, 182, 0.1) !important;
  color: #9b59b6 !important;
}

.contact-option.contact-form:hover {
  background-color: rgba(230, 126, 34, 0.1) !important;
  color: #e67e22 !important;
}

/* Remove the problematic slideIn animation */
.contact-options-wrapper:hover .contact-option {
  animation: none !important;
  opacity: 1 !important;
  transform: none !important;
}

.contact-options-wrapper:hover .contact-option:nth-child(2),
.contact-options-wrapper:hover .contact-option:nth-child(3),
.contact-options-wrapper:hover .contact-option:nth-child(4),
.contact-options-wrapper:hover .contact-option:nth-child(5) {
  animation: none !important;
  animation-delay: 0s !important;
  opacity: 1 !important;
  transform: none !important;
}

/* Ensure no conflicting keyframes affect this component */
.contact-options-wrapper *,
.contact-options-wrapper *::before,
.contact-options-wrapper *::after {
  animation: none !important;
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Optional: Add a small indicator */
.contact-options-toggle::after {
  content: "";
  position: absolute;
  top: -5px;
  right: -5px;
  width: 12px;
  height: 12px;
  background-color: #2ecc71;
  border-radius: 50%;
  border: 2px solid white;
}

.contact-options-wrapper {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 999;
}

.contact-options-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e67e22, #d35400);
  color: white;
  border: none;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1000;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact-options-toggle:hover {
  transform: scale(1.1);
}

.contact-options-menu {
  position: absolute;
  bottom: 75px;
  left: 0;
  background: white;
  border-radius: 12px;
  width: 180px;
  padding: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* This is the key CSS class that needs to be toggled by JavaScript */
.contact-options-menu.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.contact-option-title {
  text-align: center;
  font-weight: 600;
  color: #555;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #eee;
}

.contact-option {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  border-radius: 8px;
  margin-bottom: 8px;
  color: #555;
  text-decoration: none;
  transition: all 0.2s ease;
}

.contact-option:last-child {
  margin-bottom: 0;
}

.contact-option i {
  font-size: 20px;
  margin-right: 12px;
}

.contact-option span {
  font-weight: 500;
}

.contact-option.whatsapp:hover {
  background-color: rgba(37, 211, 102, 0.1);
  color: #25d366;
}

.contact-option.phone:hover {
  background-color: rgba(52, 152, 219, 0.1);
  color: #3498db;
}

.contact-option.email:hover {
  background-color: rgba(155, 89, 182, 0.1);
  color: #9b59b6;
}

.contact-option.contact-form:hover {
  background-color: rgba(230, 126, 34, 0.1);
  color: #e67e22;
}

/* Animation for the options when menu is active */
.contact-options-menu.active .contact-option {
  animation: slideIn 0.3s forwards;
}

.contact-options-menu.active .contact-option:nth-child(2) {
  animation-delay: 0.05s;
}

.contact-options-menu.active .contact-option:nth-child(3) {
  animation-delay: 0.1s;
}

.contact-options-menu.active .contact-option:nth-child(4) {
  animation-delay: 0.15s;
}

.contact-options-menu.active .contact-option:nth-child(5) {
  animation-delay: 0.2s;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Optional: Add a small indicator */
.contact-options-toggle::after {
  content: "";
  position: absolute;
  top: -5px;
  right: -5px;
  width: 12px;
  height: 12px;
  background-color: #2ecc71;
  border-radius: 50%;
  border: 2px solid white;
}

/* Media queries for responsive design */
@media (max-width: 768px) {
  .contact-options-wrapper {
    bottom: 20px;
    left: 20px;
  }
}
/* Rental Tabs Styling */
.rental-tabs {
    display: flex;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 30px;
    overflow: hidden;
}

.rental-tabs .tab {
    padding: 15px 25px;
    cursor: pointer;
    font-weight: 500;
    text-align: center;
    flex: 1;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.rental-tabs .tab:hover {
    background-color: #f0f0f0;
}

.rental-tabs .tab.active {
    background-color: white;
    border-bottom-color: var(--primary-color);
    color: var(--primary-color);
}

/* Tab Content */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

/* Rental Info Box */
.rental-info-box {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 25px;
    margin-top: 40px;
    border-left: 4px solid var(--primary-color);
}

.rental-info-box h3 {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.rental-info-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.rental-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.rental-info-item i {
    font-size: 20px;
    color: var(--primary-color);
    margin-top: 3px;
}

.rental-info-item h4 {
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.rental-info-item p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.5;
}

/* Add this to your CSS */
.services-filter {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
}

.filter-btn[data-filter="rentals"] {
    order: 5 !important; /* Position it as the 5th item */
    display: inline-block !important;
    position: relative !important;
    left: auto !important;
    top: auto !important;
    margin: 0 !important;
    transform: none !important;
}
/* Contact button animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }
}

/* Floating contact button styles - update selector to match your button */
.contact-options-wrapper .contact-options-toggle {
    animation: pulse 2s infinite;
    transition: all 0.3s ease;
}

/* Hover effect to stop the animation and apply a different transform */
.contact-options-wrapper .contact-options-toggle:hover {
    animation: none;
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

/* Additional hover effect for the menu items */
.contact-options-menu .contact-option:hover {
    transform: translateX(5px);
    transition: transform 0.3s ease;
}

/* Detail Page Image Gallery Styles */
.detail-image-slider {
    width: 100%;
    margin-bottom: 30px;
}

.slider-main {
    position: relative;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slider-slide.active {
    opacity: 1;
}

.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    color: #333;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-prev {
    left: 15px;
}

.slider-next {
    right: 15px;
}

.slider-prev:hover,
.slider-next:hover {
    background-color: var(--primary-color);
    color: white;
}

.slider-thumbnails {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.thumbnail {
    width: 80px;
    height: 60px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.thumbnail.active {
    opacity: 1;
    border-color: var(--primary-color);
}

.thumbnail:hover {
    opacity: 1;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
    .slider-main {
        height: 300px;
    }
    
    .slider-prev,
    .slider-next {
        width: 35px;
        height: 35px;
    }
    
    .thumbnail {
        width: 60px;
        height: 45px;
    }
}
/* Back Navigation Styles */
.back-navigation {
  background-color: #fff;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
  margin-bottom: 20px;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--primary-color);
  color: white;
  padding: 12px 20px;
  border-radius: var(--border-radius-sm);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.back-btn:hover {
  background-color: var(--secondary-color);
  color: white;
  transform: translateX(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.back-btn:active {
  transform: translateX(-3px);
}

.back-btn.loading {
  background-color: #ccc;
  cursor: not-allowed;
  transform: none;
}

.back-btn i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.back-btn:hover i {
  transform: translateX(-3px);
}

.back-btn.loading i {
  transform: none;
}

/* Breadcrumb Styles */
.breadcrumb {
  background-color: #f8f9fa;
  padding: 15px 0;
  margin-bottom: 20px;
  border-radius: var(--border-radius-sm);
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
  content: '>';
  margin: 0 10px;
  color: #6c757d;
  font-weight: bold;
}

.breadcrumb-item a {
  color: var(--primary-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.breadcrumb-item.active {
  color: #6c757d;
  font-weight: 500;
}

.breadcrumb-item i {
  font-size: 12px;
}

/* Container adjustments for better spacing */
.back-navigation .container,
.breadcrumb .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .back-navigation {
    padding: 15px 0;
  }
  
  .back-btn {
    padding: 10px 16px;
    font-size: 14px;
  }
  
  .back-btn i {
    font-size: 14px;
  }
  
  .breadcrumb {
    padding: 12px 0;
  }
  
  .breadcrumb-list {
    font-size: 13px;
  }
  
  .breadcrumb-item:not(:last-child)::after {
    margin: 0 8px;
  }
}

@media (max-width: 480px) {
  .back-btn span {
    display: none;
  }
  
  .back-btn {
    padding: 10px;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    justify-content: center;
  }
  
  .breadcrumb-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  
  .breadcrumb-item:not(:last-child)::after {
    display: none;
  }
  
  .breadcrumb-item {
    position: relative;
    padding-left: 15px;
  }
  
  .breadcrumb-item:not(:first-child):before {
    content: '↳';
    position: absolute;
    left: 0;
    color: #6c757d;
  }
}

/* Animation for smooth transitions */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.back-navigation,
.breadcrumb {
  animation: slideInLeft 0.5s ease;
}

/* Integration with existing page styles */
.page-hero + .back-navigation {
  margin-top: -10px;
  border-top: 1px solid #eee;
}

/* Alternative compact version */
.back-navigation.compact {
  padding: 10px 0;
  background-color: transparent;
  border-bottom: none;
}

.back-navigation.compact .back-btn {
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  padding: 8px 15px;
  font-size: 14px;
}

.back-navigation.compact .back-btn:hover {
  background-color: var(--primary-color);
  color: white;
}
/* Add this CSS to your main.css or in a <style> tag in checkout.html */

.program-showcase {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.program-image-container {
    flex: 0 0 200px;
}

.program-image-container img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.program-details {
    flex: 1;
    display: flex;
    align-items: center;
}

.program-details p {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin: 0;
}

.program-details span {
    font-weight: 600;
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .program-showcase {
        flex-direction: column;
        text-align: center;
    }
    
    .program-image-container {
        flex: none;
        max-width: 100%;
    }
    
    .program-image-container img {
        height: 200px;
    }
}
/* Itinerary Map Styles */

.itinerary-map {
    text-align: center;
    margin: 20px 0;
}

.itinerary-map img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
}

/* Responsive design */
@media (max-width: 768px) {
    .itinerary-map img {
        max-width: 100%;
    }
}
.hero-slider {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.hero-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
    color: #fff;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-buttons .btn {
    margin: 0 0.5rem;
}

/* Align 'Learn More' button in transportation section */
.services-grid .service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between; /* Pushes content apart, button to bottom */
}

.services-grid .service-card .btn {
    margin-top: auto; /* Pushes the button to the bottom if using flex-direction: column */
}




/* Animations 
@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.activities-grid .activity-card,
.tours-grid .tour-card,
.services-grid .service-card {
    opacity: 0;
    animation-duration: 1s;
    animation-fill-mode: both;
}

.activities-grid .activity-card:nth-child(odd) {
    animation-name: slideInLeft;
}

.activities-grid .activity-card:nth-child(even) {
    animation-name: slideInRight;
}

.tours-grid .tour-card:nth-child(odd) {
    animation-name: slideInLeft;
}

.tours-grid .tour-card:nth-child(even) {
    animation-name: slideInRight;
}

.services-grid .service-card:nth-child(odd) {
    animation-name: slideInLeft;
}

.services-grid .service-card:nth-child(even) {
    animation-name: slideInRight;
}

*/


/* CSS-only swipe-friendly fade */
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide.active {
  opacity: 1;
}


/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Amiri:wght@400;700&family=Playfair+Display:wght@400;700&display=swap');

/* Splash Screen Container */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 1.2s ease-out;
}

.splash-screen.fade-out {
    opacity: 0;
}

/* Animated Zellij Background Pattern */
.zellij-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* 8-Point Star Pattern (Classic Zellij) */
.zellij-star {
    position: absolute;
    width: 100px;
    height: 100px;
    opacity: 0.6;
}

.zellij-star::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(2, 84, 100, 0.12) 30%, 
        rgba(2, 84, 100, 0.12) 70%, 
        transparent 70%
    );
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation: starRotate 15s linear infinite;
}

.zellij-star::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        transparent 30%, 
        rgba(2, 84, 100, 0.08) 30%, 
        rgba(2, 84, 100, 0.08) 70%, 
        transparent 70%
    );
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation: starRotate 12s linear infinite reverse;
}

/* Diamond Patterns */
.zellij-diamond {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, 
        rgba(2, 84, 100, 0.1) 25%, 
        transparent 25%, 
        transparent 75%, 
        rgba(2, 84, 100, 0.1) 75%
    );
    transform: rotate(45deg);
    opacity: 0.5;
}

/* Star Positioning with Floating Animation */
.star-1 { 
    top: 15%; 
    left: 10%; 
    animation: floatSlow 12s ease-in-out infinite;
}

.star-2 { 
    top: 20%; 
    right: 15%; 
    animation: floatSlow 14s ease-in-out infinite 2s;
}

.star-3 { 
    bottom: 25%; 
    left: 20%; 
    animation: floatSlow 16s ease-in-out infinite 4s;
}

.star-4 { 
    bottom: 15%; 
    right: 25%; 
    animation: floatSlow 13s ease-in-out infinite 1s;
}

.star-5 { 
    top: 50%; 
    left: 5%; 
    animation: floatSlow 18s ease-in-out infinite 3s;
}

.star-6 { 
    top: 40%; 
    right: 8%; 
    animation: floatSlow 15s ease-in-out infinite 5s;
}

/* Diamond Positioning */
.diamond-1 { 
    top: 30%; 
    left: 30%; 
    animation: floatDiamond 10s ease-in-out infinite;
}

.diamond-2 { 
    top: 60%; 
    right: 35%; 
    animation: floatDiamond 11s ease-in-out infinite 2s;
}

.diamond-3 { 
    bottom: 40%; 
    left: 60%; 
    animation: floatDiamond 9s ease-in-out infinite 1s;
}

.diamond-4 { 
    top: 25%; 
    left: 70%; 
    animation: floatDiamond 13s ease-in-out infinite 3s;
}

/* Radial Gradient Overlay */
.radial-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, 
        transparent 30%, 
        rgba(255, 255, 255, 0.3) 60%, 
        rgba(255, 255, 255, 0.7) 90%
    );
    pointer-events: none;
}

/* Main Content */
.splash-content {
    position: relative;
    z-index: 10;
    text-align: center;
    animation: contentFadeIn 2s ease-out 0.5s both;
}

.logo-container {
    margin-bottom: 30px;
}

.logo {
    max-width: 800px;
    width: 80vw;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(2, 84, 100, 0.2));
    animation: logoFloat 3s ease-in-out infinite;
}

#logo_Splash {
    margin-left: 50px;
}

.welcome-text {
    margin-top: 40px;
}


.english-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #025464;
    font-weight: 900;
    opacity: 0.8;
    letter-spacing: 2px;
    animation: textSlideUp 1.5s ease-out 1.3s both;
}

/* Loading Ornament */
.loading-ornament {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.ornament-dot {
    width: 8px;
    height: 8px;
    background: linear-gradient(45deg, #025464, rgba(2, 84, 100, 0.6));
    border-radius: 50%;
    animation: dotPulse 1.5s ease-in-out infinite;
}

.ornament-dot:nth-child(2) {
    animation-delay: 0.3s;
}

.ornament-dot:nth-child(3) {
    animation-delay: 0.6s;
}

/* Animations */
@keyframes floatSlow {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    50% { 
        transform: translateY(-20px) rotate(5deg); 
    }
}

@keyframes floatDiamond {
    0%, 100% { 
        transform: rotate(45deg) translateY(0px); 
    }
    50% { 
        transform: rotate(50deg) translateY(-15px); 
    }
}

@keyframes starRotate {
    0% { 
        transform: rotate(0deg); 
    }
    100% { 
        transform: rotate(360deg); 
    }
}

@keyframes logoFloat {
    0%, 100% { 
        transform: translateY(0px); 
    }
    50% { 
        transform: translateY(-10px); 
    }
}

@keyframes contentFadeIn {
    0% { 
        opacity: 0; 
        transform: translateY(30px); 
    }
    100% { 
        opacity: 1; 
        transform: translateY(0px); 
    }
}

@keyframes textSlideUp {
    0% { 
        opacity: 0; 
        transform: translateY(20px); 
    }
    100% { 
        opacity: 1; 
        transform: translateY(0px); 
    }
}

@keyframes dotPulse {
    0%, 100% { 
        transform: scale(1); 
        opacity: 0.7; 
    }
    50% { 
        transform: scale(1.2); 
        opacity: 1; 
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .zellij-star {
        width: 60px;
        height: 60px;
    }
    
    .zellij-diamond {
        width: 40px;
        height: 40px;
    }
    
    .logo {
        max-width: 150px;
    }
    
#logo_Splash {
        margin-left: 35px;
    }
    
    .english-text {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
    
    .loading-ornament {
        bottom: 40px;
    }
}

@media (max-width: 480px) {
    .arabic-text {
        font-size: 1.3rem;
    }
    
    .english-text {
        font-size: 1.3rem;
    }
    
    .logo {
        max-width: 320px;
    }
    #logo_Splash {
        margin-left: 25px;
    }
}

/* Replace the existing .logo styles with this */
.logo {
    max-width: 200px;
    width: 80vw;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(2, 84, 100, 0.2));
    animation: logoComplexEntry 3s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    transform: scale(0.3) translateZ(-200px) rotateY(180deg);
    opacity: 0;
}

/* Replace the existing logoFloat animation with this complex entry */
@keyframes logoComplexEntry {
    0% {
        transform: scale(0.3) translateZ(-200px) rotateY(180deg);
        opacity: 0;
        filter: blur(10px) drop-shadow(0 0 0 transparent);
    }
    30% {
        transform: scale(0.6) translateZ(-100px) rotateY(90deg);
        opacity: 0.3;
        filter: blur(5px) drop-shadow(0 2px 10px rgba(2, 84, 100, 0.1));
    }
    60% {
        transform: scale(1.1) translateZ(0px) rotateY(10deg);
        opacity: 0.8;
        filter: blur(2px) drop-shadow(0 4px 15px rgba(2, 84, 100, 0.15));
    }
    80% {
        transform: scale(0.95) translateZ(0px) rotateY(-5deg);
        opacity: 1;
        filter: blur(0px) drop-shadow(0 4px 20px rgba(2, 84, 100, 0.2));
    }
    100% {
        transform: scale(1) translateZ(0px) rotateY(0deg);
        opacity: 1;
        filter: blur(0px) drop-shadow(0 4px 20px rgba(2, 84, 100, 0.2));
        animation: logoFloat 3s ease-in-out infinite;
    }
}

/* Keep the floating animation for after the entry */
@keyframes logoFloat {
    0%, 100% { 
        transform: translateY(0px); 
    }
    50% { 
        transform: translateY(-10px); 
    }
}


/* Progress Bar Styles */
.progress-container {
    margin: 40px 0;
    display: flex;
    justify-content: center;
    padding: 0 20px;
}
.progress-bar {
    display: flex;
    align-items: center;
    position: relative;
    max-width: 400px;
    width: 100%;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f8f9fa;
    border: 3px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #666;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.step-label {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    text-align: center;
    transition: color 0.3s ease;
}

.progress-line {
    position: absolute;
    top: 25px;
    left: 25%;
    right: 25%;
    height: 3px;
    background: #ddd;
    z-index: 1;
    transition: background 0.3s ease;
}

/* Active State */
.progress-step.active .step-circle {
    background: #025464;
    border-color: #025464;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(2, 84, 100, 0.3);
}

.progress-step.active .step-label {
    color: #025464;
    font-weight: 700;
}

/* Completed State */
.progress-step.completed .step-circle {
    background: #28a745;
    border-color: #28a745;
    color: white;
}

.progress-step.completed .step-label {
    color: #28a745;
}

/* Progress Line Active */
.progress-line.active {
    background: linear-gradient(to right, #025464 0%, #025464 100%);
}

/* Moroccan Touch - Add decorative elements */
.progress-step.active .step-circle::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(2, 84, 100, 0.2);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .progress-container {
        margin: 20px 0;
        padding: 0 10px;
    }
    
    .step-circle {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .step-label {
        font-size: 12px;
    }
    
    .progress-line {
        top: 20px;
        left: 20%;
        right: 20%;
        height: 2px;
    }
    
    .progress-step.active .step-circle::before {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .step-circle {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .step-label {
        font-size: 11px;
    }
    
    .progress-line {
        top: 17px;
    }
}

/* Enhanced Moroccan-Style Date Picker */
.date-input-wrapper {
    position: relative;
    display: block;
    width: 100%;
    margin-bottom: 5px;
}

.enhanced-date-input {
    width: 100%;
    padding: 16px 50px 16px 20px;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    font-size: 16px;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    color: #2c3e50;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    letter-spacing: 0.5px;
}

.enhanced-date-input:hover {
    border-color: #025464;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(2, 84, 100, 0.15);
    background: linear-gradient(135deg, #ffffff 0%, #f1f8ff 100%);
}

.enhanced-date-input:focus {
    outline: none;
    border-color: #025464;
    background: linear-gradient(135deg, #ffffff 0%, #f1f8ff 100%);
    box-shadow: 0 0 0 4px rgba(2, 84, 100, 0.2), 0 8px 25px rgba(2, 84, 100, 0.15);
    transform: translateY(-2px);
}

/* Moroccan-inspired calendar icon */
.date-input-icon {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #025464;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
    z-index: 2;
}

.date-input-icon:hover {
    color: #E57C23;
    transform: translateY(-50%) scale(1.1);
}

/* Add decorative elements */
.date-input-wrapper::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #025464, #E57C23, #025464);
    border-radius: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.enhanced-date-input:focus + .date-input-icon + .date-input-wrapper::before,
.date-input-wrapper:hover::before {
    opacity: 0.1;
}

/* Custom placeholder styling */
.enhanced-date-input:invalid {
    color: #95a5a6;
}

.enhanced-date-input:invalid::before {
    content: 'Select your travel date';
    color: #95a5a6;
}

/* Hide default calendar icon in WebKit browsers */
.enhanced-date-input::-webkit-calendar-picker-indicator {
    opacity: 0;
    position: absolute;
    right: 0;
    width: 50px;
    height: 100%;
    cursor: pointer;
    z-index: 3;
}

/* Custom date input styling for different states */
.enhanced-date-input::-webkit-datetime-edit {
    padding: 0;
}

.enhanced-date-input::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
}

.enhanced-date-input::-webkit-datetime-edit-text {
    color: #7f8c8d;
    padding: 0 3px;
}

.enhanced-date-input::-webkit-datetime-edit-month-field,
.enhanced-date-input::-webkit-datetime-edit-day-field,
.enhanced-date-input::-webkit-datetime-edit-year-field {
    color: #2c3e50;
    font-weight: 600;
}

/* Moroccan pattern decoration */
.date-input-wrapper::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, #E57C23 1px, transparent 1px);
    background-size: 3px 3px;
    background-repeat: repeat;
    opacity: 0.3;
    border-radius: 2px;
    transition: opacity 0.3s ease;
}

.enhanced-date-input:focus ~ .date-input-wrapper::after,
.date-input-wrapper:hover::after {
    opacity: 0.6;
}

/* Mobile responsive enhancements */
@media (max-width: 768px) {
    .enhanced-date-input {
        padding: 18px 55px 18px 20px;
        font-size: 16px; /* Prevents zoom on iOS */
        border-radius: 10px;
    }
    
    .date-input-icon {
        right: 20px;
        font-size: 22px;
    }
    
    .enhanced-date-input::-webkit-calendar-picker-indicator {
        width: 55px;
    }
}

@media (max-width: 480px) {
    .enhanced-date-input {
        padding: 20px 60px 20px 20px;
        border-radius: 8px;
    }
    
    .date-input-icon {
        right: 22px;
        font-size: 24px;
    }
}

/* Add subtle animation when date is selected */
.enhanced-date-input:valid {
    background: linear-gradient(135deg, #f8fff8 0%, #f1f8ff 100%);
    border-color: #27ae60;
}

.enhanced-date-input:valid + .date-input-icon {
    color: #27ae60;
}

/* Loading state for better UX */
.date-input-wrapper.loading .enhanced-date-input {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    cursor: wait;
}

.date-input-wrapper.loading .date-input-icon {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: translateY(-50%) rotate(0deg); }
    to { transform: translateY(-50%) rotate(360deg); }
}

.custom-pricing-notice {
    margin-top: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px dashed #025464;
    border-radius: 12px;
    text-align: center;
}

.pricing-notice-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #025464;
    font-weight: 600;
    font-size: 16px;
}

.pricing-notice-content i {
    color: #E57C23;
    font-size: 18px;
}

.custom-pricing-notice .btn {
    margin-top: 10px;
    background: #025464;
    border-color: #025464;
}

.custom-pricing-notice .btn:hover {
    background: #E57C23;
    border-color: #E57C23;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .pricing-notice-content {
        font-size: 14px;
    }
    
    .pricing-notice-content i {
        font-size: 16px;
    }
}

/* Image Lightbox Modal Styles */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.active {
    opacity: 1;
}

.lightbox-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.lightbox-container {
    position: relative;
    max-width: 95%;
    max-height: 95%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox-modal.active .lightbox-image {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
    
    .lightbox-container {
        max-width: 98%;
        max-height: 98%;
    }
}

/* Add hover effect to clickable images */
.tour-detail-gallery img:hover {
    transform: scale(1.02) !important;
    transition: transform 0.3s ease !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
}

/* Ensure lightbox is above everything */
#lightbox-overlay {
    z-index: 99999 !important;
}