:root {
  --glass: rgba(0,0,0,0.55);
  --glass-border: rgba(255,255,255,0.08);
  --glass-hover: rgba(0,0,0,0.72);
  --gold: #d4a84b;
  --gold-light: #f0c96e;
  --teal: #1a8a8a;
  --teal-light: #26b5b5;
  --cream: #f5efe0;
  --text-main: #f0ece4;
  --text-muted: rgba(240,236,228,0.6);

  /* Tour type badge colours */
  --type-group-bg:    rgba(99,102,241,0.18);
  --type-group-bdr:   rgba(99,102,241,0.4);
  --type-group-txt:   #a5b4fc;

  --type-personal-bg:  rgba(20,184,166,0.15);
  --type-personal-bdr: rgba(20,184,166,0.4);
  --type-personal-txt: #5eead4;

  --type-backpacker-bg:  rgba(245,158,11,0.15);
  --type-backpacker-bdr: rgba(245,158,11,0.4);
  --type-backpacker-txt: #fcd34d;

  --type-oneday-bg:  rgba(236,72,153,0.15);
  --type-oneday-bdr: rgba(236,72,153,0.4);
  --type-oneday-txt: #f9a8d4;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: #0a0f0d; color: var(--text-main); min-height: 100vh; overflow-x: hidden; }

.site-bg {
  position: fixed; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 10%, rgba(26,138,138,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(212,168,75,0.12) 0%, transparent 55%),
    #070c0a;
}
.site-bg::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
}
main, section, header, footer, nav { position: relative; z-index: 1; }

/* ── NAVBAR ── */
.navbar { background: rgba(0,0,0,0.6); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--glass-border); padding: 10px 0; transition: background 0.3s; }
.navbar-brand { display: flex; align-items: center; gap: 10px; }
.brand-logo { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); box-shadow: 0 0 18px rgba(212,168,75,0.4); }
.brand-text { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--cream); line-height: 1.1; }
.brand-text span { display: block; font-size: 0.65rem; letter-spacing: 3px; color: var(--gold); font-family: 'DM Sans', sans-serif; font-weight: 300; text-transform: uppercase; }
.nav-link-pill { color: var(--text-muted) !important; font-size: 0.82rem; letter-spacing: 1px; text-transform: uppercase; text-decoration: none; font-weight: 500; padding: 6px 14px !important; border-radius: 50px; transition: all 0.3s; }
.nav-link-pill:hover, .nav-link-pill.active { color: var(--gold) !important; background: rgba(212,168,75,0.1); }

/* ── HERO ── */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; }
.hero-carousel { position: absolute; inset: 0; z-index: 0; }
.hero-carousel .carousel-item { height: 100vh; }
.hero-carousel .carousel-item img { width: 100%; height: 100%; object-fit: cover; filter: brightness(30%) saturate(0.7); }
.hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 40%, rgba(7,12,10,0.95) 100%); }
.hero-content { position: relative; z-index: 2; text-align: center; width: 100%; padding: 0 20px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(212,168,75,0.15); border: 1px solid rgba(212,168,75,0.35); color: var(--gold); padding: 5px 16px; border-radius: 50px; font-size: 0.72rem; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 20px; animation: fadeUp 0.8s ease both; }
.hero-title { font-family: 'Playfair Display', serif; font-size: clamp(2.8rem, 7vw, 5.5rem); line-height: 1.05; color: #fff; animation: fadeUp 0.9s 0.1s ease both; }
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-sub { color: var(--text-muted); font-size: 1rem; max-width: 480px; margin: 16px auto 32px; animation: fadeUp 1s 0.2s ease both; }
.btn-gold { background: linear-gradient(135deg, var(--gold), #b8902a); color: #1a1008; font-weight: 600; padding: 12px 32px; border-radius: 50px; border: none; font-size: 0.88rem; letter-spacing: 1px; text-decoration: none; transition: all 0.3s; box-shadow: 0 8px 30px rgba(212,168,75,0.35); animation: fadeUp 1.1s 0.3s ease both; }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(212,168,75,0.5); color: #1a1008; }
.btn-ghost { background: transparent; color: var(--cream); border: 1px solid rgba(255,255,255,0.25); padding: 12px 28px; border-radius: 50px; font-size: 0.88rem; text-decoration: none; transition: all 0.3s; animation: fadeUp 1.1s 0.35s ease both; }
.btn-ghost:hover { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.4); }
.hero-scroll { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); z-index: 2; color: var(--text-muted); font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 8px; animation: bounce 2s infinite; }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--gold), transparent); }

