/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #faf7f2;
    color: #3a2c1e;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: #2c5e1a;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #e9b44b;
}

.logo span {
    color: #ffffff;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #e9b44b;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(44, 94, 26, 0.7), rgba(44, 94, 26, 0.7)), url('https://images.unsplash.com/photo-1516026672322-bc52d61a55d5?ixlib=rb-4.0.3&auto=format&fit=crop&w=1500&q=80');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #e9b44b;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    background-color: #e9b44b;
    color: #2c5e1a;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn:hover {
    background-color: #d4a13f;
    transform: translateY(-3px);
}

/* Destinations Section */
.destinations {
    padding: 100px 0;
    background-color: #ffffff;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    color: #2c5e1a;
    font-size: 36px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #e9b44b;
}

.destination-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.destination-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    border: 1px solid #e9e0d5;
}

.destination-card:hover {
    transform: translateY(-10px);
}

.destination-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.destination-content {
    padding: 20px;
}

.destination-content h3 {
    margin-bottom: 10px;
    color: #2c5e1a;
}

.destination-content p {
    color: #6a5d4b;
    margin-bottom: 15px;
}

.price {
    font-weight: 700;
    color: #e9b44b;
    font-size: 20px;
}

/* Experiences Section */
.experiences {
    padding: 100px 0;
    background-color: #f5f1ea;
}

.experience-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.experience-text {
    flex: 1;
    min-width: 300px;
    padding-right: 30px;
}

.experience-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.highlight {
    text-align: center;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.highlight i {
    font-size: 30px;
    color: #e9b44b;
    margin-bottom: 15px;
}

.highlight h4 {
    margin-bottom: 10px;
    color: #2c5e1a;
}

.experience-image {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.experience-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: #ffffff;
}

.about-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.about-text {
    flex: 2;
    min-width: 300px;
    padding-right: 30px;
}

.about-stats {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stat {
    text-align: center;
    margin-bottom: 30px;
}

.stat-number {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: #e9b44b;
}

.stat-label {
    font-size: 16px;
    color: #6a5d4b;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: #f5f1ea;
}

.contact-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h3 {
    margin-bottom: 20px;
    color: #2c5e1a;
}

.contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 10px;
    color: #e9b44b;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    outline: none;
}

.contact-form button {
    width: 100%;
}

/* Footer */
footer {
    background-color: #2c5e1a;
    color: #e9e0d5;
    padding: 50px 0 20px;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: #e9b44b;
}

.footer-section form {
    display: flex;
    margin-top: 15px;
}

.footer-section input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 5px 0 0 5px;
    outline: none;
}

.footer-section button {
    border-radius: 0 5px 5px 0;
    padding: 10px 15px;
}

.social-icons a {
    color: #e9e0d5;
    font-size: 20px;
    margin-right: 15px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #e9b44b;
}

.copyright {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Chatbot Widget */
.chatbot-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.chatbot-button {
    width: 60px;
    height: 60px;
    background-color: #e9b44b;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.chatbot-button:hover {
    background-color: #d4a13f;
    transform: scale(1.05);
}

.chatbot-button i {
    color: #2c5e1a;
    font-size: 24px;
}

.chatbot-container {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 350px;
    height: 450px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: none;
    flex-direction: column;
    border: 2px solid #e9b44b;
}

.chatbot-header {
    background-color: #2c5e1a;
    color: #fff;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chatbot-header h3 {
    display: flex;
    align-items: center;
}

.chatbot-header h3 i {
    margin-right: 10px;
    color: #e9b44b;
}

.close-chatbot {
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: color 0.3s;
}

.close-chatbot:hover {
    color: #e9b44b;
}

.chatbot-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    background-color: #faf7f2;
}

.message {
    max-width: 80%;
    padding: 10px 15px;
    margin-bottom: 15px;
    border-radius: 18px;
    line-height: 1.4;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.bot-message {
    background-color: #e9f0e7;
    color: #2c5e1a;
    align-self: flex-start;
    border-bottom-left-radius: 5px;
}

.user-message {
    background-color: #e9b44b;
    color: #2c5e1a;
    align-self: flex-end;
    border-bottom-right-radius: 5px;
}

.chatbot-input {
    display: flex;
    padding: 15px;
    border-top: 1px solid #eee;
    background-color: #fff;
}

.chatbot-input input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 30px;
    outline: none;
}

.send-button {
    background-color: #e9b44b;
    color: #2c5e1a;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-left: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.send-button:hover {
    background-color: #d4a13f;
}

/* Quick Replies */
.quick-replies {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
}

.quick-reply {
    background-color: #e9b44b;
    color: #2c5e1a;
    padding: 8px 15px;
    border-radius: 18px;
    font-size: 12px;
    margin-right: 8px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.quick-reply:hover {
    background-color: #2c5e1a;
    color: #e9b44b;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .experience-content, .about-content, .contact-content {
        flex-direction: column;
    }
    
    .experience-text, .experience-image, .about-text, .about-stats, .contact-info, .contact-form {
        width: 100%;
        margin-bottom: 30px;
        padding-right: 0;
    }
    
    .chatbot-container {
        width: 300px;
        height: 400px;
        right: -20px;
    }
    
    .footer-section form {
        flex-direction: column;
    }
    
    .footer-section input {
        border-radius: 5px;
        margin-bottom: 10px;
    }
    
    .footer-section button {
        border-radius: 5px;
    }
}