/*
Theme Name: AKH Bromo Travel
Theme URI: https://buatwebsaja.com/
Author: buatwebsaja.com
Author URI: https://buatwebsaja.com/
Description: Tema WordPress custom untuk paket wisata Bromo, Ijen, Tumpak Sewu, Malang, dan sekitarnya dengan SEO lokal dan schema terstruktur.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
License: GPL-2.0-or-later
Text Domain: akh-bromo-travel
Tags: travel, tourism, one-column, custom-logo, featured-images
*/

:root {
  --akh-ink: #172021;
  --akh-muted: #46514f;
  --akh-smoke: #f5f2ec;
  --akh-cloud: #fffaf2;
  --akh-lava: #d85c27;
  --akh-sun: #f3aa31;
  --akh-moss: #456b57;
  --akh-teal: #1f6f78;
  --akh-charcoal: #26302f;
  --akh-line: rgba(23, 32, 33, .12);
  --akh-shadow: 0 20px 60px rgba(23, 32, 33, .14);
  --akh-radius: 8px;
  --akh-max: 1180px;
  --akh-ease: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--akh-ink);
  background: var(--akh-cloud);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 250, 242, .92);
  border-bottom: 1px solid var(--akh-line);
  backdrop-filter: blur(16px);
  transition: background .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.topbar {
  color: rgba(255,255,255,.88);
  background: #111817;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.topbar-inner {
  width: min(var(--akh-max), calc(100% - 32px));
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto;
  font-size: 12px;
  font-weight: 750;
}

.topbar-inner span:nth-child(2) {
  color: rgba(255,255,255,.68);
  font-weight: 650;
}

.topbar-inner a {
  color: #ffd26c;
}

.site-header.is-scrolled {
  background: rgba(255, 250, 242, .98);
  border-color: rgba(23, 32, 33, .16);
  box-shadow: 0 12px 34px rgba(23, 32, 33, .10);
}

.nav-shell,
.section-inner {
  width: min(var(--akh-max), calc(100% - 32px));
  margin: 0 auto;
}

.nav-shell {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-logo {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  object-fit: contain;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(23, 32, 33, .16);
  transition: transform .35s var(--akh-ease), box-shadow .35s var(--akh-ease);
}

.brand:hover .brand-logo {
  transform: rotate(-3deg) scale(1.04);
  box-shadow: 0 14px 34px rgba(23, 32, 33, .20);
}

.brand small {
  display: block;
  color: #40504d;
  font-size: 12px;
  font-weight: 700;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #31413e;
  font-size: 15px;
  font-weight: 750;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 3px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--akh-lava);
  transition: width .28s var(--akh-ease);
}

.main-nav a:hover::after {
  width: 100%;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #899193;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.lang-switch a {
  padding: 6px 0;
  color: #899193;
}

.lang-switch a.is-active {
  color: var(--akh-lava);
}

.lang-switch span {
  width: 2px;
  height: 18px;
  display: inline-block;
  background: #d9dee0;
}

.nav-cta,
.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 850;
  cursor: pointer;
  transition: transform .24s var(--akh-ease), box-shadow .24s var(--akh-ease), background .24s ease;
}

.nav-cta,
.btn-primary {
  color: #fff;
  background: var(--akh-lava);
  box-shadow: 0 14px 30px rgba(216, 92, 39, .24);
}

.nav-cta:hover,
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(216, 92, 39, .30);
}

.menu-toggle {
  width: 48px;
  height: 48px;
  display: none;
  place-items: center;
  gap: 5px;
  border: 1px solid var(--akh-line);
  border-radius: 8px;
  padding: 11px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(23, 32, 33, .10);
  cursor: pointer;
}

.menu-line {
  width: 22px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: var(--akh-ink);
  transition: transform .24s ease, opacity .18s ease, width .24s ease;
}

.site-header.is-menu-open .menu-line:nth-of-type(2) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-menu-open .menu-line:nth-of-type(3) {
  opacity: 0;
  width: 10px;
}