/* ── STATS STRIP ── */
.stats-strip { background: var(--glass); backdrop-filter: blur(20px); border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); padding: 24px 0; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--gold); font-weight: 700; line-height: 1; }
.stat-label { font-size: 0.72rem; color: var(--text-muted); letter-spacing: 2px; text-transform: uppercase; margin-top: 4px; }

/* ── SECTION COMMON ── */
.section-eyebrow { font-size: 0.7rem; letter-spacing: 4px; text-transform: uppercase; color: var(--teal-light); margin-bottom: 8px; display: block; }
.section-heading { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--cream); line-height: 1.2; }
.section-heading em { font-style: italic; color: var(--gold-light); }

/* ── ABOUT ── */
#about { padding: 100px 0; }
.about-img-wrap { position: relative; display: inline-block; }
.about-img-wrap img { width: 100%; border-radius: 20px; object-fit: cover; height: 420px; filter: brightness(0.85); }
.about-badge { position: absolute; bottom: -18px; right: -18px; background: linear-gradient(135deg, var(--gold), #b8902a); color: #1a1008; border-radius: 16px; padding: 18px 22px; text-align: center; box-shadow: 0 12px 30px rgba(212,168,75,0.4); }
.about-badge .num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; line-height: 1; }
.about-badge .lbl { font-size: 0.68rem; letter-spacing: 1.5px; text-transform: uppercase; }
.about-feature { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.about-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(26,138,138,0.18); border: 1px solid rgba(38,181,181,0.25); display: flex; align-items: center; justify-content: center; color: var(--teal-light); font-size: 1.1rem; flex-shrink: 0; }
.about-feature h6 { color: var(--cream); font-weight: 600; margin-bottom: 3px; font-size: 0.92rem; }
.about-feature p { color: var(--text-muted); font-size: 0.82rem; margin: 0; line-height: 1.5; }
/* Container holding all your columns */

/* Your updated image styling */
.gallery { display: flex; flex-wrap: wrap; align-items: flex-start; margin-bottom: 2rem; /* Keeps columns from stretching images vertically */}
.gallery-img {  width: 100%;  height: auto; /* Scales dynamically based on the image's original aspect ratio */ display: block;  margin-bottom: 1rem;  border-radius: 16px;  /* Removed object-fit: cover so nothing gets cut off */ transition: all .3s ease;  box-shadow: 0 .125rem .5rem rgba(0,0,0,.12);  cursor: pointer; /* Global Color Contrast: Softens the initial harsh lighting differences */ filter: brightness(0.96) contrast(1.02) saturate(0.95);}
.gallery-img:hover { transform: translateY(-4px) scale(1.02);  box-shadow: 0 .5rem 1.25rem rgba(0,0,0,.2); /* High-contrast color pop when hovered */ filter: brightness(1.05) contrast(1.08) saturate(1.15);}

/* ── CONTACT INFO ── */
.contact-info-card { background: rgba(212,168,75,0.07); border: 1px solid rgba(212,168,75,0.2); border-radius: 16px; padding: 24px 28px; margin-top: 32px; }
.contact-info-card h5 { font-family: 'Playfair Display', serif; color: var(--gold-light); font-size: 1.1rem; margin-bottom: 16px; }
.contact-row { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 13px; }
.contact-icon { width: 36px; height: 36px; border-radius: 10px; background: rgba(212,168,75,0.15); border: 1px solid rgba(212,168,75,0.25); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 0.95rem; flex-shrink: 0; }
.contact-row p { margin: 0; color: var(--cream); font-size: 0.85rem; line-height: 1.5; }
.contact-row span { display: block; font-size: 0.68rem; color: var(--text-muted); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 2px; }
.contact-phone-link { color: var(--gold-light); text-decoration: none; font-weight: 500; }
.contact-phone-link:hover { color: var(--gold); }

/* ── TOUR TYPE BADGES ── */
.tour-type-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 50px; border: 1px solid; white-space: nowrap;
}
.type-group      { background: var(--type-group-bg);      border-color: var(--type-group-bdr);      color: var(--type-group-txt); }
.type-personal   { background: var(--type-personal-bg);   border-color: var(--type-personal-bdr);   color: var(--type-personal-txt); }
.type-backpacker { background: var(--type-backpacker-bg); border-color: var(--type-backpacker-bdr); color: var(--type-backpacker-txt); }
.type-oneday     { background: var(--type-oneday-bg);     border-color: var(--type-oneday-bdr);     color: var(--type-oneday-txt); }

