:root {
  --primary: #002734;
  --secondary: #914d00;
  --accent: #0c3b4d;
  --surface: #f9f9ff;
  --white: #ffffff;
  --ink: #111c2c;
  --muted: #59636b;
  --line: #d9e0e7;
  --soft: #eef4ff;
  --success: #198754;
  --danger: #b42318;
  --shadow: 0 18px 50px rgba(0, 39, 52, 0.10);
  --shadow-soft: 0 8px 24px rgba(0, 39, 52, 0.07);
  --shadow-strong: 0 26px 70px rgba(0, 39, 52, 0.20);
  --motion-fast: 160ms ease;
  --motion-med: 360ms cubic-bezier(.2,.7,.2,1);
  --radius: 8px;
  --radius-lg: 14px;
  --header-h: 78px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: "Hanken Grotesk", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

[dir="rtl"] body,
[dir="rtl"] input,
[dir="rtl"] select,
[dir="rtl"] textarea,
[dir="rtl"] button {
  font-family: "Noto Naskh Arabic", "Hanken Grotesk", Arial, sans-serif;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--primary);
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.15;
}

p {
  margin: 0;
  color: var(--muted);
}

.material-symbols-outlined {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-variation-settings: "FILL" 0, "wght" 450, "GRAD" 0, "opsz" 24;
  line-height: 1;
}

.aa-shell {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.aa-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: rgba(249, 249, 255, 0.92);
  border-bottom: 1px solid rgba(217, 224, 231, 0.7);
  backdrop-filter: blur(16px);
}

.aa-nav {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.aa-brand img {
  width: 184px;
  height: auto;
  max-width: 100%;
}

.aa-navlinks,
.aa-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.aa-navlinks {
  gap: 26px;
}

.aa-navlinks a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  border-bottom: 2px solid transparent;
}

.aa-navlinks a:hover,
.aa-navlinks a.is-active {
  color: var(--secondary);
  border-bottom-color: var(--secondary);
}

.aa-lang {
  position: relative;
}

.aa-lang-btn,
.aa-menu-btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  padding: 0 12px;
  font-weight: 700;
}

.aa-lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 190px;
  display: none;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.aa-lang-menu.is-open {
  display: grid;
}

.aa-lang-menu a {
  padding: 9px 10px;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.aa-lang-menu a:hover {
  background: var(--soft);
  color: var(--primary);
}

.aa-menu-btn {
  display: none;
  padding: 0 10px;
}

.aa-mobile-nav {
  display: none;
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto 16px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  background: var(--primary);
  box-shadow: var(--shadow);
}

.aa-mobile-nav.is-open {
  display: grid;
}

.aa-mobile-nav a {
  min-height: 44px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.86);
  font-weight: 700;
}

.aa-mobile-nav .aa-mobile-cta {
  justify-content: center;
  margin-top: 10px;
  border: 0;
  border-radius: var(--radius);
  background: var(--secondary);
  color: var(--white);
}

.aa-btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 18px;
  font-size: 15px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.aa-btn:hover {
  transform: translateY(-1px);
}

.aa-btn-primary {
  background: var(--secondary);
  color: var(--white);
  box-shadow: 0 10px 22px rgba(145, 77, 0, 0.20);
}

.aa-btn-outline {
  border-color: var(--primary);
  background: transparent;
  color: var(--primary);
}

.aa-btn-light {
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.18);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.aa-btn-light:hover {
  background: rgba(255,255,255,0.3);
  border-color: rgba(255,255,255,0.7);
  color: #fff;
}

.aa-btn-ghost {
  border-color: var(--line);
  background: var(--white);
  color: var(--primary);
}

.aa-hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: var(--primary);
}

.aa-hero-media-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.aa-hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  padding-top: var(--header-h);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s;
}

.aa-hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.aa-slider-controls {
  position: absolute;
  inset: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  pointer-events: none;
}

.aa-slider-controls button {
  pointer-events: auto;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  background: rgba(0,0,0,0.3);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  transition: all 0.2s;
}

.aa-slider-controls button:hover {
  background: rgba(0,0,0,0.7);
  border-color: #fff;
  transform: scale(1.05);
}

.aa-slider-dots {
  position: absolute;
  bottom: 85px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 10;
}

.aa-slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  padding: 0;
  transition: all 0.3s;
}

.aa-slider-dot.is-active {
  background: #fff;
  transform: scale(1.2);
}

.aa-hero-media,
.aa-page-hero,
.aa-detail-photo {
  background-image: linear-gradient(90deg, rgba(0, 39, 52, 0.82) 0%, rgba(0, 39, 52, 0.42) 45%, rgba(0, 39, 52, 0.18) 100%), var(--hero-image);
  background-position: center;
  background-size: cover;
}

