/*
 * Copyright (c) 2025. Perun Consulting Services FZ LLE
 */


.header {
    height: 40vh;
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.header h1 {
    /* background-color: rgba(0, 0, 0, 0.2); */
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    padding: 0.2rem;
    border-radius: 6px;
}

.header h2 {
    background-color: rgba(0, 0, 0, 0.2);
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    padding: 0.2rem;
    border-radius: 6px;
}

/* Card specific styling */
.card {
    width: 100%; /* Full width for each card */
    display: flex;
    flex-wrap: wrap;
    border: 1px lightgray solid;
}

.card.shadowed {
    box-shadow: 1px 1px 5px #999;
    border-radius: 5px;
}


.card-team {
    padding: 1rem;
    height: auto !important;
}

.team-contact {
    color: #2c0b0e;
}

.team-contact a {
    color: #2c0b0e;
    text-decoration: none;
    font-weight: 500;
}

.team-contact a:hover {
    color: #2c0b0e;
    font-weight: bold;
}

.team-contact i {
    position: relative;
    top: 0.1rem;
}

/* Circle styling for team member photos */
.team-photo {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
}

/* Styling for image part */
.card-img-section {
    overflow: hidden;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px 0 0 5px;
}

/* On small screens - Image on top, description below */
.card-body-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem;
}

.sticker-left {
    position: absolute;
    top: 5%;
    left: -9px;
    width: auto;
    height: 30%;
    z-index: 99;
}

.sticker-top {
    position: absolute;
    top: -1rem;
    left: 0;
    width: 16rem;
    height: auto;
    z-index: 99;
}

.sticker-txt {
    position: absolute;
    top: 10%;
    left: 1rem;
    z-index: 100;
    text-align: center;
    font-size: 1.6rem;
    font-weight: bold;
    color: #ffdd00;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    font-family: Calibri, sans-serif;
}

.sticker-txt-top {
    position: absolute;
    top: -0.75rem;
    left: 3.5rem;
    z-index: 100;
    text-align: center;
    font-size: 1.6rem;
    font-weight: bold;
    color: #FFEFC1;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    font-family: Calibri, sans-serif;
}

.sticker-txt-top-small {
    position: absolute;
    top: -0.2rem;
    left: 3.5rem;
    z-index: 100;
    text-align: center;
    font-size: 1.3rem;
    font-weight: bold;
    color: #FFEFC1;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    font-family: Calibri, sans-serif;
}

@media (max-width: 576px) {
    .sticker-left {
        width: 35%;
        height: auto;
    }

    .sticker-txt {
        font-size: 1.2rem;
    }

    .lead {
        font-size: 1rem;
    }
}

/* Adjustments for medium and larger screens */
@media (min-width: 768px) {
    .card {
        flex-direction: row; /* Left to right alignment */
        height: 500px;
    }

    .card-img-section {
        flex: 0 0 70%; /* Image takes 40% of width */
        height: 100%;
    }

    .card-body-section {
        flex: 1; /* Description area takes the remaining space */
        padding: 2rem;
    }

    .card-body-section .card-title {
        text-align: center;
    }

    .header {
        height: 40vh;
    }

    .header h1 {
        font-size: 5rem;
    }

    .header h2 {
        font-size: 3rem;
    }

    body {
        background-color: mintcream;
    }
}

.btn-success {
    --bs-btn-color: #fff;
    --bs-btn-bg: rgba(25, 135, 118, 0.76);
    --bs-btn-border-color: #198754;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #00d5d0;
    --bs-btn-hover-border-color: #00d5d0;
    --bs-btn-focus-shadow-rgb: 60, 153, 110;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #00b2af;
    --bs-btn-active-border-color: #00b2af;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #198754;
    --bs-btn-disabled-border-color: #198754;
}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #009ada;
    --bs-btn-border-color: #009ada;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #0074a8;
    --bs-btn-hover-border-color: #0074a8;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #009ada;
    --bs-btn-active-border-color: #0a53be;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #afd3e7;
    --bs-btn-disabled-bg: #0d6efd;
    --bs-btn-disabled-border-color: #0d6efd;
}

