/* Base Styles & Variables */
:root {
    --primary-dark: #2c3e50;
    --primary-medium: #34495e;
    --primary-light: #4a6583;
    --accent-orange: #ff6600;
    --accent-light: #f5f5dc;
    --text-dark: #333;
    --text-light: #fff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --green-color: #4cc04e;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #f9f9f9;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    color: var(--primary-dark);
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--accent-orange);
    color: var(--text-light);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn:hover {
    background-color: #e65c00;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--accent-orange);
    color: var(--accent-orange);
}

.btn-outline:hover {
    background-color: var(--accent-orange);
    color: var(--text-light);
}

section {
    padding: 5rem 0;
}

.section-title {
    margin-bottom: 3rem;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-orange);
}

/* Header & Navigation */
header {
    background-color: rgba(44, 62, 80, 0.95);
    color: var(--text-light);
    position: fixed;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow);
    top: 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-img {
    height: 45px;
    width: auto;
    background: white;
    border-radius: 5px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-orange);
}

.logo-text span {
    color: var(--text-light);
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-menu li {
    margin-left: 1.5rem;
    position: relative;
}

.nav-menu a {
    transition: var(--transition);
    font-weight: 500;
    display: flex;
    align-items: center;
}

.nav-menu a:hover {
    color: var(--accent-orange);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--primary-dark);
    min-width: 200px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1001;
    border-radius: 0 0 4px 4px;
    overflow: hidden;
    transform-origin: top center;
}

.dropdown-menu {
    overflow-y: auto;
    max-height: 400px;
}

.dropdown-menu.reset-scroll {
    scrollTop = 0;
}

.dropdown-menu li {
    margin: 0;
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.8rem;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1002;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 8px;
}

/* Language Selector */
.language-selector {
    display: flex;
    align-items: center;
    margin-left: 1.5rem;
    position: relative;
}

.language-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--text-light);
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.language-btn:hover {
    background: rgba(255,255,255,0.1);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--primary-dark);
    min-width: 120px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1001;
    border-radius: 4px;
    overflow: hidden;
}

.language-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-dropdown a {
    display: block;
    padding: 10px 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}

.language-dropdown a:hover {
    background-color: rgba(255,255,255,0.1);
}