.aa-hero-media {
  position: absolute;
  inset: 0;
}

.aa-hero-media::after,
.aa-page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(249, 249, 255, 0.92));
  pointer-events: none;
}

.aa-hero-content {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 48px));
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
  color: var(--white);
}

.aa-hero h1 {
  max-width: 760px;
  color: var(--white);
  font-size: 54px;
  overflow-wrap: anywhere;
  text-shadow: 0 2px 16px rgba(0,0,0,0.35);
}

.aa-hero p {
  max-width: 620px;
  margin: 18px 0 28px;
  color: rgba(255,255,255,0.88);
  font-size: 18px;
}

.aa-hero-actions {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 12px;
}

.aa-booking-panel {
  position: relative;
  z-index: 5;
  margin-top: -58px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.82);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.96);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(18px);
}

.aa-quick-reservation {
  max-width: 1160px;
}

.aa-booking-grid,
.aa-filter-bar {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1fr auto;
  gap: 14px;
  align-items: end;
}

.aa-quick-reservation .aa-booking-grid {
  grid-template-columns: 1.05fr 1.05fr 1fr;
  align-items: stretch;
}

.aa-booking-step {
  display: grid;
  align-content: start;
  gap: 12px;
  min-width: 0;
  border: 1px solid rgba(217, 224, 231, 0.78);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  padding: 14px;
}

.aa-booking-step > strong {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 900;
}

.aa-booking-step > strong::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--secondary);
  box-shadow: 0 0 0 5px rgba(145, 77, 0, 0.10);
}

.aa-booking-step-confirm {
  background: linear-gradient(155deg, rgba(0, 39, 52, 0.98), rgba(12, 59, 77, 0.96));
  border-color: rgba(255,255,255,0.18);
}

.aa-booking-step-confirm > strong,
.aa-booking-step-confirm label > span,
.aa-booking-step-confirm .aa-total span {
  color: rgba(255,255,255,0.82);
}

.aa-booking-step-confirm input {
  border-color: rgba(255,255,255,0.18);
}

.aa-booking-step-confirm .aa-total {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 11px 12px;
}

.aa-booking-step-confirm .aa-total strong {
  color: var(--white);
}

.aa-quick-reservation label {
  min-width: 0;
}

.aa-booking-total {
  min-height: 44px;
}

.aa-booking-head {
  margin: 6px 0 28px;
  text-align: center;
}

.aa-booking-head h2 {
  font-size: 27px;
}

.aa-booking-head p {
  margin-top: 6px;
  color: #7b8490;
  font-weight: 600;
}

.aa-booking-grid-flat {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px 18px;
  align-items: end;
}