.site-header.is-menu-open .menu-line:nth-of-type(4) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  width: min(var(--akh-max), calc(100% - 32px));
  margin: 0 auto 14px;
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav-inner {
  display: grid;
  gap: 8px;
  padding: 12px;
  background: rgba(255, 250, 242, .98);
  border: 1px solid var(--akh-line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(23, 32, 33, .16);
  animation: menuDrop .24s var(--akh-ease);
}

.mobile-nav a {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  color: var(--akh-ink);
  background: #fff;
  border: 1px solid rgba(23, 32, 33, .08);
  border-radius: 8px;
  font-weight: 850;
}

.mobile-nav a::after {
  content: ">";
  color: var(--akh-lava);
  font-weight: 900;
}

.mobile-nav .mobile-wa {
  color: #fff;
  background: #1f8f54;
  border-color: #1f8f54;
}

.mobile-nav .mobile-wa::after {
  color: #fff;
}

.btn-secondary {
  color: var(--akh-ink);
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,.7);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  background: #fff;
}

.hero {
  position: relative;
  min-height: clamp(640px, 82vh, 780px);
  display: grid;
  align-items: end;
  isolation: isolate;
  color: #fff;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("assets/images/bromo-hero.png");
  background-position: center;
  background-size: cover;
  animation: bromoBreath 18s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(8, 13, 14, .22) 0%, rgba(8, 13, 14, .58) 52%, rgba(8, 13, 14, .92) 100%),
    linear-gradient(90deg, rgba(8, 13, 14, .86) 0%, rgba(8, 13, 14, .48) 58%, rgba(8, 13, 14, .25) 100%);
}

.hero-inner {
  width: min(var(--akh-max), calc(100% - 32px));
  margin: 0 auto;
  padding: 90px 0 74px;
}

.hero .eyebrow,
.hero h1,
.hero p,
.hero-actions,
.trust-strip {
  animation: heroRise .75s var(--akh-ease) both;
}

.hero h1 {
  animation-delay: .08s;
}

.hero p {
  animation-delay: .16s;
}

.hero-actions {
  animation-delay: .24s;
}

.trust-strip {
  animation-delay: .34s;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: #ffd26c;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(42px, 6vw, 82px);
  line-height: .96;
  letter-spacing: 0;
  text-shadow: 0 3px 18px rgba(0, 0, 0, .42);
}

.hero p {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(255,255,255,.96);
  font-size: clamp(17px, 2vw, 21px);
  text-shadow: 0 2px 14px rgba(0, 0, 0, .42);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(9, 16, 17, .42);
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 46px;
  max-width: 920px;
}

.trust-item {
  background: rgba(255, 250, 242, .14);
  padding: 18px;
}

.trust-item strong {
  display: block;
  color: #fff;
  font-size: 20px;
}

.trust-item span {
  color: rgba(255,255,255,.92);
  font-size: 13px;
}

.service-ribbon {
  position: relative;
  z-index: 3;
  margin-top: -52px;
}

.service-ribbon-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.30);
  border-radius: 8px;
  box-shadow: 0 20px 54px rgba(23, 32, 33, .18);
}

.service-ribbon-item {
  min-height: 170px;
  padding: 24px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(22, 33, 34, .98), rgba(31, 111, 120, .92)),
    var(--akh-charcoal);
}

.service-ribbon-item span {
  display: inline-flex;
  margin-bottom: 18px;
  color: #ffd26c;
  font-size: 13px;
  font-weight: 950;
}

.service-ribbon-item h2 {
  margin: 0 0 8px;
  font-size: 23px;
  line-height: 1.1;
}

.service-ribbon-item p {
  margin: 0;
  color: rgba(255,255,255,.88);
}

.section {
  padding: 78px 0;
}

.section-alt {
  background: var(--akh-smoke);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.section-head h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(31px, 4vw, 50px);
  line-height: 1.05;
}

.section-head p {
  max-width: 450px;
  margin: 0;
  color: #43504d;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.package-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--akh-line);
  border-radius: var(--akh-radius);
  box-shadow: 0 12px 36px rgba(23, 32, 33, .08);
  overflow: hidden;
  transition: transform .32s var(--akh-ease), box-shadow .32s var(--akh-ease), border-color .32s ease;
}

.package-card:hover {
  transform: translateY(-7px);
  border-color: rgba(216, 92, 39, .26);
  box-shadow: 0 22px 54px rgba(23, 32, 33, .14);
}

