
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header and Navbar */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    background: #f8f9fa;
    padding: 1rem 0;
    margin-top: 60px;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.breadcrumb-link {
    color: #0066cc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: #0052a3;
    text-decoration: underline;
}

.breadcrumb-separator {
    color: #999;
    margin: 0 0.5rem;
}

.breadcrumb-current {
    color: #666;
    font-size: 0.95rem;
}



.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
    height: 60px;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #007bff;
}

.logo img {
    height: 80px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.1);
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 2rem;
}

.nav-menu a {
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #007bff;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 150px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.5rem 1rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1);
    transition: opacity 1s ease, transform 1s ease;
}

.slide.active {
    opacity: 1;
    transform: scale(1.05);
}

.slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.3));
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    z-index: 2;
    color: #fff;
    text-align: left;
    animation: fadeInUp 1s ease-out 0.5s forwards;
    opacity: 0;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-family: 'Playfair Display', serif;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-family: 'Roboto Slab', serif;
}

.cta-button {
    background: linear-gradient(45deg, #ff6b6b, #ff5252);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6), 0 0 20px rgba(255, 107, 107, 0.8);
}

.hero-navigation {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
}

.nav-arrow {
    background: rgba(255,255,255,0.8);
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    margin: 0 10px;
    transition: background 0.3s;
}

.nav-arrow:hover {
    background: rgba(255,255,255,1);
}

.nav-dots {
    display: flex;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: rgba(255,255,255,1);
}

.dot:hover {
    background: rgba(255,255,255,0.8);
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        height: 100vh;
    }
    .hero-content {
        position: absolute;
        top: 50%;
        left: 10%;
        transform: translateY(-50%);
        text-align: left;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .slide img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .slide.active {
        transform: scale(1.02);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-button {
    background: linear-gradient(45deg, #ff6b6b, #ff5252);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    margin-top: 1rem;
}

.cta-button:hover {
    background: linear-gradient(45deg, #ff5252, #ff3838);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
}

@keyframes fly {
    0% { transform: translateX(-100px); }
    100% { transform: translateX(calc(100vw + 100px)); }
}

    .hero-content {
    z-index: 2;
    max-width: 800px;
    margin-bottom: 2rem;
    margin-top: 5rem;
}
.animated-title {
    font-size: 3rem;
    margin-bottom: -3rem;
    font-weight: bold;
    font-family: 'Playfair Display', serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    opacity: 0;
    animation: titleAppear 1s ease-in-out 0.5s forwards, titleMoveUp 1s ease-in-out 3s forwards;
    transition: text-shadow 0.3s ease;
    color: #fff;
}

.animated-title {
    font-size: 3rem;
    margin-bottom: -3rem;
    font-weight: bold;
    font-family: 'Playfair Display', serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    opacity: 0;
    animation: titleAppear 1s ease-in-out 0.5s forwards, titleMoveUp 1s ease-in-out 3s forwards;
    transition: text-shadow 0.3s ease;
}

.animated-title:hover {
    text-shadow: 0 0 10px rgba(255, 165, 0, 0.8), 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.animated-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    font-weight: 400;
    font-style: italic;
    font-family: 'Lobster', cursive;
    color: #f0f0f0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    opacity: 0;
    animation: subtitleAppear 0.5s ease-in-out 4s forwards;
    border-right: 2px solid #f0f0f0;
    white-space: nowrap;
    overflow: hidden;
}

.word { 
    opacity: 0;
    display: inline-block;
    animation: wordAppear 0.5s ease-in-out forwards;
}

.word:nth-child(1) { animation-delay: 4.5s; }
.word:nth-child(2) { animation-delay: 5s; }
.word:nth-child(3) { animation-delay: 5.5s; }
.word:nth-child(4) { animation-delay: 6s; }
.word:nth-child(5) { animation-delay: 6.5s; }
.word:nth-child(6) { animation-delay: 7s; }
.word:nth-child(7) { animation-delay: 7.5s; }
.word:nth-child(8) { animation-delay: 8s; }
.word:nth-child(9) { animation-delay: 8.5s; }

@keyframes titleAppear {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes titleMoveUp {
    from { transform: translateY(0) scale(1); font-size: 3rem; }
    to { transform: translateY(-50px) scale(1); font-size: 3rem; }
}

@keyframes subtitleAppear {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(-5px); }
}

@keyframes wordAppear {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

.cta-button {
    background: #ff6b6b;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.cta-button:hover {
    background: #ff5252;
    transform: translateY(-2px);
}

.search-box {
    display: flex;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out 2s forwards;
    gap: 0.5rem;
}

.search-box:focus-within {
    transform: scale(1.02);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.search-box input {
    flex: 1;
    min-width: 140px;
    padding: 0.75rem;
    border: none;
    border-radius: 5px;
    font-size: 0.95rem;
}

.search-box input[type="tel"] {
    flex: 0 1 calc(50% - 0.25rem);
    min-width: 120px;
}

.search-button {
    background: #007bff;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
    font-weight: 600;
    white-space: nowrap;
}

.search-button:hover {
    background: #0056b3;
}

/* Services Section */
.services {
    padding: 2rem 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    background-color: white;
}

.services h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.service-card {
    background: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.service-card i {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #333;
}

/* Trending Destinations Section */
.trending-destinations {
    padding: 2rem 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    background-color: white;
}

.trending-destinations h2 {
    font-size: 2.5rem;
    margin-bottom: 0.25rem;
    color: #000;
}

.trending-destinations .subtitle {
    font-size: 1rem;
    font-weight: normal;
    color: #666;
    margin-bottom: 2rem;
}

.gallery-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    font-size: 20px;
    transition: background 0.3s, transform 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.scroll-arrow:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.left-arrow {
    left: -50px;
}

.right-arrow {
    right: -50px;
}

.gallery-grid {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    overflow: hidden;
    scroll-behavior: smooth;
    margin-top: 2rem;
    width: max-content;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    width: 410px;
    height: 328px;
    flex-shrink: 0;
}

/* Hover effect removed */

.gallery-item.small {
    flex: 0.5;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

@keyframes auto-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Destinations Section */
.destinations {
    padding: 1rem 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    background-color: white;
}

.destinations h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
}

.gallery-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    font-size: 20px;
    transition: background 0.3s, transform 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.scroll-arrow:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.left-arrow {
    left: -50px;
}

.right-arrow {
    right: -50px;
}

.gallery-grid {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    overflow: hidden;
    scroll-behavior: smooth;
    margin-top: 2rem;
    width: max-content;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, opacity 0.3s;
    width: 300px;
    height: 200px;
    flex-shrink: 0;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }
.gallery-item:nth-child(7) { animation-delay: 0.7s; }
.gallery-item:nth-child(8) { animation-delay: 0.8s; }

/* Hover effect removed */

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    opacity: 0;
    transition: opacity 0.3s;
}

/* Enhanced bottom gradient overlay and text for gallery slides */
.gallery-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    height: auto;
    pointer-events: none;
    opacity: 1;
}

.overlay-gradient {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.65), rgba(0,0,0,0));
    z-index: 1;
}

.overlay-text {
    position: absolute;
    left: 20px;
    bottom: 20px;
    z-index: 2;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.dest-name {
    margin: 0;
    color: #ffffff;
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 0.5px;
    line-height: 1;
}

.dest-sub {
    display: block;
    color: #C6A75E;
    font-size: 12px;
    text-transform: uppercase;
    margin-top: 6px;
}

/* Hover effect (desktop only): image zoom and text translate */
.gallery-item img {
    transition: transform 0.3s ease;
}
.gallery-item:hover img {
    transform: scale(1.05);
}
.gallery-item:hover .overlay-text {
    transform: translateY(-5px);
}

/* Disable hover animations on touch devices */
@media (hover: none) {
    .gallery-item:hover img,
    .gallery-item:hover .overlay-text {
        transform: none;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .dest-name { font-size: 18px; }
    .overlay-text { left: 16px; bottom: 16px; }
    .overlay-gradient { background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0)); }
}



@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Section */
.about {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    background-color: white;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 4rem;
}

.about h2 {
    font-family: 'Roboto Slab', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #007bff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.about h2 img {
    height: 5rem;
    width: auto;
    vertical-align: top;
    margin-top: -5px;
    margin-right: 0.5rem;
}

.about h3 {
    font-family: 'Roboto Slab', serif;
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 3rem;
    color: #555;
    font-style: italic;
}

.about p {
    font-family: 'Roboto Slab', serif;
    font-size: 1.2rem;
    line-height: 1.9;
    max-width: 900px;
    margin: 0 auto 2rem;
    color: #333;
    text-align: justify;
}

.about .cta-button {
    margin-top: 2rem;
    background: #ff6b6b;
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-family: 'Roboto Slab', serif;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.about .cta-button:hover {
    background: #ff5252;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

/* Contact Section */
.contact {
    padding: 2rem 1rem;
    max-width: 800px;
    margin: 4rem auto 0;
    text-align: center;
    background: #f8f9fa;
}

.contact h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

#contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

#contact-form input,
#contact-form textarea {
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.9rem;
}

#contact-form textarea {
    resize: vertical;
    min-height: 80px;
}

#contact-form button {
    background: #007bff;
    color: white;
    border: none;
    padding: 0.5rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

#contact-form button:hover {
    background: #0056b3;
}

#success-message {
    margin-top: 1rem;
    padding: 1rem;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 5px;
}

/* Footer */
.footer {
    background: #f5f5f5;
    color: #333;
    padding: 1rem 0;
    margin-top: 4rem;
    font-family: 'Arial', sans-serif;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
}

.footer-section p {
    color: #000;
    transition: color 0.3s;
}

.footer-section p:hover {
    color: #007bff;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #000;
    transition: color 0.3s;
}

.footer-section h3:hover {
    color: #007bff;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    font-size: 1.5rem;
    color: #000;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #007bff;
}

.footer-bottom {
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid #ddd;
    margin-top: 2rem;
    color: #000;
}

.footer-bottom a {
    color: #000;
}

.footer-bottom a:hover {
    color: #007bff;
    font-weight: bold;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Floating Social Media Icons */
.floating-social-icons {
    position: fixed;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    background: orange;
    padding: 0px;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.floating-social-icons a {
    color: white;
    font-size: 16px;
    padding: 5px;
    transition: color 0.3s ease;
}

.floating-social-icons a:hover {
    color: #333;
}

.floating-social-icons .separator {
    height: 1px;
    width: 15px;
    background: white;
    margin: 3px 0;
}

/* Featured Journeys Section */
.featured-journeys {
    background: #ffffff;
    padding: 5rem 2rem;
}

.featured-journeys-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.featured-journeys-header {
    text-align: center;
    margin-bottom: 4rem;
}

.featured-journeys-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1a1a1a;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-weight: 700;
}

.featured-journeys-subtitle {
    font-size: 1rem;
    color: #888888;
    font-weight: 400;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Carousel */
.carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.carousel-container {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

.carousel-track {
    display: flex;
    gap: 1.5rem;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

/* Journey Card */
.journey-card {
    flex: 0 0 calc((100% - 3rem) / 3);
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.journey-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-6px);
}

.card-image-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
    transition: transform 0.4s ease;
}

.journey-card:hover .card-image {
    transform: scale(1.05);
}

/* Journey Badge */
.journey-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #C6A75E;
    color: #ffffff;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Card Content */
.card-content {
    padding: 1.5rem;
}

.card-destination {
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.card-duration {
    font-size: 0.9rem;
    color: #888888;
    margin-bottom: 0.75rem;
}

.card-price {
    font-size: 0.95rem;
    color: #1a1a1a;
    margin-bottom: 1.25rem;
}

.price-amount {
    font-weight: 700;
    color: #1a1a1a;
}

/* Card Button */
.card-button {
    width: 100%;
    padding: 0.75rem;
    background: transparent;
    border: 1.5px solid #1a1a1a;
    color: #1a1a1a;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: capitalize;
}

.card-button:hover {
    background: #C6A75E;
    border-color: #C6A75E;
    color: #ffffff;
}

/* Carousel Arrows */
.carousel-arrow {
    width: 44px;
    height: 44px;
    border: 1.5px solid #1a1a1a;
    background: transparent;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.carousel-arrow:hover {
    background: #1a1a1a;
    color: #ffffff;
}

.carousel-prev {
    order: -1;
}

/* Pagination Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
}

.carousel-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d0d0d0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dots .dot.active {
    background: #C6A75E;
    width: 24px;
    border-radius: 4px;
}

/* Explore All Button */
.explore-all-wrapper {
    display: flex;
    justify-content: center;
}

.explore-all-button {
    background: #C6A75E;
    color: #1a1a1a;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: capitalize;
}

.explore-all-button:hover {
    background: #b39650;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(198, 167, 94, 0.3);
}

/* Responsive Design */
/* Tablet */
@media (max-width: 1024px) {
    .featured-journeys {
        padding: 4rem 1.5rem;
    }

    .featured-journeys-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .journey-card {
        flex: 0 0 calc((100% - 0.75rem) / 1.2);
    }

    .carousel-wrapper {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    /* Mobile Hero Section Fixes */
    .hero {
        height: 100vh; /* Keep full height on mobile for slideshow */
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 2rem 1rem; /* Add padding for content spacing */
    }

    .slide img {
        object-position: center 40%; /* Reposition image downward for visual centering */
    }

    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.3));
        z-index: 1;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        text-align: center;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .animated-title {
        font-size: 2.5rem; /* Adjusted for mobile */
        margin-bottom: 1rem; /* Remove negative margin */
    }

    .animated-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .cta-button {
        margin-top: 1rem;
    }

    /* Mobile Search Form - handled by mobile.css */

    /* Navbar Adjustments */
    .navbar {
        padding: 1rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 120px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 2.5rem 0;
    }

    .hamburger {
        display: flex;
    }

    /* Other existing mobile styles */
    .upper-header {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.5rem 1rem;
    }

    .contact-info {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-card {
        padding: 0.5rem;
    }

    .service-card i {
        font-size: 2rem;
    }

    /* Responsive gallery features */
    .gallery-container {
        position: relative;
        width: 100%;
        margin: 0 auto;
        overflow: hidden;
    }

    .gallery-grid {
        display: flex;
        flex-direction: row;
        gap: 1rem;
        overflow-x: auto;
        scroll-behavior: smooth;
        margin-top: 2rem;
        width: max-content;
        padding-bottom: 1rem; /* For scrollbar space */
    }

    .gallery-item {
        position: relative;
        overflow: hidden;
        border-radius: 10px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s;
        width: 250px;
        height: 150px;
        flex-shrink: 0;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .gallery-overlay {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        font-size: 1rem;
        font-weight: bold;
        text-align: center;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    }

    .scroll-arrow {
        display: none; /* Hide arrows on mobile, use scroll */
    }

    .about {
        padding: 3rem 1rem;
        margin-bottom: 2rem;
    }

    .about h2 {
        font-size: 2rem;
    }

    .about h2 img {
        height: 3rem;
    }

    .about h3 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .about p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .about .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .contact {
        padding: 1rem 0.5rem;
        max-width: 100%;
    }

    .contact h2 {
        font-size: 1.5rem;
    }

    #contact-form {
        gap: 0.5rem;
    }

    #contact-form input,
    #contact-form textarea {
        padding: 0.5rem;
        font-size: 0.9rem;
    }

    #contact-form button {
        padding: 0.5rem;
        font-size: 0.9rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 0 1rem;
    }

    .footer-section h3 {
        font-size: 1.2rem;
    }

    /* Featured Journeys Mobile */
    .featured-journeys {
        padding: 3rem 1rem;
    }

    .featured-journeys-header {
        margin-bottom: 2.5rem;
    }

    .featured-journeys-title {
        font-size: 1.75rem;
        letter-spacing: 1px;
        margin-bottom: 0.75rem;
    }

    .featured-journeys-subtitle {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .carousel-wrapper {
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .journey-card {
        flex: 0 0 100%;
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .carousel-dots {
        margin-bottom: 2rem;
    }

    .explore-all-wrapper {
        margin-top: 1rem;
    }

    .explore-all-button {
        width: 100%;
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .about h2 {
        font-size: 1.8rem;
    }

    .about h2 img {
        height: 2.5rem;
    }

    .about h3 {
        font-size: 1.3rem;
    }

    .about p {
        font-size: 0.95rem;
    }

    .services h2,
    .trending-destinations h2,
    .destinations h2 {
        font-size: 1.8rem;
    }

    .gallery-item {
        height: 150px;
    }

    .gallery-item.small {
        height: 120px;
    }
}
