/* Reset and Base Styles - Updated for better responsiveness */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary: #0d4d2d;
    --secondary: #e6b325;
    --accent: #d35400;
    --light: #f9f9f9;
    --dark: #1a1a1a;
    --text: #444;
    --safari-green: #1e6b3a;
    --trekking-blue: #2c5aa0;
    --daytrip-orange: #e67e22;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #f5f5f5;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Responsive Typography */
html {
    font-size: 16px;
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 13px;
    }
}

/* Header & Navigation */
header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: clamp(1.2rem, 4vw, 1.5rem);
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
}

.logo-text span {
    color: var(--secondary);
}

/* Main Navigation */
.main-nav {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
}

.nav-list > li {
    position: relative;
    margin-left: 10px;
}

.nav-list > li > a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    padding: 10px 15px;
    display: block;
    transition: all 0.3s;
    border-radius: 4px;
    white-space: nowrap;
    font-size: clamp(0.8rem, 1.2vw, 1rem);
}

.nav-list > li > a:hover {
    background-color: rgba(13, 77, 45, 0.05);
    color: var(--primary);
}

.nav-list > li > a.active {
    color: var(--primary);
    background-color: rgba(13, 77, 45, 0.08);
}

/* Submenus */
.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 220px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    z-index: 100;
    padding: 10px 0;
}

.nav-list > li:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li {
    list-style: none;
}

.submenu a {
    display: block;
    padding: 10px 20px;
    color: var(--text);
    text-decoration: none;
    transition: all 0.2s;
    border-left: 3px solid transparent;
    font-size: 0.9rem;
}

.submenu a:hover {
    background-color: rgba(13, 77, 45, 0.05);
    color: var(--primary);
    border-left-color: var(--primary);
}

/* Special submenu colors */
.trekking-menu .submenu a:hover {
    border-left-color: var(--trekking-blue);
    color: var(--trekking-blue);
}

.safaris-menu .submenu a:hover {
    border-left-color: var(--safari-green);
    color: var(--safari-green);
}

.daytrips-menu .submenu a:hover {
    border-left-color: var(--daytrip-orange);
    color: var(--daytrip-orange);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
}

/* Hero Slider - Updated for increased height */
.hero-slider {
    position: relative;
    height: 110vh;
    min-height: 600px;
    max-height: 110vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    text-align: center;
    color: white;
    background-color: rgba(0, 0, 0, 0.6);
    padding: clamp(20px, 4vw, 40px);
    border-radius: 10px;
    max-width: min(800px, 90vw);
    margin: 0 20px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.slide-content h1 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    margin-bottom: clamp(15px, 3vw, 25px);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

.slide-content p {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    margin-bottom: clamp(20px, 4vw, 30px);
    line-height: 1.5;
}

.slider-controls {
    position: absolute;
    bottom: clamp(15px, 4vw, 30px);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: clamp(8px, 2vw, 15px);
    z-index: 10;
}

.slider-dot {
    width: clamp(8px, 2vw, 12px);
    height: clamp(8px, 2vw, 12px);
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dot.active {
    background-color: var(--secondary);
    transform: scale(1.2);
}

.btn {
    display: inline-block;
    background-color: var(--secondary);
    color: white;
    padding: clamp(10px, 2vw, 12px) clamp(20px, 4vw, 30px);
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.btn:hover {
    background-color: #d19c1f;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.btn-primary:hover {
    background-color: #0a3d20;
}

/* Section Styles */
section {
    padding: clamp(40px, 8vw, 80px) 0;
}

.section-title {
    text-align: center;
    margin-bottom: clamp(30px, 6vw, 50px);
    padding: 0 15px;
}

.section-title h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--primary);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: clamp(60px, 10vw, 80px);
    height: 3px;
    background-color: var(--secondary);
}

.section-title p {
    max-width: 700px;
    margin: 20px auto 0;
    color: var(--text);
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    padding: 0 15px;
}

/* Destination Section */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: clamp(20px, 4vw, 30px);
    padding: 0 15px;
}

.destination-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.destination-card:hover {
    transform: translateY(-10px);
}

.destination-img {
    height: clamp(180px, 30vw, 250px);
    overflow: hidden;
    flex-shrink: 0;
}

.destination-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.destination-content {
    padding: clamp(15px, 3vw, 20px);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.destination-content h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    margin-bottom: 10px;
    color: var(--primary);
}

.destination-content p {
    margin-bottom: clamp(15px, 3vw, 20px);
    flex-grow: 1;
    font-size: clamp(0.85rem, 1.5vw, 1rem);
}