/* Card descriptions with vertical layout adjustments */
.resort-card .card-body {
    flex-grow: 1;
}
@media (min-width: 768px) {
    .resort-card {
        flex-direction: row; /* Horizontal layout for large screens */
    }
}

/* Custom class for card styling */
.custom-card {
    border: 1px solid #ccc;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    padding: 15px;
    display: flex; /* Ensure left-to-right alignment of elements */
    align-items: center; /* Vertically align content */
    height: 100%; /* Ensure equal height */
}

/* Style for the circle with the initial letter */
.custom-circle {
    flex: 0 0 20%; /* Fixed width of 25% of the card */
    aspect-ratio: 1; /* Makes it a perfect circle */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    color: white;
    font-weight: bold;
}

/* Container for the right-side content */
.custom-card-content {
    flex: 1; /* Take up the remaining 75% of the card width */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.custom-rating {
    text-align: right;
}

/* Style for the star icons (rating row) */
.custom-rating img {
    width: 16px;
    height: 16px;
}

/* Style for the review text */
.custom-review-body {
    font-size: 12px;
    color: #555;
    text-align: justify;
    line-height: 1.5;
    padding-left: 10px;
}

/* Style for the reviewer text */
.custom-reviewer {
    text-align: right;
}

.custom-reviewer a {
    font-size: 12px;
    font-weight: bold;
    text-decoration: none;
    color: #333;
}

/* ==========================================================================
   CENTRALIZED STYLES (moved from inline and embedded styles)
   ========================================================================== */

/* ------------------------------------------------------------------------- */
/* Utility Classes                                                           */
/* ------------------------------------------------------------------------- */

/* Position utilities */
.pos-relative {
    position: relative;
}

/* Text utilities for cards */
.card-text-justified {
    font-size: 1.1rem;
    text-align: justify;
}

/* Font size utility for hero subtitle */
.font-size-80 {
    font-size: 80%;
}

/* Vertical align utility */
.valign-middle {
    vertical-align: middle;
}

/* ------------------------------------------------------------------------- */
/* Destination Page Header Styles                                            */
/* ------------------------------------------------------------------------- */

/* Base destination header - used on all destination pages */
.header-destination {
    height: 45vh;
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.header-destination h1 {
    font-size: 3rem;
    background-color: rgba(0, 0, 0, 0.1);
    text-shadow: 3px 3px 10px black;
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .header-destination {
        height: 40vh;
    }
    .header-destination h1 {
        font-size: 2rem;
    }
}

/* ------------------------------------------------------------------------- */
/* Destination-specific header backgrounds                                   */
/* ------------------------------------------------------------------------- */

/* Armenia */
.header-armenia {
    background-image: url('https://d117ew1ll41gas.cloudfront.net/images/tatev-armenia-1920.webp');
}
@media (max-width: 768px) {
    .header-armenia {
        background-image: url('https://d117ew1ll41gas.cloudfront.net/images/hayravank-armenia-540x360.webp');
    }
}

/* Azerbaijan */
.header-azerbaijan {
    background-image: url('https://d117ew1ll41gas.cloudfront.net/images/baku-2-2000x450.webp');
}
@media (max-width: 768px) {
    .header-azerbaijan {
        background-image: url('https://d117ew1ll41gas.cloudfront.net/images/baku-ha-center-540x360.webp');
    }
}

/* Bali */
.header-bali {
    background-image: url('https://d117ew1ll41gas.cloudfront.net/images/wat-arun-temple-bangkok-1920x800.webp');
    height: 60vh;
}
@media (max-width: 768px) {
    .header-bali {
        height: 40vh;
    }
}

/* Bosnia */
.header-bosnia {
    background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url('https://d117ew1ll41gas.cloudfront.net/images/bosnia-mostar-mq-1920.webp');
    background-size: cover, cover;
}
@media (max-width: 768px) {
    .header-bosnia {
        background-image: url('https://d117ew1ll41gas.cloudfront.net/images/sarajevo-bridge-540x360.webp');
    }
}

/* Egypt */
.header-egypt {
    background-image: url('https://d117ew1ll41gas.cloudfront.net/images/egypt-luxor-1920.webp');
}
@media (max-width: 768px) {
    .header-egypt {
        height: 40vh;
    }
}

/* Georgia */
.header-georgia {
    background-image: url('https://d117ew1ll41gas.cloudfront.net/images/tbilisi-1920.webp');
}
@media (max-width: 768px) {
    .header-georgia {
        background-image: url('https://d117ew1ll41gas.cloudfront.net/images/bridge-tbilisi-night-540x360.webp');
    }
}

/* Kazakhstan */
.header-kazakhstan {
    background-image: url('https://d117ew1ll41gas.cloudfront.net/images/kazakhstan-republic-palace-1200.webp');
}

/* Malaysia */
.header-malaysia {
    background-image: url('https://d117ew1ll41gas.cloudfront.net/images/langkawi-eco-resort-1920x800.webp');
}
@media (max-width: 768px) {
    .header-malaysia {
        background-image: url('https://d117ew1ll41gas.cloudfront.net/images/kuala-lumpur-cityscape-600x400.webp');
    }
}

/* Maldives */
.header-maldives {
    background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url('https://d117ew1ll41gas.cloudfront.net/images/maldives-overw-1920.webp');
    background-size: cover, cover;
}
@media (max-width: 768px) {
    .header-maldives {
        background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url('https://d117ew1ll41gas.cloudfront.net/images/maldives-family-540x360.webp');
        background-size: cover, cover;
    }
}

/* Singapore */
.header-singapore {
    background-image: url('https://d117ew1ll41gas.cloudfront.net/images/panorama-singapore-1920.webp');
}
@media (max-width: 768px) {
    .header-singapore {
        background-image: url('https://d117ew1ll41gas.cloudfront.net/images/singapore-540x360.webp');
        height: 30vh;
    }
}

/* Sri Lanka */
.header-srilanka {
    background-image: url('https://d117ew1ll41gas.cloudfront.net/images/sri-lankan-leopard-1920.webp');
    height: 60vh;
}
@media (max-width: 768px) {
    .header-srilanka {
        height: 40vh;
    }
}

/* Thailand */
.header-thailand {
    background-image: url('https://d117ew1ll41gas.cloudfront.net/images/wat-arun-temple-bangkok-1920x800.webp');
}
@media (max-width: 768px) {
    .header-thailand {
        background-image: url('https://d117ew1ll41gas.cloudfront.net/images/bangkok-temple-540x360.webp');
    }
}

/* Turkiye */
.header-turkiye {
    background-image: url('https://d117ew1ll41gas.cloudfront.net/images/galata-1-wide.webp');
}
@media (max-width: 768px) {
    .header-turkiye {
        background-image: url('https://d117ew1ll41gas.cloudfront.net/images/istiklal-540x360.webp');
    }
}

/* Cruises */
.header-cruise {
    background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url('https://d117ew1ll41gas.cloudfront.net/images/maldives-resort-1920x512.webp');
    background-size: cover, cover;
}
@media (max-width: 768px) {
    .header-cruise {
        background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url('https://d117ew1ll41gas.cloudfront.net/images/beach-600x400.webp');
        background-size: cover, cover;
    }
}

/* UAE Staycations */
.header-uaestays {
    background-image: url('https://d117ew1ll41gas.cloudfront.net/images/burj-al-arab-1920.webp');
    height: 40vh;
}
@media (max-width: 768px) {
    .header-uaestays {
        background-image: url('https://d117ew1ll41gas.cloudfront.net/images/dubai-sunset-400.webp');
    }
}

/* Uzbekistan */
.header-uzbekistan {
    background-image: url('https://d117ew1ll41gas.cloudfront.net/images/uzbek-mosque-1920.webp');
    height: 60vh;
}
@media (max-width: 768px) {
    .header-uzbekistan {
        height: 40vh;
    }
}

/* Vietnam */
.header-vietnam {
    background-image: url('https://d117ew1ll41gas.cloudfront.net/images/vietnam-banner-1920.webp');
}
@media (max-width: 768px) {
    .header-vietnam {
        background-image: url('https://d117ew1ll41gas.cloudfront.net/images/lotus-hanoi-540x360.webp');
    }
}

/* Zanzibar */
.header-zanzibar {
    background-image: url('https://d117ew1ll41gas.cloudfront.net/images/beach-zanzibar-1920.webp');
}
@media (max-width: 768px) {
    .header-zanzibar {
        background-image: url('https://d117ew1ll41gas.cloudfront.net/images/zan-sunset-cruise-600x400.webp');
    }
}

/* ------------------------------------------------------------------------- */
/* About Page Header                                                         */
/* ------------------------------------------------------------------------- */

.header-about {
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('https://d117ew1ll41gas.cloudfront.net/images/woman-sunset-lounge-1920.webp');
    background-size: cover;
    background-position: center;
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.header-about h1 {
    font-size: 3rem;
    background-color: transparent;
    text-shadow: 3px 3px 10px black;
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .header-about {
        height: 40vh;
        background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('https://d117ew1ll41gas.cloudfront.net/images/woman-lounge-520.webp');
    }
    .header-about h1 {
        font-size: 2rem;
    }
}

/* About page specific */
.values-icon {
    font-size: 3rem;
    color: #007bff;
}

.team-member img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
}

/* ------------------------------------------------------------------------- */
/* Privacy Policy Page Header                                                */
/* ------------------------------------------------------------------------- */

.header-privacy {
    height: 50vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('https://d117ew1ll41gas.cloudfront.net/images/travel-privacy-1920.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.header-privacy h1 {
    font-size: 3rem;
    background-color: transparent;
    text-shadow: 3px 3px 10px black;
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .header-privacy {
        height: 40vh;
    }
    .header-privacy h1 {
        font-size: 2rem;
    }
}

/* ------------------------------------------------------------------------- */
/* Request/Thank You Page Header Image                                       */
/* ------------------------------------------------------------------------- */

.header-image {
    background: url('https://d117ew1ll41gas.cloudfront.net/images/sunbathing-beach-1920.webp') no-repeat center center;
    background-size: cover;
    height: 40vh;
}

.header-image-60 {
    height: 60vh;
}

/* Request form styling */
.form-div {
    width: 100%;
    padding: 1rem;
    border: 1px solid #c0c0c0;
    border-radius: 5px;
    align-content: center;
}

@media (min-width: 768px) {
    .form-div {
        width: 75%;
        background-color: #e7f5ff;
    }
}

/* ------------------------------------------------------------------------- */
/* Card Padding for Destination Pages                                        */
/* ------------------------------------------------------------------------- */

.card-padded {
    padding: 1rem;
}

.card-padded-auto {
    padding: 1rem;
    height: auto;
}

/* ------------------------------------------------------------------------- */
/* Review Circle Colors (utility classes for background colors)              */
/* ------------------------------------------------------------------------- */

.bg-review-green {
    background-color: #4CAF50;
}

.bg-review-orange {
    background-color: #FF6F00;
}

.bg-review-blue {
    background-color: #2196F3;
}

.bg-review-pink {
    background-color: #E91E63;
}

.bg-review-purple {
    background-color: #9C27B0;
}

.bg-review-teal {
    background-color: #009688;
}


/* ==========================================================================
   UIKit Theme – Book My Holiday (New Design)
   Applied to pages with <body class="bmh-uikit">
   ========================================================================== */

/* ------------------------------------------------------------------------- */
/* CSS Custom Properties                                                     */
/* ------------------------------------------------------------------------- */

:root {
  --bmh-purple: #4C1E7C;
  --bmh-purple-deep: #3A1560;
  --bmh-gold: #e8a838;
  --bmh-gold-warm: #d4763c;
  --bmh-sand: #F9F7FC;
  --bmh-dark: #1A0E2E;
  --bmh-muted: #7A6E8E;
  --bmh-whatsapp: #25d366;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', Helvetica, Arial, sans-serif;
}

/* ------------------------------------------------------------------------- */
/* Base / Reset (scoped to UIKit pages)                                      */
/* ------------------------------------------------------------------------- */

body.bmh-uikit {
  font-family: var(--font-body);
  color: var(--bmh-dark);
  background: var(--bmh-sand);
  margin: 0;
  overflow-x: hidden;
}

/* ------------------------------------------------------------------------- */
/* Navbar                                                                    */
/* ------------------------------------------------------------------------- */

.bmh-navbar {
  background: rgba(42, 20, 68, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.4s ease;
}
.bmh-navbar.uk-active {
  background: rgba(26, 14, 46, 0.97);
  box-shadow: 0 2px 24px rgba(0,0,0,0.2);
}
.bmh-navbar .uk-navbar-nav > li > a {
  color: rgba(255,255,255,0.82);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.3s;
  min-height: 64px;
}
.bmh-navbar .uk-navbar-nav > li > a:hover,
.bmh-navbar .uk-navbar-nav > li.uk-active > a {
  color: var(--bmh-gold);
}
.bmh-brand {
  font-family: var(--font-display);
  color: #fff !important;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.bmh-brand span { color: var(--bmh-gold); }
.bmh-brand img {
  width: 48px;
  height: 48px;
}
.bmh-brand-sub {
  color: rgba(255,255,255,0.5);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}
.bmh-navbar .uk-navbar-dropdown {
  background: rgba(26, 14, 46, 0.97);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 12px 0;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.bmh-navbar .uk-navbar-dropdown .uk-nav > li > a {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  padding: 8px 24px;
  transition: all 0.2s;
}
.bmh-navbar .uk-navbar-dropdown .uk-nav > li > a:hover {
  color: var(--bmh-gold);
  background: rgba(255,255,255,0.05);
}
.bmh-navbar .uk-navbar-dropdown .uk-nav > li.uk-nav-divider {
  border-top-color: rgba(255,255,255,0.08);
}

/* ------------------------------------------------------------------------- */
/* Hero Slideshow (Homepage)                                                 */
/* ------------------------------------------------------------------------- */

.bmh-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--bmh-dark);
}
.bmh-hero-slideshow {
  position: absolute;
  inset: 0;
}
.bmh-hero-slideshow .uk-slideshow-items {
  height: 100%;
}
.bmh-hero-slideshow .uk-slideshow-items li {
  overflow: hidden;
}
.bmh-hero-slideshow .uk-slideshow-items li > img,
.bmh-hero-slideshow .uk-slideshow-items li > picture > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroSlowZoom 18s ease-in-out infinite alternate;
}
@keyframes heroSlowZoom {
  0%   { transform: scale(1.0); }
  100% { transform: scale(1.06); }
}
.bmh-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(24, 24, 32, 0.45) 0%,
    rgba(24, 24, 32, 0.3) 45%,
    rgba(212, 118, 60, 0.15) 100%
  );
  z-index: 1;
}
.bmh-hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 24px 80px;
  max-width: 820px;
}
.bmh-hero-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bmh-gold);
  border: 1px solid rgba(232,168,56,0.4);
  padding: 6px 22px;
  border-radius: 40px;
  margin-bottom: 28px;
}
.bmh-hero h1 {
  font-family: var(--font-display);
  color: #fff;
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.12;
  margin: 0 0 22px;
}
.bmh-hero h1 em {
  color: var(--bmh-gold);
  font-style: italic;
}
.bmh-hero-sub {
  color: rgba(255,255,255,0.78);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 38px;
}
.bmh-hero-cta {
  display: inline-block;
  background: var(--bmh-gold);
  color: var(--bmh-dark) !important;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 44px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 24px rgba(232,168,56,0.35);
}
.bmh-hero-cta:hover {
  background: #fff;
  color: var(--bmh-purple) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,255,255,0.25);
}

