#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 100;
  }
  /* Mobile-first responsive design */
@media (max-width: 767px) {
    /* Header adjustments */
    #mainHeader {
        flex-direction: column;
        padding: 10px;
    }
    
    #mainHeader nav {
        flex-direction: column;
        margin-top: 10px;
    }
    
    #mainHeader nav a {
        padding: 8px 0;
    }
    
    /* Destination slider */
    .destinations-container {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .destinations-slider {
        flex-wrap: nowrap;
        padding-bottom: 15px; /* Space for scroll */
    }
    
    .destination-card {
        min-width: 85%;
        margin: 0 10px;
    }
    
    /* Luxury grid */
    .luxury-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Testimonials */
    .testimonials {
        flex-direction: column;
    }
    
    .testimonial {
        margin-bottom: 20px;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Form adjustments */
    .form-row {
        flex-direction: column;
    }
    
    .form-row > div {
        width: 100%;
        margin-bottom: 15px;
    }
}

/* Tablet styles */
@media (min-width: 768px) and (max-width: 1023px) {
    .destination-card {
        min-width: 45%;
    }
    
    .luxury-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

/* Touch target sizes */
button, .btn, a {
    min-height: 44px;
    min-width: 44px;
}

/* Prevent zoom on form inputs */
@media screen and (-webkit-min-device-pixel-ratio:0) {
    select,
    textarea,
    input {
        font-size: 16px;
    }
}
  #tripForm {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    z-index: 101;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
  }
  
  .overlay, .popup {
    display: none;
    position: fixed;
    z-index: 999;
  }

  .overlay {
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
  }

  .popup {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 30px;
    width: 90%;
    max-width: 700px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
  }

  h2 {
    margin-top: 0;
    color: #333;
    text-align: center;
  }

  form {
    margin-top: 10px;
  }

  .form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 5px;
  }

  .form-row > div {
    flex: 1 1 45%;
  }

  label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
  }

  input, select {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 14px;
    margin: 4px 0;
    box-sizing: border-box;
  }
  .form-row {
    display: flex;
    gap: 30px;
    margin-bottom: 15px;
    align-items: center;
    flex-wrap: wrap;
  }

  .form-group-inline {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 250px;
  }

  .form-group-inline label {
    font-weight: bold;
    white-space: nowrap;
    min-width: 80px;
  }

  input[type="date"] {
    padding: 10px;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
  }

  .form-actions {
    text-align: center;
    margin-top: 20px;
  }

  .form-actions button {
    padding: 12px 25px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    margin: 0 10px;
  }

  .form-actions button[type="submit"] {
    background-color: orange;
    color: white;
  }

  .form-actions button[type="button"] {
    background-color: #ccc;
    color: black;
  }
/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-content {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalFadeIn 0.3s ease-out;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: #333;
    transition: color 0.3s;
}

.modal-close:hover {
    color: #000;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .modal-content {
        padding: 30px 20px;
    }
}
.intro-section {
    margin-bottom: 4rem;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.feature h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.package-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.package-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.package-info {
    padding: 1.5rem;
}

.package-info h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.package-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.package-meta i {
    margin-right: 5px;
    color: var(--secondary-color);
}

.package-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
}

.price {
    font-weight: 600;
    color: var(--primary-color);
}

.cta-section {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/luxury-cta-bg.jpg') no-repeat center center/cover;
    color: #fff;
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 8px;
    margin: 4rem 0;
}

.cta-content h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
}

