/* ===== CROSS-BROWSER RESET & NORMALIZATION ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%; /* Prevent iOS text size adjust */
    -moz-text-size-adjust: 100%;
    text-size-adjust: 60%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-smoothing: antialiased;
    scroll-behavior: smooth;
}

body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Font stack with better cross-browser support */
:root {
    --font-family-system: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --font-family-fallback: Arial, Helvetica, sans-serif;
    --primary-color: #F39C12;
    --secondary-color: #2E5E3E;
    --text-color: #1C1C1C;
    --bg-color: #f5f5f5;
}

/* Image normalization */
img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
    height: auto;
    -ms-interpolation-mode: bicubic; /* Better IE image scaling */
}

/* Form elements normalization */
input, button, textarea, select {
    font: inherit;
    color: inherit;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
}

button {
    background: none;
    border: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent; /* Remove mobile tap highlight */
}

a {
    text-decoration: none;
    color: inherit;
    -webkit-tap-highlight-color: rgba(0,0,0,0.1);
}

/* ===== HEADER & NAVIGATION ===== */
header {
    z-index: 999;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 15px 200px;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
    font-family: var(--font-family-system), var(--font-family-fallback);
}

header .brand {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
}

header .brand img {
    height: 80px;
    width: auto;
    -o-object-fit: contain;
    object-fit: contain;
    -ms-interpolation-mode: bicubic;
}

header .brand span {
    margin-left: 10px;
    font-size: 1.5rem;
    font-weight: 500;
    color: #FFFFFF;
    text-transform: uppercase;
}

header .navigation {
    position: relative;
}