/* Why Choose Us Section */
.why-choose-us {
    background-color: #f9f9f9;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: clamp(25px, 4vw, 40px);
    padding: 0 15px;
}

.feature-card {
    background-color: white;
    border-radius: 10px;
    padding: clamp(25px, 4vw, 35px);
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: clamp(60px, 10vw, 80px);
    height: clamp(60px, 10vw, 80px);
    background-color: rgba(13, 77, 45, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--primary);
}

.feature-card h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    margin-bottom: 15px;
    color: var(--primary);
}

.feature-card p {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    color: var(--text);
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
}

.faq-item {
    background-color: white;
    border-radius: 8px;
    margin-bottom: clamp(15px, 3vw, 20px);
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.faq-question {
    padding: clamp(18px, 3vw, 25px);
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: rgba(13, 77, 45, 0.05);
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 clamp(18px, 3vw, 25px);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
    padding: 0 clamp(18px, 3vw, 25px) clamp(20px, 3vw, 25px);
    max-height: 500px;
}

.faq-answer p {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    line-height: 1.6;
    color: var(--text);
}

/* Itinerary Section */
.itinerary-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: clamp(8px, 2vw, 10px);
    padding: 0 15px;
}

.itinerary-tab-btn {
    background: white;
    border: 2px solid #eee;
    padding: clamp(10px, 2vw, 12px) clamp(15px, 3vw, 25px);
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 5px;
    white-space: nowrap;
}

.itinerary-tab-btn.active {
    color: white;
    background-color: var(--primary);
    border-color: var(--primary);
}

.itinerary-tab-btn i {
    margin-right: clamp(5px, 1vw, 8px);
    font-size: clamp(0.8rem, 1.5vw, 1rem);
}

.itinerary-content {
    display: none;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 0 15px;
}

.itinerary-content.active {
    display: block;
}

.itinerary-header {
    background-color: var(--primary);
    color: white;
    padding: clamp(15px, 3vw, 20px);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media (min-width: 768px) {
    .itinerary-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.itinerary-header h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    line-height: 1.3;
}

.itinerary-duration {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    background-color: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    align-self: flex-start;
}

.itinerary-body {
    padding: clamp(20px, 4vw, 30px);
}

.itinerary-day {
    margin-bottom: clamp(20px, 4vw, 30px);
    padding-bottom: clamp(20px, 4vw, 30px);
    border-bottom: 1px solid #eee;
}

.itinerary-day:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.day-title {
    display: flex;
    align-items: center;
    margin-bottom: clamp(10px, 2vw, 15px);
}

.day-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(35px, 6vw, 40px);
    height: clamp(35px, 6vw, 40px);
    background-color: var(--secondary);
    color: white;
    border-radius: 50%;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.day-title h4 {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--primary);
    line-height: 1.3;
}

.day-activities {
    padding-left: clamp(55px, 8vw, 55px);
}

@media (max-width: 768px) {
    .day-activities {
        padding-left: 20px;
    }
}

.activity {
    display: flex;
    margin-bottom: clamp(10px, 2vw, 15px);
    flex-direction: column;
}

@media (min-width: 480px) {
    .activity {
        flex-direction: row;
    }
}

.activity-time {
    min-width: 100px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 5px;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

@media (min-width: 480px) {
    .activity-time {
        margin-bottom: 0;
    }
}

.activity-desc {
    flex: 1;
}

.activity-desc h5 {
    font-size: clamp(1rem, 1.8vw, 1.1rem);
    margin-bottom: 5px;
    color: var(--dark);
}

.activity-desc p {
    font-size: clamp(0.85rem, 1.5vw, 1rem);
}

/* Contact Form */
.contact-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(30px, 6vw, 50px);
    align-items: start;
    padding: 0 15px;
}