.cta-content p {
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
:root {
    --primary-color: #2c3e50;
    --secondary-color: #f8a51b;
    --accent-color: #e74c3c;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --text-color: #333;
    --text-light: #7f8c8d;
    --white: #fff;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --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(--text-color);
    background-color: var(--light-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.btn:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    margin-left: 1rem;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--secondary-color);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* Header Styles */
#mainHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--box-shadow);
    z-index: 1000;
    transition: var(--transition);
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    margin-right: 1rem;
}

.tagline {
    font-size: 0.9rem;
    color: #000;
  
}

nav a {
    margin-left: 2rem;
    font-weight: 600;
    color: #000;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

nav a:hover::after {
    width: 100%;
}


    /* Chatbot styles */
    .chatbot-container {
        position: fixed;
        bottom: 80px;
        right: 20px;
        width: 350px;
        background: white;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        display: none;
        flex-direction: column;
        z-index: 1000;
        overflow: hidden;
    }
    
    .chatbot-header {
        background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
        color: white;
        padding: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .chatbot-header h3 {
        margin: 0;
        font-size: 16px;
    }
    
    .close-chatbot {
        background: none;
        border: none;
        color: white;
        font-size: 20px;
        cursor: pointer;
    }
    
    .chatbot-messages {
        height: 300px;
        overflow-y: auto;
        padding: 15px;
        background: #f9f9f9;
    }
    
    .chatbot-message {
        margin-bottom: 10px;
        padding: 10px 15px;
        border-radius: 18px;
        max-width: 80%;
        font-size: 14px;
    }
    
    .bot-message {
        background: #e6e6e6;
        color: #333;
        border-bottom-left-radius: 5px;
        align-self: flex-start;
    }
    
    .user-message {
        background: #1e3c72;
        color: white;
        border-bottom-right-radius: 5px;
        align-self: flex-end;
        margin-left: auto;
    }
    
    .chatbot-input {
        display: flex;
        padding: 10px;
        border-top: 1px solid #eee;
    }
    
    .chatbot-input input {
        flex: 1;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 20px;
        outline: none;
    }
    
    .chatbot-input button {
        background: #1e3c72;
        color: white;
        border: none;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        margin-left: 10px;
        cursor: pointer;
    }
    
    .chat-btn {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
        color: white;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        box-shadow: 0 3px 10px rgba(0,0,0,0.2);
        z-index: 999;
    }
    
    .chat-btn i {
        font-size: 24px;
    }
    
    /* Form elements in chat */
    .chat-form-group {
        margin: 10px 0;
    }
    
    .chat-form-group label {
        display: block;
        margin-bottom: 5px;
        font-weight: bold;
    }
    
    .chat-form-group input, .chat-form-group select {
        width: 100%;
        padding: 8px;
        border: 1px solid #ddd;
        border-radius: 4px;
    }
    
    .chat-form-actions {
        margin-top: 15px;
        display: flex;
        justify-content: flex-end;
    }
    
    .chat-form-actions button {
        background: #1e3c72;
        color: white;
        border: none;
        padding: 8px 15px;
        border-radius: 4px;
        cursor: pointer;
    }
    /* Chatbot container - initially hidden */
.chatbot-container {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    max-height: 500px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    flex-direction: column;
}

/* Make sure it's visible when opened */
.chatbot-container[style*="flex"] {
    display: flex !important;
}

/* Chat button styling */
.chat-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #4e6bff;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* Rest of your chatbot CSS */
/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 1s ease-in-out;
    position: relative;
}

.hero-slider-controls {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    z-index: 10;
}

.hero-slider-dots {
    display: flex;
    gap: 10px;
}

.hero-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}

.hero-slider-dot.active {
    background-color: white;
}
/* Page Content Styles */
.page-content {
    padding: 6rem 2rem 4rem;
}

.page-header {
    text-align: center;
    margin-top: 7rem;
    padding: 3rem 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/page-header-bg.jpg') no-repeat center center/cover;
    color: var(--white);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Destination Grid */
.destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.destination-title {
  font-size: 3rem;
  margin-bottom: 20px;
}

.destination-description {
  font-size: 1.4rem;
  max-width: 800px;
  margin: 0 auto;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px;
  
  border-radius: 10px;
}

/* Itinerary Section */
.itinerary-section {
  padding: 60px 20px;
  background-color: #fff;
}

.itinerary-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #f8a51b;
}

.itinerary-content {
  max-width: 1000px;
  margin: 0 auto;
}

.itinerary-day {
  margin-bottom: 30px;
  padding: 20px;
  border-left: 5px solid #f8a51b;
  background-color: #f1f1f1;
  border-radius: 5px;
}

.day-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #f8a51b;
}

.day-description {
  font-size: rem;
  color: #555;
}
.destination-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.destination-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.destination-info {
    padding: 1.5rem;
}