header .navigation .navigation-items a {
    position: relative;
    color: #FFFFFF;
    font-size: 1em;
    font-weight: 500;
    text-decoration: none;
    margin-left: 30px;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

header .navigation .navigation-items a::before {
    content: '';
    position: absolute;
    background: var(--primary-color);
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

header .navigation .navigation-items a:hover::before {
    width: 100%;
}

/* ===== HOME/HERO SECTION ===== */
.home {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background: var(--secondary-color);
    overflow: hidden;
}

.home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(46, 94, 62, 0.3);
    z-index: 777;
}

.home .content {
    z-index: 888;
    color: #FFFFFF;
    width: 70%;
    margin-top: 30px; /* Reduced from 50px for mobile */
    font-family: var(--font-family-system), var(--font-family-fallback);
}

.home .content h1 {
    font-size: clamp(2rem, 5vw, 3.2em); /* Fluid typography */
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2.4px;
    line-height: 1.2;
    margin-bottom: 40px;
}

.home .content h1 span {
    font-size: clamp(1.5rem, 4vw, 2.4rem);
    font-weight: 600;
}

.home .content p {
    margin-bottom: 35px;
}

.home .content a {
    display: inline-block;
    background: #FFFFFF;
    padding: 15px 35px;
    color: var(--secondary-color);
    font-size: 1.1em;
    font-weight: 500;
    text-decoration: none;
    border-radius: 10px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* ===== VIDEO SLIDES ===== */
.video-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    opacity: 0;
    pointer-events: none;
    -webkit-clip-path: circle(0% at 0 50%);
    clip-path: circle(0% at 0 50%);
    -webkit-transition: clip-path 2s ease, opacity 0.6s ease;
    transition: clip-path 2s ease, opacity 0.6s ease;
    z-index: 0;
}

.video-slide.active {
    opacity: 1;
    pointer-events: auto;
    -webkit-clip-path: circle(150% at 0 50%);
    clip-path: circle(150% at 0 50%);
    z-index: 1;
}

/* Fallback for browsers that don't support clip-path */
@supports not (clip-path: circle(0%)) {
    .video-slide {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
        -webkit-transition: opacity 1s ease, -webkit-transform 2s ease;
        transition: opacity 1s ease, -webkit-transform 2s ease;
        transition: opacity 1s ease, transform 2s ease;
        transition: opacity 1s ease, transform 2s ease, -webkit-transform 2s ease;
    }
    
    .video-slide.active {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

/* ===== SLIDER NAVIGATION ===== */
.slider-navigation {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 12px;
    -webkit-transform: translateY(80%);
    transform: translateY(80%);
    z-index: 888;
}

.slider-navigation .nav-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #FFFFFF;
    cursor: pointer;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    -webkit-box-shadow: 0 0 2px rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 2px rgba(255, 255, 255, 0.5);
    -webkit-tap-highlight-color: transparent;
}

.slider-navigation .nav-btn.active {
    background: var(--primary-color);
}

.slider-navigation .nav-btn:not(:last-child) {
    margin-right: 10px;
}

.slider-navigation .nav-btn:hover {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

/* ===== CONTENT ANIMATIONS ===== */
.content {
    display: none;
    -webkit-animation: fadeUp 0.8s ease forwards;
    animation: fadeUp 0.8s ease forwards;
}

.content.active {
    display: block;
}

@-webkit-keyframes fadeUp {
    from {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

/* ===== TRIP PLANNER ===== */
.trip-planner {
    position: relative;
    width: 90%;
    max-width: 1200px;
    margin: 80px auto 0;
    padding: 40px 20px;
    background-color: rgba(243, 156, 18, 0.1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 30px;
    -webkit-box-shadow: 0 8px 20px rgba(0,0,0,0.2), 0 4px 10px rgba(0,0,0,0.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2), 0 4px 10px rgba(0,0,0,0.1);
}

.trip-planner .container {
    width: 100%;
    max-width: 900px;
}

.trip-planner h2 {
    text-align: center;
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 30px;
    margin-top: 20px;
    color: var(--primary-color);
}

.planner-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.planner-form .form-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 150px;
}

.planner-form label {
    margin-bottom: 5px;
    font-weight: 500;
}

.planner-form input,
.planner-form select {
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 1rem;
    background: #fff;
}

.planner-form .primary-btn {
    padding: 12px 25px;
    font-size: 1rem;
    background: var(--primary-color);
    color: #FFFFFF;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    -webkit-appearance: button;
}

.planner-form .primary-btn:hover {
    background: var(--secondary-color);
}

/* ===== EXPLORE SECTION ===== */
section {
    padding: 100px 80px;
}

.explore-section {
    padding: 80px 0;
    background: #f5f7fa;
}

.section-title {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--text-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-color);
}

.explore-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(280px, 1fr))[auto-fit];
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.explore-card {
    background: #FFFFFF;
    border-radius: 14px;
    overflow: hidden;
    -webkit-box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.explore-card:hover {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
}

.explore-card img {
    width: 100%;
    height: 220px;
    -o-object-fit: cover;
    object-fit: cover;
}

.card-content {
    padding: 20px;
}

.category {
    display: inline-block;
    font-size: 0.8rem;
    background: var(--primary-color);
    color: #FFFFFF;
    padding: 4px 10px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.category.overnight {
    background: var(--secondary-color);
}

.card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.card-info {
    list-style: none;
    margin-bottom: 15px;
    padding: 0;
}

.card-info li {
    font-size: 0.95rem;
    margin-bottom: 6px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    color: var(--text-color);
}

.card-info i {
    color: var(--secondary-color);
}

.card-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    padding-top: 15px;
    margin-top: 15px;
}

.card-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(28, 28, 28, 0.15);
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.btn-book {
    display: inline-block;
    background: var(--primary-color);
    color: #FFFFFF;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

.btn-book:hover {
    background: var(--secondary-color);
}

/* ===== BUTTON WRAPPER ===== */
.button-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 40px;
}

.btn-explore {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 10px;
    width: 140px;
    height: 42px;
    background-color: var(--secondary-color);
    color: #FFFFFF;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 30px;
    text-decoration: none;
    -webkit-box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
    -webkit-transition: background-color 0.4s ease, -webkit-transform 0.2s ease;
    transition: background-color 0.4s ease, -webkit-transform 0.2s ease;
    transition: background-color 0.4s ease, transform 0.2s ease;
    transition: background-color 0.4s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}

.btn-explore .svgIcon {
    height: 20px;
    fill: #FFFFFF;
    -webkit-transition: -webkit-transform 1.2s ease;
    transition: -webkit-transform 1.2s ease;
    transition: transform 1.2s ease;
    transition: transform 1.2s ease, -webkit-transform 1.2s ease;
}

.btn-explore:hover {
    background-color: var(--primary-color);
}

.btn-explore:hover .svgIcon {
    -webkit-transform: rotate(250deg);
    transform: rotate(250deg);
}

.btn-explore:active {
    -webkit-transform: scale(0.96);
    transform: scale(0.96);
}

/* ===== ABOUT SECTION ===== */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.heading-normal-txt {
    font-size: 1rem;
    letter-spacing: 6px;
    color: var(--primary-color);
}

.heading {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    padding-bottom: 2rem;
    letter-spacing: 2px;
}

.heading span {
    color: var(--primary-color);
}

.secondary-heading {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-family: var(--font-family-system), var(--font-family-fallback);
    padding: 1rem 0;
}

.lead {
    font-size: 1.1rem;
    line-height: 1.5;
    text-align: justify;
}

.primary-btn {
    width: auto;
    min-width: 150px;
    outline: none;
    background-color: var(--primary-color);
    border: none;
    padding: 0.7rem 1.5rem;
    font-size: 1.2rem;
    border-radius: 4px;
    color: #FFFFFF;
    cursor: pointer;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    display: inline-block;
}

.about-content-wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 3rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin: 3rem 0;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.about-content-wrapper ul {
    list-style: none;
    padding: 0;
}

.about-content-wrapper ul .icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 1rem 0;
}

.about-content-wrapper ul .icons i {
    background: var(--primary-color);
    padding: 0.8rem;
    border-radius: 50%;
    color: #FFFFFF;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.about-content-wrapper ul p {
    margin-left: 1rem;
}

.agency-right-side {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.agency-right-side .img {
    position: relative;
    width: 100%;
    height: 400px;
    padding-left: 2rem;
}

.agency-right-side .img::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 55px;
    width: 75%;
    height: 100%;
    background: var(--primary-color);
    z-index: -2;
    border-radius: 4px;
}

.agency-right-side .img img {
    position: relative;
    width: 85%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
    margin-left: auto;
    z-index: 1;
    border-radius: 4px;
    -webkit-transition: -webkit-transform 0.4s ease;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.agency-right-side .img img:hover {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
}

/* ===== COUNTER SECTION ===== */
#static-counter {
    padding: 2rem 0;
    background: url('../images/backgrounds/camp photo.jpg') no-repeat center/cover;
    background-attachment: fixed;
    position: relative;
    z-index: 4;
}

#static-counter::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(28, 28, 28, 0.5);
    z-index: -1;
}

.static-wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr 4);
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #FFFFFF;
    gap: 2rem;
    padding: 2rem 0;
    z-index: 50;
}

