* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    overflow-x: hidden;
}

/* Banner Background */
.banner-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding-top: 130px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
}

/* Header/Navigation Bar: üst ince bar (sosyal, logo, giriş/register) + alt bar (sadece linkler) */
.header-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    display: flex;
    flex-direction: column;
    background: transparent;
    transition: background 0.3s, backdrop-filter 0.3s;
}

.header-nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.header-nav.scrolled .nav-links li a,
.header-nav.scrolled .header-social-icon,
.header-nav.scrolled .header-top-btn,
.header-nav.scrolled .header-top-btn-outline {
    color: #1a1a1a;
    text-shadow: none;
    border-color: rgba(0, 0, 0, 0.15);
}

.header-nav.scrolled .header-top-btn-filled {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
}

.header-nav.scrolled .header-top-btn-filled:hover {
    background: #000;
    border-color: #000;
}

.header-nav.scrolled .logo-wrapper {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

/* Logo yazı (ortada, görsel yerine) - kompakt */
a.header-logo-text {
    font-size: 28px;
    font-weight: 700;
    color: white;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

a.header-logo-text:hover {
    color: white;
    opacity: 0.95;
}

.header-nav.scrolled a.header-logo-text {
    color: #1a1a1a;
    text-shadow: none;
}

.header-nav.scrolled a.header-logo-text:hover {
    color: #000;
}

/* Üst ince bar - kompakt */
.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 50px;
    border-bottom: 1px solid transparent; /* Banner üzerindeyken çizgi gizli */
    min-height: 44px;
}

.header-nav.scrolled .header-top {
    border-bottom-color: rgba(0, 0, 0, 0.08); /* Scroll'da üst çizgi görünsün */
}

.header-top-left {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.header-top-center {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-top-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
}

/* Sosyal ikonlar */
.header-social {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-social-icon {
    color: rgba(255, 255, 255, 0.95);
    font-size: 18px;
    transition: color 0.25s, opacity 0.25s;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.header-social-icon:hover {
    color: #fff;
    opacity: 0.95;
}

/* Üst bar: Login / Sign Up butonları - kompakt */
.header-top-btn {
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.header-top-btn-outline {
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.header-top-btn-outline:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.6);
}

.header-top-btn-filled {
    color: #1a1a1a;
    background: #fff;
    border: 1px solid #fff;
}

.header-top-btn-filled:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Logo (üst bar ve mobil) */
.logo-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    display: inline-block;
}

.logo-link:hover {
    opacity: 0.92;
}

.logo-wrapper {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.logo-link:hover .logo-wrapper {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.logo-image {
    height: 50px;
    width: auto;
    display: block;
    object-fit: contain;
}

/* Alt bar: sadece linkler - kompakt */
.header-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 50px 10px;
    position: relative;
}

.header-bottom-mobile-logo {
    display: none;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    text-decoration: none;
    color: white;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-links li a.active {
    color: white;
    font-weight: 600;
}

.nav-links li a:hover {
    color: rgba(255, 255, 255, 0.9);
}

.header-nav.scrolled .nav-links li a:hover {
    color: #000;
}

/* Eski sınıflar (login/register sayfaları vb. uyumluluk) */
.logo-container { display: flex; align-items: center; gap: 12px; }
.logo-text { font-size: 24px; font-weight: 700; color: white; letter-spacing: -0.5px; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.header-actions { display: flex; align-items: center; gap: 15px; }
.user-icon-link { text-decoration: none; color: white; font-size: 22px; width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); transition: all 0.3s; cursor: pointer; }
.user-icon-link:hover { background: rgba(255,255,255,0.2); }
.signup-link { text-decoration: none; color: white; font-size: 16px; font-weight: 500; text-shadow: 0 2px 10px rgba(0,0,0,0.3); transition: color 0.3s; }
.signup-link:hover { color: #fff; }
.login-btn { background: #000; border: 1px solid rgba(255,255,255,0.3); padding: 8px 20px; border-radius: 50px; color: white; font-size: 16px; font-weight: 500; cursor: pointer; text-decoration: none; display: inline-block; transition: all 0.3s; }
.login-btn:hover { background: #1a1a1a; transform: translateY(-1px); }

/* Main Banner Content */
.banner-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px 40px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.banner-headline {
    font-size: 64px;
    font-weight: 600;
    color: white;
    line-height: 1.2;
    margin-bottom: 20px;
    margin-top: -20px;
    max-width: 900px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.banner-subheading {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    max-width: 600px;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Search Widget */
.search-widget {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.search-form-container {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 25px 35px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    width: 100%;
}

.search-field {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 0 18px;
    position: relative;
    min-width: 0;
}

.search-field:first-child {
    padding-left: 0;
}

.search-field:last-of-type {
    padding-right: 0;
}

.search-field-icon {
    color: white;
    font-size: 20px;
    flex-shrink: 0;
    display: block;
    align-self: center;
}

.search-field-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 0;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 0;
    align-self: flex-start;
}

.search-field-label {
    color: white;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    padding: 0;
    display: block;
    white-space: nowrap;
    height: 19.6px;
    display: flex;
    align-items: center;
}

.search-field-input {
    border: none;
    outline: none;
    font-size: 16px;
    color: white;
    background: transparent;
    padding: 0;
    width: 100%;
    margin: 0;
}

.search-field-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

/* Traveller: native okları kaldır, + − sağda (aralarında boşluk) */
.traveller-control { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    width: 100%;
}
.traveller-control .traveller-input {
    -moz-appearance: textfield;
    min-width: 11em; 
    width: auto; 
    flex: 1; 
    text-align: left; 
    padding: 0 6px;
    margin: 0;
}
.traveller-control .traveller-input::-webkit-outer-spin-button,
.traveller-control .traveller-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.traveller-btns {
    display: flex; flex-direction: row; gap: 8px; flex-shrink: 0;
    opacity: 0; pointer-events: none; transition: opacity 0.2s ease;
}
.traveller-control:hover .traveller-btns,
.traveller-control:focus-within .traveller-btns { opacity: 1; pointer-events: auto; }
.traveller-btn {
    width: 24px; height: 24px; padding: 0; border: none; border-radius: 6px;
    background: rgba(255,255,255,0.3); color: white; font-size: 14px; font-weight: 600;
    line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: background 0.2s, transform 0.12s;
    flex-shrink: 0;
}
.traveller-btn:hover { background: rgba(255,255,255,0.5); transform: scale(1.06); }
.traveller-btn:active { transform: scale(0.97); }

.search-btn {
    background: white;
    color: black;
    border: none;
    padding: 14px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-left: 15px;
    white-space: nowrap;
    align-self: center;
    height: fit-content;
}

.search-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Hamburger Menu Button - Simplified Icon Only */
.hamburger-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
    transition: transform 0.3s ease;
}

.hamburger-menu-btn:hover {
    transform: scale(1.1);
}

.hamburger-line {
    width: 100%;
    height: 2.5px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.header-nav.scrolled .hamburger-line {
    background: #1a1a1a;
}

.hamburger-menu-btn.active .hamburger-line {
    background: #1a1a1a;
}

.hamburger-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.hamburger-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu – yukarıdan aşağıya açılma, sayfanın tamamını kaplamaz */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 85vh;
    background: #ffffff;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-100%);
    transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1), box-shadow 0.35s ease;
    z-index: 1000;
    padding: 100px 0 30px 0;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    pointer-events: none;
}

.mobile-menu.active {
    transform: translateY(0);
    pointer-events: auto;
}

.mobile-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.03) 0%, transparent 100%);
    pointer-events: none;
}

.mobile-nav-links {
    list-style: none;
    padding: 0 30px;
    margin: 0 0 30px 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mobile-nav-link {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 500;
    padding: 18px 20px;
    border-radius: 12px;
    border-bottom: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.mobile-nav-link i {
    font-size: 20px;
    color: #000000;
    transition: all 0.3s ease;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: #000000;
    border-radius: 0 4px 4px 0;
    transition: height 0.3s ease;
}

/* Sadece hover destekleyen cihazlarda hafif vurgu; dokunmatikte 'seçili' görünüm yok */
@media (hover: hover) {
    .mobile-nav-link:hover {
        color: #000000;
        background: rgba(0, 0, 0, 0.06);
    }
    .mobile-nav-link:hover i {
        color: #000000;
    }
}

/* Profile Pages – collapsible, only when logged in */
.mobile-profile-pages-section {
    padding: 0 30px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-profile-pages-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border: none;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.06);
    color: #1a1a1a;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    font-family: inherit;
}

.mobile-profile-pages-toggle:hover {
    background: rgba(0, 0, 0, 0.1);
}

.mobile-profile-pages-chevron {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.mobile-profile-pages-section.expanded .mobile-profile-pages-chevron {
    transform: rotate(180deg);
}

.mobile-profile-pages-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.3s ease, padding 0.3s ease;
}

.mobile-profile-pages-section.expanded .mobile-profile-pages-links {
    max-height: 320px;
    opacity: 1;
    padding-top: 10px;
}

.mobile-profile-link {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 500;
    padding: 14px 18px;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.mobile-profile-link i {
    font-size: 18px;
    color: #1a1a1a;
}

.mobile-profile-link:hover {
    background: rgba(0, 0, 0, 0.08);
    color: #000;
    transform: translateX(4px);
}

.mobile-menu-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: auto;
    padding: 25px 30px 0 30px;
    border-top: 2px solid rgba(0, 0, 0, 0.15);
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.02) 100%);
}

.mobile-signup-link {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    padding: 15px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.mobile-signup-link i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.mobile-signup-link:hover {
    color: #000000;
    background: rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.mobile-signup-link:hover i {
    transform: scale(1.15);
}

.mobile-login-btn {
    background: #000000;
    border: none;
    padding: 15px 24px;
    border-radius: 12px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.mobile-login-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.mobile-login-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.mobile-login-btn:hover::before {
    left: 100%;
}

.mobile-login-btn:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.mobile-login-btn:hover i {
    transform: translateX(3px);
}

/* Mobile Menu Overlay – sade fade, menü ile uyumlu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.28s ease, visibility 0.28s ease;
    z-index: 999;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive */
@media (max-width: 768px) {
    .header-top {
        display: none;
    }

    .header-bottom {
        padding: 10px 20px;
        justify-content: center;
        position: relative;
    }

    .header-bottom-mobile-logo {
        display: flex;
        justify-content: center;
    }

    .header-bottom .hamburger-menu-btn {
        display: flex;
        position: absolute;
        left: 20px;
    }

    .logo-wrapper {
        padding: 6px 10px;
        border-radius: 10px;
    }

    .header-bottom-mobile-logo .header-logo-text {
        font-size: 26px;
    }

    .nav-links {
        display: none;
    }

    .hamburger-menu-btn {
        display: flex;
    }

    .banner-container {
        padding-top: 90px;
    }

    .banner-headline {
        font-size: 36px;
    }

    .banner-subheading {
        font-size: 16px;
    }

    .search-form-container {
        flex-direction: column;
        gap: 15px;
        padding: 20px 20px;
        border-radius: 16px;
    }

    .search-field {
        border-right: none;
        border-bottom: 1px solid white;
        padding: 0 0 15px 0;
        width: 100%;
        flex-direction: row;
    }

    .search-field:last-of-type {
        border-bottom: none;
        padding-bottom: 0;
    }

    .search-btn {
        width: 100%;
        justify-content: center;
        margin-left: 0;
        margin-top: 10px;
    }
}

/* Destinations Section */
.destinations-section {
    background: white;
    padding: 60px 30px;
    width: 100%;
}

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

.destinations-header {
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
}

.destinations-header-left {
    flex: 1;
}

.destinations-label {
    font-size: 16px;
    font-weight: 500;
    color: #999;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.destinations-title {
    font-size: 42px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.2;
}

.destinations-header-right {
    flex: 1;
    max-width: 500px;
    padding-top: 20px;
}

.destinations-description {
    font-size: 18px;
    font-weight: 400;
    color: #999;
    line-height: 1.6;
    margin: 0;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.destination-card {
    aspect-ratio: 3 / 2.5;
    min-height: 200px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

/* Card Image Slider */
.card-image-slider {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.card-slider-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.card-slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.card-slide {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

/* Slider Dots - Top Right */
.card-slider-dots {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    display: flex;
    gap: 6px;
    align-items: center;
}

.card-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.card-slider-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.card-slider-dot.active {
    background: rgba(255, 255, 255, 1);
    width: 10px;
    height: 10px;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

.card-days-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 6px 14px;
    color: white;
    font-size: 12px;
    font-weight: 600;
    z-index: 5;
    white-space: nowrap;
}

.card-overlay {
    position: absolute;
    bottom: 12px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 8px;
}

.card-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 12px 16px;
    border-radius: 20px;
    width: 100%;
    max-width: 100%;
}

.card-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.card-date {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.card-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: white;
    line-height: 1.2;
}

.card-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    gap: 0;
}

.card-price {
    font-size: 20px;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 6px;
}

.card-view-details {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.5);
    text-underline-offset: 3px;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
}

.card-view-details:hover {
    color: white;
    text-decoration-color: white;
    text-decoration-thickness: 1.5px;
}

.all-tours-btn-wrapper {
    text-align: center;
    margin-top: 30px;
}

.all-tours-btn {
    background: #1a1a1a;
    color: white;
    border: none;
    padding: 14px 40px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    font-family: 'Poppins', sans-serif;
}

.all-tours-btn:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Responsive for Destinations */
@media (max-width: 1400px) {
    .container {
        max-width: 1200px;
        padding: 0 30px;
    }
    
    .destinations-grid {
        gap: 30px;
    }
    
    .destination-card {
        min-height: 150px;
    }
}

@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 30px;
    }
    
    .destinations-grid {
        gap: 30px;
    }
    
    .destination-card {
        min-height: 140px;
    }
}

@media (max-width: 1024px) {
    .destinations-section {
        padding: 60px 30px;
    }
    
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .destinations-title {
        font-size: 46px;
    }

    .destinations-header-right {
        max-width: 400px;
    }

    .destinations-description {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .destinations-section {
        padding: 40px 20px;
    }
    
    .container {
        padding: 0 15px;
    }

    .destinations-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .destinations-header-right {
        max-width: 100%;
        padding-top: 0;
    }

    .destinations-title {
        font-size: 38px;
    }

    .destinations-description {
        font-size: 16px;
    }

    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .destination-card {
        min-height: 200px;
    }

    .card-overlay {
        padding: 0 15px;
    }
    
    .card-slider-dots {
        top: 12px;
        right: 12px;
        gap: 5px;
    }
    
    .card-slider-dot {
        width: 7px;
        height: 7px;
    }
    
    .card-slider-dot.active {
        width: 9px;
        height: 9px;
    }
    
    .card-content {
        padding: 18px 22px;
        gap: 15px;
    }

    .card-title {
        font-size: 20px;
    }

    .card-price {
        font-size: 22px;
    }

    .card-view-details {
        font-size: 10px;
    }

    .all-tours-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .destinations-section {
        padding: 50px 15px;
    }
    
    .destinations-title {
        font-size: 32px;
    }
    
    .destinations-grid {
        gap: 20px;
    }
    
    .destination-card {
        min-height: 180px;
    }
    
    .card-content {
        padding: 12px 18px;
    }
    
    .card-title {
        font-size: 16px;
    }
    
    .card-price {
        font-size: 18px;
    }

    .card-view-details {
        font-size: 9px;
    }

    .all-tours-btn {
        padding: 12px 28px;
        font-size: 14px;
    }
}

/* Why Choose Us Section */
.why-choose-section {
    background: white;
    padding: 60px 30px;
    width: 100%;
    box-sizing: border-box;
}

.why-choose-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    align-items: stretch;
    width: 100%;
    box-sizing: border-box;
    padding: 0 30px;
}

@media (min-width: 1600px) {
    .why-choose-container {
        max-width: 1400px;
        gap: 50px;
    }
}

/* Left Side - Image */
.why-choose-image-wrapper {
    position: relative;
}

.why-choose-image {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.why-choose-search-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.why-choose-search-bar {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.why-choose-search-field {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
}

.why-choose-search-field i:first-child {
    font-size: 18px;
}

.why-choose-search-field i:last-child {
    font-size: 14px;
    margin-left: auto;
}

.why-choose-search-field-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 0;
}

.why-choose-search-label {
    font-size: 12px;
    opacity: 0.9;
}

.why-choose-search-input {
    background: transparent;
    border: none;
    color: white;
    font-size: 14px;
    font-weight: 500;
    outline: none;
    width: 100%;
}

.why-choose-search-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.why-choose-search-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.3);
}

.why-choose-search-btn {
    background: white;
    color: black;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s;
}

.why-choose-search-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.why-choose-search-text {
    color: white;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* Right Side - Content */
.why-choose-content-wrapper {
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.why-choose-header {
    margin-bottom: 20px;
}

.why-choose-label {
    font-size: 16px;
    font-weight: 500;
    color: #999;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.why-choose-title {
    font-size: 36px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.2;
}

.why-choose-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.why-choose-card {
    background: white;
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.why-choose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.why-choose-icon {
    font-size: 28px;
    color: #1a1a1a;
    display: flex;
    align-items: flex-start;
    flex-shrink: 0;
    margin-top: 2px;
}

.why-choose-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.why-choose-card-title {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.why-choose-card-description {
    font-size: 14px;
    font-weight: 400;
    color: #999;
    line-height: 1.5;
    margin: 0;
}

/* Responsive for Why Choose Section */
@media (max-width: 1400px) {
    .why-choose-section {
        padding: 50px 25px;
    }
    
    .why-choose-container {
        max-width: 1200px;
        gap: 35px;
        padding: 0 30px;
    }
    
    .why-choose-image {
        min-height: 450px;
    }
    
    .why-choose-title {
        font-size: 38px;
    }
    
    .why-choose-header {
        margin-bottom: 35px;
    }
    
    .why-choose-card {
        padding: 22px;
    }
}

@media (max-width: 1200px) {
    .why-choose-section {
        padding: 50px 20px;
    }
    
    .why-choose-container {
        max-width: 100%;
        padding: 0 20px;
        gap: 30px;
    }
    
    .why-choose-image {
        min-height: 420px;
    }
    
    .why-choose-title {
        font-size: 36px;
    }
    
    .why-choose-header {
        margin-bottom: 30px;
    }
    
    .why-choose-card {
        padding: 20px;
    }
}

@media (max-width: 968px) {
    .why-choose-section {
        padding: 50px 20px;
    }
    
    .why-choose-container {
        grid-template-columns: 1fr;
        gap: 35px;
        align-items: start;
        padding: 0 20px;
    }
    
    .why-choose-image-wrapper {
        order: 2;
    }
    
    .why-choose-content-wrapper {
        order: 1;
        height: auto;
    }
    
    .why-choose-image {
        min-height: 400px;
    }
    
    .why-choose-search-bar {
        display: none;
    }
    
    .why-choose-search-wrapper {
        padding: 25px;
    }
    
    .why-choose-search-text {
        text-align: center;
    }
    
    .why-choose-title {
        font-size: 34px;
    }
    
    .why-choose-header {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 40px 20px;
    }
    
    .why-choose-container {
        gap: 30px;
        padding: 0 5px;
    }
    
    .why-choose-image-wrapper {
        order: 2;
    }
    
    .why-choose-content-wrapper {
        order: 1;
    }
    
    .why-choose-header {
        margin-bottom: 25px;
    }
    
    .why-choose-title {
        font-size: 30px;
    }
    
    .why-choose-label {
        font-size: 14px;
    }
    
    .why-choose-image {
        min-height: 380px;
    }
    
    .why-choose-search-bar {
        display: none;
    }
    
    .why-choose-search-wrapper {
        padding: 20px;
    }
    
    .why-choose-search-text {
        text-align: center;
        font-size: 13px;
    }
    
    .why-choose-cards {
        gap: 16px;
    }
    
    .why-choose-card {
        padding: 20px;
        gap: 16px;
    }
    
    .why-choose-icon {
        font-size: 26px;
    }
    
    .why-choose-card-title {
        font-size: 17px;
        margin-bottom: 8px;
    }
    
    .why-choose-card-description {
        font-size: 14px;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .why-choose-section {
        padding: 35px 15px;
    }
    
    .why-choose-container {
        gap: 25px;
        padding: 0;
    }
    
    .why-choose-image-wrapper {
        order: 2;
    }
    
    .why-choose-content-wrapper {
        order: 1;
    }
    
    .why-choose-title {
        font-size: 26px;
    }
    
    .why-choose-label {
        font-size: 13px;
    }
    
    .why-choose-image {
        min-height: 320px;
        border-radius: 16px;
    }
    
    .why-choose-search-bar {
        display: none;
    }
    
    .why-choose-search-wrapper {
        padding: 18px;
    }
    
    .why-choose-search-text {
        text-align: center;
        font-size: 12px;
        line-height: 1.5;
    }
    
    .why-choose-header {
        margin-bottom: 20px;
    }
    
    .why-choose-cards {
        gap: 15px;
    }
    
    .why-choose-card {
        padding: 18px;
        gap: 14px;
    }
    
    .why-choose-icon {
        font-size: 22px;
    }
    
    .why-choose-card-title {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .why-choose-card-description {
        font-size: 13px;
        line-height: 1.4;
    }
}

@media (max-width: 360px) {
    .why-choose-section {
        padding: 30px 10px;
    }
    
    .why-choose-title {
        font-size: 24px;
    }
    
    .why-choose-image {
        min-height: 300px;
    }
    
    .why-choose-search-wrapper {
        padding: 15px;
    }
    
    .why-choose-card {
        padding: 15px;
    }
    
    .why-choose-icon {
        font-size: 20px;
    }
    
    .why-choose-card-title {
        font-size: 15px;
    }
    
    .why-choose-card-description {
        font-size: 12px;
    }
}

/* YouTube Videos Section */
.youtube-videos-section {
    background: white;
    padding: 60px 30px;
    width: 100%;
    box-sizing: border-box;
}

.youtube-videos-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 0 30px;
}

.youtube-videos-header {
    text-align: center;
    margin-bottom: 50px;
}

.youtube-videos-label {
    font-size: 16px;
    font-weight: 500;
    color: #999;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.youtube-videos-title {
    font-size: 36px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.youtube-videos-description {
    font-size: 16px;
    font-weight: 400;
    color: #999;
    line-height: 1.5;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.youtube-slider-wrapper {
    position: relative;
    width: 100%;
}

.youtube-slider-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    overflow: hidden;
    width: 100%;
    padding: 40px 0;
}

.youtube-slider-viewport {
    flex: 1;
    overflow: visible;
    position: relative;
}

.youtube-slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* Desktop: 3 slides visible */
.youtube-slide {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
    box-sizing: border-box;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 33.333%;
    opacity: 0.6;
    transform: scale(0.85);
    z-index: 1;
}

/* Center slide (active) - larger and in front */
.youtube-slide.active {
    opacity: 1;
    transform: scale(1.1);
    z-index: 10;
}

/* Side slides */
.youtube-slide.left-slide,
.youtube-slide.right-slide {
    opacity: 0.7;
    transform: scale(0.9);
    z-index: 2;
}

.youtube-video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    background: #000;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.youtube-slide.active .youtube-video-wrapper {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.youtube-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

.youtube-slider-btn {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #e0e0e0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #1a1a1a;
    font-size: 24px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 20;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.youtube-slider-btn:hover {
    background: #1a1a1a;
    color: white;
    border-color: #1a1a1a;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.youtube-slider-btn:active {
    transform: scale(0.95);
}

.youtube-slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
}

.youtube-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.youtube-slider-dot:hover {
    background: #999;
    transform: scale(1.2);
}

.youtube-slider-dot.active {
    background: #1a1a1a;
    width: 14px;
    height: 14px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

/* Responsive for YouTube Videos Section */
@media (max-width: 1400px) {
    .youtube-videos-container {
        max-width: 1200px;
        padding: 0 30px;
    }
}

@media (max-width: 1200px) {
    .youtube-videos-container {
        max-width: 100%;
        padding: 0 30px;
    }
}

@media (max-width: 1024px) {
    .youtube-videos-section {
        padding: 50px 30px;
    }
    
    .youtube-videos-header {
        margin-bottom: 40px;
    }
    
    .youtube-videos-title {
        font-size: 32px;
    }
    
    .youtube-videos-description {
        font-size: 15px;
    }
}

/* Mobile: Single slide view */
@media (max-width: 768px) {
    .youtube-videos-section {
        padding: 40px 20px;
    }
    
    .youtube-videos-container {
        padding: 0 15px;
    }

    .youtube-videos-header {
        margin-bottom: 30px;
    }

    .youtube-videos-title {
        font-size: 28px;
    }

    .youtube-videos-description {
        font-size: 14px;
    }

    .youtube-slider-container {
        gap: 10px;
        padding: 10px 0;
    }

    .youtube-slider-viewport {
        overflow: hidden;
    }

    /* Mobile: Each slide takes full width */
    .youtube-slide {
        width: 100%;
        opacity: 1;
        transform: scale(1);
        padding: 0 5px;
    }

    .youtube-slide.active {
        transform: scale(1);
    }

    .youtube-slide.left-slide,
    .youtube-slide.right-slide {
        opacity: 1;
        transform: scale(1);
    }

    .youtube-video-wrapper {
        box-shadow: none;
    }

    .youtube-slide.active .youtube-video-wrapper {
        box-shadow: none;
    }

    .youtube-slider-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
        background: rgba(255, 255, 255, 0.95);
    }

    .youtube-slider-dots {
        margin-top: 20px;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .youtube-videos-section {
        padding: 30px 15px;
    }
    
    .youtube-videos-header {
        margin-bottom: 25px;
    }
    
    .youtube-videos-title {
        font-size: 24px;
    }
    
    .youtube-videos-label {
        font-size: 13px;
    }
    
    .youtube-videos-description {
        font-size: 14px;
    }

    .youtube-slider-container {
        gap: 8px;
    }

    .youtube-slider-btn {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .youtube-slider-dots {
        margin-top: 18px;
        gap: 6px;
    }

    .youtube-slider-dot {
        width: 10px;
        height: 10px;
    }

    .youtube-slider-dot.active {
        width: 12px;
        height: 12px;
    }
}

/* Newsletter Signup Section */
.newsletter-signup-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 30px;
    width: 100%;
    box-sizing: border-box;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-signup-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.newsletter-signup-section > * {
    position: relative;
    z-index: 2;
}

.newsletter-signup-container {
    position: relative;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
}

.newsletter-signup-card {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.newsletter-signup-header {
    background: transparent;
    padding: 25px 35px;
    text-align: center;
    position: relative;
}

.newsletter-signup-header::after {
    display: none;
}

.newsletter-signup-title {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin: 0;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.newsletter-signup-content {
    padding: 30px 35px;
    text-align: center;
    background: transparent;
}

.newsletter-signup-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 30px 0;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.newsletter-signup-form {
    width: 100%;
}

.newsletter-signup-input-wrapper {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.newsletter-signup-input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
}

.newsletter-signup-input:focus {
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.35);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.newsletter-signup-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-signup-btn {
    padding: 14px 30px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.newsletter-signup-btn:hover {
    background: rgba(255, 255, 255, 0.35);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.newsletter-signup-btn:active {
    transform: translateY(0);
}

.newsletter-signup-message {
    display: none;
    margin-top: 12px;
    font-size: 14px;
    text-align: center;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.newsletter-signup-message.success {
    color: #28a745;
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.newsletter-signup-message.error {
    color: #dc3545;
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
}

/* Book a Tour Section - Old styles kept for reference */
.book-tour-section {
    background: white;
    padding: 60px 30px;
    width: 100%;
    box-sizing: border-box;
}

.book-tour-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 0 30px;
}

.book-tour-header {
    text-align: center;
    margin-bottom: 20px;
}

.book-tour-title {
    font-size: 32px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.book-tour-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 6px 0;
    line-height: 1.3;
}

.book-tour-group-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.2;
}

.book-tour-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.book-tour-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    max-width: 650px;
    width: 100%;
}

.book-tour-card-title {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.book-tour-card-description {
    font-size: 14px;
    font-weight: 400;
    color: #666;
    line-height: 1.4;
    margin: 0 0 18px 0;
}

.book-tour-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.book-tour-benefit-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 500;
    color: #1a1a1a;
}

.book-tour-benefit-item i {
    color: #000000;
    font-size: 15px;
    flex-shrink: 0;
}

.book-tour-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
}

.required {
    color: #e74c3c;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 9px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    color: #1a1a1a;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #000000;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 85px;
}

.phone-input-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.phone-input-wrapper:focus-within {
    border-color: #000000;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.phone-prefix {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 9px 12px;
    background: #f8f9fa;
    border-right: 1px solid #ddd;
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    flex-shrink: 0;
}

.flag-icon {
    font-size: 16px;
}

.country-code {
    font-weight: 600;
}

.phone-input-wrapper input {
    border: none;
    padding: 9px 12px;
    flex: 1;
}

.phone-input-wrapper input:focus {
    outline: none;
    box-shadow: none;
}

.book-tour-submit-btn {
    background: #1a1a1a;
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: center;
    font-family: 'Poppins', sans-serif;
    margin-top: 3px;
}

.book-tour-submit-btn:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.book-tour-submit-btn:active {
    transform: translateY(0);
}

/* Map Section */
.map-section {
    width: 100%;
    padding: 60px 30px;
    background: white;
}

.map-wrapper {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.map-iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

/* Responsive for Map Section */
@media (max-width: 1024px) {
    .map-section {
        padding: 50px 30px;
    }

    .map-iframe {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .map-section {
        padding: 40px 20px;
    }

    .map-iframe {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .map-section {
        padding: 30px 15px;
    }

    .map-iframe {
        height: 300px;
    }

    .map-wrapper {
        border-radius: 12px;
    }
}

/* Responsive for Book a Tour Section */
@media (max-width: 1024px) {
    .book-tour-section {
        padding: 50px 30px;
    }
    
    .book-tour-header {
        margin-bottom: 18px;
    }
    
    .book-tour-title {
        font-size: 28px;
    }
    
    .book-tour-subtitle {
        font-size: 15px;
    }
    
    .book-tour-group-title {
        font-size: 16px;
    }
    
    .book-tour-card {
        padding: 22px;
        max-width: 600px;
    }
    
    .book-tour-card-title {
        font-size: 20px;
    }
    
    .book-tour-card-description {
        font-size: 13px;
        margin-bottom: 16px;
    }
    
    .book-tour-benefits {
        margin-bottom: 18px;
    }
    
    .book-tour-form {
        gap: 12px;
    }
}

@media (max-width: 1200px) {
    .newsletter-signup-section {
        padding: 70px 25px;
    }

    .newsletter-signup-container {
        max-width: 480px;
    }

    .newsletter-signup-title {
        font-size: 32px;
    }

    .newsletter-signup-content {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .newsletter-signup-section {
        padding: 60px 20px;
        min-height: 400px;
        background-attachment: scroll;
    }

    .newsletter-signup-container {
        max-width: 85%;
    }

    .newsletter-signup-card {
        border-radius: 16px;
    }

    .newsletter-signup-header {
        padding: 20px 25px;
    }

    .newsletter-signup-title {
        font-size: 24px;
    }

    .newsletter-signup-content {
        padding: 25px;
    }

    .newsletter-signup-description {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .newsletter-signup-input-wrapper {
        flex-direction: column;
        gap: 12px;
    }

    .newsletter-signup-input {
        width: 100%;
        padding: 12px 18px;
        font-size: 14px;
    }

    .newsletter-signup-btn {
        width: 100%;
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .newsletter-signup-message {
        font-size: 13px;
        margin-top: 10px;
        padding: 6px 10px;
    }

    .book-tour-section {
        padding: 28px 20px;
    }
    
    .book-tour-container {
        padding: 0 15px;
    }

    .book-tour-header {
        margin-bottom: 18px;
    }

    .book-tour-title {
        font-size: 24px;
    }

    .book-tour-subtitle {
        font-size: 14px;
    }

    .book-tour-group-title {
        font-size: 15px;
    }

    .book-tour-card {
        padding: 20px 18px;
    }

    .book-tour-card-title {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .book-tour-card-description {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .book-tour-benefits {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-bottom: 18px;
    }

    .book-tour-benefit-item {
        font-size: 12px;
    }
    
    .book-tour-form {
        gap: 12px;
    }
}

@media (max-width: 480px) {
    /* Newsletter Signup Responsive */
    .newsletter-signup-section {
        padding: 50px 15px;
        min-height: 350px;
        background-attachment: scroll;
    }

    .newsletter-signup-container {
        max-width: 88%;
    }

    .newsletter-signup-card {
        border-radius: 14px;
    }

    .newsletter-signup-header {
        padding: 18px 20px;
    }

    .newsletter-signup-title {
        font-size: 22px;
    }

    .newsletter-signup-content {
        padding: 20px;
    }

    .newsletter-signup-description {
        font-size: 13px;
        margin-bottom: 18px;
    }

    .newsletter-signup-input-wrapper {
        flex-direction: column;
        gap: 10px;
    }

    .newsletter-signup-input {
        width: 100%;
        padding: 10px 16px;
        font-size: 13px;
    }

    .newsletter-signup-btn {
        width: 100%;
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .newsletter-signup-message {
        font-size: 12px;
        margin-top: 8px;
        padding: 5px 8px;
    }

    .book-tour-section {
        padding: 25px 15px;
    }

    .book-tour-header {
        margin-bottom: 15px;
    }
    
    .book-tour-title {
        font-size: 22px;
    }
    
    .book-tour-subtitle {
        font-size: 13px;
    }
    
    .book-tour-group-title {
        font-size: 14px;
    }
    
    .book-tour-card {
        padding: 18px 15px;
    }
    
    .book-tour-card-title {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .book-tour-card-description {
        font-size: 12px;
        margin-bottom: 14px;
    }

    .book-tour-benefits {
        margin-bottom: 16px;
        gap: 7px;
    }

    .book-tour-benefit-item {
        font-size: 11px;
    }
    
    .book-tour-benefit-item i {
        font-size: 13px;
    }

    .book-tour-form {
        gap: 12px;
    }

    .form-group {
        gap: 5px;
    }

    .form-group label {
        font-size: 12px;
    }

    .form-group input,
    .form-group textarea {
        padding: 8px 11px;
        font-size: 13px;
    }
    
    .form-group textarea {
        min-height: 80px;
    }

    .phone-prefix {
        padding: 8px 11px;
        font-size: 12px;
    }
    
    .phone-input-wrapper input {
        padding: 8px 11px;
    }

    .book-tour-submit-btn {
        padding: 10px 28px;
        font-size: 13px;
        width: 100%;
    }
}

/* Group Tours Section */
.group-tours-section {
    position: relative;
    width: 100%;
    padding: 100px 30px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    box-sizing: border-box;
    overflow: hidden;
}

.group-tours-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.group-tours-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 0 80px;
}

.group-tours-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: stretch;
}

.group-tours-destinations-wrapper {
    margin-left: 120px;
}

/* Left Side - Text Content */
.group-tours-text-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.group-tours-title {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin: 0;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.group-tours-description {
    font-size: 20px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin: 0;
}

.group-tours-see-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    color: white;
    font-size: 14px;
    font-weight: 600;
    margin-top: 15px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    transition: all 0.3s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.group-tours-see-more-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: white;
}

.group-tours-see-more-text {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.group-tours-see-more-icon {
    font-size: 16px;
    transition: transform 0.3s ease;
    transform: rotate(45deg);
    display: inline-block;
}

.group-tours-see-more-btn:hover .group-tours-see-more-icon {
    transform: rotate(45deg) translateX(8px) translateY(-2px);
}

.group-tours-see-more-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

/* Desktop See More Button - Show on desktop, hide on mobile */
.group-tours-see-more-desktop {
    display: flex;
    justify-content: flex-start;
    margin-top: 25px;
}

@media (max-width: 768px) {
    .group-tours-see-more-desktop {
        display: none;
    }
}

/* Mobile See More Button - Hide on desktop, show on mobile */
.group-tours-see-more-mobile {
    display: none;
}

@media (max-width: 768px) {
    .group-tours-see-more-mobile {
        display: flex;
        margin-top: 20px;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .group-tours-see-more-mobile {
        margin-top: 15px;
        margin-bottom: 10px;
    }
}

/* Right Side - Destination Slider */

.group-tours-slider-container {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
    padding-bottom: 20px;
    padding-left: 35px;
}

/* Desktop: Add padding for dots at bottom right */
@media (min-width: 769px) {
    .group-tours-slider-container {
        padding-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .group-tours-slider-container {
        padding-left: 0;
        padding-bottom: 20px;
    }
}

.group-tours-slider-viewport {
    flex: 1;
    overflow: hidden;
    height: 100%;
}

/* Mobile: Show side cards partially */
@media (max-width: 768px) {
    .group-tours-slider-viewport {
        overflow: visible;
    }
}

.group-tours-slider-track {
    display: flex;
    gap: 25px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    height: 100%;
    align-items: stretch;
}

@media (max-width: 768px) {
    .group-tours-slider-track {
        gap: 15px;
        align-items: center;
    }
}

.group-tours-destination-card {
    flex-shrink: 0;
    width: calc(48% - 10px);
    background: transparent;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: none;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100%;
}

/* Mobile: Center-focused slider */
@media (max-width: 768px) {
    .group-tours-destination-card {
        width: 75%;
        transform: scale(0.85);
        opacity: 0.7;
        transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .group-tours-destination-card.active {
        transform: scale(1);
        opacity: 1;
        z-index: 10;
    }
}

.group-tours-destination-card:hover {
    /* Hover lift effect removed */
}

.group-tours-destination-image {
    width: 100%;
    height: 100%;
    flex: 1;
    overflow: hidden;
    position: relative;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    min-height: 500px;
}

.group-tours-destination-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    pointer-events: none;
}

.group-tours-destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.group-tours-destination-placeholder {
    width: 100%;
    height: 100%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 48px;
}

.group-tours-destination-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    background: transparent;
}

.group-tours-destination-name {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin: 0;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Slider Dots Navigation */
.group-tours-slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding-top: 10px;
    z-index: 10;
    position: relative;
}

/* Desktop: Position dots at bottom right (where buttons were) */
@media (min-width: 769px) {
    .group-tours-slider-dots {
        position: absolute;
        bottom: 0;
        right: 0;
        margin-top: 0;
        padding-top: 0;
        padding-bottom: 0;
        justify-content: flex-end;
        gap: 10px;
    }
    
    .group-tours-slider-dot {
        width: 10px;
        height: 10px;
    }
    
    .group-tours-slider-dot.active {
        width: 30px;
        height: 10px;
    }
}

.group-tours-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
    flex-shrink: 0;
}

.group-tours-slider-dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.group-tours-slider-dot.active {
    width: 24px;
    height: 8px;
    background: rgba(255, 255, 255, 1);
    border-radius: 4px;
}

/* Responsive for Group Tours */
@media (max-width: 1400px) {
    .group-tours-container {
        max-width: 1200px;
        padding: 0 60px;
    }
    
    .group-tours-content-wrapper {
        gap: 70px;
    }
    
    .group-tours-destinations-wrapper {
        margin-left: 80px;
    }
}

@media (max-width: 1200px) {
    .group-tours-container {
        max-width: 100%;
        padding: 0 50px;
    }
    
    .group-tours-content-wrapper {
        gap: 60px;
    }
    
    .group-tours-destinations-wrapper {
        margin-left: 60px;
    }
    
    .group-tours-title {
        font-size: 42px;
    }
    
    .group-tours-description {
        font-size: 18px;
    }
}

@media (max-width: 1024px) {
    .group-tours-section {
        padding: 80px 30px;
    }
    
    .group-tours-container {
        padding: 0 40px;
    }
    
    .group-tours-content-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .group-tours-destinations-wrapper {
        margin-left: 20px;
    }
    
    .group-tours-title {
        font-size: 42px;
    }
    
    .group-tours-description {
        font-size: 18px;
    }
    
    .group-tours-destination-card {
        width: calc(50% - 10px);
    }
    
    .group-tours-destination-image {
        min-height: 400px;
    }
    
    .group-tours-slider-track {
        gap: 20px;
    }
}

/* Tablet specific adjustments */
@media (max-width: 900px) and (min-width: 769px) {
    .group-tours-destination-card {
        width: calc(55% - 10px);
    }
    
    .group-tours-slider-track {
        gap: 18px;
    }
}

@media (max-width: 768px) {
    .group-tours-section {
        padding: 60px 20px 80px 20px;
        background-attachment: scroll;
    }
    
    .group-tours-container {
        padding: 0 20px;
    }

    .group-tours-content-wrapper {
        gap: 40px;
    }
    
    .group-tours-destinations-wrapper {
        margin-left: 0;
    }

    .group-tours-title {
        font-size: 32px;
    }
    
    .group-tours-description {
        font-size: 16px;
    }
    
    .group-tours-see-more-btn {
        font-size: 13px;
        gap: 8px;
        padding: 8px 16px;
        justify-content: center;
    }
    
    .group-tours-see-more-icon {
        font-size: 14px;
    }
    
    .group-tours-slider-container {
        gap: 15px;
        padding-bottom: 10px;
        padding-left: 0;
    }
    
    .group-tours-slider-dots {
        margin-top: 15px;
        margin-bottom: 10px;
    }
    
    .group-tours-destination-card {
        width: 75%;
        transform: scale(0.85);
        opacity: 0.7;
    }
    
    .group-tours-destination-card.active {
        transform: scale(1);
        opacity: 1;
        z-index: 10;
    }
    
    .group-tours-slider-track {
        align-items: center;
        justify-content: flex-start;
    }
    
    .group-tours-destination-image {
        min-height: 350px;
    }
    
    .group-tours-destination-name {
        font-size: 24px;
    }
    
    .group-tours-destination-info {
        bottom: 15px;
        left: 15px;
        right: 15px;
    }
    
    .group-tours-slider-dots {
        margin-top: 15px;
        gap: 6px;
    }
    
    .group-tours-slider-dot {
        width: 6px;
        height: 6px;
    }
    
    .group-tours-slider-dot.active {
        width: 20px;
        height: 6px;
    }
}

@media (max-width: 480px) {
    .group-tours-section {
        padding: 50px 15px 70px 15px;
    }
    
    .group-tours-container {
        padding: 0 15px;
    }
    
    .group-tours-content-wrapper {
        gap: 30px;
    }
    
    .group-tours-destinations-wrapper {
        margin-left: 0;
    }
    
    .group-tours-title {
        font-size: 28px;
    }
    
    .group-tours-description {
        font-size: 15px;
    }
    
    .group-tours-see-more-btn {
        font-size: 12px;
        gap: 7px;
        padding: 8px 16px;
        justify-content: center;
    }
    
    .group-tours-see-more-icon {
        font-size: 13px;
    }
    
    .group-tours-slider-container {
        gap: 10px;
        padding-bottom: 10px;
        padding-left: 0;
    }
    
    .group-tours-slider-track {
        gap: 15px;
        align-items: center;
        justify-content: flex-start;
    }
    
    .group-tours-destination-card {
        width: 75%;
        transform: scale(0.85);
        opacity: 0.7;
    }
    
    .group-tours-destination-card.active {
        transform: scale(1);
        opacity: 1;
        z-index: 10;
    }
    
    .group-tours-destination-image {
        min-height: 300px;
    }
    
    .group-tours-destination-info {
        bottom: 15px;
        left: 15px;
        right: 15px;
    }
    
    .group-tours-destination-name {
        font-size: 22px;
    }
    
    .group-tours-slider-dots {
        margin-top: 12px;
        margin-bottom: 10px;
        gap: 5px;
    }
    
    .group-tours-slider-dot {
        width: 5px;
        height: 5px;
    }
    
    .group-tours-slider-dot.active {
        width: 18px;
        height: 5px;
    }
}

/* Footer */
.main-footer {
    background: #1C1C1C;
    color: white;
    padding: 60px 30px 30px 30px;
    width: 100%;
    box-sizing: border-box;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column-title {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin: 0 0 20px 0;
    line-height: 1.2;
}


.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li {
    margin: 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: white;
}

.footer-contact {
    max-width: 100%;
}

.footer-contact-info {
    margin-bottom: 25px;
}

.footer-contact-item {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 12px 0;
    line-height: 1.6;
}

.footer-contact-item strong {
    font-weight: 600;
    color: white;
    margin-right: 5px;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: white;
}

.footer-social-icons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer-social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-icon i {
    font-size: 16px;
}

.footer-social-icon:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    color: white;
}

.footer-newsletter {
    max-width: 100%;
}

.footer-newsletter-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-newsletter-list li {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    position: relative;
    padding-left: 15px;
}

.footer-newsletter-list li::before {
    content: "-";
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.8);
}

.footer-newsletter-form {
    margin-bottom: 0;
}

.footer-email-input-wrapper {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0;
    overflow: hidden;
}

.footer-email-icon {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    padding: 0 12px;
    flex-shrink: 0;
}

.footer-email-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 0;
    color: white;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    outline: none;
}

.footer-email-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-submit-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.footer-submit-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    text-align: center;
}

.footer-copyright {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Responsive for Footer */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding: 50px 20px 25px 20px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-bottom: 35px;
    }

    .footer-column-title {
        font-size: 17px;
        margin-bottom: 18px;
    }


    .footer-links {
        gap: 10px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .footer-contact-info {
        margin-bottom: 20px;
    }

    .footer-contact-item {
        font-size: 13px;
    }

    .footer-newsletter-list {
        margin-bottom: 18px;
        gap: 7px;
    }

    .footer-newsletter-list li {
        font-size: 13px;
        padding-left: 13px;
    }

    .footer-email-input-wrapper {
        flex-direction: column;
        align-items: stretch;
        background: transparent;
        border: none;
        gap: 10px;
    }

    .footer-email-icon {
        display: none;
    }

    .footer-email-input {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 8px;
        padding: 12px 16px;
    }

    .footer-submit-btn {
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 8px;
        width: 100%;
        border-left: 1px solid rgba(255, 255, 255, 0.2);
    }

    .footer-social-icons {
        gap: 10px;
    }

    .footer-social-icon {
        width: 34px;
        height: 34px;
    }

    .footer-bottom {
        padding-top: 20px;
    }

    .footer-copyright {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .main-footer {
        padding: 40px 15px 20px 15px;
    }

    .footer-top {
        gap: 30px;
        margin-bottom: 30px;
    }

    .footer-column-title {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .footer-links {
        gap: 9px;
    }

    .footer-links a {
        font-size: 12px;
    }

    .footer-contact-item {
        font-size: 12px;
    }

    .footer-newsletter-list {
        margin-bottom: 15px;
        gap: 6px;
    }

    .footer-newsletter-list li {
        font-size: 12px;
        padding-left: 12px;
    }

    .footer-email-input {
        padding: 10px 14px;
        font-size: 13px;
    }

    .footer-submit-btn {
        padding: 10px 18px;
        font-size: 13px;
    }

    .footer-bottom {
        padding-top: 20px;
    }

    .footer-copyright {
        font-size: 12px;
    }
}