.destination-info h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.destination-info p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.service-card {
    background: var(--white);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.team-member {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}
/* Modal Background Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.5);
    display: none;
    z-index: 1000;
}

/* Modal Box */
.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 600px;
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    z-index: 1001;
    display: none;
    overflow-y: auto;
    max-height: 90vh;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

/* Modal Title */
.modal h2 {
    margin-top: 0;
    text-align: center;
    font-size: 1.5rem;
}

/* Form Layout */
.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-row > div {
    flex: 1;
    min-width: 45%;
}

.form-group-inline {
    display: flex;
    flex-direction: column;
}

/* Inputs & Select */
input, select {
    width: 100%;
    padding: 0.5rem;
    font-size: 1rem;
}

/* Buttons */
.form-actions {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.form-actions button {
    flex: 1;
    padding: 0.75rem;
    font-size: 1rem;
    cursor: pointer;
}

/* Responsive Adjustments */
@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
    }

    .modal {
        width: 95%;
        padding: 1rem;
    }

    .form-actions {
        flex-direction: column;
    }
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-member img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.team-info {
    padding: 1.5rem;
}

.team-info h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.team-info p {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Testimonials */
.testimonials-container {
    max-width: 800px;
    margin: 3rem auto;
}

.testimonial {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    margin-bottom: 2rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 4rem;
    color: var(--secondary-color);
    opacity: 0.3;
    position: absolute;
    top: -20px;
    left: -10px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
}

.author-name {
    font-weight: 600;
    color: var(--primary-color);
}

.author-location {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 3rem auto;
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.form-group textarea {
    min-height: 150px;
}

/* Footer Styles */
footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 4rem 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--secondary-color);
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.contact-info i {
    margin-right: 10px;
    color: var(--secondary-color);
    min-width: 20px;
}

.social-links {
    display: flex;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 1rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.copyright {
    text-align: center;
    padding: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: var(--text-light);
}

.copyright a {
    color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    #mainHeader {
        flex-direction: column;
        padding: 1rem;
    }

    nav {
        margin-top: 1rem;
    }

    nav a {
        margin: 0 1rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }

    .btn-outline {
        margin-left: 0;
    }

    nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav a {
        margin: 0.5rem;
    }
}
.page-content {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.destination-header, .service-header, .about-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/hero-bg.jpg');
    background-size: cover;
    color: white;
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature {
    text-align: center;
    padding: 1.5rem;
    border-radius: 8px;
    background: #f9f9f9;
}

.feature i {
    font-size: 2.5rem;
    color: #f8a51b;
    margin-bottom: 1rem;
}
#mainHeader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 6px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: rgba(255, 255, 255, 0); /* Semi-transparent dark grey */
    backdrop-filter: blur(5px); /* Adds a nice blur effect to content behind */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Logo Container */
.logo-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}

/* Logo Image */
.logo-img {
    height: 65px; /* Increased logo size */
    width: auto;
    margin-bottom: 5px;
}

/* Tagline */
.tagline {
    font-size: 1.5rem;
    font-weight: 500;
    color: #fff;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 3px;
    
}

/* Navigation */
nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

nav a {
    color:#000;;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    padding: 5px 0;
    position: relative;
}

nav a:hover {
    color: #ff5a5f;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff5a5f;
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

/* Language Selector */
#language-selector {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 5px 10px;
    border-radius: 4px;
    margin-left: 15px;
    cursor: pointer;
}

#language-selector option {
    background: rgba(40, 40, 40, 0.9);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #mainHeader {
        flex-direction: column;
        padding: 15px;
    }
    
    .logo-container {
        margin-bottom: 15px;
        align-items: center;
    }
    
    nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    #language-selector {
        margin-left: 0;
    }
}



/* Add these new styles to your existing CSS */
  /* Add these new styles to your existing CSS */
  .slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}
/* Hero Slider Styles */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    transition: background-image 1s ease-in-out;
    /* Initial background image - will be overridden by JS */
    background-image: url('https://images.unsplash.com/photo-1501785888041-af3ef285b470?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
}

.hero-content {
    position: relative;
    z-index: 2;
    /* Your existing hero-content styles */
}

.hero-slider-controls {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 3;
}

.hero-slider-prev, 
.hero-slider-next {
    background: rgba(255,255,255,0.3);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-slider-prev:hover, 
.hero-slider-next:hover {
    background: rgba(255,255,255,0.5);
}

.hero-slider-dots {
    display: flex;
    gap: 10px;
}
.hero {
    transition: background-image 1s ease-in-out;
}
@keyframes highlight {
    0% { background-color: transparent; }
    50% { background-color: rgba(255, 215, 0, 0.2); }
    100% { background-color: transparent; }
}
.hero-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-slider-dot.active {
    background: white;
    transform: scale(1.2);
}
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    font-size: 24px;
    color: #333;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: #d4af37;
    color: white;
}

.slider-arrow.left {
    left: 20px;
}

.slider-arrow.right {
    right: 20px;
}

@media (max-width: 768px) {
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}
/* Destination Slider Styles */
.destinations-container {
    position: relative;
    margin: 50px auto;
    max-width: 1200px;
}

.destinations-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 30px;
    padding: 20px 0;
    scrollbar-width: none; /* Firefox */
}

.destinations-slider::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.destination-card {
    min-width: 350px;
    height: 500px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.5s ease;
    scroll-snap-align: start;
    flex-shrink: 0;
}