.static-icons i {
    font-size: 2rem;
    padding: 1rem;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    display: inline-block;
}

.numbers {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 600;
    margin-top: 1rem;
}

.static-icons i:hover {
    background: var(--primary-color);
    border: none;
    -webkit-transform: translateY(-20%);
    transform: translateY(-20%);
}

/* ===== TESTIMONIALS ===== */
.testimonial-section {
    padding: 60px 20px;
    background: #f5f8fa;
    text-align: center;
}

.testimonial-slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-slider {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: -webkit-transform 0.8s ease-in-out;
    transition: -webkit-transform 0.8s ease-in-out;
    transition: transform 0.8s ease-in-out;
    transition: transform 0.8s ease-in-out, -webkit-transform 0.8s ease-in-out;
}

.testimonial-card {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
    background: #FFFFFF;
    padding: 30px 20px;
    border-radius: 12px;
    -webkit-box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.testimonial-card img {
    display: block;
    margin: 0 auto 10px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
}

.testimonial-card h3 {
    font-size: 1.1rem;
    margin: 10px 0;
}

.testimonial-card .rating {
    font-size: 1rem;
    color: #FFD700;
    margin-bottom: 10px;
}

.testimonial-card p {
    font-size: 0.95rem;
    line-height: 1.4;
    color: var(--text-color);
}

.testimonial-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.testimonial-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    -webkit-transition: background 0.3s;
    transition: background (0.3s);
}

