/* ===== Variables & Reset ===== */
:root {
  --navy: #0A1F44;
  --navy-light: #142b5c;
  --gold: #E2CA89;
  --gold-light: #ECDBAE;
  --cream: #F8F5EE;
  --white: #ffffff;
  --text: #2b2b2b;
  --text-light: #6b7280;
  --radius: 8px;
  --shadow: 0 6px 24px rgba(10, 31, 68, 0.10);
  --font-base: 'Poppins', Arial, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
}

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

@font-face {
  font-family: 'Poppins';
  src: url('/fonts/Poppins-Regular.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('/fonts/Poppins-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('/fonts/Poppins-Bold.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('/fonts/PlayfairDisplay-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('/fonts/PlayfairDisplay-Bold.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-base);
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
  max-width: 100vw;
}

img { max-width: 100%; height: auto; display: block; }

a { text-decoration: none; color: inherit; }

h1, h2, h3, h4 { font-weight: 700; line-height: 1.25; color: var(--navy); }

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

.section { padding: 70px 0; }
.bg-cream { background: var(--cream); }
.bg-navy { background: var(--navy); }
.bg-navy h2, .bg-navy .eyebrow { color: var(--white); }
.bg-navy .destination-card { background: var(--white); }

.eyebrow {
  display: inline-block;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.section-head { text-align: center; max-width: 700px; margin: 0 auto 40px; }
.section-head h2 { font-size: 32px; }
.section-head.light h2 { color: var(--white); }
.section-desc { color: var(--text-light); margin-top: 12px; }
.section-cta { text-align: center; margin-top: 40px; }

/* ===== Scroll Reveal Animations ===== */
.reveal-up { opacity: 0; transform: translateY(40px); transition: opacity .6s ease, transform .6s ease; }
.reveal-up.is-visible { opacity: 1; transform: translateY(0); }

.reveal-img { transform: scale(1.08); opacity: 0; transition: transform 1s ease, opacity .8s ease; }
.reveal-img.is-visible { transform: scale(1); opacity: 1; }
.reveal-image { overflow: hidden; }
.reveal-image img { transform: scale(1.08); opacity: 0; transition: transform 1s ease, opacity .8s ease; }
.reveal-image.is-visible img { transform: scale(1); opacity: 1; }

.divider-gold { display: block; height: 2px; width: 0; background: var(--gold); margin: 14px 0; transition: width .8s ease; }
.divider-gold.center { margin: 14px auto; }
.divider-gold.is-visible { width: 80px; }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .25s ease;
  text-align: center;
}
.btn-gold { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-light); }
.btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-light); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-text { color: var(--gold); font-weight: 600; padding: 0; }
.btn-text:hover { text-decoration: underline; }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-block { display: block; width: 100%; margin-top: 10px; text-align: center; }
.btn-danger { background: #c0392b; color: #fff; border-color: #c0392b; }

/* ===== Top bar & Header ===== */
.topbar { background: #0c2243; color: #ffffff; font-size: 13px; }
.topbar-inner { display: flex; justify-content: space-between; padding: 6px 20px; align-items: center; }
.topbar-contact a { margin-right: 20px; color: #ffffff; }
.topbar-contact i { color: var(--gold); margin-right: 5px; }
.topbar-social a { color: #ffffff; margin-left: 12px; }
.topbar-social a:hover { color: var(--gold); }

.site-header { position: sticky; top: 0; z-index: 100; background: #e9e9ea; box-shadow: 0 2px 10px rgba(10,31,68,.08); transition: box-shadow .25s ease, padding .25s ease; }
.site-header.is-scrolled { box-shadow: 0 8px 28px rgba(0,0,0,.35); }
.navbar { display: flex; align-items: center; justify-content: space-between; padding: 8px 20px; background: #e9e9ea; }

/* ===== Offer Strip ===== */
.offer-strip { background: #0c2243; height: 40px; width: 100%; overflow: hidden; display: flex; align-items: center; white-space: nowrap; }
.offer-strip-track { display: flex; width: max-content; animation: offer-strip-scroll 25s linear infinite; }
.offer-strip:hover .offer-strip-track { animation-play-state: paused; }
.offer-strip-content { display: inline-flex; align-items: center; padding-right: 40px; color: #E2CA89; font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .5px; }
.offer-strip-sep { margin: 0 14px; color: #E2CA89; }
@keyframes offer-strip-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand-icon { height: 50px; width: auto; display: block; }
.brand-text { display: flex; flex-direction: column; }
.brand-text-main { font-family: 'Cinzel', serif; font-weight: 700; font-size: 18px; color: var(--navy); line-height: 1.2; }
.brand-text-main-footer { color: var(--cream); }
.brand-footer { margin-bottom: 18px; }
.brand-footer-patch { display: inline-flex; background: #e9e9ea !important; border: none; box-shadow: none; border-radius: 8px; padding: 10px 16px; }
.brand-icon-footer { height: 45px; width: auto; display: block; }
.brand-text-sub { font-family: 'Cinzel', serif; font-weight: 600; font-size: 10px; letter-spacing: 2px; color: var(--gold); line-height: 1.4; }

.nav-menu { display: flex; align-items: center; gap: 22px; list-style: none; }
.nav-menu > li > a, .dropdown-trigger { font-weight: 500; font-size: 14.5px; color: var(--navy); padding: 6px 0; border-bottom: 2px solid transparent; }
.nav-menu > li > a:hover, .nav-menu > li > a.active, .dropdown-trigger:hover, .dropdown-trigger.active { color: var(--gold); border-color: var(--gold); }
.nav-menu .nav-cta { background: var(--gold); color: var(--navy); padding: 8px 18px; border-radius: 4px; }
.nav-menu .nav-cta:hover { background: var(--gold-light); border-color: transparent; }
.nav-menu .nav-cta.active { background: var(--gold); color: var(--navy); border-color: transparent; border-bottom-color: transparent; }
.dropdown-toggle { color: var(--navy); }

/* Dropdowns */
.has-dropdown { position: relative; }
.dropdown-trigger-wrap { display: flex; align-items: center; gap: 4px; }
.dropdown-trigger { border-bottom: 2px solid transparent; }
.dropdown-toggle {
  background: none; border: none; cursor: pointer; padding: 6px 2px;
  font-size: 11px; display: flex; align-items: center;
}
.dropdown-toggle i { transition: transform .2s ease; }
.dropdown-menu {
  list-style: none; position: absolute; top: 100%; left: 0;
  background: var(--white); min-width: 220px; border-radius: 6px;
  box-shadow: 0 12px 28px rgba(10,31,68,.15); padding: 8px 0;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all .2s ease; z-index: 50;
}
.dropdown-menu li a { display: block; padding: 10px 18px; font-size: 14px; border-bottom: none; color: var(--navy); }
.dropdown-menu li a:hover, .dropdown-menu li a.active { background: var(--cream); color: var(--gold); }
.dropdown-divider { border-top: 1px solid #eee; margin-top: 4px; padding-top: 4px; }
.dropdown-divider a { font-weight: 600; color: var(--gold) !important; }

.has-dropdown:hover .dropdown-menu,
.has-dropdown.is-open .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.has-dropdown:hover .dropdown-toggle i,
.has-dropdown.is-open .dropdown-toggle i { transform: rotate(180deg); }

.nav-toggle { display: none; }
.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-burger span { width: 26px; height: 3px; background: var(--navy); border-radius: 2px; }

/* ===== Hero ===== */
.hero-wrap { position: relative; }
.hero { position: relative; height: 85vh; min-height: 560px; overflow: hidden; }
.hero-slide {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; z-index: 0; transition: opacity 1.2s ease;
}
.hero-slide.is-active { opacity: 1; z-index: 1; }
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1); will-change: transform;
}
.hero-slide.hero-animate .hero-bg { animation: kenBurns 5s ease forwards; }

@keyframes kenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(rgba(10,31,68,.5), rgba(10,31,68,.7));
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2; width: 100%; max-width: 800px; margin: 0 auto; padding: 0 20px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 0;
}

.hero-label {
  display: flex; align-items: center; gap: 12px; color: var(--gold);
  font-size: 13px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 18px;
}
.hero-label-line { flex: 1; height: 1px; background: var(--gold); max-width: 36px; }

.hero-headline { color: var(--white); font-size: 48px; font-weight: 700; line-height: 1.25; margin-bottom: 18px; font-family: var(--font-display); }
.hero-headline .gold-accent { color: var(--gold); }
.hero-sub { color: rgba(255,255,255,.85); font-size: 17px; letter-spacing: .5px; max-width: 600px; margin: 0 auto; }

.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }
.btn-hero-primary, .btn-hero-secondary {
  display: inline-block; padding: 14px 30px; border-radius: 8px; font-weight: 700; font-size: 15px;
  border: 2px solid transparent; transition: background .25s ease, transform .25s ease, color .25s ease;
}
.btn-hero-primary { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-hero-primary:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); }
.btn-hero-secondary { background: transparent; color: var(--white); border-color: var(--white); }
.btn-hero-secondary:hover { background: var(--white); color: var(--navy); transform: translateY(-2px); }

.hero-dots {
  position: absolute; right: 28px; top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 12px; z-index: 3;
}
.hero-dot { width: 12px; height: 12px; border-radius: 50%; border: 2px solid var(--white); background: transparent; cursor: pointer; padding: 0; }
.hero-dot.is-active { background: var(--gold); border-color: var(--gold); }

/* ===== Floating quick-search bar ===== */
.hero-search-wrap {
  position: absolute; left: 50%; bottom: -40px; transform: translateX(-50%);
  width: calc(100% - 32px); max-width: 1100px; z-index: 5;
}
.hero-search-bar {
  display: flex; align-items: stretch; background: var(--white);
  border-radius: 16px; box-shadow: 0 20px 50px rgba(0,0,0,.15);
  padding: 20px 30px; gap: 20px;
}
.hero-search-field {
  display: flex; align-items: center; gap: 12px; flex: 1;
  padding-right: 20px; border-right: 1px solid #e8e4da;
}
.hero-search-field i { color: var(--gold); font-size: 18px; flex-shrink: 0; }
.hero-search-field label { display: block; font-size: 11px; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 2px; }
.hero-search-field select {
  border: none; background: none; font-size: 14.5px; font-weight: 600; color: var(--navy);
  padding: 0; width: 100%; cursor: pointer;
}
.hero-search-field select:focus { outline: none; }
.btn-hero-search {
  background: var(--gold); color: var(--navy); border: none; border-radius: 8px;
  padding: 0 32px; font-weight: 700; font-size: 14.5px; cursor: pointer;
  white-space: nowrap; transition: background .25s ease, transform .25s ease;
}
.btn-hero-search:hover { background: var(--gold-light); transform: scale(1.03); }

.intro-section { margin-top: 60px; }

/* ===== Intro / Grids ===== */
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.intro-image img { width: 100%; height: 480px; object-fit: cover; border-radius: 8px; box-shadow: var(--shadow); }
.intro-text h2 { font-size: 30px; margin-bottom: 16px; }
.intro-text p { color: var(--text-light); margin-bottom: 18px; font-size: 17px; line-height: 1.8; }
.intro-stats { display: flex; gap: 30px; margin: 24px 0; }
.intro-stats strong { display: block; font-size: 26px; color: var(--gold); }
.intro-stats span { font-size: 13px; color: var(--text-light); }

.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ===== Swiper Carousels ===== */
.swiper { position: relative; padding-bottom: 50px; }
.swiper-slide { height: auto; display: flex; }
.swiper-slide > * { width: 100%; }
.swiper-pagination-bullet { background: var(--gold); opacity: .4; }
.swiper-pagination-bullet-active { opacity: 1; background: var(--gold); }

/* Featured Packages coverflow - give tilted side slides room so they don't clip.
   Kept clipped below 992px: with 1 slide per view, the tilted neighbours sit far
   outside the viewport on narrow screens and force horizontal page overflow. */
.packages-swiper { padding: 30px 0 50px; }

@media (min-width: 992px) {
  .packages-swiper { overflow: visible; }
  .packages-swiper .swiper-wrapper { overflow: visible; }
  .packages-swiper .swiper-slide { overflow: visible; }
}

/* ===== Cards ===== */
.card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform .25s ease, box-shadow .25s ease; }
.card:hover { transform: translateY(-6px); box-shadow: 0 18px 38px rgba(10,31,68,.18); }
.destination-card:hover { transform: translateY(-8px); box-shadow: 0 14px 32px rgba(226,202,137,.4); }
.card-image { position: relative; display: block; height: 200px; overflow: hidden; }
.card-image img { width: 100%; height: 100%; object-fit: cover; }
.card-badge { position: absolute; top: 12px; left: 12px; background: var(--gold); color: var(--navy); font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 4px; box-shadow: 0 2px 6px rgba(0,0,0,.15); }
.card-body { padding: 20px; }
.card-body h3 { font-size: 18px; margin-bottom: 8px; }
.card-meta { font-size: 13px; color: var(--text-light); margin-bottom: 10px; display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.card-meta i { color: var(--gold); }
.card-summary { font-size: 14px; color: var(--text-light); margin-bottom: 16px; }
.card-footer { display: flex; align-items: center; justify-content: space-between; }
.card-price { font-size: 13px; color: var(--text-light); }
.card-price strong { color: var(--gold); font-size: 22px; font-weight: 700; }

.news-card .card-image { height: 200px; }
.package-card { display: flex; flex-direction: column; height: 100%; }
.package-card .card-image { height: 200px; width: 100%; overflow: hidden; flex-shrink: 0; }
.package-card .card-image img { height: 200px; width: 100%; object-fit: cover; object-position: center; }
.package-card .card-body { display: flex; flex-direction: column; flex: 1; }
.package-card .card-footer { margin-top: auto; }
.card-price-note { font-size: 12px; color: var(--text-light); font-style: italic; }
.card-badge-text { font-size: 12px; font-weight: 700; color: var(--gold); margin-bottom: 8px; }

/* ===== VISA SERVICES ===== */
.visa-card { display: flex; flex-direction: column; height: 100%; }
.visa-card .card-image { height: 200px; width: 100%; overflow: hidden; flex-shrink: 0; }
.visa-card .card-image img { height: 200px; width: 100%; object-fit: cover; object-position: center; }
.visa-card .card-body { display: flex; flex-direction: column; flex: 1; }
.visa-card .visa-apply-btn { margin-top: auto; }
.visa-price { font-size: 20px; font-weight: 700; color: var(--gold); margin-bottom: 12px; }
.visa-price.visa-promo { font-size: 15px; font-style: italic; }
.visa-services-list { list-style: none; margin: 0 0 16px; padding: 0; font-size: 13px; color: var(--text-light); }
.visa-services-list li { display: flex; gap: 8px; align-items: flex-start; margin-bottom: 6px; }
.visa-services-list i { color: var(--gold); margin-top: 2px; }
.visa-apply-btn { display: inline-block; width: 100%; text-align: center; }

/* ===== FAQs ===== */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-category-title { font-size: 22px; margin: 36px 0 16px; color: var(--navy); }
.faq-category-title:first-child { margin-top: 0; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--cream); border-radius: var(--radius); padding: 4px 22px; }
.faq-item summary { cursor: pointer; padding: 16px 0; font-weight: 600; color: var(--navy); display: flex; justify-content: space-between; align-items: center; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i { color: var(--gold); transition: transform .25s ease; }
.faq-item[open] summary i { transform: rotate(180deg); }
.faq-answer p { color: var(--text-light); padding-bottom: 18px; font-size: 14.5px; }

/* ===== Reviews ===== */
.review-card {
  background: var(--white); border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 16px; height: 100%;
}
.bg-navy .review-card { background: rgba(255,255,255,.06); box-shadow: none; border: 1px solid rgba(255,255,255,.12); }
.review-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; }
.review-stars i.is-empty { color: rgba(226,202,137,.25); }
.bg-navy .review-stars i.is-empty { color: rgba(255,255,255,.2); }
.review-text { font-size: 14.5px; color: var(--text-light); font-style: italic; flex: 1; }
.bg-navy .review-text { color: rgba(255,255,255,.85); }
.review-footer { display: flex; flex-direction: column; gap: 12px; }
.review-client { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--gold); color: var(--navy);
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 17px; flex-shrink: 0;
}
.review-client-meta { display: flex; flex-direction: column; }
.review-client-meta strong { font-size: 14.5px; color: var(--navy); }
.bg-navy .review-client-meta strong { color: var(--white); }
.review-location { font-size: 12.5px; color: var(--text-light); }
.bg-navy .review-location { color: rgba(255,255,255,.65); }
.review-tags { display: flex; justify-content: space-between; align-items: center; font-size: 12px; }
.review-badge {
  background: var(--cream); color: var(--navy); padding: 4px 10px; border-radius: 4px;
  text-transform: capitalize; font-weight: 600;
}
.bg-navy .review-badge { background: rgba(255,255,255,.12); color: var(--white); }
.review-date { color: var(--text-light); }
.bg-navy .review-date { color: rgba(255,255,255,.6); }

.rating-summary { display: flex; gap: 50px; align-items: center; background: var(--cream); border-radius: var(--radius); padding: 36px; margin-bottom: 36px; flex-wrap: wrap; }
.rating-summary-score { text-align: center; min-width: 160px; }
.rating-summary-value { display: block; font-size: 48px; font-weight: 700; color: var(--navy); }
.rating-summary-count { display: block; font-size: 13px; color: var(--text-light); margin-top: 6px; }
.rating-summary-bars { flex: 1; min-width: 240px; display: flex; flex-direction: column; gap: 10px; }
.rating-bar-row { display: flex; align-items: center; gap: 12px; font-size: 13.5px; }
.rating-bar-label { width: 50px; color: var(--text-light); display: flex; align-items: center; gap: 4px; }
.rating-bar-label i { color: var(--gold); font-size: 11px; }
.rating-bar-track { flex: 1; height: 8px; background: rgba(226,202,137,.15); border-radius: 4px; overflow: hidden; }
.rating-bar-fill { display: block; height: 100%; border-radius: 4px; width: 0; background: var(--gold); transition: width 1s ease; }
.rating-bar-fill.is-visible { width: var(--bar-width); }
.rating-bar-percent { width: 36px; text-align: right; color: var(--text-light); }

.service-card { background: var(--white); border: 1px solid #eee; border-radius: var(--radius); padding: 30px 24px; text-align: center; transition: box-shadow .25s ease; }
.service-card:hover { box-shadow: var(--shadow); }
.service-icon { width: 60px; height: 60px; border-radius: 50%; background: var(--navy); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 24px; margin: 0 auto 16px; }
.service-card h3 { font-size: 17px; margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--text-light); }

.service-detail-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.service-detail-image { height: 180px; overflow: hidden; }
.service-detail-image img { width: 100%; height: 100%; object-fit: cover; }
.service-detail-body { padding: 24px; }
.service-detail-body h3 { font-size: 18px; margin: 6px 0 10px; }
.service-detail-body p { font-size: 14px; color: var(--text-light); }

.feature-box { text-align: center; padding: 20px; }
.feature-box i { font-size: 30px; color: var(--gold); margin-bottom: 14px; }
.feature-box h3 { font-size: 17px; margin-bottom: 8px; }
.feature-box p { font-size: 14px; color: var(--text-light); }

.company-card { background: var(--white); border: 1px solid #eee; border-radius: var(--radius); padding: 30px; text-align: center; box-shadow: var(--shadow); }
.company-card i { font-size: 32px; color: var(--navy); margin-bottom: 14px; }
.company-card h3 { font-size: 17px; margin-bottom: 10px; }
.company-card p { font-size: 14px; color: var(--text-light); }

.vision-grid { gap: 40px; }
.vision-box { background: var(--cream); border-radius: var(--radius); padding: 40px; text-align: center; }
.vision-box i { font-size: 36px; color: var(--gold); margin-bottom: 16px; }
.vision-box h2 { margin-bottom: 14px; }
.vision-box p { color: var(--text-light); }

/* ===== CTA Banner ===== */
.cta-banner { background: linear-gradient(135deg, var(--navy), var(--navy-light)); color: var(--white); }
.cta-banner-inner { text-align: center; }
.cta-banner-inner h2 { color: var(--white); margin-bottom: 12px; }
.cta-banner-inner p { margin-bottom: 24px; opacity: .85; }

/* ===== Page Header ===== */
.page-header { background-size: cover; background-position: center; padding: 90px 0 50px; color: var(--white); text-align: center; }
.page-header h1 { color: var(--white); font-size: 36px; margin-bottom: 10px; }
.page-header p { opacity: .9; margin-bottom: 14px; }
.breadcrumb { font-size: 13px; opacity: .85; }
.breadcrumb a { color: var(--gold); }
.breadcrumb span { margin: 0 6px; }

/* ===== Filter bar ===== */
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 36px; }
.filter-pill { border: 1px solid var(--navy); color: var(--navy); padding: 8px 18px; border-radius: 30px; font-size: 13.5px; font-weight: 500; }
.filter-pill.is-active, .filter-pill:hover { background: var(--navy); color: var(--white); }

/* ===== Detail pages ===== */
.detail-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; margin-bottom: 60px; }
.detail-image { width: 100%; height: 380px; object-fit: cover; border-radius: var(--radius); margin-bottom: 24px; }
.detail-description { color: var(--text-light); margin-bottom: 24px; }
.detail-main h3 { margin: 20px 0 12px; font-size: 19px; }
.check-list, .cross-list { list-style: none; margin-bottom: 10px; }
.check-list li, .cross-list li { padding: 6px 0; font-size: 14.5px; color: var(--text-light); }
.check-list i { color: #2e9e5b; margin-right: 8px; }
.cross-list i { color: #c0392b; margin-right: 8px; }

.price-card { background: var(--cream); border-radius: var(--radius); padding: 28px; position: sticky; top: 100px; }
.price-label { display: block; font-size: 13px; color: var(--text-light); }
.price-value { display: block; font-size: 30px; font-weight: 700; color: var(--navy); margin: 4px 0; }
.price-unit { display: block; font-size: 13px; color: var(--text-light); margin-bottom: 16px; }
.price-meta { list-style: none; margin-bottom: 20px; font-size: 14px; }
.price-meta li { padding: 6px 0; color: var(--text-light); }
.price-meta i { color: var(--gold); margin-right: 8px; width: 18px; }

/* ===== Gallery ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; }
.gallery-item img { width: 100%; height: 240px; object-fit: cover; transition: transform .3s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item figcaption { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(10,31,68,.85)); color: var(--white); padding: 30px 12px 10px; font-size: 13px; }

/* ===== Contact ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-info h2, .contact-form-wrap h2 { margin-bottom: 16px; }
.contact-detail-list { list-style: none; margin: 20px 0; }
.contact-detail-list li { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid #eee; }
.contact-detail-list i { color: var(--gold); width: 18px; }
.map-embed iframe { border-radius: var(--radius); }

.form-row { margin-bottom: 18px; }
.form-row label { display: block; font-weight: 600; font-size: 13.5px; margin-bottom: 6px; color: var(--navy); }
.form-row input, .form-row textarea, .form-row select {
  width: 100%; padding: 11px 14px; border: 1px solid #d8d8d8; border-radius: 5px; font-family: inherit; font-size: 14px;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus { outline: none; border-color: var(--gold); }
.form-errors { background: #fdecea; color: #c0392b; padding: 12px 16px; border-radius: 5px; margin-bottom: 16px; font-size: 14px; }

.flash { padding: 14px 20px; border-radius: 5px; margin: 20px 0; font-size: 14px; }
.flash-success { background: #e7f6ec; color: #1f7a3d; }
.flash-error { background: #fdecea; color: #c0392b; }

.empty-state { text-align: center; color: var(--text-light); padding: 40px 0; }

.not-found { text-align: center; padding: 120px 0; }
.not-found h1 { font-size: 80px; color: var(--gold); }
.not-found p { margin: 16px 0 24px; color: var(--text-light); }

/* ===== Footer ===== */
.site-footer { background: #e9e9ea !important; color: var(--navy); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px; padding: 60px 20px 40px; }
.footer-col p { font-size: 14px; margin: 16px 0; opacity: .85; }
.footer-col h3 { color: var(--navy); font-size: 16px; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; font-size: 14px; }
.footer-col ul li a { color: var(--navy); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact i { color: var(--gold); margin-top: 3px; }
.footer-contact a { color: var(--navy); }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--navy); color: var(--navy); display: flex; align-items: center; justify-content: center; }
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.footer-bottom { border-top: 1px solid rgba(10,31,68,.15); padding: 18px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; font-size: 13px; opacity: .75; }

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .detail-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .topbar-contact a:nth-child(2) { display: none; }
  .nav-burger { display: flex; }
  .nav-menu {
    position: absolute; top: 100%; left: 0; right: 0; background: var(--white);
    flex-direction: column; align-items: flex-start; padding: 16px 20px; gap: 14px;
    display: none; box-shadow: 0 8px 20px rgba(0,0,0,.08);
  }
  .nav-toggle:checked ~ .nav-menu { display: flex; }
  .nav-menu { width: 100%; max-height: 80vh; overflow-y: auto; }
  .nav-menu > li > a, .dropdown-trigger, .dropdown-toggle { color: var(--navy); }
  .nav-menu > li > a:hover, .nav-menu > li > a.active, .dropdown-trigger:hover, .dropdown-trigger.active { color: var(--gold); }
  .has-dropdown { width: 100%; }
  .dropdown-trigger-wrap { width: 100%; justify-content: space-between; }
  .dropdown-menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; max-height: 0; overflow: hidden; padding: 0; width: 100%;
    transition: max-height .25s ease;
  }
  .has-dropdown.is-open .dropdown-menu { max-height: 400px; padding: 6px 0 6px 14px; }
  .intro-grid, .contact-grid { grid-template-columns: 1fr; }
  .intro-image img { height: 280px; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-headline { font-size: 32px; }
  .hero { height: 100svh; min-height: 600px; }
  .hero-slide { padding-top: 60px; }
  .hero-label { font-size: 10px; }
  .hero-sub { font-size: 0.95rem; padding: 0 20px; }
  .hero-cta { gap: 10px; }
  .btn-hero-primary, .btn-hero-secondary { padding: 12px 20px; font-size: 14px; min-width: 140px; }
  .hero-dots {
    right: auto; top: auto; bottom: 80px; left: 50%;
    transform: translateX(-50%); flex-direction: row; gap: 8px;
  }
  .hero-content { padding: 0 16px; }
  .hero-search-wrap { bottom: -220px; width: calc(100% - 24px); }
  .hero-search-bar { flex-direction: column; padding: 20px; gap: 14px; }
  .hero-search-field { width: 100%; padding: 0 0 14px; border-right: none; border-bottom: 1px solid #e8e4da; }
  .btn-hero-search { width: 100%; padding: 14px 0; }
  .intro-section { margin-top: 240px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; gap: 6px; text-align: center; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  animation: whatsapp-pulse 2.2s infinite;
  transition: transform 0.2s ease;
}

.whatsapp-float i {
  color: #fff;
  font-size: 32px;
  line-height: 1;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  animation-play-state: paused;
}

.whatsapp-float__tooltip {
  position: absolute;
  top: -6px;
  right: 74px;
  transform: translateY(-50%);
  background: #fff;
  color: var(--navy);
  font-size: 13.5px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.whatsapp-float:hover .whatsapp-float__tooltip {
  opacity: 1;
}

@keyframes whatsapp-pulse {
  0% { box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(37, 211, 102, 0.55); }
  70% { box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25), 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(37, 211, 102, 0); }
}

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

/* ===== Team Section ===== */
.team-grid { grid-template-columns: repeat(4, 1fr); }
.team-card {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 32px 22px; text-align: center; transition: transform .25s ease, box-shadow .25s ease;
}
.team-card:hover { transform: translateY(-8px); box-shadow: 0 18px 38px rgba(10,31,68,.18); }
.team-photo {
  width: 120px; height: 120px; border-radius: 50%; overflow: hidden; margin: 0 auto 18px;
  border: 3px solid var(--cream); box-shadow: 0 4px 14px rgba(10,31,68,.12);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { font-size: 17px; margin-bottom: 4px; }
.team-role { color: var(--gold); font-size: 13px; font-weight: 600; margin-bottom: 16px; }
.team-social { display: flex; justify-content: center; gap: 10px; }
.team-social a {
  width: 34px; height: 34px; border-radius: 50%; background: var(--gold); color: var(--navy);
  display: flex; align-items: center; justify-content: center; font-size: 14px;
  transition: background .25s ease, transform .25s ease;
}
.team-social a:hover { background: var(--navy); color: var(--gold); transform: translateY(-2px); }

@media (max-width: 992px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .team-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
}

/* ===== Ticker Marquee ===== */
.ticker {
  background: var(--navy); overflow: hidden; height: 50px;
  display: flex; align-items: center; white-space: nowrap;
}
.ticker-track { display: flex; width: max-content; animation: ticker-scroll 30s linear infinite; }
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-content {
  display: inline-flex; align-items: center; gap: 14px; padding-right: 14px;
  color: var(--gold); font-weight: 700; font-size: 13.5px; text-transform: uppercase; letter-spacing: 1px;
}
.ticker-content i { font-size: 8px; color: var(--gold); }

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== Hot Deals Section ===== */
.hot-deals-section { background: #F0EBE0; overflow: hidden; }
.hot-deals-grid { display: grid; grid-template-columns: 0.85fr 1.4fr; gap: 50px; align-items: center; }
.hot-deals-text { position: relative; }
.hot-deals-text h2 { font-size: 32px; margin-bottom: 14px; }
.hot-deals-text p { color: var(--text-light); margin-bottom: 26px; font-size: 15.5px; line-height: 1.8; }
.hot-deals-deco {
  position: absolute; right: -10px; bottom: -10px; font-size: 130px;
  color: var(--gold); opacity: .08; transform: rotate(15deg); z-index: 0; pointer-events: none;
}
.btn-icon-circle { display: inline-flex; align-items: center; gap: 14px; border-radius: 999px; padding: 10px 8px 10px 26px; }
.btn-icon-circle-dot {
  width: 34px; height: 34px; border-radius: 50%; background: var(--navy); color: var(--gold);
  display: flex; align-items: center; justify-content: center; font-size: 13px; transition: transform .25s ease;
}
.btn-icon-circle:hover .btn-icon-circle-dot { transform: translateX(3px); }

.hot-deals-carousel { position: relative; z-index: 1; min-width: 0; width: 100%; }
.hotdeals-swiper { width: 100%; padding-bottom: 50px; }

@media (max-width: 767px) {
  .hotdeals-swiper { overflow: hidden !important; }
  .hotdeals-swiper .swiper-wrapper { width: 100% !important; }
  .hotdeals-swiper .swiper-slide { width: 100% !important; max-width: 100% !important; }
}
.hot-deal-card { display: flex; flex-direction: column; height: 100%; }
.hot-deal-image { height: 190px; }
.hot-deal-badge {
  position: absolute; top: 12px; left: 12px; background: var(--gold); color: var(--navy);
  font-size: 11.5px; font-weight: 700; padding: 4px 10px; border-radius: 4px; box-shadow: 0 2px 6px rgba(0,0,0,.15);
}
.hot-deal-price { font-size: 13.5px; color: var(--text-light); display: flex; align-items: baseline; gap: 8px; margin-bottom: 12px; }
.hot-deal-price-old { text-decoration: line-through; color: #9aa1ad; }
.hot-deal-price-new { color: var(--gold); font-size: 22px; font-weight: 700; }
.hot-deal-divider { display: block; height: 1px; background: #eee; margin-bottom: 14px; }
.hot-deal-card h3 { font-size: 17px; margin-bottom: 8px; }
.hot-deal-rating { display: flex; align-items: center; gap: 8px; margin-top: 10px; font-size: 13px; color: var(--text-light); }
.hot-deal-rating-value { font-weight: 700; color: var(--navy); }

@media (max-width: 992px) {
  .hot-deals-grid { grid-template-columns: 1fr; gap: 30px; }
  .hot-deals-deco { display: none; }
}
