/* Font loaded via preload in HTML for better performance */
/* @import removed - using preload instead */

/* ==================== Variables ==================== */
:root {
    --primary-color: #ff6b35;
    --secondary-color: #004e89;
    --accent-color: #f7b801;
    --dark-color: #1a1a2e;
    --dark-2: #16213e;
    --light-color: #f8f9fa;
    --white: #ffffff;
    --text-primary: #2d3748;
    --text-secondary: #718096;
    --border-color: #e2e8f0;
    
    --gradient-orange: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    --gradient-blue: linear-gradient(135deg, #004e89 0%, #1a659e 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(0, 78, 137, 0.8) 0%, rgba(255, 107, 53, 0.8) 100%);
    
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.25);
    
    --transition: all 0.3s ease;
}

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

/* Performance optimizations */
*,
*::before,
*::after {
    box-sizing: inherit;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    scroll-padding-top: 90px; /* Offset for sticky header */
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-primary);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

section {
    padding: 60px 0;
}

.destinations {
    padding: 50px 0;
}

/* ==================== Top Bar ==================== */
.top-bar {
    background: var(--dark-color);
    color: white;
    padding: 12px 0;
    font-size: 14px;
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
}

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

.top-bar-right {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.top-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
}

.top-contact i {
    color: var(--primary-color);
    font-size: 13px;
}

/* ==================== Header ==================== */
.header {
    background: white;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 20px;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    line-height: 1;
}

.logo i {
    font-size: 42px;
    color: var(--primary-color);
}

.logo-text h1 {
    font-size: 28px;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1.1;
    margin-bottom: 2px;
    margin-top: 0;
}

.logo-text span {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

.navbar {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 15px;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link i {
    font-size: 10px;
    margin-left: 5px;
    transition: var(--transition);
}

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

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

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

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

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: var(--primary-color);
    border: none;
    cursor: pointer;
    padding: 10px 12px;
    border-radius: 8px;
    transition: var(--transition);
    z-index: 1001;
    position: relative;
}

.hamburger:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: var(--transition);
    display: block;
}

.hamburger.active {
    background: var(--secondary-color);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
    background: white;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
    background: white;
}

/* ==================== Buttons ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    max-width: 100%;
    box-sizing: border-box;
}

.btn-primary {
    background: var(--gradient-orange);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

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

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-white {
    background: white;
    color: var(--secondary-color);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-block {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    box-sizing: border-box;
}

.btn-nav-book {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white !important;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-nav-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
}

/* ==================== Hero Slider ==================== */
.hero-slider {
    position: relative;
    overflow: hidden;
    min-height: 480px;
    background: var(--dark-color);
}

/* Floating shapes removed for cleaner design */

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

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    min-height: 480px;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: scroll !important;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 78, 137, 0.7) 0%, rgba(255, 107, 53, 0.6) 100%);
    backdrop-filter: blur(2px);
}

.animated-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(26, 101, 158, 0.4) 0%, 
        rgba(0, 78, 137, 0.5) 100%);
    opacity: 0.7;
}

.slide-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 40px 0;
}

.slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease;
}

.slide-badge i {
    color: var(--accent-color);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.slide-title {
    font-size: 42px;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 18px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
}

.title-line-1,
.title-line-2 {
    display: block;
    color: white;
}

.title-line-2 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.slide-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 24px;
    line-height: 1.6;
    max-width: 600px;
    animation: fadeInUp 1.2s ease;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

.slide-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    animation: fadeInUp 1.4s ease;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.slide-buttons .btn {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-glow {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

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

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

.btn-outline-white {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    backdrop-filter: blur(10px);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.slide-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    animation: fadeInUp 1.6s ease;
    position: relative;
    z-index: 3;
    margin-bottom: 60px;
}

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

.stat-number {
    font-size: 42px;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slide-image {
    position: relative;
}

.slide-image {
    position: relative;
    animation: fadeInRight 1s ease;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-image .image-placeholder {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    color: white;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

/* Floating animation removed for better performance */

@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: rotateGlow 8s linear infinite;
    pointer-events: none;
}

@keyframes rotateGlow {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    animation: floatIcon 8s ease-in-out infinite;
}

.icon-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.icon-2 {
    bottom: 20%;
    right: 5%;
    animation-delay: 2s;
}

.icon-3 {
    top: 50%;
    left: -10%;
    animation-delay: 4s;
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-30px) translateX(20px) scale(1.1);
        opacity: 1;
    }
}

.slider-controls {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 30px;
    z-index: 2;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary-color);
    width: 32px;
    border-radius: 6px;
}

/* ==================== Section Headers ==================== */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 12px;
}

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

/* ==================== About ==================== */
.about {
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 24px;
}

.about-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-feature i {
    color: var(--primary-color);
    font-size: 20px;
}

.about-feature span {
    color: var(--text-primary);
    font-weight: 500;
}

.about-image {
    position: relative;
}

.about-image .img-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: var(--gradient-blue);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
    color: white;
    box-shadow: var(--shadow-xl);
}