/* Scroll indicator */
.bmh-scroll-hint {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: scrollBounce 2.2s ease-in-out infinite;
  cursor: pointer;
}
.bmh-scroll-hint span {
  display: block;
  width: 26px; height: 42px;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 13px;
  position: relative;
}
.bmh-scroll-hint span::after {
  content: '';
  position: absolute;
  top: 7px; left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 8px;
  background: rgba(255,255,255,0.55);
  border-radius: 3px;
  animation: scrollDot 2.2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}
@keyframes scrollDot {
  0%, 100% { opacity: 1; top: 7px; }
  50% { opacity: 0.2; top: 20px; }
}

/* ------------------------------------------------------------------------- */
/* Destination Hero Header (Destination pages)                               */
/* ------------------------------------------------------------------------- */

.bmh-dest-hero {
  position: relative;
  height: 50vh;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--bmh-dark);
}
.bmh-dest-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: heroSlowZoom 20s ease-in-out infinite alternate;
}
.bmh-dest-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(24, 24, 32, 0.2) 0%,
    rgba(24, 24, 32, 0.3) 60%,
    rgba(24, 24, 32, 0.45) 100%
  );
  z-index: 1;
}
.bmh-dest-hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 24px 40px;
  max-width: 800px;
}
.bmh-dest-hero h1 {
  font-family: var(--font-display);
  color: #fff;
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

/* ------------------------------------------------------------------------- */
/* Sections (Shared)                                                         */
/* ------------------------------------------------------------------------- */

.bmh-section {
  padding: 80px 0;
}
.bmh-section-heading {
  text-align: center;
  margin-bottom: 52px;
}
.bmh-section-heading h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  color: var(--bmh-purple);
  margin: 0 0 14px;
}
.bmh-section-heading p {
  color: var(--bmh-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.65;
}
.bmh-divider {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--bmh-gold), var(--bmh-gold-warm));
  margin: 18px auto 0;
  border-radius: 2px;
}

