:root {
    --primary-color: #F4A261;
    --accent-teal: #2A9D8F;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #334155;
    background-color: #F8F7F6;
}

.text-primary-custom {
    color: var(--primary-color) !important;
}

.bg-primary-custom {
    background-color: var(--primary-color) !important;
}

.btn-primary-custom {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    font-weight: 800;
    border-radius: 12px;
    padding: 12px 24px;
    transition: all 0.3s;
}

.btn-primary-custom:hover {
    background-color: #e68a45;
    color: white;
    transform: translateY(-2px);
}

.sticky-header {
    position: sticky;
    top: 0;
    z-index: 1020;
    backdrop-filter: blur(12px);
    background-color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid #f1f5f9;
}

/*.hero-section {*/
/*    position: relative;*/
/*    min-height: 600px;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url('https://lh3.googleusercontent.com/aida-public/AB6AXuBNLk_bkEjUIkOpPaBAYm0gtcrcTjvjWYz2JtKQcYWro6axSRevm9SRcfIKH8avf-W4a3XQcvw-VDuclzcpPcYAFpl4hHo2TuhQgBTkpjAFVZyRdxHsG7D4K_jy5CCXbMsk_BwaXVeLod1u9CvW0SQWjvcnftjOLFzlHNBKaSrjcXmkihMUgNKhnB5xpi-GNK3xIJ-gsuAwPw3DdQ2kPGPhxJBgZpBSeIG3x6KB6LZz7Wn3QAYZCT4sGs485UJjQ1HGdg-T6pHToydq');*/
/*    background-size: cover;*/
/*    background-position: center;*/
/*    color: white;*/
/*}*/
.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('https://bvhttdl.mediacdn.vn/291773308735864832/2021/4/27/ngo-ngang-voi-ve-dep-pho-co-hoi-an-nhin-tu-tren-cao-11-16195044601901189703392-1619511847534-1619511847640775782823.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transform: scale(1.05); /* chống viền trắng khi cover */
    z-index: -2;
}

.hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6));
    z-index: -1;
}
.search-box {
    background: white;
    border-radius: 50px;
    padding: 10px 30px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
    .search-box {
        border-radius: 20px;
        padding: 20px;
    }
}

.tour-card {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #f1f5f9;
    transition: all 0.3s;
}

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

.tour-image {
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.badge-tour {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 50px;
}