.tour-card {
  position: relative;
  background: #fff;
}

.tour-card-media {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  background: #111817;
}

.tour-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 12, 13, .05) 0%, rgba(7, 12, 13, .58) 100%),
    linear-gradient(90deg, rgba(7, 12, 13, .42), rgba(7, 12, 13, 0));
}

.tour-card-media img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform .45s var(--akh-ease);
}

.tour-card:hover .tour-card-media img {
  transform: scale(1.055);
}

.tour-card-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: #111817;
  background: #ffd26c;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 950;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .25);
}

.tour-card-body h3 {
  margin: 12px 0 10px;
  color: var(--akh-ink);
  font-size: 22px;
  line-height: 1.14;
}

.tour-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tour-card-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  color: #24443d;
  background: #edf5ef;
  border: 1px solid rgba(69, 107, 87, .20);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
}

.tour-card-route {
  display: grid;
  gap: 5px;
  margin: 0 0 16px;
  padding: 13px;
  color: #263634;
  background: #fff6e3;
  border: 1px solid rgba(243, 170, 49, .28);
  border-radius: 8px;
}

.tour-card-route strong,
.tour-card-includes strong,
.price-list > strong {
  color: var(--akh-ink);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.tour-card-route span {
  color: #3c4946;
  font-size: 14px;
}

.tour-card-includes {
  margin: 0 0 8px;
}

.price-list {
  margin: 0 0 20px;
  padding: 14px;
  background: #f7faf8;
  border: 1px solid rgba(31, 111, 120, .18);
  border-radius: 8px;
}

.price-list .feature-list {
  margin: 10px 0 0;
}

.package-page-hero::before {
  background-image: url("assets/images/bromo-sunrise.png");
}

.package-service-ribbon {
  margin-top: -42px;
}

.package-catalog {
  padding-top: 86px;
}

.package-catalog-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.package-note {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: clamp(26px, 5vw, 46px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(17, 24, 23, .97), rgba(31, 111, 120, .92)),
    #111817;
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(23, 32, 33, .15);
}

.package-note h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.06;
}

.package-note p:not(.eyebrow) {
  max-width: 680px;
  margin: 12px 0 0;
  color: rgba(255,255,255,.90);
}

.package-top {
  min-height: 118px;
  padding: 20px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(216,92,39,.92), rgba(31,111,120,.82)),
    radial-gradient(circle at 75% 20%, rgba(243,170,49,.9), transparent 34%);
}

.package-top .duration {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 5px 9px;
  color: #fff7e7;
  border: 1px solid rgba(255,255,255,.36);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
}

.package-top h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.13;
}

.package-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.price {
  color: var(--akh-lava);
  font-size: 25px;
  font-weight: 950;
}

.package-body p {
  color: #43504d;
  margin: 10px 0 16px;
}

.feature-list,
.timeline,
.faq-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}

.feature-list li {
  display: flex;
  gap: 9px;
  color: #263634;
  font-size: 14px;
}

.feature-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--akh-moss);
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: auto;
}

.small-btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 12px;
  font-size: 14px;
  font-weight: 850;
  transition: transform .22s var(--akh-ease), filter .22s ease;
}

.small-btn:hover {
  transform: translateY(-2px);
  filter: saturate(1.08);
}

.small-btn.whatsapp {
  color: #fff;
  background: #1f8f54;
}

.small-btn.detail {
  color: var(--akh-ink);
  background: var(--akh-smoke);
}

.rent-band {
  padding-top: 28px;
}

.rent-band-grid {
  display: grid;
  grid-template-columns: 1fr .92fr;
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  color: #fff;
  background: #111817;
  border-radius: 8px;
  box-shadow: 0 20px 54px rgba(23, 32, 33, .16);
}

.rent-band-copy {
  padding: clamp(28px, 5vw, 54px);
  background:
    linear-gradient(135deg, rgba(17, 24, 23, .98), rgba(69, 107, 87, .92)),
    #111817;
}

.rent-band-copy h2 {
  max-width: 660px;
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
}

.rent-band-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 16px 0 24px;
  color: rgba(255,255,255,.90);
}

.rent-band-media {
  min-height: 360px;
}