/* ------------------------------------------------------------------------- */
/* Featured Card (Homepage hero destination)                                 */
/* ------------------------------------------------------------------------- */

.bmh-featured {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
}
.bmh-featured-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.bmh-featured:hover .bmh-featured-bg {
  transform: scale(1.04);
}
.bmh-featured-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(24,24,32,0.8) 0%, rgba(24,24,32,0.2) 45%, transparent 100%);
}
.bmh-featured-content {
  position: relative;
  z-index: 2;
  padding: 48px;
  max-width: 620px;
}
.bmh-featured-price {
  display: inline-block;
  background: var(--bmh-gold);
  color: var(--bmh-dark);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 8px 20px;
  border-radius: 40px;
  margin-bottom: 16px;
}
.bmh-featured-content h3 {
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: #fff;
  margin: 0 0 14px;
}
.bmh-featured-content p {
  color: rgba(255,255,255,0.78);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 24px;
}

/* ------------------------------------------------------------------------- */
/* Destination Cards (Homepage grid)                                         */
/* ------------------------------------------------------------------------- */

.bmh-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.bmh-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 44px rgba(0,0,0,0.11);
}
.bmh-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 2;
}
.bmh-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.bmh-card:hover .bmh-card-img img {
  transform: scale(1.06);
}
.bmh-card-price {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--bmh-gold);
  color: var(--bmh-dark);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 7px 15px;
  border-radius: 40px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
  line-height: 1.3;
}
.bmh-card-price small {
  font-weight: 500;
  font-size: 0.68rem;
  opacity: 0.75;
  display: block;
}
.bmh-card-body {
  padding: 26px 26px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.bmh-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--bmh-purple);
  margin: 0 0 10px;
}
.bmh-card-body p {
  color: var(--bmh-muted);
  font-size: 0.91rem;
  line-height: 1.65;
  margin: 0 0 22px;
  flex: 1;
}
.bmh-card-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