.aa-quick-reservation .aa-booking-grid-flat {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.aa-booking-field {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.aa-booking-field > span:first-child,
.aa-stepper-field > span:first-child {
  color: #667080;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.aa-booking-field-tour,
.aa-booking-field-date,
.aa-booking-field-name,
.aa-booking-field-phone {
  grid-column: span 3;
}

.aa-booking-field-hotel {
  grid-column: span 2;
}

.aa-booking-field-room,
.aa-stepper-field,
.aa-booking-grid-flat .aa-total {
  grid-column: span 2;
}

.aa-booking-grid-flat .aa-booking-submit {
  grid-column: span 2;
  align-self: end;
  min-width: 0;
  background: linear-gradient(135deg, #25d366, #0f9d70);
  box-shadow: 0 12px 24px rgba(15, 157, 112, 0.22);
  white-space: nowrap;
}

.aa-booking-grid-flat input,
.aa-booking-grid-flat select {
  min-height: 48px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(0, 39, 52, 0.06);
}

.aa-stepper {
  display: grid;
  min-height: 48px;
  grid-template-columns: 40px minmax(44px, 1fr) 40px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(0, 39, 52, 0.06);
}

.aa-stepper button,
.aa-stepper input {
  min-height: 48px;
  border: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
  color: #657080;
  text-align: center;
}

.aa-stepper button {
  font-weight: 900;
}

.aa-stepper input {
  border-inline: 1px solid var(--line);
  color: var(--ink);
  font-weight: 900;
}

.aa-booking-grid-flat .aa-total {
  min-height: 48px;
  margin: 0;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 8px 18px rgba(0, 39, 52, 0.06);
}

.aa-booking-grid-flat .aa-total span {
  color: #667080;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.aa-booking-grid-flat .aa-total strong {
  color: #f0a22a;
  font-size: 24px;
}

label {
  display: grid;
  gap: 7px;
}

label > span,
.aa-filter-bar label span {
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  padding: 10px 12px;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(145, 77, 0, 0.12);
}

.aa-section {
  padding: 82px 0;
}

.aa-soft-band {
  background: #eef4ff;
}

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

.aa-section-head h2,
.aa-split h2,
.aa-content-block h2,
.aa-contact-info h2,
.aa-form-card h2,
.aa-faq h2,
.aa-center-cta h2 {
  font-size: 36px;
}

.aa-section-head p,
.aa-split p,
.aa-center-cta p {
  max-width: 680px;
  margin-top: 10px;
}

.aa-text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--secondary);
  font-weight: 800;
}

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

.aa-tour-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform var(--motion-med), box-shadow var(--motion-med), border-color var(--motion-med);
}

.aa-tour-card[data-card-href] {
  cursor: pointer;
}

.aa-tour-card:hover,
.aa-tour-card:focus-within,
.aa-tour-card:focus {
  border-color: rgba(145, 77, 0, 0.28);
  box-shadow: var(--shadow-strong);
  transform: translateY(-4px);
  outline: none;
}

.aa-tour-image {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  min-height: 168px;
  overflow: hidden;
  background: linear-gradient(135deg, #eaf2f4, #f8fbfd);
}

.aa-tour-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.aa-tour-card:hover .aa-tour-image img {
  transform: scale(1.04);
}

.aa-tour-card-compact .aa-tour-image {
  aspect-ratio: 16 / 8.4;
  min-height: 154px;
}

.aa-tour-card-compact .aa-tour-body {
  gap: 10px;
  padding: 16px;
}

.aa-tour-card-compact .aa-tour-body h3 {
  font-size: 20px;
}

.aa-tour-card-compact .aa-tour-body p {
  min-height: 0;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.aa-tour-card-compact .aa-tour-meta {
  display: flex;
  flex-wrap: wrap;
  padding: 10px 0;
}

.aa-tour-card-compact .aa-tour-meta span {
  border-radius: 999px;
  background: var(--soft);
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 800;
}

.aa-tour-card-compact .aa-tour-foot strong {
  font-size: 20px;
}

.aa-tour-foot {
  gap: 12px;
}

.aa-tour-foot .aa-btn {
  flex: 0 0 auto;
}

.aa-chip {
  position: absolute;
  top: 14px;
  left: 14px;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-radius: 999px;
  background: var(--secondary);
  color: var(--white);
  padding: 0 10px;
  font-size: 12px;
  font-weight: 800;
}

.aa-chip .material-symbols-outlined {
  font-size: 15px;
}

.aa-tour-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
}

.aa-tour-body h3 {
  font-size: 24px;
}

.aa-tour-body p {
  min-height: 0;
}

.aa-tour-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.aa-tour-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.aa-tour-meta .material-symbols-outlined {
  color: var(--secondary);
  font-size: 18px;
}

.aa-tour-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.aa-tour-foot strong {
  display: block;
  color: var(--secondary);
  font-size: 22px;
  line-height: 1.1;
}

.aa-tour-foot small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.aa-tour-card-standard {
  min-height: 0;
  border: 0;
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(0, 39, 52, 0.11);
}

.aa-tour-card-standard .aa-tour-image {
  aspect-ratio: 16 / 8.5;
  min-height: 160px;
}

.aa-tour-card-standard .aa-tour-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 39, 52, 0.04), rgba(0, 39, 52, 0.28));
  opacity: 0;
  transition: opacity var(--motion-fast);
}

.aa-tour-card-standard:hover .aa-tour-image::after {
  opacity: 1;
}

.aa-card-overlay {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  color: var(--primary);
  font-weight: 900;
  opacity: 0;
  transform: translate(-50%, -42%);
  transition: opacity var(--motion-fast), transform var(--motion-fast);
  backdrop-filter: blur(10px);
}