.slider-nav {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s ease;
}

.slider-dot.active {
    background: #d4af37;
}

/* Enhanced Modal Styles */
.modal-content {
    background: white;
    margin-top: 0px;
    padding: 40px;
    border-radius: 10px;
    max-width: 800px;
    width: 90%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalFadeIn 0.3s ease;
}

.modal-itinerary {
    margin: 30px 0;
}

.itinerary-day {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.day-title {
    font-family: 'Playfair Display', serif;
    color: #d4af37;
    margin-bottom: 10px;
    font-size: 20px;
}

.day-activities {
    padding-left: 20px;
}

.day-activity {
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
}

.day-activity:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #d4af37;
    font-size: 20px;
    line-height: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .destination-card {
        min-width: 280px;
        height: 450px;
    }
    
    .modal-content {
        padding: 30px 20px;
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', Arial, sans-serif;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

body {
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('https://images.unsplash.com/photo-1506929562872-bb421503ef21?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 10%;
    color: white;
    position: relative;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    z-index: 100;
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(0, 0, 0, 0.9);
    padding: 15px 10%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: white;
    font-family: 'Playfair Display', serif;
}

.logo span {
    color: #000;
}

nav {
    display: flex;
    align-items: center;
}

nav a {
    color: #000;;
    text-decoration: none;
    margin-left: 30px;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

nav a:hover {
    color: #000;
    font-weight: "bold";
}

nav a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #d4af37;
    bottom: -5px;
    left: 0;
    transition: width 0.3s;
}

nav a:hover:after {
    width: 100%;
}

.hero-content {
    max-width: 600px;
    animation: fadeIn 1.5s ease;
}

.hero h1 {
    font-size: 60px;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 80%;
}

.btn {
    background-color: #d4af37;
    color: #111;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn:hover {
    background-color: #c9a227;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
    margin-left: 15px;
}

.btn-outline:hover {
    background: white;
    color: #111;
}

#language-selector {
    background: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 8px 15px;
    border-radius: 20px;
    margin-left: 30px;
    cursor: pointer;
}

#language-selector option {
    color: #333;
}

/* Featured Destinations */
.featured-section {
    padding: 100px 10%;
    text-align: center;
    background: white;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 20px;
    color: #222;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: #d4af37;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    color: #777;
    margin-bottom: 50px;
    font-size: 18px;
}

.destinations {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.destination-card {
    width: 350px;
    height: 500px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.5s ease;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.destination-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destination-card:hover .destination-img {
    transform: scale(1.1);
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 30px;
    color: white;
    text-align: left;
}

.destination-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 10px;
}

.destination-excerpt {
    margin-bottom: 20px;
    font-size: 15px;
    opacity: 0.9;
}

/* Luxury Experience Section */
.luxury-section {
    padding: 100px 10%;
    background: #f5f5f5;
    text-align: center;
}

.luxury-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.luxury-item {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.luxury-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.luxury-icon {
    font-size: 40px;
    color: #d4af37;
    margin-bottom: 20px;
}

.luxury-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 15px;
    color: #222;
}

/* Testimonials */
.testimonial-section {
    padding: 100px 10%;
    background: white;
    text-align: center;
}

.testimonials {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    padding: 30px 0;
    scroll-snap-type: x mandatory;
}

.testimonial {
    min-width: 350px;
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    scroll-snap-align: start;
    text-align: left;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.author-name {
    font-weight: bold;
}

.author-location {
    font-size: 14px;
    color: #777;
}

/* Booking Section */
.booking-section {
    padding: 100px 10%;
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

#flightSearchForm {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 50px auto 0;
    background: rgba(255,255,255,0.9);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.form-group {
    text-align: left;
}

label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

input, select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

/* Footer */
footer {
    background: #111;
    color: white;
    padding: 70px 10% 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-bottom: 20px;
    color: #d4af37;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #d4af37;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    color: white;
    background: #333;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #d4af37;
    transform: translateY(-3px);
}

.copyright {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
    color: #777;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 40px;
    }
    
    nav a {
        margin-left: 15px;
        font-size: 14px;
    }
    
    .destinations {
        flex-direction: column;
        align-items: center;
    }
    
    .luxury-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}
  .destination-hero-content {
            position: relative;
            z-index: 1;
            color: white;
            width: 100%;
        }
/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: 10px;
    max-width: 600px;
    width: 90%;
    position: relative;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #777;
}

/* Chat Button */
.chat-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #d4af37;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s ease;
}

.chat-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}