/* ── SEARCH / FILTER BAR ── */
/* ── SEARCH / FILTER BAR ───────────────────────────── */
#search-bar{
    padding:40px 0 0;
}

/* New filter container */
#search-bar .card{
    background:rgba(0,0,0,0.55);
    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);
    border:1px solid rgba(212,168,75,0.2);
    border-radius:20px;
    padding:24px 28px;
    box-shadow:none;
}

/* Inputs */
#search-bar .form-control,
#search-bar .form-select{
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.1);
    color:var(--cream);
    border-radius:12px;
    height:48px;
    font-size:0.85rem;
    transition:all .3s ease;
}

#search-bar .form-control::placeholder{
    color:rgba(240,236,228,0.35);
}

#search-bar .form-select option{
    background:#111;
    color:var(--cream);
}

#search-bar .form-control:focus,
#search-bar .form-select:focus{
    background:rgba(255,255,255,0.10);
    border-color:var(--gold);
    box-shadow:0 0 0 3px rgba(212,168,75,.15);
    color:var(--cream);
}

/* Search button */
#search-bar .btn,
#search-bar .btn-search{
    height:48px;
    border-radius:12px;
    font-weight:600;
    border:none;
    background:linear-gradient(135deg,var(--gold),#b8902a);
    color:#1a1008;
    box-shadow:0 6px 20px rgba(212,168,75,.30);
    transition:all .3s ease;
}

#search-bar .btn:hover,
#search-bar .btn-search:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 28px rgba(212,168,75,.45);
}

/* Labels */
#search-bar .search-label{
    font-size:.68rem;
    letter-spacing:2px;
    text-transform:uppercase;
    color:var(--text-muted);
    margin-bottom:5px;
    display:block;
}

/* Result count */
.search-results-count{
    color:var(--text-muted);
    font-size:.75rem;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-top:12px;
}

.clear-filter{
    color:var(--gold);
    text-decoration:none;
    transition:.3s;
}

.clear-filter:hover{
    color:var(--cream);
}


#no-results { text-align: center; padding: 60px 20px; display: none; color: var(--text-muted); font-size: 0.95rem; }
#no-results i { font-size: 2.5rem; color: var(--gold); display: block; margin-bottom: 12px; }

/* ── PACKAGES ── */
#packages { padding: 60px 0 100px; }
.packages-grid { display: flex; flex-direction: column; gap: 28px; }

/* ── TOUR CARD ── */
.tour-card { background: var(--glass); border: 1px solid var(--glass-border); border-radius: 20px; overflow: hidden; backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); display: grid; grid-template-columns: 340px 1fr; transition: all 0.4s ease; }
.tour-card:hover { background: var(--glass-hover); border-color: rgba(212,168,75,0.2); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.tour-img { position: relative; overflow: hidden; }
.tour-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.tour-card:hover .tour-img img { transform: scale(1.04); }
.tour-img-badge { position: absolute; top: 14px; left: 14px; background: rgba(0,0,0,0.65); backdrop-filter: blur(8px); color: var(--gold); border: 1px solid rgba(212,168,75,0.3); padding: 4px 12px; border-radius: 50px; font-size: 0.7rem; letter-spacing: 1px; text-transform: uppercase; }
/* Tour type badge on image — bottom left */
.tour-img-type { position: absolute; bottom: 14px; left: 14px; }
.tour-body { padding: 28px 32px; display: flex; flex-direction: column; }
.tour-meta-row { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 10px; gap: 12px; }
.tour-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--cream); font-weight: 700; }
.tour-price-block { text-align: right; flex-shrink: 0; }
.tour-price-amt { font-family: 'Playfair Display', serif; font-size: 1.7rem; color: var(--gold); font-weight: 700; line-height: 1; }
.tour-price-note { font-size: 0.68rem; color: var(--text-muted); letter-spacing: 1px; text-transform: uppercase; }
.tour-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.chip { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); color: var(--text-muted); font-size: 0.72rem; padding: 3px 10px; border-radius: 50px; display: inline-flex; align-items: center; gap: 4px; }
.chip i { color: var(--teal-light); }
.tour-desc { color: var(--text-muted); font-size: 0.85rem; line-height: 1.65; margin-bottom: 10px; margin-top: 10px; flex: 1; text-align: justify;}

