.dest-hero { 
    background: linear-gradient(135deg, rgba(15,15,26,0.9), rgba(106,191,75,0.1)), 
                url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?w=1600') center/cover fixed; 
    padding: 80px 0; 
    text-align: center; 
    color: #fff; 
}
.dest-hero h1 { 
    font-size: 44px; 
    font-weight: 400; 
    letter-spacing: 2px; 
    margin-bottom: 12px;
    animation: fadeInUp 0.6s ease forwards;
}
.dest-hero p { 
    font-size: 17px; 
    opacity: 0.9; 
    max-width: 550px; 
    margin: 0 auto 30px; 
    font-family: 'Open Sans', sans-serif;
    animation: fadeInUp 0.6s ease 0.1s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}
.dest-search { 
    max-width: 450px; 
    margin: 0 auto; 
    display: flex; 
    background: #fff; 
    border-radius: 40px; 
    overflow: hidden; 
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
    animation: fadeInUp 0.6s ease 0.2s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}
.dest-search input { 
    flex: 1; 
    border: none; 
    padding: 16px 26px; 
    font-size: 15px; 
    font-family: 'Open Sans', sans-serif;
    transition: all 0.3s ease;
}
.dest-search input:focus {
    outline: none;
    box-shadow: inset 0 0 0 2px #6abf4b;
}
.dest-search button { 
    background: #6abf4b; 
    border: none; 
    padding: 16px 28px; 
    color: #fff; 
    font-weight: 700; 
    cursor: pointer;
    transition: all 0.3s ease;
}
.dest-search button:hover {
    background: #5aa83d;
}

.destinations-intro { 
    text-align: center; 
    max-width: 750px; 
    margin: 0 auto 60px; 
    font-family: 'Open Sans', sans-serif; 
    color: #555; 
    line-height: 1.9; 
    font-size: 16px; 
}
.destinations-intro a { 
    color: #6abf4b; 
    font-weight: 600;
    position: relative;
    display: inline-block;
}
.destinations-intro a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #6abf4b;
    transition: width 0.3s ease;
}
.destinations-intro a:hover::after {
    width: 100%;
}
.region-title { 
    font-size: 26px; 
    margin: 60px 0 30px; 
    padding-bottom: 15px; 
    border-bottom: 2px solid #6abf4b; 
    font-weight: 400; 
    color: #111; 
}
.destinations-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 25px; 
}
.destination-card { 
    position: relative; 
    height: 220px; 
    overflow: hidden; 
    border-radius: 16px; 
    box-shadow: 0 16px 40px rgba(0,0,0,0.12); 
    transition: box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    animation: fadeIn 0.6s ease forwards;
}
.destination-card:nth-child(1) { animation-delay: 0.1s; }
.destination-card:nth-child(2) { animation-delay: 0.15s; }
.destination-card:nth-child(3) { animation-delay: 0.2s; }
.destination-card:nth-child(4) { animation-delay: 0.25s; }
.destination-card:nth-child(5) { animation-delay: 0.3s; }
.destination-card:nth-child(6) { animation-delay: 0.35s; }
.destination-card img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: all 0.5s ease;
}
.destination-card:hover { 
    box-shadow: 0 25px 60px rgba(0,0,0,0.18); 
    transform: translateY(-8px);
}
.destination-card:hover img { 
    transform: scale(1.1); 
}
.destination-card h4 { 
    position: absolute; 
    bottom: 0; 
    left: 0; 
    right: 0; 
    padding: 25px; 
    background: linear-gradient(transparent, rgba(0,0,0,0.8)); 
    color: #fff; 
    font-weight: 500; 
    font-size: 16px;
    transition: all 0.3s ease;
}
.destination-card:hover h4 {
    padding-bottom: 30px;
}
.destination-overlay { 
    position: absolute; 
    bottom: 0; 
    left: 0; 
    right: 0; 
    padding: 25px; 
    background: linear-gradient(transparent, rgba(0,0,0,0.8)); 
    color: #fff; 
}
.destination-overlay h3 { 
    font-size: 22px; 
    margin-bottom: 6px; 
}
.destination-overlay p { 
    font-size: 14px; 
    opacity: 0.85; 
}
.budget-table { 
    background: #fff; 
    border-radius: 16px; 
    padding: 40px; 
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
}
.budget-table:hover {
    box-shadow: 0 20px 55px rgba(0,0,0,0.1);
}
.budget-table h3 { 
    font-size: 24px; 
    text-align: center; 
    margin-bottom: 28px; 
    color: #111; 
}
.budget-table table { 
    width: 100%; 
    border-collapse: collapse; 
}
.budget-table th { 
    background: #f8f9fa; 
    padding: 14px 18px; 
    text-align: left; 
    font-family: 'Open Sans', sans-serif; 
    font-size: 12px; 
    letter-spacing: 1px; 
    text-transform: uppercase; 
    color: #666; 
}
.budget-table td { 
    padding: 14px 18px; 
    border-bottom: 1px solid #eee; 
    font-family: 'Open Sans', sans-serif; 
    font-size: 14px;
    transition: all 0.3s ease;
}
.budget-table tr:hover td { 
    background: #f8fdf6; 
}
.budget-table .budget-low { 
    color: #6abf4b; 
    font-weight: 700; 
}
.budget-table .budget-mid { 
    color: #f5a623; 
    font-weight: 700; 
}
.budget-table .budget-high { 
    color: #e74c3c; 
    font-weight: 700; 
}
.popular-guides { 
    background: #f8f9fa; 
    padding: 60px 0; 
}
.popular-guides h2 { 
    font-size: 28px; 
    text-align: center; 
    margin-bottom: 35px; 
    font-weight: 400; 
    color: #111; 
}
.popular-guides-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 20px; 
}
.popular-guide-card { 
    position: relative; 
    height: 220px; 
    border-radius: 14px; 
    overflow: hidden; 
    display: block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.popular-guide-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}
.popular-guide-card img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.5s ease;
}
.popular-guide-card:hover img { 
    transform: scale(1.1); 
}
.popular-guide-card-overlay { 
    position: absolute; 
    inset: 0; 
    background: linear-gradient(transparent 50%, rgba(0,0,0,0.85)); 
    display: flex; 
    flex-direction: column; 
    justify-content: flex-end; 
    padding: 20px; 
    color: #fff; 
}
.popular-guide-card h4 { 
    font-size: 16px; 
    margin-bottom: 3px; 
}
.popular-guide-card span { 
    font-size: 12px; 
    color: #6abf4b; 
    font-weight: 600; 
}
