/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #dc2626;
    --secondary-color: #3b82f6;
    --accent-color: #f59e0b;
    --success-color: #10b981;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    background-color: var(--bg-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background-color: #1e293b;
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.top-bar-left,
.top-bar-center,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-bar-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
}

.top-bar-link:hover {
    color: #fff;
}

.social-icon {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    transition: color 0.3s;
}

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

.btn-book-now {
    background-color: var(--primary-color);
    color: #fff;
    padding: 6px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.btn-book-now:hover {
    background-color: #b91c1c;
}

/* Header */
.main-header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo a {
    text-decoration: none !important;
}

.logo a:hover {
    text-decoration: none !important;
}

.logo-link {
    display: inline-flex;
    align-items: center;
    max-width: 260px;
    overflow: hidden;
}

.site-logo-image {
    display: block;
    height: 74px;
    width: auto;
    max-width: 260px;
    max-height: 74px;
    object-fit: contain;
}

.logo-text {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    font-style: italic;
    margin-bottom: 2px;
    text-decoration: none;
}

.logo-subtitle {
    font-size: 11px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

@media (max-width: 768px) {
    .logo-link {
        max-width: 200px;
    }
    .site-logo-image {
        height: 56px;
        max-width: 200px;
        max-height: 56px;
    }
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.5px;
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
    text-transform: none;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

/* Dropdown Menu */
.nav-item.dropdown {
    position: relative;
}

.nav-item.dropdown .nav-link i {
    font-size: 12px;
    margin-left: 5px;
    transition: transform 0.3s;
}

.nav-item.dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    min-width: 200px;
    width: 100%;
    padding: 10px 0;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    display: flex;
    flex-direction: column;
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
    width: 100%;
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s;
    width: 100%;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
    padding-left: 25px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-light);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s;
}

.search-btn:hover {
    background-color: var(--border-color);
    color: var(--text-primary);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-primary);
    cursor: pointer;
}

.mobile-menu {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s ease;
    padding: 16px;
    box-sizing: border-box;
}

.mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu-content {
    background-color: var(--bg-white);
    width: min(90vw, 360px);
    max-height: 88vh;
    height: auto;
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.22);
    overflow-y: auto;
    border-radius: 16px;
    transform: translateY(16px) scale(0.98);
    transition: transform 0.28s ease;
}

.mobile-menu.is-open .mobile-menu-content {
    transform: translateY(0) scale(1);
}

.mobile-menu-content a {
    display: block;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 13px 10px;
    border-bottom: 1px solid var(--border-color);
}

.mobile-menu-content a.active {
    color: var(--primary-color);
}

.mobile-menu-dropdown {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 4px;
}

.mobile-menu-dropdown summary {
    list-style: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    padding: 13px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-menu-dropdown summary::-webkit-details-marker {
    display: none;
}

.mobile-menu-dropdown summary::marker {
    content: '';
}

.mobile-menu-dropdown summary::after {
    content: '\f078';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--text-secondary);
    font-size: 12px;
    transition: transform 0.2s ease;
}

.mobile-menu-dropdown[open] summary::after {
    transform: rotate(180deg);
}

.mobile-submenu {
    display: none;
    list-style: none;
    margin: 0;
    padding: 4px 10px 8px;
}

.mobile-menu-dropdown[open] .mobile-submenu {
    display: block;
}

.mobile-menu-dropdown .mobile-submenu li {
    display: block;
    margin: 0 0 8px;
}

.mobile-menu-dropdown .mobile-submenu li:last-child {
    margin-bottom: 4px;
}

.mobile-menu-dropdown .mobile-submenu li a {
    display: block !important;
    width: 100% !important;
    padding: 10px 12px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #e2e8f0 !important;
    border-radius: 8px;
    background: #f8fafc;
    color: #334155;
    margin-bottom: 8px;
    border-bottom: 1px solid #e2e8f0 !important;
    line-height: 1.35;
    box-sizing: border-box;
}

.mobile-menu-dropdown .mobile-submenu li a:hover {
    background: #eff6ff;
    border-color: #bfdbfe;
    color: #1d4ed8;
}

.mobile-menu-dropdown .mobile-submenu li:last-child a {
    margin-bottom: 0;
}

/* Hero Section */
.hero-section {
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Hero Slider */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.05);
}

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

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.4) 100%);
}