/* ==================== Gallery ==================== */
.gallery {
    background: var(--light-color);
}

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

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.gallery-item .img-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--gradient-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: white;
    transition: var(--transition);
    min-height: 250px;
}

.gallery-item:nth-child(2) .img-placeholder {
    background: var(--gradient-orange);
}

.gallery-item:nth-child(3) .img-placeholder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.gallery-item:nth-child(4) .img-placeholder {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.gallery-item:nth-child(5) .img-placeholder {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.gallery-item:nth-child(6) .img-placeholder {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-overlay i {
    font-size: 40px;
    color: white;
    transform: scale(0.8);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* ==================== Destinations ==================== */
.destinations {
    background: var(--light-color);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
    margin-bottom: 0;
}

.destinations-grid:has(.destination-card.large) {
    grid-template-rows: repeat(2, 250px);
}

/* For grids with more than 5 items */
.destinations-grid:has(.destination-card:nth-child(6)) {
    grid-template-rows: repeat(3, 250px);
}

.destinations-grid:has(.destination-card:nth-child(9)) {
    grid-template-rows: repeat(4, 250px);
}

.destination-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    perspective: 1000px;
    height: 100%;
    min-height: 250px;
}

.destination-card.large {
    grid-row: 1 / 3;
}

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

/* Flip Card Effect */
.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    box-sizing: border-box;
}

.destination-card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    box-sizing: border-box;
    overflow: hidden;
}

.card-back {
    transform: rotateY(180deg);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    box-sizing: border-box;
    overflow: hidden;
}

.card-back-content {
    text-align: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-back-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 16px;
}

.card-back-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 15px;
    overflow-wrap: break-word;
    word-wrap: break-word;
    max-width: 100%;
}

.destination-features {
    list-style: none;
    margin-bottom: 24px;
    text-align: left;
    padding: 0;
    max-width: 100%;
    overflow: hidden;
}

.destination-features li {
    padding: 8px 0;
    color: var(--text-primary);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.destination-features i {
    color: var(--primary-color);
    font-size: 12px;
}

.card-back-content .btn {
    width: 100%;
    justify-content: center;
}

.destination-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.destination-image .img-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: white;
    transition: var(--transition);
}

.destination-card:nth-child(2) .destination-image .img-placeholder {
    background: var(--gradient-orange);
}

.destination-card:nth-child(3) .destination-image .img-placeholder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.destination-card:nth-child(4) .destination-image .img-placeholder {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.destination-card:nth-child(5) .destination-image .img-placeholder {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
}

.destination-overlay h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.destination-overlay p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.destination-price {
    margin-top: 12px;
}

.price {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent-color);
}

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

/* ==================== Featured Tours ==================== */
.featured-tours {
    background: white;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 450px), 1fr));
    gap: 40px;
}

.tour-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 0;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    max-width: 100%;
    width: 100%;
}

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

.tour-image {
    min-height: 280px;
    height: 100%;
}

.tour-image .img-placeholder {
    width: 100%;
    height: 100%;
    min-height: 280px;
    background: var(--gradient-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: white;
}

.tour-card:nth-child(2) .tour-image .img-placeholder {
    background: var(--gradient-orange);
}

.tour-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-width: 0;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.tour-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 12px;
    line-height: 1.3;
}

.tour-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
    flex-grow: 1;
    font-size: 15px;
}

.tour-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.tour-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
    font-size: 14px;
}

.tour-meta i {
    color: var(--primary-color);
    font-size: 14px;
}

.tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-top: auto;
    padding-top: 20px;
    flex-wrap: wrap;
    width: 100%;
}

.tour-price .price {
    font-size: 24px;
    font-weight: 800;
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
    flex-shrink: 0;
}

.tour-footer .btn {
    padding: 10px 20px;
    font-size: 14px;
    flex-shrink: 0;
}

