:root {
            --primary-color: #4682B4;
            --secondary-color: #FFD700;
            --accent-color: #e74c3c;
            --text-color: #333;
            --light-text: #fff;
            --light-bg: #f8f9fa;
            --border-color: #ddd;
            --box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
            --border-radius: 8px;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin: 0;
            padding: 0;
            color: var(--text-color);
            line-height: 1.6;
        }

        /* Header Styles */
        header {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 40px;
            margin-right: 10px;
        }

        .logo h1 {
            font-size: 24px;
            font-weight: 700;
            margin: 0;
            color: var(--primary-color);
        }

        nav ul {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        nav ul li {
            margin-left: 30px;
        }

        nav ul li a {
            text-decoration: none;
            color: var(--text-color);
            font-weight: 500;
            transition: var(--transition);
            position: relative;
            padding-bottom: 5px;
        }

        nav ul li a.active, nav ul li a:hover {
            color: var(--primary-color);
        }

        nav ul li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--primary-color);
            transition: var(--transition);
        }

        nav ul li a.active:after, nav ul li a:hover:after {
            width: 100%;
        }

        /* Hero Section */
        .hero {
            background-image: url('path/to/your-image.jpg');
            background-size: cover;
            background-position: center;
            /* You might want to add these properties as well */
            background-repeat: no-repeat;
            min-height: 500px; /* Adjust based on your needs */
            position: relative;
        }
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/api/placeholder/1920/1080') no-repeat center center/cover;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--light-text);
            margin-top: 70px;
        }

        .hero-content {
            max-width: 800px;
            padding: 0 20px;
        }

        .hero-content h2 {
            font-size: 48px;
            margin-bottom: 20px;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .hero-content p {
            font-size: 20px;
            margin-bottom: 30px;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
        }

        .primary-button, .secondary-button {
            padding: 15px 40px;
            border-radius: 50px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            outline: none;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .primary-button {
            background-color: var(--primary-color);
            color: var(--light-text);
        }

        .secondary-button {
            background-color: transparent;
            color: var(--light-text);
            border: 2px solid var(--light-text);
        }

        .primary-button:hover {
            background-color: #3a6d96;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }

        .secondary-button:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.7);
            z-index: 1100;
            padding: 20px;
            overflow-y: auto;
        }

        .modal-content {
            background-color: #070404;
            margin: 70px auto;
            padding: 30px;
            border-radius: var(--border-radius);
            max-width: 500px;
            position: relative;
            box-shadow: var(--box-shadow);
            animation: modalFadeIn 0.3s ease;
        }

        @keyframes modalFadeIn {
            from {opacity: 0; transform: translateY(-30px);}
            to {opacity: 1; transform: translateY(0);}
        }

        .close-modal {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 28px;
            cursor: pointer;
            color: #aaa;
            transition: var(--transition);
        }

        .close-modal:hover {
            color: var(--text-color);
        }

        .modal-content h2 {
            text-align: center;
            margin-bottom: 30px;
            color: var(--primary-color);
            font-size: 28px;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .form-group input {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid var(--border-color);
            border-radius: var(--border-radius);
            font-size: 16px;
            transition: var(--transition);
        }

        .form-group input:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(70, 130, 180, 0.2);
            outline: none;
        }

        .form-options {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
            font-size: 14px;
        }

        .form-options a {
            color: var(--primary-color);
            text-decoration: none;
        }

        .submit-button {
            width: 100%;
            padding: 14px;
            background-color: var(--primary-color);
            color: white;
            border: none;
            border-radius: var(--border-radius);
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }

        .submit-button:hover {
            background-color: #3a6d96;
        }

        .social-login {
            margin-top: 30px;
            text-align: center;
        }

        .social-login p {
            margin-bottom: 15px;
            position: relative;
        }

        .social-login p:before, .social-login p:after {
            content: "";
            position: absolute;
            top: 50%;
            width: 40%;
            height: 1px;
            background-color: var(--border-color);
        }

        .social-login p:before {
            left: 0;
        }

        .social-login p:after {
            right: 0;
        }

        .social-icons {
            display: flex;
            justify-content: center;
            gap: 15px;
        }

        .social-btn {
            padding: 10px 20px;
            border-radius: 4px;
            border: none;
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            cursor: pointer;
            transition: var(--transition);
            width: 45%;
        }

        .google-btn {
            background-color: #fff;
            color: #757575;
            border: 1px solid #ddd;
        }

        .facebook-btn {
            background-color: #3b5998;
            color: white;
        }

        .google-btn:hover, .facebook-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        }

        /* About Section */
        .about-section {
            padding: 80px 0;
            background-color: var(--light-bg);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-title {
            text-align: center;
            font-size: 36px;
            margin-bottom: 50px;
            position: relative;
            color: var(--primary-color);
        }

        .section-title:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background-color: var(--secondary-color);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .about-image {
            flex: 1;
            min-width: 300px;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
        }

        .about-image img {
            width: 100%;
            height: auto;
            transition: transform 0.5s ease;
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        .about-text {
            flex: 1;
            min-width: 300px;
        }

        .about-text p {
            margin-bottom: 20px;
            font-size: 16px;
            line-height: 1.8;
        }

        /* Features Section */
        .features-section {
            padding: 80px 0;
            background-color: #fff;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .feature-card {
            background-color: var(--light-bg);
            padding: 30px;
            border-radius: var(--border-radius);
            text-align: center;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }

        .feature-icon {
            background-color: var(--primary-color);
            color: white;
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 28px;
        }

        .feature-card h3 {
            margin-bottom: 15px;
            font-size: 20px;
            color: var(--primary-color);
        }

        .feature-card p {
            color: #666;
            font-size: 15px;
        }

        /* Footer */
        footer {
            background-color: #333;
            color: #fff;
            padding: 60px 0 30px;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 30px;
        }

        .footer-section h3 {
            font-size: 20px;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-section h3:after {
            content: '';
            position: absolute;
            width: 50px;
            height: 2px;
            background-color: var(--secondary-color);
            bottom: 0;
            left: 0;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--secondary-color);
            padding-left: 5px;
        }

        .footer-section p {
            margin-bottom: 15px;
            color: #ccc;
        }

        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            margin-right: 10px;
            transition: var(--transition);
            color: #fff;
            text-decoration: none;
        }

        .social-icon:hover {
            background-color: var(--primary-color);
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 14px;
            color: #999;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .header-container {
                padding: 15px 4%;
            }
            
            nav ul li {
                margin-left: 15px;
            }
            
            .hero-content h2 {
                font-size: 36px;
            }
            
            .hero-content p {
                font-size: 18px;
            }
            
            .cta-buttons {
                flex-direction: column;
                gap: 15px;
            }
            
            .primary-button, .secondary-button {
                padding: 12px 30px;
                font-size: 16px;
                width: 100%;
                max-width: 250px;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .modal-content {
                padding: 20px;
                margin: 50px auto;
            }
        }

        @media (max-width: 480px) {
            .header-container {
                flex-direction: column;
                padding: 10px 4%;
            }
            
            nav ul {
                margin-top: 15px;
            }
            
            nav ul li {
                margin-left: 10px;
                margin-right: 10px;
            }
            
            .hero-content h2 {
                font-size: 28px;
            }
            
            .hero-content p {
                font-size: 16px;
            }
            
            .section-title {
                font-size: 28px;
            }
            
            .feature-card {
                padding: 20px;
            }
        }













:root {
    --primary-blue: #1a73e8;
    --secondary-blue: #4285f4;
    --primary-green: #34a853;
    --light-green: #5cbb5c;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #4a4a4a;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--light-gray);
    color: var(--dark-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background-color: rgba(255, 255, 255, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.logo h1 {
    font-size: 24px;
    color: var(--primary-blue);
    font-weight: 600;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
    position: relative;
}

nav ul li a {
    font-weight: 500;
    padding: 10px 0;
    position: relative;
    transition: var(--transition);
}

nav ul li a:hover {
    color: var(--primary-blue);
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-blue);
    bottom: 0;
    left: 0;
    transition: var(--transition);
}

nav ul li a:hover::after {
    width: 100%;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--dark-gray);
}

/* Hero Section */
.hero {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('/api/placeholder/1200/800') center/cover no-repeat;
    color: var(--white);
    text-align: center;
    margin-top: 70px;
    position: relative;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.search-bar {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.search-bar input {
    flex: 1;
    padding: 15px 25px;
    border: none;
    outline: none;
    font-size: 16px;
}

.search-bar button {
    background-color: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 15px 25px;
    cursor: pointer;
    transition: var(--transition);
}

.search-bar button:hover {
    background-color: var(--secondary-blue);
}

/* Category Filter */
.category-filter {
    background-color: var(--white);
    padding: 30px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-button {
    padding: 10px 25px;
    background-color: var(--light-gray);
    border: 2px solid transparent;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.filter-button:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.filter-button.active {
    background-color: var(--primary-blue);
    color: var(--white);
}

/* Destination Grid */
.destinations {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    font-size: 2rem;
    color: var(--dark-gray);
}

.section-title::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 3px;
    background-color: var(--primary-green);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.destination-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.destination-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.destination-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.destination-category {
    display: inline-block;
    background-color: var(--light-green);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.destination-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--dark-gray);
}

.destination-desc {
    color: #666;
    margin-bottom: 15px;
    flex-grow: 1;
}

.destination-link {
    display: inline-block;
    color: var(--primary-blue);
    font-weight: 500;
    margin-top: auto;
    transition: var(--transition);
}

.destination-link:hover {
    color: var(--secondary-blue);
    text-decoration: underline;
}

/* Transportation Section */
.transportation {
    background-color: var(--white);
    padding: 60px 0;
}

.transport-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.transport-card {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
}

.transport-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.transport-icon {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.transport-card h3 {
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.transport-info {
    margin-top: 15px;
    font-size: 0.9rem;
}

.transport-info p {
    margin-bottom: 5px;
}

/* Map Section */
.map-section {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.map-container {
    height: 500px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background-color: #333;
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-green);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ddd;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-green);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--primary-blue);
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #aaa;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .mobile-nav-toggle {
        display: block;
    }
    
    nav ul {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background-color: var(--white);
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        padding: 20px 0;
    }
    
    nav ul.active {
        left: 0;
    }
    
    nav ul li {
        margin: 0;
        width: 100%;
        text-align: center;
    }
    
    nav ul li a {
        display: block;
        padding: 15px;
    }
    
    .search-bar {
        flex-direction: column;
        border-radius: 10px;
    }
    
    .search-bar input, .search-bar button {
        width: 100%;
        border-radius: 0;
    }
}


:root {
    --primary: #2e7d32;
    --secondary: #f57c00;
    --accent: #1976d2;
    --light: #f5f5f5;
    --dark: #333333;
    --border-radius: 18px;
    --transition: all 0.3s ease;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--light);
    color: var(--dark);
  }
  
  /* Dark mode support */
  .dark-mode {
    --light: #222;
    --dark: #f5f5f5;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }
  
  /* Chat container styles */
  .chat-container {
    display: none;
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 350px;
    height: 500px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    background-color: var(--light);
    overflow: hidden;
    z-index: 999;
    transition: var(--transition);
    flex-direction: column;
  }
  
  /* Chat header */
  .chat-header {
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: var(--primary);
    color: white;
  }
  
  .chat-header img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
  }
  
  .chat-title {
    font-weight: 600;
  }
  
  .chat-controls {
    margin-left: auto;
    display: flex;
  }
  
  .chat-controls button {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 5px;
    font-size: 16px;
  }
  
  /* Chat messages area */
  .chat-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
  }
  
  .message {
    margin-bottom: 12px;
    max-width: 80%;
    word-wrap: break-word;
  }
  
  .bot-message {
    background-color: #e0f7fa;
    color: #000;
    border-radius: var(--border-radius) var(--border-radius) var(--border-radius) 0;
    padding: 10px 15px;
    float: left;
    clear: both;
  }
  
  .user-message {
    background-color: var(--primary);
    color: white;
    border-radius: var(--border-radius) var(--border-radius) 0 var(--border-radius);
    padding: 10px 15px;
    float: right;
    clear: both;
  }
  
  /* Quick reply buttons */
  .quick-replies {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
    clear: both;
  }
  
  .quick-reply-btn {
    background-color: var(--accent);
    color: white;
    border: none;
    border-radius: 15px;
    padding: 8px 12px;
    margin: 5px;
    cursor: pointer;
    font-size: 12px;
    transition: var(--transition);
  }
  
  .quick-reply-btn:hover {
    background-color: #1565c0;
    transform: translateY(-2px);
  }
  
  /* Chat input area */
  .chat-input {
    display: flex;
    padding: 15px;
    border-top: 1px solid #e0e0e0;
  }
  
  .chat-input input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    outline: none;
  }
  
  .chat-input button {
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin-left: 10px;
    cursor: pointer;
    transition: var(--transition);
  }
  
  .chat-input button:hover {
    background-color: #1b5e20;
  }
  
  /* Chat toggle button */
  .chat-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
    z-index: 1000;
  }
  
  .chat-toggle:hover {
    transform: scale(1.1);
  }
  
  /* Animation for typing effect */
  .typing-indicator {
    display: inline-block;
    padding: 10px 15px;
    background-color: #e0f7fa;
    border-radius: var(--border-radius) var(--border-radius) var(--border-radius) 0;
  }
  
  .typing-indicator span {
    height: 10px;
    width: 10px;
    float: left;
    margin: 0 1px;
    background-color: #9E9E9E;
    display: block;
    border-radius: 50%;
    opacity: 0.4;
  }
  
  .typing-indicator span:nth-of-type(1) {
    animation: typing 1s infinite;
  }
  
  .typing-indicator span:nth-of-type(2) {
    animation: typing 1s 0.33s infinite;
  }
  
  .typing-indicator span:nth-of-type(3) {
    animation: typing 1s 0.66s infinite;
  }
  
  @keyframes typing {
    0% { transform: translateY(0px); }
    28% { transform: translateY(-5px); }
    44% { transform: translateY(0px); }
  }
  
  /* Language selector */
  .language-selector {
    position: absolute;
    top: 15px;
    right: 50px;
    z-index: 1001;
  }
  
  .language-selector select {
    padding: 5px;
    border-radius: 4px;
    border: 1px solid #ddd;
    outline: none;
    background-color: white;
  }
  
  /* Responsive adjustments */
  @media (max-width: 480px) {
    .chat-container {
      width: 90%;
      height: 70vh;
      right: 5%;
      bottom: 80px;
    }
  }


  /* Nashik Tourist Review Widget Styles */
  .nashik-review-widget {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    font-family: 'Segoe UI', Arial, sans-serif;
  }
  
  .review-widget-trigger {
    background: #ff6b01;
    color: white;
    border-radius: 50px;
    padding: 8px 15px;
    display: flex;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
  }
  
  .review-widget-trigger:hover {
    background: #e65c00;
    transform: translateY(-2px);
  }
  
  .trigger-icon {
    font-size: 18px;
    margin-right: 6px;
  }
  
  .review-widget-panel {
    position: absolute;
    top: 50px;
    right: 0;
    width: 320px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
    display: none;
    overflow: hidden;
    transition: all 0.3s ease;
    max-height: 80vh;
    overflow-y: auto;
  }
  
  .panel-header {
    background: #ff6b01;
    color: white;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .panel-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
  }
  
  .close-button {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
  }
  
  .panel-tabs {
    display: flex;
    border-bottom: 1px solid #eee;
  }
  
  .panel-tab {
    flex: 1;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
  }
  
  .panel-tab.active {
    background: #fff9f5;
    font-weight: 600;
    color: #ff6b01;
    box-shadow: inset 0 -2px 0 #ff6b01;
  }
  
  .panel-content {
    padding: 15px;
    display: none;
  }
  
  .panel-content.active {
    display: block;
  }
  
  .location-filter select,
  #reviewLocation {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 12px;
    font-size: 14px;
  }
  
  .reviews-container {
    max-height: 300px;
    overflow-y: auto;
  }
  
  .review-card {
    background: #fff9f5;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 8px;
    border-left: 3px solid #ff6b01;
  }
  
  .review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
  }
  
  .review-location {
    font-weight: 600;
    color: #ff6b01;
    font-size: 13px;
  }
  
  .review-stars {
    color: #ffb40d;
    font-size: 14px;
  }
  
  .review-title {
    font-weight: 600;
    margin: 4px 0;
    font-size: 14px;
  }
  
  .review-text {
    font-size: 13px;
    color: #555;
    margin-bottom: 6px;
  }
  
  .review-meta {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #888;
  }
  
  .empty-reviews-message {
    text-align: center;
    padding: 15px;
    color: #888;
  }
  
  .write-review-btn,
  .submit-review-btn {
    background: #ff6b01;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 6px 12px;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.3s ease;
  }
  
  .write-review-btn:hover,
  .submit-review-btn:hover {
    background: #e65c00;
  }
  
  #reviewForm {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .form-group {
    margin-bottom: 4px;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 4px;
    font-size: 13px;
  }
  
  .form-group input[type="text"],
  .form-group textarea,
  .form-group input[type="date"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 13px;
  }
  
  .form-group textarea {
    min-height: 70px;
    resize: vertical;
  }
  
  .star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
  }
  
  .star-rating input {
    display: none;
  }
  
  .star-rating label {
    cursor: pointer;
    color: #ddd;
    font-size: 22px;
    margin: 0 2px;
    transition: all 0.2s;
  }
  
  .star-rating input:checked ~ label,
  .star-rating label:hover,
  .star-rating label:hover ~ label {
    color: #ffb40d;
  }
  
  .submit-review-btn {
    margin-top: 8px;
    align-self: flex-end;
  }
  
  /* Mobile adjustments */
  @media (max-width: 480px) {
    .nashik-review-widget {
      right: 10px;
      top: 10px;
    }
    
    .review-widget-panel {
      width: calc(100vw - 60px);
      right: 0;
      max-height: 10vh;
    }
    
    .review-widget-trigger {
      padding: 6px 12px;
    }
    
    .trigger-icon {
      font-size: 16px;
    }
    
    .panel-tab {
      padding: 8px;
      font-size: 13px;
    }
  }
  .map-container {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.map-info {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 30px;
}