/* Slider Navigation Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.slider-btn:active {
    transform: translateY(-50%) scale(1.05);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 15;
    align-items: center;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.5);
    position: relative;
}

.dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.dot:hover::before {
    width: 20px;
    height: 20px;
}

.dot.active {
    background-color: #fff;
    width: 14px;
    height: 14px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8), 0 0 25px rgba(255, 255, 255, 0.4);
    border-color: #fff;
}

.dot.active::before {
    width: 24px;
    height: 24px;
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.15);
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    position: relative;
    z-index: 5;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 24px;
    font-style: italic;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeIn 1s ease-out 0.2s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    animation: fadeIn 1s ease-out 0.4s both;
    letter-spacing: -0.5px;
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeIn 1s ease-out 0.5s both;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    animation: fadeIn 1s ease-out 0.6s both;
}

.btn {
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    display: inline-block;
    font-size: 15px;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

.btn-primary:hover {
    background-color: #b91c1c;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.5);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-hero-book {
    background-color: rgba(255, 255, 255, 0.9);
    color: #1e293b;
    border: 1px solid #1e293b;
    border-radius: 50px;
    padding: 12px 32px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: none;
    overflow: visible;
}

.btn-hero-book::before {
    display: none;
}

.btn-hero-book i {
    font-size: 14px;
    transition: transform 0.3s;
}

.btn-hero-book:hover {
    background-color: rgba(255, 255, 255, 0.95);
    color: #1e293b;
    border-color: #1e293b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 41, 59, 0.2);
}

.btn-hero-book:hover i {
    transform: translateX(5px);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--text-primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--text-primary);
    color: var(--text-primary);
}

.btn-outline:hover {
    background-color: var(--text-primary);
    color: #fff;
}

/* Statistics Section */
.stats-section {
    background-color: var(--bg-white);
    padding: 60px 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-secondary);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.title-accent {
    font-size: 24px;
    font-style: italic;
    color: var(--primary-color);
}

.highlight {
    color: var(--secondary-color);
    position: relative;
}

.highlight::after {
    display: none;
}

.view-all-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.view-all-link:hover {
    color: var(--primary-color);
}

/* Packages Grid */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

/* Cruise Tours - wider container, 1 row 2 columns */
.cruise-tours-section .container-wide {
    max-width: 1400px;
}

.packages-grid-cruise {
    grid-template-columns: 1fr 1fr;
}

.packages-grid-cruise .package-image {
    height: 320px;
}

/* Price and Book Now overlay on image - cruise tours */
.packages-grid-cruise .package-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
}

.packages-grid-cruise .package-image-overlay .package-price {
    padding-top: 0;
    border: none;
}

.packages-grid-cruise .package-image-overlay .price-amount {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
}

.packages-grid-cruise .package-image-overlay .price-label {
    color: rgba(255,255,255,0.9);
    font-size: 14px;
}

.packages-grid-cruise .package-image-overlay .btn {
    padding: 10px 20px;
    font-weight: 600;
}

/* Cruise tour gallery - 2 images below thumbnail */
.cruise-gallery-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px 12px 12px;
    background: #f8fafc;
}

.cruise-gallery-row img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}


.package-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.package-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.package-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--accent-color);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* Date badge on cruise tour image (top-right) */
.package-date-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(0, 0, 0, 0.65);
    color: #fff;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
}

.package-content {
    padding: 20px;
}

.package-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.package-description {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.package-details {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--text-secondary);
}

.package-details span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.package-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.package-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.price-amount {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

.price-label {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Most Visited Places Section */
.destinations-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.destinations-section .container {
    position: relative;
    max-width: 100%;
    padding: 0 20px;
}

.destinations-section .section-title {
    text-align: center;
}

.destinations-carousel-wrapper {
    position: relative;
    margin-top: 40px;
    width: 100%;
    padding: 0 60px;
    max-width: 100%;
}

.destinations-carousel {
    display: flex !important;
    flex-direction: row !important;
    gap: 20px;
    overflow-x: hidden;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 10px 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    width: 100%;
}

.destinations-carousel-wrapper {
    width: 100%;
}

.destinations-carousel::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.destination-card {
    min-width: calc(25% - 15px);
    max-width: calc(25% - 15px);
    flex-shrink: 0;
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.destination-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.destination-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    background-color: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.destination-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(16, 185, 129, 0.1));
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s;
}

.destination-card:hover .destination-image::before {
    opacity: 1;
}

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

.destination-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.destination-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.destination-tours {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 10;
    transition: all 0.3s;
    box-shadow: var(--shadow-lg);
}

.carousel-btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

/* Full Width Banner Section */
.full-width-banner {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.banner-image,
.banner-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.banner-image img,
.banner-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 2;
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 3;
    color: #fff;
    max-width: 800px;
    padding: 0 20px;
    width: 100%;
}

.banner-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.5px;
    animation: fadeInUp 0.8s ease-out;
}