/* ── BOOKING FORM ── */
.booking-form { background: rgba(0,0,0,0.35); border: 1px solid var(--glass-border); border-radius: 14px; padding: 18px 20px; }
.booking-form .form-label-custom { font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; display: block; }
.booking-form .form-control, .booking-form .form-select { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); color: var(--cream); border-radius: 10px; font-size: 0.85rem; padding: 9px 13px; transition: all 0.3s; }
.booking-form .form-control:focus, .booking-form .form-select:focus { background: rgba(255,255,255,0.1); border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,168,75,0.15); color: var(--cream); outline: none; }
.booking-form .form-control::placeholder { color: rgba(240,236,228,0.3); }
.form-check-input { background-color: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }
.form-check-input:checked { background-color: var(--teal); border-color: var(--teal); }
.form-check-label { color: var(--text-muted); font-size: 0.8rem; }
.btn-book-now { background: linear-gradient(135deg, var(--teal), #0e6b6b); color: #fff; border: none; padding: 10px 20px; border-radius: 10px; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.5px; width: 100%; transition: all 0.3s; box-shadow: 0 6px 20px rgba(26,138,138,0.4); display: flex; align-items: center; justify-content: center; gap: 6px; }
.btn-book-now:hover { background: linear-gradient(135deg, var(--teal-light), var(--teal)); transform: translateY(-1px); box-shadow: 0 10px 28px rgba(26,138,138,0.5); }

/* ── DESTINATIONS ── */
#destinations { padding: 80px 0; background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.4), transparent); }
.dest-card { border-radius: 16px; overflow: hidden; position: relative; height: 220px; cursor: pointer; }
.dest-card img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.55); transition: transform 0.5s, filter 0.5s; }
.dest-card:hover img { transform: scale(1.07); filter: brightness(0.7); }
.dest-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.7), transparent 60%); display: flex; align-items: flex-end; padding: 16px; }
.dest-name { font-family: 'Playfair Display', serif; color: #fff; font-size: 1.1rem; font-weight: 700; }
.dest-sub { color: var(--gold-light); font-size: 0.72rem; letter-spacing: 1px; }

/* ── REVIEWS ── */
#reviews { padding: 100px 0; }
.review-card { background: var(--glass); border: 1px solid var(--glass-border); border-radius: 20px; padding: 28px 24px; backdrop-filter: blur(14px); transition: all 0.3s; display: flex; flex-direction: column; height: 100%; }
.review-card:hover { border-color: rgba(212,168,75,0.25); background: var(--glass-hover); transform: translateY(-3px); }
.review-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 12px; letter-spacing: 2px; }
.review-text { color: var(--text-muted); font-size: 0.88rem; line-height: 1.75; margin-bottom: 20px; flex: 1; font-style: italic; }
.review-text::before { content: '"'; font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--gold); line-height: 0; vertical-align: -0.5rem; margin-right: 4px; }
.reviewer-row { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--glass-border); }
.reviewer-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--teal), #0e6b6b); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 600; font-size: 0.9rem; flex-shrink: 0; border: 2px solid rgba(26,138,138,0.4); }
.reviewer-name { color: var(--cream); font-weight: 500; font-size: 0.88rem; margin-bottom: 2px; }
.reviewer-dest { color: var(--gold); font-size: 0.72rem; letter-spacing: 1px; text-transform: uppercase; }