.rent-band-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.why-item {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--akh-line);
  border-radius: var(--akh-radius);
  transition: transform .28s var(--akh-ease), box-shadow .28s var(--akh-ease);
}

.why-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(23, 32, 33, .10);
}

.why-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  color: #fff;
  background: var(--akh-teal);
  border-radius: 8px;
}

.why-item h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.why-item p {
  margin: 0;
  color: #43504d;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--akh-line);
  border-radius: var(--akh-radius);
  transition: border-color .25s ease, transform .25s var(--akh-ease);
}

.timeline li:hover {
  transform: translateX(-4px);
  border-color: rgba(216, 92, 39, .28);
}

.timeline strong {
  color: var(--akh-lava);
}

.timeline p {
  margin: 0;
}

.cta-band {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(23,32,33,.96), rgba(69,107,87,.95)),
    var(--akh-charcoal);
}

.cta-box {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
}

.cta-box h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

.cta-box p {
  max-width: 660px;
  margin: 12px 0 0;
  color: rgba(255,255,255,.92);
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.faq-list details {
  background: #fff;
  border: 1px solid var(--akh-line);
  border-radius: var(--akh-radius);
  padding: 18px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 850;
}

.faq-list p {
  margin: 10px 0 0;
  color: #43504d;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.testimonial-card {
  margin: 0;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--akh-line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(23, 32, 33, .08);
}

.testimonial-card blockquote {
  margin: 0;
  color: #263634;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.55;
}

.testimonial-card blockquote::before {
  content: "“";
  display: block;
  color: var(--akh-lava);
  font-size: 42px;
  line-height: .6;
}

.testimonial-card figcaption {
  margin-top: 18px;
  color: #6a7472;
  font-size: 14px;
  font-weight: 850;
}

.page-hero {
  position: relative;
  min-height: 380px;
  display: grid;
  align-items: end;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
  background: var(--akh-charcoal);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("assets/images/bromo-hero.png");
  background-position: center;
  background-size: cover;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(8, 13, 14, .26), rgba(8, 13, 14, .92)),
    linear-gradient(90deg, rgba(8, 13, 14, .86), rgba(8, 13, 14, .32));
}

.page-hero-inner {
  width: min(var(--akh-max), calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0 54px;
}

.page-hero h1 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1;
  text-shadow: 0 3px 18px rgba(0, 0, 0, .42);
}

.page-hero p {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255,255,255,.96);
  font-size: 19px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .42);
}

.content-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 24px;
  align-items: start;
}

.prose-box,
.info-panel {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--akh-line);
  border-radius: var(--akh-radius);
  box-shadow: 0 12px 36px rgba(23, 32, 33, .07);
}

.prose-box h2,
.info-panel h2,
.info-panel h3 {
  margin: 0 0 12px;
  line-height: 1.15;
}

.prose-box p,
.info-panel p {
  margin: 0 0 14px;
  color: #43504d;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.stat-box {
  padding: 16px;
  background: var(--akh-smoke);
  border-radius: var(--akh-radius);
}

.stat-box strong {
  display: block;
  color: var(--akh-lava);
  font-size: 25px;
  line-height: 1;
}

.stat-box span {
  color: #43504d;
  font-size: 13px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.gallery-item {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border-radius: var(--akh-radius);
  background: #111817;
  box-shadow: 0 14px 34px rgba(23, 32, 33, .14);
  transition: transform .35s var(--akh-ease), box-shadow .35s var(--akh-ease);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  transition: transform .35s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 50px rgba(23, 32, 33, .18);
}

.gallery-caption {
  position: absolute;
  inset: auto 0 0;
  padding: 54px 18px 18px;
  color: #fff;
  background: linear-gradient(180deg, transparent 0%, rgba(7, 12, 13, .72) 38%, rgba(7, 12, 13, .96) 100%);
}

.gallery-caption h2 {
  margin: 0;
  font-size: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .5);
}

.gallery-caption p {
  margin: 5px 0 0;
  color: rgba(255,255,255,.94);
  font-size: 14px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .5);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  padding: 15px;
  background: var(--akh-smoke);
  border-radius: var(--akh-radius);
}

.contact-list strong {
  display: block;
  margin-bottom: 3px;
}