.banner-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.banner-content .btn {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Package Picks from Region Section */
.package-picks-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.package-picks-header {
    text-align: center;
    margin-bottom: 30px;
}

.package-picks-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.package-picks-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.package-picks-icon {
    font-size: 28px;
    color: var(--secondary-color);
}

.package-picks-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin: 0;
}

.region-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.region-filter-btn {
    padding: 10px 24px;
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.region-filter-btn:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.region-filter-btn.active {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #fff;
}

.package-picks-carousel-wrapper {
    position: relative;
    padding: 0 60px;
}

.package-picks-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 10px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.package-picks-carousel::-webkit-scrollbar {
    display: none;
}

.package-pick-card {
    min-width: 320px;
    max-width: 320px;
    flex-shrink: 0;
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.package-pick-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.package-pick-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    background-color: #e2e8f0;
}

.package-pick-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
    display: block;
}

.package-pick-card:hover .package-pick-image img {
    transform: scale(1.1);
}

.package-pick-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.package-pick-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.4;
}

.package-pick-duration {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 15px;
}

.package-pick-duration i {
    color: var(--text-secondary);
}

.package-pick-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.package-pick-price {
    background-color: var(--text-primary);
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
}

.package-pick-view-btn {
    padding: 10px 20px;
    border-radius: 8px;
    background-color: var(--text-primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s;
    flex-shrink: 0;
}

.package-pick-view-btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Offers Section */
.offers-section {
    background-color: var(--bg-white);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.offer-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.offer-card:hover {
    transform: translateY(-5px);
}

.offer-image {
    height: 200px;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offer-image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), #b91c1c);
    color: #fff;
}

.offer-discount {
    font-size: 64px;
    font-weight: 700;
    line-height: 1;
}

.offer-label {
    font-size: 18px;
    font-weight: 600;
    margin-top: 10px;
}

.offer-image-placeholder i {
    font-size: 64px;
    color: var(--accent-color);
}

.offer-content {
    padding: 20px;
}

.offer-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.offer-description {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 15px;
}

/* Trustpilot Reviews Section */
.trustpilot-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.trustpilot-header-new {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

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

.trustpilot-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.trustpilot-rating-new {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.rating-stars-yellow {
    display: flex;
    gap: 2px;
}

.rating-stars-yellow i {
    color: #fbbf24;
    font-size: 18px;
}

.average-rating {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
}

.review-count-faded {
    font-size: 14px;
    color: #94a3b8;
}

.trustpilot-button {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s;
    white-space: nowrap;
}

.trustpilot-button:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.trustpilot-star-icon {
    color: #00B67A;
    font-size: 16px;
}

.reviews-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.review-card-new {
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 25px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.review-card-new:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.review-header-new {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.reviewer-info-new {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.reviewer-avatar-new {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.reviewer-avatar-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviewer-avatar-fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color), #2563eb);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
}

.reviewer-details-new {
    flex: 1;
}

.reviewer-name-new {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 3px;
}

.review-time {
    font-size: 13px;
    color: var(--text-secondary);
}

.trustpilot-star-small {
    color: #00B67A;
    font-size: 18px;
    flex-shrink: 0;
}

.review-rating-new {
    margin-bottom: 15px;
}

.rating-stars-yellow-small {
    display: flex;
    gap: 2px;
}

.rating-stars-yellow-small i {
    color: #fbbf24;
    font-size: 14px;
}

.review-content-new {
    margin-bottom: 15px;
}

.review-text-new {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.read-more-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: underline;
    transition: color 0.3s;
}

.read-more-link:hover {
    color: var(--primary-color);
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--bg-light);
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    position: relative;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: scale(1.05);
}

.testimonial-image {
    width: 100%;
    height: 100%;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 30px 20px 20px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimonial-name {
    font-size: 24px;
    font-weight: 600;
}

.testimonial-overlay i {
    font-size: 20px;
}

.text-center {
    text-align: center;
}

/* Meet Our Team Section */
.team-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.team-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.team-content {
    padding: 25px 20px;
}

.team-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-family: 'Open Sans', sans-serif;
}

.team-position {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-style: italic;
}

.team-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-top: 15px;
    text-align: left;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0 0 0;
    background-color: var(--bg-light);
}

.gallery-section .container {
    max-width: 100%;
    padding: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0;
    width: 100%;
    margin: 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: none;
}

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

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 25px 20px 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-title {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    font-family: 'Open Sans', sans-serif;
}

/* Hotels Section */
.hotels-section {
    padding: 60px 0;
}

.hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.hotel-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.hotel-card:hover {
    transform: translateY(-5px);
}

.hotel-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hotel-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--accent-color);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.hotel-content {
    padding: 20px;
}

.hotel-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.hotel-description {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.hotel-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.amenity-tag {
    background-color: var(--bg-light);
    color: var(--text-secondary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
}

.hotel-rating {
    color: #fbbf24;
    margin-bottom: 15px;
    font-size: 16px;
}

.hotel-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

/* Plan Trip Section */
.plan-trip-section {
    padding: 80px 0;
    background-color: var(--bg-light);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.plan-trip-card {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.trip-form {
    margin-top: 30px;
}

/* Plan Trip Home Section */
.plan-trip-home-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.plan-trip-home-card {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.plan-trip-home-card .section-title {
    text-align: center;
    margin-bottom: 40px;
}

.trip-form-home {
    margin-top: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

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

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.form-group textarea {
    resize: vertical;
}

/* Page Header */
.page-header-section {
    background-color: var(--bg-white);
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
}

.page-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-primary);
}

/* Footer */
.main-footer {
    background-color: #1e293b;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h3 {
    font-size: 24px;
    margin-bottom: 5px;
    font-style: italic;
}

.footer-subtitle {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s;
}

.social-link:hover {
    background-color: var(--secondary-color);
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--success-color);
    position: relative;
    padding-bottom: 10px;
}

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

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

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

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

.footer-links a:hover {
    color: #fff;
}

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

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.footer-contact i {
    color: var(--success-color);
    margin-top: 3px;
}

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

.footer-contact a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: #fff;
}

.footer-action-buttons {
    display: flex;
    gap: 10px;
}

.btn-orange {
    background-color: var(--accent-color);
    color: #fff;
}

.btn-orange:hover {
    background-color: #d97706;
}

.btn-green {
    background-color: var(--success-color);
    color: #fff;
}

.btn-green:hover {
    background-color: #059669;
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 90px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s;
    font-size: 24px;
}

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

.floating-phone {
    background-color: var(--success-color);
}

.floating-whatsapp {
    background-color: var(--success-color);
}

.floating-book {
    background-color: var(--accent-color);
    width: auto;
    height: auto;
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 14px;
    gap: 8px;
}

.floating-book span {
    font-size: 14px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.pagination-btn {
    padding: 10px 20px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pagination-btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.pagination-pages {
    display: flex;
    gap: 5px;
}

.pagination-page {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.pagination-page:hover {
    background-color: var(--bg-light);
    border-color: var(--primary-color);
}

.pagination-page.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

/* Utility Classes */
.no-data {
    text-align: center;
    color: var(--text-secondary);
    padding: 60px 20px;
    font-size: 18px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-bar-content {
        justify-content: center;
    }

    .top-bar-center {
        display: none;
    }

    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-description {
        font-size: 16px;
        padding: 0 20px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: 28px;
    }

    .packages-grid,
    .packages-grid-cruise,
    .offers-grid,
    .hotels-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .floating-buttons {
        right: 15px;
        bottom: 15px;
    }

    .floating-book {
        width: 60px;
        height: 60px;
        padding: 0;
    }

    .floating-book span {
        display: none;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .plan-trip-home-card {
        padding: 30px 20px;
    }

    .trustpilot-header-new {
        flex-direction: column;
    }

    .trustpilot-button {
        align-self: flex-start;
    }

    .reviews-grid-new {
        grid-template-columns: 1fr;
    }

    .trustpilot-title {
        font-size: 24px;
    }

    .carousel-btn {
        display: none;
    }

    .destinations-carousel {
        display: flex !important;
        flex-direction: row !important;
        padding: 10px 0;
        overflow-x: auto;
        gap: 12px;
        scroll-snap-type: x mandatory;
    }

    .destinations-carousel-wrapper {
        padding: 0;
    }

    .destination-card {
        min-width: 100%;
        max-width: 100%;
        flex-shrink: 0;
        scroll-snap-align: start;
    }

    .destination-image {
        height: 280px;
    }


    .carousel-prev {
        left: 10px;
    }

    .carousel-next {
        right: 10px;
    }

    .package-picks-carousel-wrapper {
        padding: 0 50px;
    }

    .package-pick-card {
        min-width: 280px;
        max-width: 280px;
    }

    .package-picks-title {
        font-size: 24px;
    }

    .package-picks-icon {
        font-size: 20px;
    }

    .region-filters {
        gap: 10px;
    }

    .region-filter-btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    .slider-btn {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }

    .slider-prev {
        left: 10px;
    }

    .slider-next {
        right: 10px;
    }

    .slider-dots {
        bottom: 50px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .full-width-banner {
        height: 400px;
    }

    .banner-title {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .banner-subtitle {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .team-image {
        height: 280px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-overlay {
        opacity: 1;
    }
}