.aa-tour-card-standard:hover .aa-card-overlay,
.aa-tour-card-standard:focus-within .aa-card-overlay {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.aa-chip-featured {
  border-radius: 999px;
  background: linear-gradient(135deg, #ffbd4a, #f7941d);
  box-shadow: 0 12px 24px rgba(247, 148, 29, 0.25);
  color: #fff;
}

.aa-tour-card-standard .aa-tour-body {
  gap: 10px;
  padding: 16px 20px 14px;
  text-align: center;
  align-items: center;
}

.aa-tour-card-standard .aa-tour-body h3 {
  display: -webkit-box;
  min-height: 0;
  overflow: hidden;
  font-size: 20px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.aa-tour-card-standard .aa-tour-body p {
  display: -webkit-box;
  min-height: 0;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 13px;
}

.aa-tour-meta-icons {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 8px 0;
}

.aa-tour-meta-icons > span {
  display: grid;
  justify-items: center;
  gap: 4px;
  color: #4c5968;
  text-align: center;
}

.aa-tour-meta-icons .material-symbols-outlined {
  color: #0d6efd;
  font-size: 22px;
}

.aa-tour-meta-icons small {
  color: #4c5968;
  font-size: 12px;
  font-weight: 800;
}

.aa-tour-price-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.aa-price-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 100px;
}

.aa-tour-price-row strong {
  display: block;
  color: #0d6efd;
  font-size: 26px;
  line-height: 1.05;
}

.aa-tour-price-row small {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.aa-card-link {
  color: var(--primary);
  font-weight: 800;
  padding: 0 14px;
}

.aa-card-link .material-symbols-outlined {
  font-size: 18px;
}

.aa-card-reserve {
  border-color: transparent;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #f7941d, #e37e07);
  color: #fff;
  box-shadow: 0 8px 20px rgba(227, 126, 7, 0.22);
  white-space: nowrap;
}

.aa-card-reserve:hover {
  background: linear-gradient(135deg, #ffa62b, #f27d16);
  color: #fff;
}

.aa-tour-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-top: auto;
  margin-bottom: 14px;
}

.aa-tour-tags span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 26px;
  border-radius: 7px;
  padding: 3px 10px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.aa-tour-tags .material-symbols-outlined {
  color: inherit;
  font-size: 16px;
}

.aa-tour-tags .is-included {
  background: #148657;
}

.aa-tour-tags .is-transfer {
  background: #11b8d8;
}

.aa-tour-tags .is-day {
  background: #ffbd00;
}

.aa-tour-tags .is-muted {
  background: #557086;
}

.aa-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.aa-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
}

.aa-feature-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.aa-feature-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-weight: 800;
}

.aa-feature-list .material-symbols-outlined {
  color: var(--secondary);
}

.aa-stat-grid,
.aa-value-grid,
.aa-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.aa-stat-grid div,
.aa-value-grid article,
.aa-trust-grid div {
  min-height: 150px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.aa-trust-grid div {
  display: grid;
  gap: 8px;
  min-height: 142px;
}

.aa-trust-grid .material-symbols-outlined {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(145, 77, 0, 0.08);
  color: var(--secondary);
}

.aa-trust-grid strong {
  color: var(--primary);
  font-size: 18px;
}

.aa-trust-grid small {
  color: var(--muted);
  line-height: 1.45;
}

.aa-stat-grid strong {
  display: block;
  color: var(--primary);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 44px;
  line-height: 1;
}

.aa-stat-grid span {
  display: block;
  margin-top: 10px;
  color: var(--secondary);
  font-weight: 800;
}

.aa-value-grid article .material-symbols-outlined {
  width: 46px;
  height: 46px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: rgba(145, 77, 0, 0.08);
  color: var(--secondary);
}

.aa-value-grid h3,
.aa-service-grid h3 {
  font-size: 22px;
}

.aa-value-grid p {
  margin-top: 8px;
}

.aa-page-hero {
  position: relative;
  overflow: hidden;
  padding: 154px 0 84px;
  text-align: center;
}

.aa-page-hero .aa-shell {
  position: relative;
  z-index: 1;
}

.aa-tours-hero {
  --hero-image: url('/images/generated/actionantalya-canyon-package.webp');
}

.aa-contact-hero {
  --hero-image: url('/images/generated/actionantalya-adventure-hero.webp');
}

.aa-about-hero {
  --hero-image: url('/images/generated/actionantalya-adventure-hero.webp');
}

.aa-gallery-hero {
  --hero-image: url('/images/generated/actionantalya-diving-banner.webp');
}

.aa-page-hero h1 {
  color: var(--white);
  font-size: 48px;
  text-shadow: 0 2px 14px rgba(0,0,0,0.34);
}

.aa-page-hero p {
  max-width: 650px;
  margin: 14px auto 0;
  color: rgba(255,255,255,0.88);
  font-size: 18px;
}

.aa-filter-bar {
  grid-template-columns: 1.4fr 1fr 0.9fr 0.9fr 1fr auto auto;
  margin-bottom: 34px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.aa-filter-bar-simple {
  max-width: 720px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  margin-top: -36px;
  position: relative;
  z-index: 2;
  border-color: rgba(255,255,255,0.78);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
}

.aa-tour-results {
  position: relative;
  min-height: 240px;
}

.aa-tour-results.is-loading {
  opacity: 0.58;
  pointer-events: none;
}

.aa-tour-results.is-loading::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.58), transparent);
  animation: aaFilterLoading 900ms ease-in-out infinite;
}

.aa-empty {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 70px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  text-align: center;
}

.aa-empty .material-symbols-outlined {
  color: var(--secondary);
  font-size: 48px;
}

.aa-center-cta {
  text-align: center;
}

.aa-center-cta p {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
}

.aa-detail-hero {
  position: relative;
  padding-top: var(--header-h);
  background: var(--primary);
}