.testimonial-dots .dot.active {
    background: var(--secondary-color);
}

/* ===== FOOTER ===== */
footer {
    background: var(--secondary-color);
    color: #FFFFFF;
    padding: 60px 2rem 20px;
    font-family: var(--font-family-system), var(--font-family-fallback);
}

.footer-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr4);
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-about h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 15px;
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #FFFFFF;
    text-decoration: none;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
}

.footer-contact p {
    margin-bottom: 10px;
}

.footer-social .social-icons a {
    display: inline-block;
    font-size: 1.5rem;
    color: #FFFFFF;
    margin-right: 15px;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

.footer-social .social-icons a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9rem;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* ===== HERO SECTION MOBILE RESPONSIVENESS ===== */
@media (max-width: 768px) {
    /* Hero section adjustments for mobile */
    .home {
        min-height: 90vh; /* Reduced from 100vh */
        height: auto;
        padding: 20px 0 40px;
    }
    
    .home .content {
        width: 90%;
        margin-top: 15px; /* Further reduced for mobile */
        padding: 15px;
        text-align: center;
    }
    
    .home .content h1 {
        font-size: clamp(1.6rem, 5vw, 2.2rem); /* Reduced sizes */
        letter-spacing: 1.5px; /* Reduced from 2.4px */
        margin-bottom: 20px; /* Reduced from 40px */
        line-height: 1.3;
    }
    
    .home .content h1 span {
        font-size: clamp(1.3rem, 4vw, 1.8rem); /* Reduced sizes */
    }
    
    .home .content p {
        margin-bottom: 25px; /* Reduced from 35px */
        font-size: 0.95rem; /* Smaller text */
        line-height: 1.4;
    }
    
    .home .content a {
        padding: 12px 28px; /* Reduced from 15px 35px */
        font-size: 1rem; /* Slightly smaller */
    }
    
    .slider-navigation {
        -webkit-transform: translateY(30%); /* Moved up from 80% */
        transform: translateY(30%);
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    /* Extra small devices */
    .home {
        min-height: 85vh; /* Even smaller on very small screens */
        padding: 15px 0 30px;
    }
    
    .home .content {
        margin-top: 10px;
    }
    
    .home .content h1 {
        font-size: 1.5rem; /* Further reduced */
        margin-bottom: 15px;
        letter-spacing: 1px;
    }
    
    .home .content h1 span {
        font-size: 1.2rem; /* Further reduced */
    }
    
    .home .content p {
        font-size: 0.9rem; /* Even smaller */
        margin-bottom: 20px;
        line-height: 1.3;
    }
    
    .home .content a {
        padding: 10px 22px;
        font-size: 0.95rem;
    }
    
    .slider-navigation {
        -webkit-transform: translateY(20%);
        transform: translateY(20%);
        margin-top: 15px;
    }
    
    .slider-navigation .nav-btn {
        width: 10px;
        height: 10px;
    }
}

/* For very tall mobile devices */
@media (max-width: 768px) and (min-height: 700px) {
    .home {
        min-height: 85vh; /* Use most of screen but not all */
    }
    
    .home .content {
        margin-top: 30px;
    }
}

/* For landscape mode on mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .home {
        min-height: 110vh; /* Allow more height for landscape */
    }
    
    .home .content h1 {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }
    
    .home .content p {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }
    
    .slider-navigation {
        -webkit-transform: translateY(10%);
        transform: translateY(10%);
    }
}