.contact-form {
  display: grid;
  gap: 12px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: var(--akh-ink);
  font-weight: 850;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--akh-line);
  border-radius: var(--akh-radius);
  padding: 11px 12px;
  color: var(--akh-ink);
  background: #fff;
  font: inherit;
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.site-footer {
  padding: 38px 0;
  color: rgba(255,255,255,.90);
  background: #111817;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 26px;
}

.site-footer h2,
.site-footer h3 {
  color: #fff;
  margin: 0 0 10px;
}

.site-footer p {
  margin: 0 0 10px;
}

.footer-credit {
  margin-top: 24px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.26);
  font-size: 9px;
  font-weight: 600;
  text-align: right;
}

.footer-credit a {
  color: rgba(255,255,255,.30);
  font-size: 9px;
  font-weight: 600;
}

.footer-credit a:hover {
  color: rgba(255,255,255,.72);
}

.floating-wa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #1f8f54;
  border-radius: 999px;
  box-shadow: 0 16px 36px rgba(31, 143, 84, .36);
  animation: waPulse 2.8s ease-in-out infinite;
  transition: transform .24s var(--akh-ease);
}

.floating-wa:hover {
  transform: translateY(-3px) scale(1.04);
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.reveal-ready .package-card,
.reveal-ready .why-item,
.reveal-ready .gallery-item,
.reveal-ready .prose-box,
.reveal-ready .info-panel,
.reveal-ready .section-head {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s var(--akh-ease), transform .65s var(--akh-ease);
}

.reveal-ready .is-visible {
  opacity: 1;
  transform: none;
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bromoBreath {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.055);
  }
}

@keyframes menuDrop {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes waPulse {
  0%, 100% {
    box-shadow: 0 16px 36px rgba(31, 143, 84, .34);
  }
  50% {
    box-shadow: 0 16px 36px rgba(31, 143, 84, .34), 0 0 0 10px rgba(31, 143, 84, .10);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }

  .reveal-ready .package-card,
  .reveal-ready .why-item,
  .reveal-ready .gallery-item,
  .reveal-ready .prose-box,
  .reveal-ready .info-panel,
  .reveal-ready .section-head {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 960px) {
  .main-nav {
    display: none;
  }

  .nav-shell {
    gap: 12px;
  }

  .menu-toggle {
    display: grid;
  }

  .trust-strip,
  .package-grid,
  .service-ribbon-grid,
  .why-grid,
  .faq-list,
  .gallery-grid,
  .testimonial-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rent-band-grid {
    grid-template-columns: 1fr;
  }

  .section-head,
  .cta-box,
  .content-grid,
  .package-note {
    display: block;
  }

  .cta-box .btn {
    margin-top: 22px;
  }

  .package-note .btn {
    margin-top: 22px;
  }
}

@media (max-width: 640px) {
  .nav-shell,
  .section-inner,
  .hero-inner {
    width: min(100% - 22px, var(--akh-max));
  }

  .hero {
    min-height: 720px;
  }

  .hero-inner {
    padding-bottom: 38px;
  }

  .trust-strip,
  .package-grid,
  .package-catalog-grid,
  .service-ribbon-grid,
  .why-grid,
  .faq-list,
  .gallery-grid,
  .testimonial-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .topbar {
    display: none;
  }

  .service-ribbon {
    margin-top: -28px;
  }

  .package-service-ribbon {
    margin-top: -24px;
  }

  .service-ribbon-item {
    min-height: 138px;
    padding: 20px;
  }

  .tour-card-media,
  .tour-card-media img {
    min-height: 210px;
  }

  .stat-grid {
    grid-template-columns: 1fr;
  }

  .timeline li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .card-actions {
    grid-template-columns: 1fr;
  }

  .nav-cta {
    display: none;
  }

  .nav-shell {
    gap: 10px;
  }

  .nav-shell > .lang-switch {
    flex: 0 0 auto;
    order: 2;
    margin-left: auto;
  }

  .menu-toggle {
    order: 3;
    width: 44px;
    height: 44px;
    padding: 10px;
  }

  .brand {
    min-width: 0;
    flex: 0 1 auto;
  }

  .brand > span {
    display: none;
  }

  .brand-logo {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }
}
