/* General Styles */
:root {
    --primary-color: #1a73e8;
    --secondary-color: #4285f4;
    --accent-purple: #531cb3;
    --accent-orange: #f58a07;
    --accent-taupe: #483229;
    --light-color: #ffffff;
    --dark-color: #333333;
    --gray-color: #f5f5f5;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    margin-top: 130px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    font-size: 2.5rem;
    color: var(--accent-purple);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-orange);
}

.section-title.light {
    color: var(--light-color);
}

.section-title.light::after {
    background-color: var(--light-color);
}

.blue-bg {
    background-color: var(--accent-purple);
    color: var(--light-color);
}

.btn {
    display: inline-block;
    background-color: var(--accent-orange);
    color: var(--light-color);
    padding: 12px 24px;
    border-radius: 4px;
    transition: var(--transition);
    font-weight: bold;
    border: none;
    cursor: pointer;
}

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

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
    background-color: var(--accent-orange);
    color: var(--light-color);
    border-radius: 4px;
    transition: var(--transition);
    display: inline-block;
    border: none;
    cursor: pointer;
}

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

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 5px 0;
    transition: var(--transition);
}

header.scrolled {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.98);
}

/* Logo styling with image */
nav .logo {
    display: flex;
    align-items: center;
}

nav .logo img {
    height: 110px;
    margin-right:0px;
}

nav .logo h1 {
    color: var(--accent-purple);
    font-size: 1.5rem;
    margin-bottom: 1px;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-right: 20px;
}

.nav-links {
    display: flex;
    
}

.nav-links li {
    margin-left: 25px;
}

.nav-links a {
    color: var(--dark-color);
    font-weight: 500;
    padding: 5px 0;
    position: relative;
    transition: var(--transition);
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-orange);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger .line {
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    margin: 5px;
    transition: var(--transition);
}

/* Carousel Text Animations */
.animate-text {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.carousel-slide.active .animate-text {
    opacity: 1;
    transform: translateY(0);
}

.carousel-slide.active .animate-text:nth-child(1) {
    transition-delay: 0.3s;
}

.carousel-slide.active .animate-text:nth-child(2) {
    transition-delay: 0.6s;
}

.carousel-slide.active .animate-text:nth-child(3) {
    transition-delay: 0.9s;
}
/* Home Section with Carousel */
#home {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.carousel {
    height: 100%;
    width: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 1;
}

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

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

.carousel-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--light-color);
    z-index: 3;
    width: 80%;
    max-width: 800px;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 8px;
}

.carousel-content h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.carousel-content p {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.3);
    color: var(--light-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.carousel-btn:hover {
    background-color: rgba(245, 138, 7, 0.6);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--accent-orange);
}

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--accent-orange);
}

.about-text p {
    margin-bottom: 20px;
}

.stats {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
}