/* ------------------------------------------------------------------------- */
/* Buttons (Homepage)                                                        */
/* ------------------------------------------------------------------------- */

.bmh-btn-explore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bmh-purple);
  color: #fff !important;
  font-weight: 600;
  font-size: 0.84rem;
  padding: 10px 22px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
  letter-spacing: 0.02em;
}
.bmh-btn-explore:hover {
  background: var(--bmh-gold-warm);
  transform: translateX(3px);
}
.bmh-btn-chat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--bmh-muted) !important;
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
  padding: 8px 14px;
  border: 1px solid #dfe3e8;
  border-radius: 50px;
  transition: all 0.3s;
  cursor: pointer;
  background: none;
}
.bmh-btn-chat:hover {
  border-color: var(--bmh-gold);
  color: var(--bmh-gold) !important;
}

/* ------------------------------------------------------------------------- */
/* Package Cards (Destination pages)                                         */
/* ------------------------------------------------------------------------- */

.bmh-pkg-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.bmh-pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 44px rgba(0,0,0,0.11);
}
.bmh-pkg-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 2;
}
.bmh-pkg-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.bmh-pkg-card:hover .bmh-pkg-card-img img {
  transform: scale(1.06);
}
.bmh-pkg-badge {
  position: absolute;
  top: 14px; left: 14px;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 6px 16px;
  border-radius: 40px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
  line-height: 1.3;
  text-align: center;
}
.bmh-badge-dates {
  background: #e85454;
  color: #fff;
}
.bmh-badge-value {
  background: var(--bmh-gold);
  color: var(--bmh-dark);
}
.bmh-badge-custom {
  background: var(--bmh-purple);
  color: #fff;
}
.bmh-pkg-card-body {
  padding: 26px 26px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.bmh-pkg-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--bmh-purple);
  margin: 0 0 6px;
}
.bmh-pkg-price {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--bmh-gold-warm);
  margin: 0 0 12px;
}
.bmh-pkg-card-body p {
  color: var(--bmh-muted);
  font-size: 0.91rem;
  line-height: 1.65;
  margin: 0 0 20px;
  flex: 1;
}