.aa-detail-photo {
  height: 520px;
  overflow: hidden;
}

.aa-detail-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.78) saturate(1.06);
}

.aa-detail-heading {
  position: absolute;
  left: 50%;
  bottom: 52px;
  transform: translateX(-50%);
  color: var(--white);
}

.aa-detail-heading h1 {
  max-width: 820px;
  color: var(--white);
  font-size: 48px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.35);
}

.aa-detail-heading p {
  max-width: 700px;
  margin-top: 12px;
  color: rgba(255,255,255,0.88);
  font-size: 18px;
}

.aa-breadcrumb {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.84);
  font-weight: 800;
}

.aa-detail-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.aa-detail-facts span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(255,255,255,0.30);
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  color: var(--white);
  padding: 0 12px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.aa-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 32px;
  align-items: start;
}

.aa-detail-main {
  display: grid;
  gap: 28px;
  min-width: 0;
}

.aa-gallery-strip {
  overflow: hidden;
  min-width: 0;
}

.aa-gallery-strip-track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--secondary) transparent;
  padding-bottom: 6px;
}

.aa-gallery-strip-track::-webkit-scrollbar {
  height: 5px;
}

.aa-gallery-strip-track::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 99px;
}

.aa-gallery-strip-track::-webkit-scrollbar-track {
  background: transparent;
}

.aa-gallery-strip-item {
  flex: 0 0 auto;
  width: calc((100% - 30px) / 4);
  scroll-snap-align: start;
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  background: transparent;
  display: block;
  cursor: zoom-in;
  transition: transform var(--motion-fast), border-color var(--motion-fast), box-shadow var(--motion-fast);
}

.aa-gallery-strip-item:focus,
.aa-gallery-strip-item:hover {
  border-color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(145, 77, 0, 0.18);
}

.aa-gallery-strip-item img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.aa-content-block,
.aa-form-card,
.aa-reservation-card,
.aa-contact-info,
.aa-include-grid section {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  padding: 26px;
  box-shadow: var(--shadow-soft);
}

.aa-reservation-card {
  border-color: rgba(145, 77, 0, 0.22);
  box-shadow: var(--shadow-strong);
}

.aa-reservation-card::before {
  content: "";
  display: block;
  height: 4px;
  margin: -26px -26px 20px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: linear-gradient(90deg, var(--secondary), #e5a94f);
}

.aa-content-block p {
  margin-top: 14px;
  white-space: pre-line;
}

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

.aa-include-grid h2 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 24px;
}

.aa-include-grid ul {
  display: grid;
  gap: 9px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.aa-include-grid li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.aa-include-grid li .material-symbols-outlined {
  color: var(--secondary);
  margin-top: 2px;
}

.aa-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.aa-info-grid article {
  display: flex;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  padding: 16px;
}

.aa-info-grid article > .material-symbols-outlined {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--white);
  color: var(--secondary);
}

.aa-info-grid h3,
.aa-faq summary {
  color: var(--primary);
  font-family: "Hanken Grotesk", Arial, sans-serif;
  font-size: 17px;
  font-weight: 900;
}

.aa-info-grid p {
  margin-top: 5px;
}

.aa-faq {
  display: grid;
  gap: 10px;
}

.aa-faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  overflow: hidden;
}

.aa-faq summary {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  cursor: pointer;
}

.aa-faq summary::-webkit-details-marker {
  display: none;
}

.aa-faq summary .material-symbols-outlined {
  color: var(--secondary);
}

.aa-faq details[open] summary {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.aa-faq details p {
  margin: 0;
  padding: 14px 16px 16px;
}

.aa-timeline {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.aa-timeline article {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 18px;
}

.aa-timeline time {
  color: var(--secondary);
  font-weight: 900;
}

.aa-timeline h3 {
  font-size: 22px;
}

.aa-timeline p {
  margin-top: 4px;
}

.aa-reservation-card {
  position: sticky;
  top: 100px;
}

.aa-reservation-card h2 {
  margin-bottom: 18px;
  font-size: 30px;
}

.aa-price-row,
.aa-total {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.aa-price-row div,
.aa-total {
  border-radius: var(--radius);
  background: var(--soft);
  padding: 14px;
}

.aa-price-row span,
.aa-total span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.aa-price-row strong,
.aa-total strong {
  color: var(--primary);
  font-size: 21px;
}

.aa-reservation-card form,
.aa-form-card form {
  display: grid;
  gap: 10px;
}

.aa-reservation-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.86fr);
  gap: 10px;
}

.aa-form-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.aa-form-pair-hotel {
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
}

.aa-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 2px 0 0;
}

.aa-total.is-updated strong {
  animation: aaPulseTotal 420ms ease;
}