/* ==================== Book Tour ==================== */
.book-tour {
    background: linear-gradient(135deg, #004e89 0%, #1a659e 100%);
    color: white;
}

.book-tour-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.book-tour-content .section-title {
    color: white;
    text-align: left;
    margin-bottom: 20px;
}

.book-tour-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 16px;
}

.booking-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 100%;
    overflow: hidden;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

/* Form row with 3 items (Rooms, Adults, Children) */
.form-row.three-columns {
    grid-template-columns: repeat(3, 1fr);
}

.form-group {
    margin-bottom: 0;
    min-width: 0; /* Prevent overflow */
}

.form-control {
    width: 100%;
    min-width: 0; /* Prevent overflow */
    padding: 10px 14px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: var(--transition);
    box-sizing: border-box;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.15);
}

select.form-control {
    cursor: pointer;
}

/* ==================== Testimonials ==================== */
.testimonials {
    background: var(--light-color);
    padding: 60px 0;
}

.testimonials .container {
    position: relative;
}

.testimonials-slider {
    overflow: hidden;
    padding: 20px 0;
    position: relative;
    width: 100%;
    margin: 0 auto;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.testimonial-track {
    display: flex !important;
    gap: 30px;
    width: max-content !important;
    animation: scroll 45s linear infinite;
    will-change: transform;
    flex-shrink: 0 !important;
    align-items: stretch;
}

@keyframes scroll {
    0% { 
        transform: translateX(0); 
    }
    100% { 
        transform: translateX(-25%); /* Changed to -25% for quadruple content */
    }
}

/* Pause animation on hover */
.testimonials-slider:hover .testimonial-track {
    animation-play-state: paused;
}

.testimonial-card {
    min-width: 400px;
    max-width: 400px;
    min-height: 320px;
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    flex-shrink: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.testimonial-image {
    margin-bottom: 24px;
}

.testimonial-image .img-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
}

.testimonial-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.testimonial-content p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: auto;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 6px;
    margin-top: 24px;
}

.testimonial-content span {
    color: var(--text-secondary);
    font-size: 14px;
}

/* ==================== Blog ==================== */
.blog {
    background: white;
}

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

.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.blog-image {
    position: relative;
    overflow: hidden;
}