/* Package includes popover */
.bmh-includes-drop {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
  border: 1px solid #eee;
  padding: 20px 24px;
  min-width: 260px;
  max-width: 320px;
}
.bmh-includes-drop h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--bmh-purple);
  margin: 0 0 12px;
}
.bmh-includes-drop ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.bmh-includes-drop ul li {
  padding: 5px 0;
  font-size: 0.88rem;
  color: var(--bmh-muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.bmh-includes-drop ul li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--bmh-gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}
.bmh-includes-drop .bmh-note {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--bmh-dark);
  margin-top: 10px;
}

/* Package action buttons */
.bmh-pkg-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bmh-pkg-actions-row {
  display: flex;
  gap: 8px;
}
.bmh-btn-includes {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 1px solid #dfe3e8;
  color: var(--bmh-purple) !important;
  font-weight: 600;
  font-size: 0.82rem;
  padding: 9px 16px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
  flex: 1;
  justify-content: center;
}
.bmh-btn-includes:hover {
  border-color: var(--bmh-purple);
  background: rgba(76,30,124,0.04);
}
.bmh-btn-chat-pkg {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 1px solid #dfe3e8;
  color: var(--bmh-muted) !important;
  font-weight: 500;
  font-size: 0.82rem;
  padding: 9px 16px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
  flex: 1;
  justify-content: center;
  text-decoration: none;
}
.bmh-btn-chat-pkg:hover {
  border-color: var(--bmh-gold);
  color: var(--bmh-gold) !important;
}
.bmh-btn-quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--bmh-whatsapp);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 11px 20px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.bmh-btn-quote:hover {
  background: #1eba59;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}

/* ------------------------------------------------------------------------- */
/* Chat Dropdown (Shared)                                                    */
/* ------------------------------------------------------------------------- */

.bmh-chat-drop {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  border: 1px solid #eee;
  padding: 8px 0;
  min-width: 180px;
}
.bmh-chat-drop .uk-nav > li > a {
  color: var(--bmh-dark);
  font-size: 0.88rem;
  padding: 8px 20px;
  transition: all 0.2s;
}
.bmh-chat-drop .uk-nav > li > a:hover {
  color: var(--bmh-whatsapp);
  background: rgba(37,211,102,0.06);
}
.bmh-chat-drop .bmh-wa-icon {
  color: var(--bmh-whatsapp);
  margin-right: 6px;
}

/* ------------------------------------------------------------------------- */
/* Review Cards                                                              */
/* ------------------------------------------------------------------------- */

.bmh-review-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  height: 100%;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all 0.3s;
}
.bmh-review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.bmh-review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.bmh-review-content {
  flex: 1;
  min-width: 0;
}
.bmh-review-stars {
  color: #f5a623;
  font-size: 0.82rem;
  margin-bottom: 8px;
  letter-spacing: 2px;
}
.bmh-review-text {
  font-size: 0.88rem;
  color: var(--bmh-muted);
  line-height: 1.6;
  margin: 0 0 8px;
}
.bmh-review-author {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--bmh-dark);
}
.bmh-review-author a {
  color: var(--bmh-dark);
  text-decoration: none;
  transition: color 0.2s;
}
.bmh-review-author a:hover {
  color: var(--bmh-gold);
}

