:root {
    --gold: #D4AF37;
    --gold-hover: #B8860B;
    --burnt-orange: #CC5500;
    --dark-green: #2F4F4F;
    --light-cream: #FFF8DC;
    --dark-brown: #3C2A21;
    --light-brown: #8B7355;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

body {
    background-color: #FFFCF5;
    color: #333;
    line-height: 1.6;
}

/* Header Styles */
header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

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

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

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

.logo img {
    height: 4rem;
    margin-right: 1rem;
}

.logo h1 {
    font-size: 24px;
    color: var(--dark-brown);
    font-weight: 700;
}

.menu {
    display: flex;
}

.menu li {
    list-style: none;
    margin-left: 25px;
    position: relative;
}

.menu li a {
    text-decoration: none;
    color: var(--dark-brown);
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
}

.menu li a:hover {
    color: var(--burnt-orange);
}

.book-now-btn {
    background-color: var(--gold);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.book-now-btn:hover {
    background-color: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Hide button on mobile devices */
@media (max-width: 768px) {
    .book-now-btn {
        display: none;
    }
}

.mobile-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--dark-brown);
}

.destinations {
    padding: 60px 0;
    background: #f9f9f9;
}

.destinations .section-heading {
    text-align: center;
    margin-bottom: 40px;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.destination-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.destination-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.destination-card p {
    font-size: 0.95rem;
    color: #555;
}


/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)), url('../Images/R.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.search-bar {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 8px;
    display: flex;
    margin-top: 30px;
    flex-wrap: wrap;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.search-item {
    flex: 1;
    min-width: 150px;
    padding: 0 10px;
    margin-bottom: 10px;
}

.search-item label {
    display: block;
    margin-bottom: 5px;
    color: var(--dark-brown);
    font-weight: 600;
    font-size: 14px;
    text-align: left;
}

.search-item input, .search-item select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.search-btn {
    background-color: var(--gold);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.search-btn:hover {
    background-color: var(--gold-hover);
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: white;
}

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

.section-heading h2 {
    font-size: 2.5rem;
    color: var(--dark-brown);
    margin-bottom: 15px;
}

.section-heading p {
    color: var(--light-brown);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    padding: 30px 20px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 3rem;
    color: var(--burnt-orange);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-brown);
}

.service-card p {
    color: var(--light-brown);
    margin-bottom: 20px;
}

/* Featured Experiences */
.experiences {
    padding: 80px 0;
    background-color: #F9F5EB;
}

.experiences-slider {
    margin-top: 30px;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 20px;
    padding: 20px 0;
}

.experiences-slider::-webkit-scrollbar {
    height: 8px;
}

.experiences-slider::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.experiences-slider::-webkit-scrollbar-thumb {
    background: var(--light-brown);
    border-radius: 10px;
}

.experience-card {
    scroll-snap-align: start;
    min-width: 300px;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex: 0 0 auto;
    width: calc(33.333% - 20px);
    transition: all 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.experience-img {
    height: 200px;
    background-position: center;
    background-size: cover;
}

.experience-content {
    padding: 20px;
}

.experience-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark-brown);
}

.experience-content p {
    color: var(--light-brown);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.experience-price {
    font-weight: 700;
    color: var(--burnt-orange);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.book-exp-btn {
    display: inline-block;
    background-color: var(--gold);
    color: white;
    padding: 8px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.book-exp-btn:hover {
    background-color: var(--gold-hover);
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background-color: white;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature {
    text-align: center;
    padding: 30px 20px;
    background-color: #FFFCF5;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: scale(1.05);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-brown);
}

.feature p {
    color: var(--light-brown);
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: #F9F5EB;
}

.testimonials-slider {
    margin-top: 30px;
    position: relative;
}

.testimonial {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 20px auto;
    max-width: 800px;
    text-align: center;
    display: none;
}

.testimonial.active {
    display: block;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--dark-brown);
    font-size: 1.1rem;
    line-height: 1.8;
}

.client-info {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.client-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.client-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-details h4 {
    color: var(--dark-brown);
    margin-bottom: 5px;
}

.client-details p {
    color: var(--light-brown);
    font-size: 0.9rem;
}

.rating {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.dot {
    height: 12px;
    width: 12px;
    background-color: #ddd;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--burnt-orange);
    transform: scale(1.2);
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/api/placeholder/1200/600') center/cover no-repeat;
    text-align: center;
    color: white;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    background-color: var(--gold);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-btn:hover {
    background-color: var(--gold-hover);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Footer */
footer {
    background-color: #2C2C2C;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--gold);
}

.footer-column p {
    margin-bottom: 20px;
    color: #ccc;
    line-height: 1.8;
}

.footer-column ul {
    list-style: none;
}

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

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--burnt-orange);
    padding-left: 5px;
}

.contact-info {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-icon {
    color: var(--gold);
    margin-right: 10px;
    font-size: 18px;
}

.social-icons {
    display: flex;
    margin-top: 20px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #444;
    color: white;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--burnt-orange);
    transform: translateY(-3px);
}

.newsletter {
    display: flex;
    margin-top: 20px;
}

.newsletter input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    outline: none;
    border-radius: 4px 0 0 4px;
}

.newsletter button {
    background-color: var(--gold);
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter button:hover {
    background-color: var(--gold-hover);
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
    color: #ccc;
    font-size: 0.9rem;
}

/* Live Chat Button */
.live-chat {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--gold);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: all 0.3s ease;
}

.live-chat:hover {
    background-color: var(--gold-hover);
    transform: scale(1.1);
}

.live-chat i {
    font-size: 24px;
}

/* Language Selector */
.lang-selector {
    position: relative;
    margin-left: 20px;
}

.lang-selector select {
    appearance: none;
    background: transparent;
    border: 1px solid #ddd;
    padding: 5px 25px 5px 10px;
    border-radius: 4px;
    color: var(--dark-brown);
    cursor: pointer;
}

.lang-selector::after {
    content: '\f0d7';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        display: none;
        z-index: 999;
    }

    .menu.active {
        display: flex;
    }

    .menu li {
        margin: 15px 0;
        text-align: center;
    }

    .mobile-toggle {
        display: block;
    }

    .header-content {
        justify-content: space-between;
    }

    .hero h2 {
        font-size: 2.5rem;
    }

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

    .search-bar {
        flex-direction: column;
    }

    .search-item {
        width: 100%;
        margin-bottom: 15px;
    }

    .experience-card {
        width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .logo h1 {
        font-size: 20px;
    }

    .experience-card {
        width: 100%;
    }

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

    .hero h2 {
        font-size: 2rem;
    }

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