/* Hero Section */
.hero {
    height: 100vh;
    color: var(--text-light);
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Slide indicators */
.slide-indicators {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.indicator-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--accent-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 11;
}

.slide-dots {
    display: flex;
    gap: 10px;
    margin: 0 15px;
}

.slide-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.slide-dot.active {
    background-color: var(--text-light);
    transform: scale(1.2);
}

.indicator-circle .icon {
    color: var(--text-light);
    font-size: 1.2rem;
}

/* About Section */
.about {
    background-color: var(--accent-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    color: var(--accent-orange);
    font-size: 1.5rem;
    margin-top: 0.2rem;
    width: 24px;
    text-align: center;
}

/* Destinations Section */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.destination-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.destination-img {
    height: 250px;
    overflow: hidden;
}

.destination-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.destination-card:hover .destination-img img {
    transform: scale(1.1);
}

.destination-info {
    padding: 1.5rem;
}

.destination-info h3 {
    margin-bottom: 0.5rem;
}

.destination-info p {
    color: #666;
    margin-bottom: 1rem;
}

/* Page Content Styles */
.page-hero {
    height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('../img/maasai culturee.jpg') no-repeat center center/cover;
    color: var(--text-light);
    display: flex;
    align-items: center;
    text-align: center;
    margin-top: 70px;
}

.page-content {
    padding: 5rem 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.content-text h2 {
    margin-bottom: 1.5rem;
}

.content-highlights {
    margin-top: 2rem;
}

.content-highlights h3 {
    margin-bottom: 1rem;
    color: var(--accent-orange);
}

.content-highlights ul {
    list-style-type: none;
    margin-left: 1rem;
}

.content-highlights li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.content-highlights li:before {
    content: "▶";
    color: #2ecc71;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Experiences Section */
.experiences {
    background-color: var(--primary-dark);
    color: var(--text-light);
}

.experiences .section-title h2 {
    color: var(--text-light);
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.experience-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.experience-card:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.experience-icon {
    font-size: 2.5rem;
    color: var(--accent-orange);
    margin-bottom: 1.5rem;
    display: block;
}

/* Testimonials Section */
.testimonials-container {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.testimonial-content {
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-weight: bold;
}

.author-info h4 {
    margin-bottom: 0.2rem;
}

.author-info p {
    color: #666;
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    background-color: var(--accent-light);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    color: var(--accent-orange);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    width: 20px;
    text-align: center;
}

.contact-form {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-medium);
    box-shadow: 0 0 0 2px rgba(52, 73, 94, 0.2);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    background-color: var(--primary-dark);
    color: var(--text-light);
    padding: 3rem 0 1.5rem;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h3 {
    color: var(--accent-orange);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--accent-orange);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--accent-orange);
    color: var(--text-dark);
}

.copyright {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #aaa;
}

/* Payment Strip */
.payment-strip {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    margin-top: 2rem;
    border-radius: 4px;
}

.payment-methods {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.payment-method {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-weight: bold;
    font-size: 1.2rem;
    height: 40px;
    transition: var(--transition);
}

.payment-method img {
    height: 30px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: var(--transition);
}

.payment-method:hover img {
    transform: scale(1.1);
}

/* Page-specific styles */
.page {
    display: none;
}

.page.active {
    display: block;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: var(--shadow);
    z-index: 999;
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    background-color: #128C7E;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 102, 0, 0.5);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 999;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
}

/* Icons */
.icon {
    display: inline-block;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
}

/* SVG Icons */
.icon-svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Mobile menu social icons */
.mobile-social {
    display: none;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 1rem;
}

.mobile-social .social-links {
    justify-content: center;
}

/* Mobile menu logo */
.mobile-menu-logo {
    display: none;
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 1rem;
}

.mobile-menu-logo .logo-img {
    height: 35px;
}

/* Scroll Animation */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-animate.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Consistent Image Sizes */
.about-image img,
.content-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

/* Clickable Contact Info */
.clickable-contact {
    cursor: pointer;
    transition: var(--transition);
}

.clickable-contact:hover {
    color: var(--accent-orange);
}

/* Itinerary Styles */
.itinerary-pads-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.itinerary-pad {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.itinerary-pad:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.itinerary-img {
    height: 200px;
    overflow: hidden;
}

.itinerary-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.itinerary-pad:hover .itinerary-img img {
    transform: scale(1.1);
}

.itinerary-info {
    padding: 1rem;
}

.itinerary-info h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.itinerary-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.itinerary-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

.itinerary-price span {
    font-size: 0.8rem;
    color: #666;
    font-weight: normal;
}

.itinerary-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.itinerary-actions .btn {
    flex: 1;
    min-width: 120px;
    text-align: center;
    padding: 12px 20px;
    font-size: 0.95rem;
    width: 100%;
}

/* NEW: Collapsible Day Sections */
.itinerary-day {
    margin-bottom: 1rem;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.day-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-bottom: 0;
    border: 1px solid #e9ecef;
}

.day-header:hover {
    background-color: #e9ecef;
}

.day-header.active {
    background-color: #e3f2fd;
    border-color: #bbdefb;
}

.day-title {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.day-title::before {
    content: '📅';
    font-size: 0.9rem;
}

.day-toggle {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    font-size: 1.5rem;
    color: var(--accent-orange);
    font-weight: bold;
    background-color: rgba(255, 102, 0, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.day-toggle::before {
    content: '+';
    transition: transform 0.3s ease;
}

.day-header.active .day-toggle::before {
    content: '-';
}

.day-header.active .day-toggle {
    background-color: rgba(255, 102, 0, 0.2);
    transform: rotate(0deg);
}

.day-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
    padding: 0 1rem;
}

.day-content.active {
    max-height: 2000px;
    opacity: 1;
    padding: 1rem;
    background-color: white;
    border-radius: 0 0 6px 6px;
    border: 1px solid #e9ecef;
    border-top: none;
}

.day-activities {
    list-style-type: none;
    margin: 1rem 0 0 0;
    padding: 0;
}

.day-activities li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.8rem;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
}

.day-activities li:before {
    content: "✓";
    color: var(--accent-orange);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 2px;
}

.day-images {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
    margin: 1rem 0;
    padding-top: 1rem;
    border-top: 1px dashed #eee;
}

.day-image {
    width: 100%;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.day-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.day-image:hover img {
    transform: scale(1.1);
}

/* Modal Styles - UPDATED FOR RESPONSIVENESS AND SMALLER SIZE ON DESKTOP */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    z-index: 2000;
    overflow-y: auto;
    padding: 5px;
    box-sizing: border-box;
}

.modal-content {
    background-color: white;
    border-radius: 8px;
    width: calc(100% - 6px);
    height: calc(100vh - 6px);
    max-width: none;
    max-height: none;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* NEW: Reduced size for desktop and tablet */
@media (min-width: 769px) {
    .modal-overlay {
        padding: 20px;
    }
   
    .modal-content {
        width: 90%;
        max-width: 1000px;
        height: 85vh;
        margin: 20px auto;
    }
}

/* Tablet specific - slightly smaller */
@media (min-width: 769px) and (max-width: 1024px) {
    .modal-content {
        width: 95%;
        max-width: 900px;
        height: 90vh;
    }
}

/* NEW: Mobile-specific modal adjustments */
@media (max-width: 768px) {
    .modal-overlay {
        padding: 0;
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.9);
        z-index: 2000;
        overflow: hidden;
    }
   
    .modal-content {
        width: 100%;
        height: 100vh;
        max-width: none;
        max-height: none;
        border-radius: 0;
        margin: 0;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        box-shadow: none;
    }
   
    @supports (height: 100dvh) {
        .modal-content {
            height: 100dvh;
        }
    }
   
    @supports (padding-top: env(safe-area-inset-top)) {
        .modal-content {
            padding-top: env(safe-area-inset-top);
            padding-bottom: env(safe-area-inset-bottom);
            padding-left: env(safe-area-inset-left);
            padding-right: env(safe-area-inset-right);
        }
    }
}

.modal-header {
    position: sticky;
    top: 0;
    background-color: white;
    z-index: 10;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #eee;
    flex-shrink: 0;
}

.modal-header h2 {
    color: #2c3e50;
    margin: 0;
    font-size: 1.2rem;
}

.modal-subtitle {
    color: #666;
    margin: 5px 0 0 0;
    font-size: 0.9rem;
}

.modal-nav {
    display: flex;
    overflow-x: auto;
    flex-shrink: 0;
    gap: 10px;
    justify-content: center;
    background-color: honeydew;
}

.nav-btn {
    flex: none;
    min-width: 80px;
    background: none;
    border: none;
    padding: 12px 0;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
}

.nav-btn.active {
    color: var(--accent-orange);
    border-bottom: 2px solid var(--accent-orange);
}

.modal-body {
    padding: 1.5rem;
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2.5rem;
    cursor: pointer;
    color: #2c3e50;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.8);
    z-index: 11;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-icon {
    color: var(--accent-orange);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.included-excluded {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .included-excluded {
        grid-template-columns: 1fr 1fr;
    }
}

.included-list, .excluded-list {
    list-style-type: none;
}

.included-list li, .excluded-list li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.included-list li:before {
    content: "✓";
    color: #4CAF50;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.excluded-list li:before {
    content: "✕";
    color: #e74c3c;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
}

.gallery-grid img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 4px;
}

/* NEW: Lazy loading styles */
.lazy {
    opacity: 0;
    transition: opacity 0.3s;
}

.lazy-loaded {
    opacity: 1;
}

/* ENHANCED: Lazy loading for all elements */
.lazy-element {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.lazy-element.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* FORM STYLES ADDITIONS */
.form-success {
    background-color: #d4edda;
    color: #155724;
    padding: 12px 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    border: 1px solid #c3e6cb;
    display: none;
}

.form-error {
    background-color: #f8d7da;
    color: #721c24;
    padding: 12px 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    border: 1px solid #f5c6cb;
    display: none;
}

.form-loading {
    position: relative;
    opacity: 0.7;
    pointer-events: none;
}

.form-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    margin: -15px 0 0 -15px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--accent-orange);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.input-error {
    border-color: #e74c3c !important;
    box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.2) !important;
}

.error-message {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

.required-field::after {
    content: " *";
    color: #e74c3c;
}

.form-control:valid:not(:placeholder-shown) {
    border-color: #4CAF50;
}

.form-control:invalid:not(:placeholder-shown) {
    border-color: #e74c3c;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        width: 95%;
    }

    .nav-menu li {
        margin-left: 1.2rem;
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .about-content, .content-grid {
        grid-template-columns: 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .nav-menu li {
        margin-left: 1rem;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .about-image img,
    .content-image img {
        height: 350px;
        width: 350px;
    }

    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .destination-card {
        margin-bottom: 0;
    }
}

@media (max-width: 900px) {
    .header-container {
        padding: 0.8rem 0;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        flex-direction: column;
        background-color: var(--primary-dark);
        width: 80%;
        height: 100vh;
        transition: 0.5s;
        padding: 2rem;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1001;
        overflow-y: auto;
        touch-action: pan-y;
        padding-top: 80px;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        margin: 1.5rem 0;
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: transparent;
        padding-left: 1rem;
        margin-top: 1rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .dropdown.active .dropdown-menu {
        max-height: 500px;
        overflow: visible;
    }

    .hamburger {
        display: flex;
        width: 45px;
        height: 45px;
        font-size: 2rem;
    }

    .language-selector {
        margin-left: 0;
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
    }

    .language-dropdown {
        right: auto;
        left: 50%;
        transform: translateX(-50%) translateY(10px);
    }

    .language-dropdown.active {
        transform: translateX(-50%) translateY(0);
    }

    .hero {
        height: 80vh;
        margin-top: 70px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 250px;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 15px;
        right: 10px;
    }

    .back-to-top {
        width: 35px;
        height: 35px;
        bottom: 75px;
        right: 10px;
    }

    .page-hero {
        height: 50vh;
        margin-top: 70px;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .experiences-grid {
        grid-template-columns: 1fr;
    }

    .mobile-social {
        display: block;
    }

    .mobile-menu-logo {
        display: block;
    }

    .indicator-circle {
        width: 50px;
        height: 50px;
    }

    .payment-methods {
        gap: 1.5rem;
    }

    .about-image img,
    .content-image img {
        height: 300px;
        width: 300px;
    }

    .itinerary-actions {
        flex-direction: row;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0.8rem 0;
    }

    .payment-methods {
        gap: 1rem;
    }

    .payment-method img {
        height: 25px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
 
    .destination-img img,
    .about-image img,
    .content-image img,
    .itinerary-img img,
    .day-image img,
    .gallery-grid img {
        margin-left: auto;
        margin-right: auto;
    }
 
    .modal-overlay {
        padding: 5px;
    }
 
    .modal-content {
        width: calc(100% - 6px);
        height: calc(100vh - 6px);
        border-radius: 6px;
    }
 
    .modal-header {
        padding: 0.8rem 1rem;
    }
 
    .modal-header h2 {
        font-size: 1.1rem;
    }
 
    .modal-subtitle {
        font-size: 0.8rem;
    }
 
    .modal-body {
        padding: 1rem;
    }
 
    .nav-btn {
        min-width: 70px;
        padding: 10px 0;
        font-size: 0.8rem;
    }
 
    .close-modal {
        top: 10px;
        right: 10px;
        width: 25px;
        height: 25px;
        font-size: 2rem;
    }
   
    .modal-overlay {
        padding: 0;
    }
   
    .modal-content {
        width: 100%;
        height: 100vh;
        border-radius: 0;
        margin: 0;
    }
   
    .day-images {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    }
   
    .day-image {
        height: 70px;
    }
}

@media (max-width: 576px) {
    section {
        padding: 3rem 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .destination-card, .experience-card {
        margin-bottom: 1.5rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .page-hero {
        height: 40vh;
        margin-top: 70px;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .content-highlights ul {
        margin-left: 0;
    }

    .indicator-circle {
        width: 45px;
        height: 45px;
    }

    .payment-methods {
        gap: 0.8rem;
    }

    .payment-method img {
        height: 22px;
    }

    .about-image img,
    .content-image img {
        height: 250px;
    }

    .modal-header {
        padding: 0.7rem 0.8rem;
    }
 
    .modal-header h2 {
        font-size: 1rem;
    }
 
    .modal-subtitle {
        font-size: 0.75rem;
    }
 
    .modal-body {
        padding: 0.8rem;
    }
 
    .nav-btn {
        min-width: 60px;
        padding: 8px 0;
        font-size: 0.75rem;
    }
 
    .close-modal {
        top: 8px;
        right: 8px;
        width: 22px;
        height: 22px;
        font-size: 2rem;
    }
   
    .day-images {
        grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
        gap: 8px;
    }
   
    .day-image {
        height: 60px;
    }
   
    .day-header {
        padding: 0.8rem;
    }
   
    .day-title {
        font-size: 1rem;
    }
}

@media (max-width: 400px) {
    .logo-text {
        font-size: 1.3rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .page-hero h1 {
        font-size: 1.8rem;
    }

    .payment-methods {
        gap: 0.5rem;
    }

    .payment-method img {
        height: 20px;
    }

    .about-image img,
    .content-image img {
        height: 200px;
    }
 
    .nav-btn {
        min-width: 55px;
        font-size: 0.7rem;
    }

    .hamburger {
        width: 40px;
        height: 40px;
        font-size: 1.8rem;
    }
   
    .day-images {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   HOME PAGE POPULAR DESTINATIONS PADS
   Professional Design with Colorful Tags
============================================ */

.home-popular-section {
    padding: 6rem 0;
    position: relative;
}

.home-popular-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.home-popular-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

.home-popular-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.home-popular-title h2 {
    color: var(--primary-dark);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.home-popular-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #ff6600;
    border-radius: 2px;
}

.home-popular-title p {
    color: var(--primary-medium);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.9;
}

.home-pads-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.home-destination-pad {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 350px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: white;
}

.home-pad-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.home-pad-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.95);
}

.home-destination-pad:hover .home-pad-image img {
    transform: scale(1.15) rotate(1deg);
    filter: brightness(1.05);
}

/* Professional Overlay */
.home-pad-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0) 100%);
    padding: 2.5rem 2rem 2rem;
    color: white;
    transition: all 0.4s ease;
}

/* Professional Icon */
.home-pad-icon {
    margin-bottom: 1rem;
    opacity: 0.9;
}

/* Professional Text Styling */
.home-pad-text h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
}

.home-pad-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    font-weight: 400;
}

/* Professional Details */
.home-pad-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.85rem;
}

.home-pad-duration {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.home-pad-duration svg {
    width: 16px;
    height: 16px;
    fill: var(--accent-orange);
}

/* ============================================
   RESPONSIVE DESIGN FOR HOME PADS
============================================ */

@media (max-width: 1200px) {
    .home-pads-wrapper {
        gap: 1.8rem;
    }
  
    .home-destination-pad {
        height: 320px;
    }
}

@media (max-width: 992px) {
    .home-pads-wrapper {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
  
    .home-destination-pad {
        height: 300px;
    }
  
    .home-pad-text h3 {
        font-size: 1.6rem;
    }
  
    .home-pad-overlay {
        padding: 2rem 1.5rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .home-popular-section {
        padding: 4rem 0;
    }
  
    .home-popular-title h2 {
        font-size: 2.2rem;
    }
  
    .home-pads-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
  
    .home-destination-pad {
        height: 280px;
    }
  
    .home-pad-overlay {
        padding: 1.8rem 1.2rem 1.2rem;
    }
  
    .home-pad-text h3 {
        font-size: 1.5rem;
    }
  
    .home-pad-text p {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .home-popular-section {
        padding: 3rem 0;
    }
  
    .home-popular-title h2 {
        font-size: 2rem;
    }
  
    .home-popular-title p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
  
    .home-pads-wrapper {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        max-width: 450px;
        margin: 0 auto;
    }
  
    .home-destination-pad {
        height: 300px;
    }
  
    .home-pad-text h3 {
        font-size: 1.7rem;
    }
}

@media (max-width: 400px) {
    .home-destination-pad {
        height: 280px;
    }
  
    .home-pad-text h3 {
        font-size: 1.5rem;
    }
  
    .home-pad-overlay {
        padding: 1.5rem 1rem 1rem;
    }
  
    .home-pad-details {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

.home-destination-pad:hover::after {
    opacity: 1;
}

/* Smooth Loading Animation */
.home-destination-pad {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.home-destination-pad:nth-child(2) { animation-delay: 0.1s; }
.home-destination-pad:nth-child(3) { animation-delay: 0.2s; }
.home-destination-pad:nth-child(4) { animation-delay: 0.3s; }
.home-destination-pad:nth-child(5) { animation-delay: 0.4s; }
.home-destination-pad:nth-child(6) { animation-delay: 0.5s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



















/* Form Notifications */
.form-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    min-width: 300px;
    max-width: 400px;
    padding: 15px;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    animation: slideIn 0.3s ease-out;
}

.form-notification-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-notification-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.notification-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.notification-message {
    flex: 1;
    margin-right: 10px;
}

.notification-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: inherit;
    line-height: 1;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}