/* ------------------------------------------------------------------------- */
/* Why Choose Us (Homepage)                                                  */
/* ------------------------------------------------------------------------- */

.bmh-usp {
  text-align: center;
  padding: 36px 20px;
}
.bmh-usp-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bmh-gold), var(--bmh-gold-warm));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: #fff;
  transition: transform 0.3s;
}
.bmh-usp:hover .bmh-usp-icon {
  transform: scale(1.1) rotate(-5deg);
}
.bmh-usp h4 {
  font-family: var(--font-display);
  font-size: 1.12rem;
  color: var(--bmh-purple);
  margin: 0 0 10px;
}
.bmh-usp p {
  color: var(--bmh-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* ------------------------------------------------------------------------- */
/* Team Section (Shared)                                                     */
/* ------------------------------------------------------------------------- */

.bmh-team-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px 18px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: all 0.3s;
}
.bmh-team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}
.bmh-team-photo {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 14px;
  border: 3px solid var(--bmh-sand);
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
.bmh-team-card h5 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--bmh-purple);
  margin: 0 0 4px;
}
.bmh-team-card .bmh-team-langs {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--bmh-muted);
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.bmh-team-card .bmh-team-wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--bmh-dark) !important;
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}
.bmh-team-card .bmh-team-wa:hover {
  color: var(--bmh-whatsapp) !important;
}