/* ===== RESPONSIVE DESIGN (KEEPING EXISTING MEDIA QUERIES) ===== */
@media (max-width: 1040px) {
    header {
        padding: 12px 20px;
    }
    
    section {
        padding: 100px 20px;
    }
    
    header .navigation {
        display: none;
    }
    
    header .navigation.active {
        position: fixed;
        width: 100%;
        height: 100vh;
        top: 0;
        left: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        background: rgba(28, 28, 28, 0.5);
        -webkit-backdrop-filter: blur(5px);
        backdrop-filter: blur(5px);
    }
    
    header .navigation .navigation-items a {
        color: var(--text-color);
        font-size: 1.2em;
        margin: 20px;
    }
    
    header .navigation .navigation-items a::before {
        background: var(--primary-color);
        height: 5px;
    }
    
    header .navigation.active .navigation-items {
        background: #FFFFFF;
        width: 90%;
        max-width: 600px;
        margin: 20px;
        padding: 40px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        border-radius: 5px;
        -webkit-box-shadow: 0 5px 25px rgba(28, 28, 28, 0.2);
        box-shadow: 0 5px 25px rgba(28, 28, 28, 0.2);
    }
    
    .menu-btn {
        background: url('../images/icons/menu.png') no-repeat center;
        background-size: 30px;
        width: 40px;
        height: 40px;
        cursor: pointer;
        -webkit-transition: 0.3s ease;
        transition: 0.3s ease;
        -webkit-tap-highlight-color: transparent;
    }
    
    .menu-btn.active {
        z-index: 999;
        background: url('../images/icons/x.png') no-repeat center;
        background-color: #fff;
        border-radius: 9px;
        background-size: 25px;
        -webkit-transition: 0.3s ease;
        transition: 0.3s ease;
    }
    
    .trip-planner {
        width: 95%;
        padding: 30px 15px;
    }
    
    .planner-form {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    
    .planner-form .form-group {
        width: 100%;
        max-width: 400px;
    }
    
    .static-wrapper {
        -ms-grid-columns: (1fr 2);
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-container {
        -ms-grid-columns: (1fr 2);
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Keep existing 768px media query for other sections */
    .home .content {
        width: 90%;
        text-align: center;
    }
    
    .home .content h1 {
        line-height: 1.3;
    }
    
    .explore-grid {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        padding: 0 10px;
    }
    
    .about-content-wrapper {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
    
    .agency-right-side .img {
        padding-left: 0;
        margin-top: 2rem;
        height: 300px;
    }
    
    .agency-right-side .img::after {
        width: 90%;
        left: 5%;
    }
    
    .agency-right-side .img img {
        width: 90%;
        margin: 0 auto;
    }
    
    .static-wrapper {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-container {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-social .social-icons a {
        margin: 0 8px;
    }
}

@media (max-width: 480px) {
    /* Keep existing 480px media query for other sections */
    .home .content a {
        padding: 12px 25px;
        font-size: 1em;
    }
    
    .slider-navigation {
        -webkit-transform: translateY(50%);
        transform: translateY(50%);
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .card-content h3 {
        font-size: 1.2rem;
    }
    
    .btn-book {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    * {
        background: transparent !important;
        color: #000 !important;
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }
    
    header, footer, .slider-navigation, .trip-planner, .menu-btn {
        display: none !important;
    }
    
    .home .video-slide {
        display: none !important;
    }
    
    .home::before {
        display: none !important;
    }
    
    a {
        text-decoration: underline;
    }
    
    img {
        max-width: 100% !important;
    }
}

/* ===== HIGH CONTRAST MODE SUPPORT ===== */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #FF8C00;
        --secondary-color: #006400;
        --text-color: #000000;
    }
}

/* ===== REDUCED MOTION SUPPORT ===== */
@media (prefers-reduced-motion: reduce) {
  *::before {
    animation: none !important;
    transition: none !important;
  }
}