.aa-mobile-bookbar {
  display: none;
}

.aa-mobile-bookbar small {
  display: block;
  margin-top: 2px;
  color: rgba(255,255,255,0.66);
  font-size: 11px;
  line-height: 1.2;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity var(--motion-med), transform var(--motion-med);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes aaPulseTotal {
  0% { transform: scale(1); }
  50% { transform: scale(1.045); color: var(--secondary); }
  100% { transform: scale(1); }
}

@keyframes aaFilterLoading {
  0% { transform: translateX(-60%); }
  100% { transform: translateX(60%); }
}

.aa-contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1.2fr;
  gap: 28px;
}

.aa-contact-info {
  display: grid;
  gap: 14px;
}

.aa-contact-info a,
.aa-contact-info div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  column-gap: 12px;
  align-items: center;
  transition: transform var(--motion-fast), color var(--motion-fast);
}

.aa-contact-info a:hover {
  transform: translateX(4px);
  color: var(--secondary);
}

.aa-contact-info a:hover .material-symbols-outlined {
  background: var(--secondary);
  color: var(--white);
  transform: scale(1.05);
}

.aa-contact-info .material-symbols-outlined {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--soft);
  color: var(--secondary);
  transition: all var(--motion-fast);
}

.aa-contact-info small {
  color: var(--muted);
}

.aa-map {
  width: 100%;
  height: 300px;
  margin-top: 10px;
  border: 0;
  border-radius: var(--radius);
}

.aa-map-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  padding: 12px;
  box-shadow: var(--shadow-soft);
  transition: box-shadow var(--motion-med), transform var(--motion-med);
}

.aa-map-card:hover {
  box-shadow: var(--shadow-strong);
  transform: translateY(-2px);
}

.aa-map-card .aa-map {
  height: 100%;
  min-height: 410px;
  margin-top: 0;
}

.aa-gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 18px;
}

.aa-gallery-filter {
  max-width: 420px;
  margin: -34px 0 28px auto;
  position: relative;
  z-index: 2;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  padding: 14px;
  box-shadow: var(--shadow-soft);
}

.aa-gallery-item {
  position: relative;
  grid-column: span 2;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  padding: 0;
  text-align: left;
  box-shadow: var(--shadow-soft);
  cursor: zoom-in;
  transition: transform var(--motion-med), box-shadow var(--motion-med), border-color var(--motion-med);
}

.aa-gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform var(--motion-med);
}

.aa-gallery-item:nth-child(7n + 1) {
  grid-column: span 3;
}

.aa-gallery-item:nth-child(7n + 1) img {
  aspect-ratio: 16 / 10;
}

.aa-gallery-item:hover,
.aa-gallery-item:focus {
  border-color: rgba(145, 77, 0, 0.30);
  box-shadow: var(--shadow-strong);
  transform: translateY(-3px);
  outline: none;
}

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

.aa-gallery-item span {
  display: grid;
  gap: 2px;
  padding: 13px 14px;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
}

.aa-gallery-item strong {
  color: var(--primary);
  font-size: 16px;
}

.aa-gallery-item small {
  color: var(--muted);
}

.aa-lock-scroll {
  overflow: hidden;
}

.aa-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  gap: 14px;
  background: rgba(0, 20, 28, 0.88);
  padding: 24px;
  backdrop-filter: blur(10px);
}

.aa-lightbox[hidden] {
  display: none;
}

.aa-lightbox img {
  max-width: min(1120px, 100%);
  max-height: 78vh;
  border-radius: var(--radius);
  object-fit: contain;
  box-shadow: 0 20px 70px rgba(0,0,0,0.35);
}

.aa-lightbox p {
  color: rgba(255,255,255,0.88);
  font-weight: 800;
}

.aa-lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: var(--white);
}

.aa-lightbox-nav {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  transform: translateY(-50%);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: var(--white);
}

.aa-lightbox-prev {
  left: 18px;
}

.aa-lightbox-next {
  right: 18px;
}

.aa-faq {
  max-width: 820px;
}

.aa-faq h2 {
  margin-bottom: 20px;
  text-align: center;
}

.aa-faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 16px 18px;
}

.aa-faq details + details {
  margin-top: 12px;
}

.aa-faq summary {
  cursor: pointer;
  color: var(--primary);
  font-weight: 900;
}

.aa-faq p {
  margin-top: 10px;
}

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

.aa-service-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform var(--motion-med), box-shadow var(--motion-med);
}

.aa-service-grid article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(145, 77, 0, 0.28);
}

.aa-service-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.aa-service-grid article:hover img {
  transform: scale(1.04);
}

.aa-service-grid h3,
.aa-service-grid p {
  padding: 0 20px;
}

.aa-service-grid h3 {
  margin-top: 18px;
}