/* ── FOOTER ── */
footer { background: rgba(0,0,0,0.75); backdrop-filter: blur(20px); border-top: 1px solid var(--glass-border); padding: 70px 0 30px; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo { width: 52px; height: 52px; border-radius: 50%; border: 2px solid var(--gold); box-shadow: 0 0 20px rgba(212,168,75,0.3); }
.footer-brand-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--cream); line-height: 1.1; }
.footer-brand-name span { display: block; font-size: 0.6rem; letter-spacing: 3px; color: var(--gold); font-family: 'DM Sans', sans-serif; font-weight: 300; text-transform: uppercase; }
.footer-desc { color: var(--text-muted); font-size: 0.82rem; line-height: 1.7; margin-bottom: 20px; }
.social-btn { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 10px; background: rgba(255,255,255,0.06); border: 1px solid var(--glass-border); color: var(--text-muted); font-size: 1rem; text-decoration: none; transition: all 0.3s; margin-right: 6px; }
.social-btn:hover { background: rgba(212,168,75,0.15); border-color: var(--gold); color: var(--gold); }
.footer-title { color: var(--cream); font-weight: 600; font-size: 0.82rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.84rem; transition: color 0.3s; display: inline-flex; align-items: center; gap: 6px; }
.footer-links a::before { content: '→'; font-size: 0.7rem; opacity: 0; transition: opacity 0.3s, transform 0.3s; transform: translateX(-4px); }
.footer-links a:hover { color: var(--gold); }
.footer-links a:hover::before { opacity: 1; transform: translateX(0); }
.newsletter-input { background: rgba(255,255,255,0.06); border: 1px solid var(--glass-border); color: var(--cream); border-radius: 10px 0 0 10px; padding: 9px 14px; font-size: 0.82rem; flex: 1; outline: none; transition: all 0.3s; }
.newsletter-input:focus { border-color: var(--gold); background: rgba(255,255,255,0.1); }
.newsletter-input::placeholder { color: rgba(240,236,228,0.3); }
.newsletter-btn { background: linear-gradient(135deg, var(--gold), #b8902a); border: none; color: #1a1008; padding: 9px 16px; border-radius: 0 10px 10px 0; font-weight: 600; font-size: 0.82rem; cursor: pointer; transition: all 0.3s; }
.newsletter-btn:hover { background: linear-gradient(135deg, var(--gold-light), var(--gold)); }
.footer-divider { border-color: var(--glass-border); margin: 30px 0 20px; }
.footer-bottom { color: var(--text-muted); font-size: 0.78rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-bottom a { color: var(--text-muted); text-decoration: none; transition: color 0.3s; }
.footer-bottom a:hover { color: var(--gold); }
.footer-contact-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; }
.footer-contact-icon { color: var(--gold); font-size: 0.9rem; margin-top: 2px; flex-shrink: 0; }
.footer-contact-text { color: var(--text-muted); font-size: 0.82rem; line-height: 1.5; }
.footer-contact-text a { color: var(--gold-light); text-decoration: none; }
.footer-contact-text a:hover { color: var(--gold); }

.ornament-divider { text-align: center; margin: 20px 0 50px; position: relative; }
.ornament-divider::before, .ornament-divider::after { content: ''; position: absolute; top: 50%; width: calc(50% - 30px); height: 1px; background: linear-gradient(to right, transparent, rgba(212,168,75,0.3)); }
.ornament-divider::before { left: 0; }
.ornament-divider::after { right: 0; transform: scaleX(-1); }
.ornament-divider span { color: var(--gold); font-size: 1.1rem; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

.form-label-custom { font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 5px; display: block; }

@media (max-width: 768px) {
  .tour-card { grid-template-columns: 1fr; }
  .tour-img { height: 220px; }
  .tour-body { padding: 20px; }
  .tour-meta-row { flex-direction: column; align-items: flex-start; gap: 8px; }
  .tour-price-block { text-align: left; }
  .about-badge { right: 0; bottom: -10px; }
  .contact-info-card { padding: 18px 20px; }
    #search-bar .card{
        padding:18px;
        border-radius:16px;
    }

    #search-bar .btn,
    #search-bar .btn-search{
        width:100%;
    }
}
input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(0.7); cursor: pointer; }