.stat-item h4 {
    font-size: 2.5rem;
    color: var(--accent-purple);
    margin-bottom: 5px;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

/* Chatbot Styles */
.chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.chatbot-button {
    width: 60px;
    height: 60px;
    background-color: var(--accent-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.chatbot-button i {
    color: var(--light-color);
    font-size: 24px;
}

.chatbot-button:hover {
    background-color: var(--accent-orange);
    transform: translateY(-3px);
}

.chatbot-box {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 350px;
    height: 450px;
    background-color: var(--light-color);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.chatbot-box.active {
    display: flex;
}

.chatbot-header {
    background-color: var(--accent-purple);
    color: var(--light-color);
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header h3 {
    margin: 0;
}

.close-chat {
    background: none;
    border: none;
    color: var(--light-color);
    cursor: pointer;
    font-size: 20px;
}

.chatbot-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
}

.message {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.bot-message {
    align-items: flex-start;
}

.user-message {
    align-items: flex-end;
}

.message-content {
    padding: 10px 15px;
    border-radius: 20px;
    max-width: 80%;
}

.bot-message .message-content {
    background-color: #f0f0f0;
}

.user-message .message-content {
    background-color: var(--accent-orange);
    color: var(--light-color);
}

.chatbot-input {
    display: flex;
    padding: 10px;
    border-top: 1px solid #ddd;
}

.chatbot-input input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 20px;
    margin-right: 10px;
}

.chatbot-input button {
    background-color: var(--accent-purple);
    color: var(--light-color);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: var(--transition);
}

.chatbot-input button:hover {
    background-color: var(--accent-orange);
}

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

.service-card h3 {
    margin-bottom: 15px;
    color: var(--accent-orange);
}

/* Destinations Section */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.destination-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.destination-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.destination-info {
    padding: 20px;
    background-color: var(--light-color);
}

.destination-info h3 {
    margin-bottom: 10px;
    color: var(--accent-purple);
}

.destination-info p {
    margin-bottom: 15px;
    color: var(--accent-taupe);
}

/* Testimonials Section */
.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial {
    display: none;
}

.testimonial.active {
    display: block;
}

.testimonial-content {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
    position: relative;
    margin-bottom: 35px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-content::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50px;
    width: 30px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-left: 30px;
}

.testimonial-author img {
    border-radius: 50%;
    margin-right: 15px;
}

.testimonial-author h4 {
    margin-bottom: 5px;
    color: var(--accent-orange);
}

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

.t-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

.t-dot.active {
    background-color: var(--accent-orange);
}

/* Contact Section */
.contact-container {
    display: flex;
    gap: 50px;
}

.contact-info, .contact-form {
    flex: 1;
}

.contact-info h3, .contact-form h3 {
    color: var(--accent-purple);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.contact-details {
    margin: 30px 0;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background-color: var(--accent-orange);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.social-links {
    margin-top: 30px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border-radius: 50%;
    margin-right: 10px;
    transition: var(--transition);
}

.social-links a:nth-child(2) {
    background-color: var(--accent-purple);
}

.social-links a:nth-child(3) {
    background-color: var(--accent-orange);
}

.social-links a:nth-child(4) {
    background-color: var(--accent-taupe);
}

.social-links a:hover {
    transform: translateY(-3px);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    background-color: var(--accent-taupe);
    color: #fff;
    padding: 60px 0 20px;
}

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

.footer-about h3,
.footer-links h3,
.footer-destinations h3,
.footer-newsletter h3 {
    margin-bottom: 20px;
    color: var(--accent-orange);
}

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

.footer-links a,
.footer-destinations a {
    color: #aaa;
    transition: var(--transition);
}

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

.footer-newsletter form {
    display: flex;
    margin-top: 15px;
}

.footer-newsletter input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 4px 0 0 4px;
}

.footer-newsletter .btn-small {
    border-radius: 0 4px 4px 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    .contact-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        background-color: var(--light-color);
        height: 100vh;
        width: 100%;
        top: 70px;
        left: -100%;
        flex-direction: column;
        padding-top: 50px;
        text-align: center;
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .hamburger {
        display: block;
    }
    
    .hamburger.active .line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .line:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .carousel-content h2 {
        font-size: 2rem;
    }
    
    .carousel-content p {
        font-size: 1rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stats {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .destinations-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-newsletter form {
        flex-direction: column;
    }
    
    .footer-newsletter input {
        margin-bottom: 10px;
        border-radius: 4px;
    }
    
    .footer-newsletter .btn-small {
        border-radius: 4px;
    }
}

.enhanced-design{
    /* Enhanced Header Styles */
header {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

nav .logo h1 {
    font-weight: 700;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* Highlight "Book Now" in navigation */
.nav-links li a[href="book.html"] {
    background-color: var(--accent-orange);
    color: white !important;
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-links li a[href="book.html"]:hover {
    background-color: var(--accent-purple);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.nav-links li a[href="book.html"]::after {
    display: none;
}

/* Enhanced Carousel */
.carousel-slide img {
    filter: brightness(0.85);
}

.carousel-content {
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(3px);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 15px 25px rgba(0,0,0,0.2);
}

.carousel-content h2 {
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Enhanced Section Headers */
.section-title {
    font-weight: 800;
    letter-spacing: 1px;
}

.section-title::after {
    height: 4px;
    width: 100px;
    border-radius: 2px;
}

/* Card Enhancements */
.service-card {
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: none;
}

.service-card:hover {
    background-color: rgba(255,255,255,0.2);
}

.destination-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.destination-card img {
    transition: transform 0.5s ease;
}

.destination-card:hover img {
    transform: scale(1.05);
}

.destination-info {
    position: relative;
    z-index: 2;
}

/* Button Enhancements */
.btn, .btn-small {
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(245, 138, 7, 0.3);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.btn:hover, .btn-small:hover {
    box-shadow: 0 8px 20px rgba(245, 138, 7, 0.4);
}

/* Form Enhancements */
.form-group input,
.form-group select,
.form-group textarea {
    border: 2px solid #eee;
    padding: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-purple);
    box-shadow: 0 4px 15px rgba(83, 28, 179, 0.1);
    outline: none;
}

/* Animation for cards and sections */
.service-card, .destination-card, .testimonial-content {
    animation: fadeInUp 0.8s ease forwards;
}

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

/* Footer Enhancements */
footer {
    background: linear-gradient(to bottom, #483229, #362318);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f5f5f5;
}

::-webkit-scrollbar-thumb {
    background: var(--accent-orange);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-purple);
}
}