.blog-image .img-placeholder {
    width: 100%;
    aspect-ratio: 16/10;
    background: var(--gradient-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: white;
}

.blog-card:nth-child(2) .blog-image .img-placeholder {
    background: var(--gradient-orange);
}

.blog-card:nth-child(3) .blog-image .img-placeholder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.blog-date {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
}

.blog-content {
    padding: 30px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.blog-meta {
    margin-bottom: 16px;
    color: var(--text-secondary);
    font-size: 14px;
}

.blog-meta i {
    margin-right: 6px;
    color: var(--primary-color);
}

.blog-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 16px;
    line-height: 1.4;
}

.blog-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-content .btn {
    max-width: 100%;
    box-sizing: border-box;
    width: auto;
    display: inline-block;
}

/* ==================== Partners ==================== */
.partners {
    background: var(--light-color);
    padding: 60px 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    align-items: center;
}

.partner-logo {
    text-align: center;
    font-size: 60px;
    color: var(--text-secondary);
    opacity: 0.6;
    transition: var(--transition);
    cursor: pointer;
}

.partner-logo:hover {
    opacity: 1;
    color: var(--primary-color);
    transform: scale(1.1);
}

/* ==================== CTA ==================== */
.cta {
    background: var(--gradient-orange);
    color: white;
    text-align: center;
    padding: 80px 0;
    overflow: hidden;
}

.cta-content {
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 20px;
}

.cta-content {
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 20px;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.cta-buttons .btn {
    max-width: 100%;
    box-sizing: border-box;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 0 1 auto;
    min-width: 0;
}

/* ==================== Footer ==================== */
.footer {
    background: var(--dark-color);
    color: white;
}

.footer-main {
    padding: 60px 0 40px;
}

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

.footer-col h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    color: white;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

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

.footer-hours li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.footer-destinations {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 24px;
}

.footer-dest-img {
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: rgba(255, 255, 255, 0.5);
}

.newsletter h4 {
    font-size: 16px;
    margin-bottom: 12px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-family: inherit;
}

.newsletter-form button {
    padding: 12px 20px;
    background: var(--primary-color);
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

/* ==================== Page Header ==================== */
.page-header {
    padding: 100px 0 60px;
    text-align: center;
    color: white;
    position: relative;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: 20px;
    opacity: 0.95;
}

/* ==================== Values ==================== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--gradient-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
}

.value-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 16px;
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ==================== Team ==================== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.team-member {
    background: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.team-image {
    margin-bottom: 24px;
}

.team-image .img-placeholder {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    border-radius: 50%;
    background: var(--gradient-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: white;
}

.team-member h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.team-member > p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* ==================== Contact Section ==================== */
.contact-section {
    padding: 60px 0;
    background: white;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.contact-info > p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: start;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-orange);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.contact-details p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-form-wrapper {
    background: var(--light-color);
    padding: 40px;
    border-radius: 20px;
}

.contact-form .form-group label {
    display: block;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
    font-size: 14px;
}

.contact-form .form-control {
    background: white;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    background: white;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.map-section {
    padding: 0;
    background: var(--light-color);
}

.map-placeholder {
    height: 400px;
    background: var(--gradient-blue);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    border-radius: 20px;
}

.map-placeholder i {
    font-size: 80px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.map-placeholder p {
    font-size: 20px;
    font-weight: 600;
}

/* ==================== Travel Types Filter ==================== */
.travel-types-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    border: 2px solid var(--border-color);
    background: white;
    color: var(--text-primary);
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.destination-card.hidden {
    display: none;
}

/* Travel Types Section */
.travel-types {
    padding: 40px 0;
    background: white;
}

/* Alternating background colors for sections */
.europe-section,
.america-section {
    background: white;
}

.values {
    background: var(--light-color);
}

.destinations-blog,
.guides-blog {
    background: var(--light-color);
}

/* ==================== Hide Empty Sections ==================== */
/* Hide sections with no visible content to reduce whitespace */
section:empty,
.section-header + div:empty,
.container:empty {
    display: none;
    padding: 0;
    margin: 0;
}

/* Hide sections with only whitespace */
section:not(:has(.container > *:not(:empty))),
.destinations-grid:empty,
.gallery-grid:empty,
.blog-grid:empty,
.tours-grid:empty {
    display: none;
}

/* ==================== Scroll to Top ==================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-orange);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* ==================== Responsive ==================== */
@media (max-width: 1024px) {
    .section-title {
        font-size: 36px;
    }
    
    .hero-slider {
        min-height: 450px;
    }
    
    .slide {
        min-height: 450px;
    }
    
    .slide-title {
        font-size: 38px;
    }
    
    .destinations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 968px) {
    .tour-card {
        grid-template-columns: 220px 1fr;
    }
    
    .tour-content {
        padding: 20px;
    }
    
    .tour-content h3 {
        font-size: 19px;
    }
    
    .tour-price .price {
        font-size: 22px;
    }
    
    .tour-footer .btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .navbar {
        order: 3;
        width: 100%;
        justify-content: flex-end;
    }
    
    .hamburger {
        display: flex;
        order: 2;
    }
    
    .nav-menu {
        position: fixed;
        top: 77px;
        left: -100%;
        width: 320px;
        max-width: 85vw;
        height: calc(100vh - 77px);
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
        flex-direction: column;
        padding: 30px 25px 60px 25px;
        box-shadow: 0 10px 50px rgba(0, 0, 0, 0.25);
        transition: left 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        gap: 8px;
        z-index: 1000;
        overflow-y: auto;
        overflow-x: hidden;
        border-right: 4px solid var(--primary-color);
        backdrop-filter: blur(10px);
        box-sizing: border-box;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    }
    
    .nav-link {
        padding: 18px 25px;
        border-radius: 12px;
        transition: all 0.3s ease;
        font-weight: 600;
        font-size: 16px;
        border-bottom: none;
        background: rgba(255, 255, 255, 0.5);
        margin-bottom: 5px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        box-sizing: border-box;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: white;
        padding-left: 30px;
        transform: translateX(8px) scale(1.02);
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    }
    
    .nav-link.btn-nav-book {
        background: linear-gradient(135deg, #f97316 0%, #ea580c 100%) !important;
        color: white !important;
        border: none !important;
    }
    
    .nav-link.btn-nav-book:hover {
        background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%) !important;
        transform: translateX(8px) scale(1.05);
    }
    
    .nav-link i {
        font-size: 12px;
        transition: transform 0.3s ease;
    }
    
    .nav-link:hover i {
        transform: rotate(180deg);
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        padding: 0;
        margin: 10px 0 0 20px;
    }
    
    .dropdown-menu a {
        padding: 10px 0;
        border-left: none;
    }
    
    .dropdown-menu a:hover {
        padding-left: 20px;
        background: transparent;
    }
    
    .top-bar-content {
        flex-direction: column;
        text-align: center;
    }
    
    .top-bar-right {
        flex-direction: column;
        gap: 10px;
    }
    
    .slide-content {
        grid-template-columns: 1fr;
    }
    
    .slide-image {
        display: none;
    }
    
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tours-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .tour-card {
        grid-template-columns: 1fr;
        max-width: 100%;
        width: 100%;
    }
    
    .tour-image {
        min-height: 200px;
        width: 100%;
    }
    
    .tour-image .img-placeholder {
        min-height: 200px;
        width: 100%;
        font-size: 60px;
    }
    
    .tour-content {
        padding: 25px 20px;
        width: 100%;
        min-width: 0;
    }
    
    .tour-content h3 {
        font-size: 20px;
    }
    
    .tour-content p {
        font-size: 14px;
    }
    
    .tour-footer {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .tour-price {
        text-align: center;
    }
    
    .tour-price .price {
        font-size: 22px;
    }
    
    .tour-footer .btn {
        padding: 12px 20px;
        font-size: 14px;
        width: 100%;
    }
    
    .book-tour-wrapper {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .gallery-item .img-placeholder {
        font-size: 50px;
        min-height: 200px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 40px 0;
    }
    
    .hero-slider {
        min-height: 400px;
    }
    
    .slide {
        min-height: 400px;
    }
    
    .slide-content {
        padding: 30px 0;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .slide-title {
        font-size: 30px;
    }
    
    .slide-description {
        font-size: 15px;
    }
    
    .slide-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .slide-buttons .btn {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 15px;
    }
    
    .destination-card.large {
        grid-row: auto;
    }
    
    .destination-card {
        min-height: 220px;
    }
    
    .destination-card .card-front,
    .destination-card .card-back {
        padding: 15px;
        overflow: hidden;
        box-sizing: border-box;
    }
    
    .card-back-content {
        padding: 0;
        overflow-y: auto;
        max-height: 100%;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .destination-card .destination-name {
        font-size: 18px;
    }
    
    .destination-card .destination-price {
        font-size: 20px;
    }
    
    .destination-card .card-back h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .destination-card .card-back p {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 12px;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }
    
    .destination-features {
        margin-bottom: 12px;
    }
    
    .destination-features li {
        font-size: 12px;
        padding: 5px 0;
    }
    
    .card-back-content .btn {
        font-size: 12px;
        padding: 10px 18px;
    }
    
    .travel-types-filter {
        gap: 10px;
        padding: 0 15px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
        max-width: 100%;
    }
    
    .blog-card {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .blog-content {
        padding: 25px 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .blog-content .btn {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        box-sizing: border-box;
    }
    
    .blog-card {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .blog-content {
        padding: 25px 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .blog-content .btn {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        box-sizing: border-box;
    }
    
    .blog-card .img-placeholder {
        min-height: 200px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .testimonial-card {
        min-width: 280px;
        max-width: 280px;
        min-height: 280px;
        padding: 25px 18px;
    }
    
    .testimonials-slider {
        padding: 15px 0;
        mask-image: none;
        -webkit-mask-image: none;
    }
    
    .testimonial-track {
        gap: 15px;
    }
    
    .testimonial-content p {
        font-size: 14px;
    }
    
    .testimonial-content h4 {
        font-size: 18px;
    }
    
    .testimonial-image .img-placeholder {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-item .img-placeholder {
        aspect-ratio: 16/9;
    }
    
    .about-text h3 {
        font-size: 26px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info {
        padding: 25px 20px;
    }
    
    .contact-info-item {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .contact-form-wrapper {
        padding: 25px 20px;
    }
    
    .form-group {
        margin-bottom: 18px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .map-placeholder {
        height: 250px;
    }
    
    .about-content {
        gap: 30px;
    }
    
    .about-text {
        padding: 20px;
    }
    
    .about-text h3 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .about-text p {
        font-size: 14px;
        line-height: 1.7;
    }
    
    .about-features {
        gap: 15px;
    }
    
    .about-feature {
        padding: 20px;
    }
    
    .about-feature i {
        font-size: 32px;
    }
    
    .about-feature h4 {
        font-size: 18px;
    }
    
    .about-feature p {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    section {
        padding: 30px 0;
    }
    
    .hero-slider {
        min-height: 380px;
    }
    
    .slide {
        min-height: 380px;
    }
    
    .slide-content {
        padding: 25px 0;
    }
    
    .slide-title {
        font-size: 24px;
    }
    
    .slide-description {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .slide-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .booking-form {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr !important;
    }
    
    .cta-content h2 {
        font-size: 32px;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        gap: 15px;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        padding: 14px 20px;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .top-bar {
        padding: 10px 0;
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .top-bar-right {
        flex-direction: column;
        gap: 8px;
    }
    
    .top-contact {
        font-size: 12px;
    }
    
    .header {
        padding: 15px 0;
    }
    
    .logo-text h1 {
        font-size: 20px;
    }
    
    .logo-text span {
        font-size: 12px;
    }
    
    .nav-menu {
        gap: 15px;
    }
    
    .nav-link {
        font-size: 14px;
        padding: 8px 12px;
    }
    
    .slide-title {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .slide-description {
        font-size: 14px;
    }
    
    .slide-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .slide-buttons .btn {
        width: 100%;
        max-width: 100%;
        font-size: 14px;
        padding: 12px 18px;
    }
    
    .slide-stats {
        flex-direction: row;
        gap: 15px;
        justify-content: center;
        margin-bottom: 80px;
        flex-wrap: wrap;
    }
    
    .slider-controls {
        bottom: 20px;
        gap: 20px;
    }
    
    .stat-item {
        flex: 0 0 auto;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .stat-label {
        font-size: 11px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 30px 0;
    }
    
    .destination-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .destination-card {
        margin-bottom: 20px;
    }
    
    .booking-form {
        padding: 20px 15px;
    }
    
    .travel-types-filter {
        gap: 8px;
        padding: 0 10px;
    }
    
    .filter-btn {
        padding: 10px 18px;
        font-size: 12px;
        flex: 1 1 auto;
        min-width: 0;
    }
    
    .destination-card {
        min-height: 200px;
    }
    
    .destination-card .card-front,
    .destination-card .card-back {
        padding: 15px;
    }
    
    .destination-card .destination-name {
        font-size: 18px;
    }
    
    .destination-card .destination-price {
        font-size: 20px;
    }
    
    .destination-card .card-back h3 {
        font-size: 18px;
    }
    
    .destination-card .card-back p {
        font-size: 13px;
    }
    
    .page-header {
        padding: 70px 0 40px;
    }
    
    .page-header h1 {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .page-header p {
        font-size: 14px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 14px;
        font-size: 14px;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 20px 15px;
        min-width: 280px;
        max-width: 280px;
        min-height: 280px;
    }
    
    .testimonials-slider {
        padding: 10px 0;
        mask-image: none;
        -webkit-mask-image: none;
    }
    
    .testimonial-track {
        gap: 12px;
    }
    
    .testimonial-card {
        min-width: 260px;
        max-width: 260px;
        min-height: 260px;
        padding: 20px 15px;
    }
    
    .testimonial-content p {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .testimonial-content h4 {
        font-size: 16px;
        margin-top: 16px;
    }
    
    .testimonial-content span {
        font-size: 12px;
    }
    
    .testimonial-image .img-placeholder {
        width: 50px;
        height: 50px;
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .gallery-item .img-placeholder {
        aspect-ratio: 16/10;
        font-size: 40px;
    }
    
    .tours-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tour-card {
        grid-template-columns: 1fr;
    }
    
    .tour-image {
        min-height: 180px;
    }
    
    .tour-image .img-placeholder {
        min-height: 180px;
        font-size: 50px;
    }
    
    .tour-content {
        padding: 18px;
    }
    
    .tour-content h3 {
        font-size: 18px;
    }
    
    .tour-content p {
        font-size: 13px;
    }
    
    .tour-footer {
        flex-direction: column;
        gap: 12px;
    }
    
    .tour-price .price {
        font-size: 20px;
    }
    
    .tour-footer .btn {
        width: 100%;
        padding: 12px;
        font-size: 13px;
    }
    
    .cta-content {
        padding: 0 15px;
    }
    
    .cta-content h2 {
        font-size: 24px;
    }
    
    .cta-content p {
        font-size: 14px;
    }
    
    .cta-buttons {
        width: 100%;
        max-width: 100%;
        gap: 12px;
        padding: 0;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 100%;
        font-size: 14px;
        padding: 12px 18px;
        box-sizing: border-box;
        white-space: normal;
        word-wrap: break-word;
    }
    
    .cta-buttons .btn span {
        display: block;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-section h3 {
        font-size: 18px;
    }
    
    .footer-section p,
    .footer-section a {
        font-size: 13px;
    }
    
    .scroll-to-top {
        width: 45px;
        height: 45px;
        font-size: 18px;
        bottom: 20px;
        right: 20px;
    }
}