/* ------------------------------------------------------------------------- */
/* CTA Banner (Homepage)                                                     */
/* ------------------------------------------------------------------------- */

.bmh-cta-banner {
  background: linear-gradient(135deg, var(--bmh-purple) 0%, var(--bmh-purple-deep) 55%, var(--bmh-gold-warm) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.bmh-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 25%, rgba(232,168,56,0.12) 0%, transparent 55%);
}
.bmh-cta-banner h2 {
  font-family: var(--font-display);
  color: #fff;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  margin: 0 0 14px;
  position: relative;
}
.bmh-cta-banner > .uk-container > p {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  margin: 0 0 34px;
  position: relative;
}

/* ------------------------------------------------------------------------- */
/* Footer (Shared)                                                           */
/* ------------------------------------------------------------------------- */

.bmh-footer {
  background: var(--bmh-dark);
  padding: 44px 0 30px;
  color: rgba(255,255,255,0.45);
  font-size: 0.84rem;
}
.bmh-footer a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.3s;
}
.bmh-footer a:hover {
  color: var(--bmh-gold);
}
.bmh-footer-brand {
  font-family: var(--font-display);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
}
.bmh-footer-brand span { color: var(--bmh-gold); }
.bmh-footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* ------------------------------------------------------------------------- */
/* Scroll Animations (Shared)                                                */
/* ------------------------------------------------------------------------- */

.bmh-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.bmh-reveal.uk-scrollspy-inview {
  opacity: 1;
  transform: translateY(0);
}

/* ------------------------------------------------------------------------- */
/* Responsive – UIKit Theme                                                  */
/* ------------------------------------------------------------------------- */

@media (max-width: 959px) {
  .bmh-featured { min-height: 400px; }
  .bmh-featured-content { padding: 32px; }
  .bmh-featured-content h3 { font-size: 1.6rem; }
}
@media (max-width: 639px) {
  .bmh-hero-content { padding: 100px 20px 60px; }
  .bmh-section { padding: 56px 0; }
  .bmh-featured { min-height: 340px; }
  .bmh-featured-content { padding: 24px; }
  .bmh-featured-content h3 { font-size: 1.35rem; }
  .bmh-card-body { padding: 20px 20px 24px; }
  .bmh-dest-hero { height: 40vh; min-height: 280px; }
  .bmh-dest-hero-content { padding: 70px 20px 30px; }
  .bmh-pkg-card-body { padding: 20px 20px 24px; }
  .bmh-pkg-actions-row { flex-direction: column; }
  .bmh-review-card { padding: 18px; }
  .bmh-team-card { padding: 20px 14px; }

  /* Fix review card spacing on small screens */
  .uk-grid.uk-child-width-1-1 > div {
    margin-bottom: 20px !important;
  }
  .uk-grid.uk-child-width-1-1 > div:last-child {
    margin-bottom: 0 !important;
  }
}