.aa-service-grid p {
  margin: 8px 0 20px;
}

.aa-alert {
  border-radius: var(--radius);
  padding: 13px 15px;
  font-weight: 800;
}

.aa-alert-error {
  border: 1px solid #f3b4ac;
  background: #fff1ef;
  color: var(--danger);
}

.aa-alert-success {
  border: 1px solid #b7e3c2;
  background: #effaf2;
  color: var(--success);
}

.aa-wa {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 900;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.35);
}

.aa-wa .material-symbols-outlined {
  font-size: 28px;
}

.aa-footer {
  position: relative;
  overflow: hidden;
  background: var(--primary);
  color: rgba(255,255,255,0.78);
}

.aa-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), #f2c174, var(--accent));
}

.aa-footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 36px;
  padding: 58px 0;
}

.aa-footer h3 {
  margin-bottom: 14px;
  color: var(--white);
  font-family: "Hanken Grotesk", Arial, sans-serif;
  font-size: 15px;
}

.aa-footer a,
.aa-footer p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 9px 0;
  color: rgba(255,255,255,0.72);
  transition: color var(--motion-fast), transform var(--motion-fast);
}

.aa-footer a:hover {
  color: #fff;
  transform: translateX(4px);
}

.aa-footer-brand img {
  width: 190px;
  margin-bottom: 16px;
}

.aa-socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.aa-socials a {
  width: 38px;
  height: 38px;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  transition: transform var(--motion-fast), background var(--motion-fast);
}

.aa-socials a:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-2px);
}

.aa-social-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.aa-social-instagram {
  color: #e4405f;
}

.aa-social-whatsapp {
  color: #25d366;
}

.aa-footer-bottom {
  padding: 18px;
  border-top: 1px solid rgba(255,255,255,0.12);
  text-align: center;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
}

