/* ============================ CUSTOM SECTIONS STYLES ============================ */

/* General Section Styles */
.section-padding {
    padding: 80px 0;
}

.section-title {
    font-size: 26px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.section-subtitle {
    font-size: 18px;
    color: #70778b;
    text-align: center;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================ PACKAGES SECTION ============================ */

.packages-section {
    background-color: #000000;
}

.packages-slider {
    position: relative;
    overflow: hidden;
    margin: 0 -15px;
}

.packages-container {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.package-card {
    flex: 0 0 calc(100% / 3 - 30px);
    width: calc(100% / 3 - 30px);
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0 15px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 450px;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.package-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.package-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,107,94,0.8), rgba(255,127,114,0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.package-card:hover .package-image::before {
    opacity: 1;
}

.package-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.package-content h4 {
    font-size: 20px;
    color: #252c41;
    margin-bottom: 10px;
    font-weight: 600;
}

.package-content p {
    color: #70778b;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
}

.package-price {
    font-size: 24px;
    font-weight: 700;
    color: #ff6d5e;
    margin-bottom: 15px;
}

.package-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.package-features li {
    color: #70778b;
    font-size: 13px;
    margin-bottom: 5px;
    position: relative;
    padding-left: 15px;
}

.package-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6d5e;
    font-weight: bold;
}

.package-content .btn-primary {
    margin-top: auto;
    width: 100%;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6d5e, #ff7f72);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,109,94,0.3);
}

/* ============================ TOGETHER SECTION ============================ */

.together-section {
    background-color: #000000;
    color: white;
}

.together-content {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.together-text {
    flex: 1;
}

.together-text h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.together-text h3 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 20px;
    opacity: 0.9;
}

.together-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    opacity: 0.9;
}

.together-image {
    flex: 1;
}

.together-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* ============================ BEST PLACES SECTION ============================ */

.best-places-section {
    background-color: #000000;
}

.places-carousel {
    position: relative;
    overflow: hidden;
    margin: 0 -15px;
}

.places-container {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.place-card {
    flex: 0 0 calc(100% / 4 - 20px);
    width: calc(100% / 4 - 20px);
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0 10px;
    position: relative;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 420px;
}

.place-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.place-image {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.place-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102,126,234,0.8), rgba(118,75,162,0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.place-card:hover .place-image::before {
    opacity: 1;
}

.place-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.place-content h4 {
    font-size: 18px;
    color: #252c41;
    margin-bottom: 8px;
    font-weight: 600;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    line-height: 1.3;
    max-height: 2.6em;
    display: -webkit-box;
    display: box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    box-orient: vertical;
    overflow: hidden;
}

.place-content p {
    color: #70778b;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
    flex-grow: 1;
}

.place-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.stars {
    color: #ffd700;
    font-size: 14px;
}

.rating-text {
    color: #70778b;
    font-size: 12px;
}

.place-price {
    font-size: 20px;
    font-weight: 700;
    color: #667eea;
}

.place-price span {
    font-size: 14px;
    font-weight: 400;
    color: #70778b;
}

.place-content .btn-primary {
    margin-top: auto;
    width: 100%;
    text-align: center;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.place-content .btn-primary:hover {
    background: linear-gradient(135deg, #5a6fd8, #6a4190);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

/* ============================ GALLERY SECTION ============================ */

.gallery-section {
    background-color: #000000;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.gallery-section .section-title {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.gallery-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.gallery-carousel {
    position: relative;
    overflow: hidden;
    margin: 0 -15px;
}

.gallery-container {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-card {
    flex: 0 0 calc(100% / 4 - 20px);
    width: calc(100% / 4 - 20px);
    position: relative;
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    margin: 0 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.9);
}

.gallery-card:hover .gallery-image {
    transform: scale(1.15);
    filter: brightness(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(0,0,0,0.1) 0%,
        rgba(0,0,0,0.4) 50%,
        rgba(0,0,0,0.7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: white;
    text-align: center;
    padding: 20px;
    backdrop-filter: blur(2px);
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
    background: linear-gradient(135deg,
        rgba(255,255,255,0.1) 0%,
        rgba(0,0,0,0.3) 50%,
        rgba(0,0,0,0.6) 100%);
}

.gallery-icon {
    font-size: 32px;
    margin-bottom: 15px;
    opacity: 0.9;
    color: #ffffff;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.gallery-card:hover .gallery-icon {
    transform: scale(1.1);
    opacity: 1;
}

.gallery-overlay h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Gallery Navigation Arrows */
.gallery-carousel .slider-nav {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.gallery-carousel .slider-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.gallery-carousel .gallery-prev {
    left: -30px;
}

.gallery-carousel .gallery-next {
    right: -30px;
}

/* ============================ BLOGS SECTION ============================ */

.blogs-section {
    background-color: #000000;
}

.blogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.blog-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f0f0f0;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.blog-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.blog-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102,126,234,0.1), rgba(118,75,162,0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-card:hover .blog-image::before {
    opacity: 1;
}

.blog-content {
    padding: 25px;
}

.blog-content h4 {
    font-size: 20px;
    color: #252c41;
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.4;
}

.blog-content p {
    color: #70778b;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 13px;
    color: #9a9a9a;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-meta i {
    color: #667eea;
}

/* ============================ SLIDER CONTROLS ============================ */

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #252c41;
    font-size: 18px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.slider-nav:hover {
    background: #ffffff;
    border-color: #667eea;
    color: #667eea;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.slider-nav.prev {
    left: -25px;
}

.slider-nav.next {
    right: -25px;
}

.slider-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: translateY(-50%) scale(1);
}

.slider-nav:disabled:hover {
    transform: translateY(-50%) scale(1);
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.5);
    color: #252c41;
}

/* ============================ LIGHTBOX MODAL ============================ */

.modal-content {
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.lightbox-container {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    margin: 0 auto;
    padding: 20px;
}

.lightbox-image {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.lightbox-caption {
    text-align: center;
    color: #ffffff;
    margin-top: 25px;
    font-size: 20px;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    letter-spacing: 0.5px;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-size: 28px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.lightbox-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.lightbox-prev {
    left: -80px;
}

.lightbox-next {
    right: -80px;
}

/* Close button styling */
.modal-header .close {
    color: #ffffff;
    opacity: 0.8;
    font-size: 35px;
    padding: 10px;
    margin: -10px -10px -10px auto;
    transition: all 0.3s ease;
}

.modal-header .close:hover {
    color: #ffffff;
    opacity: 1;
    transform: scale(1.1);
}

/* Modal backdrop */
.modal-backdrop {
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

/* ============================ DESTINATIONS SECTION ============================ */

.destinations-category-section {
    background: #000000;
    color: white;
}

.destinations-hero {
    margin-bottom: 80px;
}

.destinations-hero .row {
    align-items: center;
}

.destinations-text-column {
    padding-right: 50px;
}

.destinations-content {
    padding: 40px 0;
}

.destinations-content h4 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.destinations-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    opacity: 0.9;
}

.destinations-image-column {
    position: relative;
}

.destinations-image-wrapper {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.destinations-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.3), rgba(0,0,0,0.1));
}

.floating-stats {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    gap: 15px;
}

.stat-badge {
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
}

.stat-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #252c41;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 12px;
    color: #70778b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-section {
    margin-bottom: 60px;
}

.category-header {
    text-align: center;
    margin-bottom: 40px;
}

.category-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.category-title i {
    color: #667eea;
}

.category-description {
    font-size: 16px;
    opacity: 0.9;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.destination-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.destination-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.destination-card:hover .destination-image img {
    transform: scale(1.1);
}

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102,126,234,0.8), rgba(118,75,162,0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.destination-card:hover .destination-overlay {
    opacity: 1;
}

.destination-category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    color: #252c41;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.destination-content {
    padding: 25px;
}

.destination-content h3 {
    font-size: 20px;
    color: #252c41;
    margin-bottom: 10px;
    font-weight: 600;
}

.destination-content p {
    color: #70778b;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.destination-location {
    color: #667eea;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-explore {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
}

.btn-explore:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102,126,234,0.3);
}

/* ============================ RESPONSIVE DESIGN ============================ */

/* Tablet Styles */
@media (max-width: 1024px) {
    .section-padding {
        padding: 50px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    /* Together Section */
    .together-content {
        flex-direction: column;
        gap: 30px;
    }

    .together-text,
    .together-image {
        width: 100%;
    }

    .together-text h2 {
        font-size: 32px;
    }

    .together-text h3 {
        font-size: 24px;
    }

    /* Blogs Grid */
    .blogs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Destinations Grid */
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Mobile Styles */
@media (max-width: 767px) {
    .section-padding {
        padding: 40px 0;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .section-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }

    /* Package Cards Mobile */
    .package-card {
        flex: 0 0 calc(100% - 20px);
        width: calc(100% - 20px);
        margin: 0 10px;
    }

    /* Place Cards Mobile */
    .place-card {
        flex: 0 0 calc(100% - 10px);
        width: calc(100% - 10px);
        margin: 0 5px;
    }

    /* Gallery Cards Mobile */
    .gallery-card {
        flex: 0 0 calc(100% - 10px);
        width: calc(100% - 10px);
        height: 220px;
        margin: 0 5px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .gallery-section .section-title {
        font-size: 26px;
    }

    .gallery-section .section-subtitle {
        font-size: 14px;
    }

    /* Together Section Mobile */
    .together-content {
        flex-direction: column;
        gap: 20px;
        padding: 0 15px;
    }

    .together-text,
    .together-image {
        width: 100%;
    }

    .together-text h2 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .together-text h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .together-text p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .together-image img {
        width: 100%;
        height: auto;
        border-radius: 15px;
    }

    /* Blogs Grid Mobile */
    .blogs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-card {
        margin: 0 15px;
    }

    .blog-content h4 {
        font-size: 18px;
    }

    .blog-content p {
        font-size: 14px;
    }

    /* Destinations Section Mobile */
    .destinations-hero {
        flex-direction: column;
    }

    .destinations-text-column,
    .destinations-image-column {
        width: 100%;
    }

    .destinations-content {
        padding: 20px 15px;
        text-align: center;
    }

    .destinations-content h4 {
        font-size: 24px;
    }

    .destinations-content p {
        font-size: 15px;
        line-height: 1.6;
    }

    .destinations-image-wrapper {
        height: 300px;
        margin: 20px 15px;
    }

    .floating-stats {
        position: static;
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 20px;
    }

    .stat-badge {
        background: rgba(255, 255, 255, 0.9);
        padding: 15px;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    /* Category Sections Mobile */
    .category-header {
        text-align: center;
        margin-bottom: 20px;
    }

    .category-title {
        font-size: 24px;
    }

    .category-description {
        font-size: 14px;
    }

    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .destination-card {
        margin: 0;
    }

    .destination-content h3 {
        font-size: 18px;
    }

    .destination-content p {
        font-size: 14px;
    }

    /* Gallery Modal Mobile */
    .lightbox-container {
        padding: 20px;
    }

    .lightbox-image {
        max-width: 100%;
        height: auto;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    /* Slider Navigation Mobile */
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .slider-nav.prev {
        left: -20px;
    }

    .slider-nav.next {
        right: -20px;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .section-padding {
        padding: 30px 0;
    }

    .section-title {
        font-size: 24px;
    }

    .section-subtitle {
        font-size: 13px;
    }

    /* Package Cards Small Mobile */
    .package-content h4 {
        font-size: 16px;
    }

    .package-content p {
        font-size: 13px;
    }

    .package-price {
        font-size: 18px;
    }

    /* Place Cards Small Mobile */
    .place-content h4 {
        font-size: 16px;
    }

    .place-content p {
        font-size: 13px;
    }

    .place-price {
        font-size: 16px;
    }

    /* Together Section Small Mobile */
    .together-text h2 {
        font-size: 24px;
    }

    .together-text h3 {
        font-size: 18px;
    }

    .together-text p {
        font-size: 14px;
    }

    /* Gallery Cards Small Mobile */
    .gallery-card {
        height: 180px;
    }

    .gallery-overlay h4 {
        font-size: 14px;
    }

    .gallery-icon {
        font-size: 24px;
        margin-bottom: 10px;
    }

    /* Blog Cards Small Mobile */
    .blog-content h4 {
        font-size: 16px;
    }

    .blog-content p {
        font-size: 13px;
    }

    .blog-meta span {
        font-size: 12px;
    }

    /* Destination Cards Small Mobile */
    .destination-content h3 {
        font-size: 16px;
    }

    .destination-content p {
        font-size: 13px;
    }

    .destination-location {
        font-size: 12px;
    }
/* ============================ HEADER STYLES ============================ */

.welcome-text h1 {
    font-family: Arial, sans-serif;
    font-size: 28px;
    font-weight: bold;
    color: #000000;
    margin-bottom: 20px;
}

.bottom-header {
    background: #ffffff;
}

nav ul li a:hover {
    color: #006400; /* Dark green on hover */
}

/* Dropdown submenu styles */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
    border-radius: 0 4px 4px 0;
}

.dropdown-submenu:hover .dropdown-menu {
    display: block;
}

/* Make dropdown hoverable */
.dropdown:hover .dropdown-menu {
    display: block;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .welcome-text h1 {
        font-size: 24px;
    }
}
}