@media (min-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-form {
    background-color: white;
    padding: clamp(20px, 4vw, 30px);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    margin-bottom: 20px;
    color: var(--primary);
}

.form-group {
    margin-bottom: clamp(15px, 3vw, 20px);
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.form-control {
    width: 100%;
    padding: clamp(10px, 2vw, 12px) 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    transition: border 0.3s;
}

.form-control:focus {
    border-color: var(--primary);
    outline: none;
}

textarea.form-control {
    min-height: clamp(120px, 25vw, 150px);
    resize: vertical;
}

.contact-info {
    background-color: var(--primary);
    color: white;
    padding: clamp(20px, 4vw, 30px);
    border-radius: 10px;
}

.contact-info h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    margin-bottom: 20px;
    color: white;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: clamp(15px, 3vw, 25px);
}

.contact-icon {
    background-color: rgba(255, 255, 255, 0.2);
    width: clamp(40px, 6vw, 50px);
    height: clamp(40px, 6vw, 50px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    font-size: clamp(1rem, 1.8vw, 1.2rem);
}

.contact-text h4 {
    margin-bottom: 5px;
    font-size: clamp(1rem, 1.8vw, 1.1rem);
}

.contact-text p {
    font-size: clamp(0.85rem, 1.5vw, 1rem);
}

/* Payment Strip */
.payment-strip {
    background-color: #f5f5f5;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.payment-strip .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

@media (min-width: 768px) {
    .payment-strip .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.payment-text {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    font-weight: 600;
    color: var(--dark);
}

.payment-icons {
    display: flex;
    gap: clamp(10px, 2vw, 20px);
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.payment-icons i {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #666;
    transition: color 0.3s;
}

.payment-icons i.fa-cc-visa {
    color: #1a1f71;
}

.payment-icons i.fa-cc-mastercard {
    color: #eb001b;
}

.payment-icons i.fa-cc-amex {
    color: #2e77bc;
}

.payment-icons i.fa-cc-paypal {
    color: #003087;
}

.payment-icons i.fa-cc-discover {
    color: #ff6000;
}

.payment-icons i.fa-cc-stripe {
    color: #6772e5;
}

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: clamp(15px, 4vw, 30px);
    right: clamp(15px, 4vw, 30px);
    background-color: #25D366;
    color: white;
    width: clamp(50px, 8vw, 60px);
    height: clamp(50px, 8vw, 60px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.5rem, 3vw, 2rem);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: clamp(80px, 15vw, 100px);
    right: clamp(15px, 4vw, 30px);
    background-color: var(--primary);
    color: white;
    width: clamp(40px, 7vw, 50px);
    height: clamp(40px, 7vw, 50px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: all 0.3s;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #0a3d20;
    transform: translateY(-5px);
}

/* Footer */
footer {
    background-color: var(--dark);
    color: white;
    padding: clamp(40px, 8vw, 60px) 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: clamp(30px, 6vw, 40px);
    margin-bottom: 40px;
    padding: 0 15px;
}

.footer-column h3 {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 20px;
    color: var(--secondary);
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary);
}

.footer-column p {
    margin-bottom: 15px;
    font-size: clamp(0.85rem, 1.5vw, 1rem);
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
    font-size: clamp(0.85rem, 1.5vw, 1rem);
}

.footer-links a:hover {
    color: var(--secondary);
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(35px, 6vw, 40px);
    height: clamp(35px, 6vw, 40px);
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    padding: 20px 15px 0;
}

/* Responsive Styles */
/* Tablets */
@media (max-width: 1024px) {
    .nav-list > li > a {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
    
    .contact-container {
        gap: 40px;
    }
}

/* Mobile & Small Tablets */
@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
        padding: 10px 0;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        background-color: white;
        padding: 80px 20px 20px;
        transition: right 0.4s ease;
        overflow-y: auto;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
    }
    
    .nav-list > li {
        margin: 0;
        border-bottom: 1px solid #eee;
    }
    
    .nav-list > li > a {
        padding: 15px 0;
        font-size: 1rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0 0 0 20px;
        display: none;
        background-color: rgba(13, 77, 45, 0.03);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav-list > li:hover .submenu {
        display: block;
    }
    
    .submenu.active {
        display: block;
        max-height: 500px;
    }
    
    .mobile-menu-btn {
        display: block;
        order: 2;
    }
    
    .logo {
        order: 1;
    }
    
    .hero-slider {
        height: 100vh;
        min-height: 500px;
    }
    
    .itinerary-tabs {
        flex-direction: column;
        align-items: stretch;
    }
    
    .itinerary-tab-btn {
        width: 100%;
        text-align: center;
    }
}

/* Small Phones */
@media (max-width: 480px) {
    .hero-slider {
        height: 95vh;
        min-height: 450px;
    }
    
    .slide-content {
        padding: 15px;
        margin: 0 10px;
    }
    
    section {
        padding: 50px 0;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
    }
    
    .itinerary-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .activity {
        flex-direction: column;
    }
    
    .activity-time {
        margin-bottom: 5px;
        min-width: auto;
    }
    
    .back-to-top {
        bottom: 70px;
    }
    
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
}

/* Landscape Mode */
@media (max-height: 600px) and (orientation: landscape) {
    .hero-slider {
        height: 140vh;
    }
    
    .slide-content {
        padding: 15px;
        margin: 0 10px;
    }
    
    .slide-content h1 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    
    .slide-content p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .slider-controls {
        bottom: 10px;
    }
}

/* Prevent horizontal scrolling */
@media (max-width: 1200px) {
    .container {
        width: 100%;
    }
}