@media (max-width: 1080px) {
  .aa-navlinks,
  .aa-nav-cta {
    display: none;
  }

  .aa-menu-btn {
    display: inline-flex;
  }

  .aa-booking-grid,
  .aa-filter-bar,
  .aa-tour-grid,
  .aa-gallery-grid,
  .aa-detail-layout,
  .aa-contact-layout,
  .aa-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .aa-filter-bar {
    align-items: stretch;
  }

  .aa-filter-bar-simple {
    max-width: 100%;
  }

  .aa-quick-reservation .aa-booking-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .aa-quick-reservation .aa-booking-grid-flat {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .aa-booking-grid-flat > .aa-booking-field,
  .aa-booking-grid-flat > .aa-total,
  .aa-booking-grid-flat > .aa-booking-submit {
    grid-column: auto;
  }

  .aa-booking-step-confirm {
    grid-column: span 2;
  }

  .aa-gallery-item,
  .aa-gallery-item:nth-child(7n + 1) {
    grid-column: auto;
  }

  .aa-quick-reservation .aa-booking-total,
  .aa-quick-reservation .aa-btn {
    grid-column: span 1;
  }

  .aa-reservation-card {
    position: static;
  }

  .aa-detail-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .aa-detail-main {
    gap: 20px;
  }

  .aa-wa {
    right: 18px;
    bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  }

  body:has(.aa-mobile-bookbar) .aa-wa {
    bottom: calc(92px + env(safe-area-inset-bottom, 0px));
  }
}

@media (max-width: 760px) {
  :root {
    --header-h: 68px;
  }

  .aa-shell {
    width: min(1200px, calc(100% - 32px));
  }

  .aa-nav {
    width: calc(100% - 24px);
    gap: 8px;
  }

  .aa-actions {
    flex: 0 0 auto;
    gap: 8px;
  }

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

  .aa-brand img {
    width: min(124px, 38vw);
  }

  .aa-lang-btn {
    padding: 0 9px;
  }

  .aa-hero {
    min-height: 620px;
  }

  .aa-hero h1,
  .aa-page-hero h1,
  .aa-detail-heading h1 {
    font-size: 32px;
    overflow-wrap: anywhere;
  }

  .aa-hero p,
  .aa-page-hero p,
  .aa-detail-heading p {
    font-size: 16px;
    overflow-wrap: anywhere;
  }

  .aa-hero-actions .aa-btn {
    width: min(100%, 280px);
  }

  .aa-booking-panel {
    margin-top: -34px;
    padding: 16px;
  }

  .aa-booking-grid,
  .aa-quick-reservation .aa-booking-grid,
  .aa-quick-reservation .aa-booking-grid-flat,
  .aa-filter-bar,
  .aa-filter-bar-simple,
  .aa-tour-grid,
  .aa-tour-grid-list,
  .aa-detail-layout,
  .aa-split,
  .aa-stat-grid,
  .aa-trust-grid,
  .aa-value-grid,
  .aa-gallery-grid,
  .aa-include-grid,
  .aa-info-grid,
  .aa-contact-layout,
  .aa-service-grid,
  .aa-footer-grid,
  .aa-form-pair,
  .aa-price-row {
    grid-template-columns: 1fr;
  }

  .aa-quick-reservation .aa-booking-total,
  .aa-quick-reservation .aa-btn {
    grid-column: auto;
  }

  .aa-booking-step-confirm {
    grid-column: auto;
  }

  .aa-booking-head {
    margin-bottom: 18px;
  }

  .aa-booking-head h2 {
    font-size: 24px;
  }

  .aa-booking-grid-flat > .aa-booking-field,
  .aa-booking-grid-flat > .aa-total,
  .aa-booking-grid-flat > .aa-booking-submit {
    grid-column: auto;
  }

  .aa-filter-bar-simple,
  .aa-gallery-filter {
    max-width: none;
  }

  .aa-section {
    padding: 48px 0;
  }

  .aa-section-head,
  .aa-tour-foot {
    align-items: stretch;
    flex-direction: column;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .aa-tour-image,
  .aa-tour-card-compact .aa-tour-image {
    min-height: 172px;
  }

  .aa-detail-layout {
    gap: 18px;
  }

  .aa-detail-main {
    gap: 16px;
  }

  .aa-reservation-card {
    margin-top: 0;
  }

  .aa-wa {
    width: 50px;
    height: 50px;
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom, 0px));
  }

  body:has(.aa-mobile-bookbar) .aa-wa {
    bottom: calc(86px + env(safe-area-inset-bottom, 0px));
  }

  .aa-section-head h2,
  .aa-split h2,
  .aa-content-block h2,
  .aa-contact-info h2,
  .aa-form-card h2,
  .aa-faq h2,
  .aa-center-cta h2 {
    font-size: 30px;
  }

  .aa-card-actions {
    justify-content: stretch;
  }

  .aa-card-actions .aa-btn,
  .aa-tour-foot .aa-btn {
    width: 100%;
  }

  .aa-tour-card-standard .aa-tour-image {
    min-height: 176px;
  }

  .aa-card-overlay {
    display: none;
  }

  .aa-tour-price-row {
    grid-template-columns: 1fr 1fr;
  }

  .aa-tour-price-row > div {
    grid-column: 1 / -1;
  }

  .aa-card-link,
  .aa-card-reserve {
    justify-content: center;
  }

  .aa-detail-photo {
    height: 520px;
  }

  .aa-detail-heading {
    bottom: 28px;
  }

  .aa-detail-facts {
    gap: 8px;
  }

  .aa-gallery-strip-item {
    width: calc((100% - 20px) / 3);
  }

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

  .aa-mobile-bookbar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    z-index: 990;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid rgba(255,255,255,0.45);
    border-radius: var(--radius-lg);
    background: rgba(0, 39, 52, 0.94);
    color: var(--white);
    padding: 10px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
  }

  .aa-mobile-bookbar span {
    display: block;
    color: rgba(255,255,255,0.72);
    font-size: 12px;
    font-weight: 800;
  }

  .aa-mobile-bookbar strong {
    color: var(--white);
    font-size: 18px;
  }

  .aa-mobile-bookbar-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.82fr);
    gap: 7px;
    min-width: min(58vw, 260px);
  }

  .aa-mobile-bookbar .aa-btn {
    min-width: 0;
    padding-inline: 10px;
    white-space: nowrap;
  }

  .aa-mobile-bookbar .aa-btn span {
    color: inherit;
    font-size: 17px;
  }

  .aa-footer-grid {
    gap: 24px;
  }

  .aa-map-card .aa-map {
    min-height: 320px;
  }

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

  .aa-lightbox {
    padding: 14px;
  }

  .aa-lightbox-nav {
    top: auto;
    bottom: 18px;
    transform: none;
  }

  .aa-lightbox-prev {
    left: calc(50% - 58px);
  }

  .aa-lightbox-next {
    right: calc(50% - 58px);
  }
}

@media (max-width: 430px) {
  .aa-tour-image,
  .aa-tour-card-compact .aa-tour-image,
  .aa-tour-card-standard .aa-tour-image {
    min-height: 158px;
  }

  .aa-tour-card-standard .aa-tour-body {
    padding: 16px;
  }

  .aa-tour-meta-icons {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .aa-tour-price-row {
    grid-template-columns: 1fr;
  }

  .aa-tour-tags {
    justify-content: flex-start;
  }

  .aa-mobile-bookbar {
    align-items: stretch;
    gap: 8px;
  }

  .aa-mobile-bookbar-actions {
    grid-template-columns: 1fr;
    min-width: 128px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}
