:root {
  --color-primary: #1d334e;
  --color-primary-dark: #152638;
  --color-accent: #e07a2f;
  --color-accent-light: #f4a261;
  --color-text: #5a6573;
  --color-heading: #1d334e;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-light: #f5f7fa;
  --color-border: #e8edf2;
  --color-overlay: rgba(0, 0, 0, 0.55);
  --color-whatsapp: #25d366;
  --container-width: 1140px;
  --font-brand: "Rock Salt", cursive;
  --font-body: "Montserrat", sans-serif;
  --font-heading: "Rock Salt", cursive;
  --font-nav: "Montserrat", sans-serif;
  --header-height: 118px;
  --shadow-sm: 0 4px 20px rgba(29, 51, 78, 0.08);
  --shadow-md: 0 12px 40px rgba(29, 51, 78, 0.12);
  --radius-md: 16px;
  --radius-lg: 24px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-white);
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: var(--color-accent);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  color: var(--color-heading);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.5px;
}

p {
  margin: 0 0 1rem;
}

p:last-child {
  margin-bottom: 0;
}

.container {
  width: min(100% - 40px, var(--container-width));
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-family: var(--font-nav);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}

/* Header */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}

.site-header.scrolled,
.page-inner .site-header {
  position: fixed;
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 6px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.14);
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}

.site-header.scrolled .site-brand,
.page-inner .site-brand {
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.site-brand img {
  height: 92px;
  width: auto;
  transition: height 0.3s;
}

.site-header.scrolled .site-brand img {
  height: 78px;
}

.page-inner .site-brand img {
  height: 82px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 111;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  position: relative;
  display: block;
  padding: 10px 16px;
  font-family: var(--font-nav);
  font-weight: 500;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.92);
  border-radius: 50px;
  transition: color 0.2s, background 0.2s;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 6px;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transition: transform 0.25s;
}

.site-header.scrolled .main-nav a,
.page-inner .main-nav a {
  color: var(--color-heading);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--color-accent);
}

.main-nav a.active::after,
.main-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border-radius: 50px;
  background: var(--color-accent);
  color: var(--color-white) !important;
  font-family: var(--font-nav);
  font-weight: 500;
  font-size: 0.88rem;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(224, 122, 47, 0.35);
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
}

.header-cta::before {
  content: "";
  width: 16px;
  height: 16px;
  margin-right: 8px;
  flex-shrink: 0;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.127.96.361 1.903.7 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.907.339 1.85.573 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.127.96.361 1.903.7 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.907.339 1.85.573 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.header-cta:hover {
  background: var(--color-primary);
  color: var(--color-white) !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(29, 51, 78, 0.25);
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--color-white);
  transition: transform 0.2s, opacity 0.2s, background 0.2s;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 28, 43, 0.55);
  z-index: 90;
}

.nav-close-item {
  display: none;
}

.nav-call-item {
  display: none;
}

body.nav-open {
  overflow: hidden;
}

body.nav-open .site-header {
  z-index: 110;
}

body.nav-open .whatsapp-float {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-header.scrolled .menu-toggle span,
.page-inner .menu-toggle span {
  background: var(--color-heading);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-height) + 40px) 20px 80px;
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(21, 38, 56, 0.82) 0%, rgba(29, 51, 78, 0.55) 45%, rgba(0, 0, 0, 0.45) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 820px);
  text-align: center;
}

.hero-eyebrow {
  display: inline-block;
  padding: 8px 18px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-nav);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.hero h1 {
  color: var(--color-white);
  font-family: var(--font-brand);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  margin: 0 0 20px;
  letter-spacing: 0.5px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-lead {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 48px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 680px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat {
  text-align: center;
}

.hero-stat strong {
  display: block;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 4px;
}

.hero-stat span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.85rem;
}

.page-hero {
  min-height: 52vh;
  text-align: center;
}

.page-hero h1 {
  color: var(--color-white);
  font-family: var(--font-brand);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  letter-spacing: 0.5px;
  margin: 0;
}

/* Trust bar */
.trust-bar {
  background: var(--color-primary);
  padding: 28px 0;
}

.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-accent-light);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.trust-item strong {
  display: block;
  font-family: var(--font-nav);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-white);
}

.trust-item span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 30px;
  border-radius: 50px;
  border: 2px solid transparent;
  font-family: var(--font-nav);
  font-weight: 500;
  font-size: 0.92rem;
  cursor: pointer;
  transition: 0.25s;
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.75);
}

.btn-outline:hover {
  background: var(--color-white);
  border-color: var(--color-white);
  color: var(--color-primary);
}

.btn-solid {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
  box-shadow: 0 8px 24px rgba(224, 122, 47, 0.35);
}

.btn-solid:hover {
  background: var(--color-white);
  border-color: var(--color-white);
  color: var(--color-primary);
  box-shadow: none;
}

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

.btn-primary:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

/* Sections */
.inner-section {
  padding: 90px 0;
}

.content-section {
  padding: 90px 0;
}

.content-section.alt {
  background: var(--color-light);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.section-intro {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-intro h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 1rem;
}

.section-intro p {
  font-size: 1.05rem;
}

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

.feature-card {
  position: relative;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  border-radius: 14px;
  background: rgba(224, 122, 47, 0.1);
  color: var(--color-accent);
  font-size: 1.4rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin: 0 0 0.75rem;
}

.feature-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
}

.impact-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.impact-panel-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 48px;
  background: var(--color-primary);
  color: rgba(255, 255, 255, 0.88);
}

.impact-panel-content h2,
.impact-panel-content h3 {
  color: var(--color-white);
}

.impact-panel-content .section-label {
  color: var(--color-accent-light);
}

.impact-panel-content p {
  margin-bottom: 1.25rem;
}

.impact-panel-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.featured-tour-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}

.featured-tour-image img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}

.featured-tour-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 40px;
}

.tour-badge {
  display: inline-block;
  width: fit-content;
  padding: 6px 14px;
  margin-bottom: 16px;
  border-radius: 50px;
  background: rgba(224, 122, 47, 0.12);
  color: var(--color-accent);
  font-family: var(--font-nav);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.featured-tour-content h2 {
  font-size: clamp(1.6rem, 3vw, 2rem);
  margin: 0 0 1rem;
}

.featured-tour-content p {
  margin-bottom: 1.5rem;
}

.cta-band {
  padding: 72px 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  text-align: center;
}

.cta-band h2 {
  color: var(--color-white);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0 0 12px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
  margin: 0 auto 28px;
  font-size: 1.05rem;
}

.cta-band .btn-solid:hover {
  background: var(--color-accent-light);
  border-color: var(--color-accent-light);
  color: var(--color-primary);
}

/* Tour cards */
.tour-cards {
  padding: 90px 0;
}

.tour-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tour-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.tour-card-link:hover {
  color: inherit;
}

.tour-card-link:hover .tour-card {
  transform: scale(1.02);
}

.tour-card {
  position: relative;
  min-height: 280px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 32px;
  background-size: cover;
  background-position: center;
  transition: transform 0.25s ease;
}

.tour-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.75) 100%);
}

.tour-card h2,
.tour-card h3 {
  position: relative;
  z-index: 1;
  color: var(--color-white);
  font-size: 1.35rem;
  margin: 0;
}

.tour-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 80px;
}

.tour-block:last-child {
  margin-bottom: 0;
}

.tour-block.reverse {
  direction: rtl;
}

.tour-block.reverse > * {
  direction: ltr;
}

.tour-block img {
  border-radius: var(--radius-md);
  width: 100%;
  object-fit: cover;
  min-height: 360px;
}

.tour-number {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-white);
  font-family: var(--font-nav);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.impact-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 0;
}

.impact-gallery img {
  border-radius: var(--radius-md);
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.prose {
  max-width: 820px;
}

.prose-wide {
  max-width: 920px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.contact-list li {
  padding: 8px 0;
}

.social-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  color: var(--color-heading);
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}

.social-links a svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.social-links a:hover {
  border-color: var(--color-accent);
  background: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-2px);
}

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

.contact-form label {
  display: block;
  font-weight: 500;
  color: var(--color-heading);
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font: inherit;
  background: #fafbfc;
}

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

.contact-form-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-status {
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 0.95rem;
}

.form-status--success {
  background: #ecfdf3;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.form-status--error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.contact-form button[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  width: 100%;
  background: none;
  border: 0;
  text-align: left;
  padding: 20px 40px 20px 0;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-heading);
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--color-accent);
}

.faq-item.open .faq-question::after {
  content: "−";
}

.faq-answer {
  display: none;
  padding: 0 0 20px;
}

.faq-item.open .faq-answer {
  display: block;
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, #152638 0%, #0f1c2b 100%);
  color: rgba(255, 255, 255, 0.82);
}

.footer-top {
  padding: 72px 0 48px;
}

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

.footer-brand-block img {
  height: 70px;
  width: auto;
  margin-bottom: 20px;
}

.footer-brand-block p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer-col h4 {
  color: var(--color-white);
  font-family: var(--font-nav);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0 0 20px;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  transition: color 0.2s, padding-left 0.2s;
}

.footer-links a:hover {
  color: var(--color-accent-light);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.footer-contact-item strong {
  display: block;
  color: var(--color-white);
  font-family: var(--font-nav);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-contact-item a:hover {
  color: var(--color-accent-light);
}

.footer-social-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.social-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.92);
  transition: background 0.2s, border-color 0.2s, transform 0.2s, color 0.2s;
}

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

.social-icon-btn:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-2px);
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--color-whatsapp);
  color: var(--color-white);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.whatsapp-float:hover {
  color: var(--color-white);
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  padding: 0;
  border: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: zoom-in;
  background: var(--color-light);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.35s;
}

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

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.88);
}

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

.gallery-lightbox img {
  max-width: min(100%, 1100px);
  max-height: 88vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.gallery-lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-white);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.gallery-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.22);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.footer-tagline {
  font-family: var(--font-nav);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero,
  .page-hero {
    min-height: 70vh;
  }

  .hero-stats,
  .trust-bar-grid {
    grid-template-columns: 1fr 1fr;
  }

  .two-col,
  .tour-block,
  .contact-grid,
  .feature-grid,
  .tour-cards-grid,
  .impact-gallery,
  .impact-panel,
  .featured-tour-card,
  .footer-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .tour-block.reverse {
    direction: ltr;
  }

  .impact-panel-content,
  .featured-tour-content {
    padding: 40px 32px;
  }

  .inner-section,
  .content-section,
  .tour-cards {
    padding: 60px 0;
  }
}

@media (max-width: 767px) {
  .site-brand img {
    height: 72px;
  }

  .site-header.scrolled .site-brand img,
  .page-inner .site-brand img {
    height: 64px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }

  .menu-toggle {
    display: block;
  }

  .header-cta {
    display: none;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(300px, 85vw);
    height: 100vh;
    background: var(--color-white);
    flex-direction: column;
    align-items: stretch;
    padding: 24px 24px 30px;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
    transition: right 0.3s;
    gap: 4px;
    z-index: 111;
    overflow-y: auto;
  }

  .nav-close-item {
    display: flex;
  }

  .nav-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    background: var(--color-light);
    color: var(--color-heading);
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
  }

  .nav-close-item {
    list-style: none;
    justify-content: flex-end;
    margin: 0 0 12px;
    padding: 0;
  }

  .nav-close span {
    display: block;
    margin-top: -2px;
  }

  .main-nav.open {
    right: 0;
  }

  .main-nav a {
    color: var(--color-heading);
    font-size: 1rem;
    border-radius: 12px;
  }

  .main-nav a:hover,
  .main-nav a.active {
    background: var(--color-light);
  }

  .nav-call-item {
    display: list-item;
    list-style: none;
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
  }

  .nav-call-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 14px;
    background: var(--color-accent);
    color: var(--color-white) !important;
    box-shadow: 0 8px 24px rgba(224, 122, 47, 0.35);
  }

  .nav-call-link:hover {
    background: var(--color-primary);
    color: var(--color-white) !important;
  }

  .nav-call-link::after {
    display: none;
  }

  .nav-call-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    flex-shrink: 0;
  }

  .nav-call-icon svg {
    width: 18px;
    height: 18px;
  }

  .nav-call-number {
    font-family: var(--font-nav);
    font-size: 1rem;
    font-weight: 600;
  }

  .hero-stats,
  .trust-bar-grid {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .footer-top {
    padding: 48px 0 28px;
  }

  .footer-grid {
    gap: 28px;
    text-align: center;
  }

  .footer-brand-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-brand-block img {
    height: 58px;
    margin-bottom: 14px;
  }

  .footer-brand-block p {
    max-width: none;
    font-size: 0.92rem;
  }

  .footer-col {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-col:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .footer-col h4 {
    margin-bottom: 14px;
  }

  .footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
    text-align: left;
    max-width: 320px;
    margin: 0 auto;
  }

  .footer-links li {
    margin-bottom: 0;
  }

  .footer-contact-item {
    justify-content: center;
    text-align: center;
    margin-bottom: 12px;
  }

  .footer-contact-item a {
    display: inline-block;
    margin-top: 2px;
    word-break: break-word;
  }

  .footer-social-row {
    justify-content: center;
    margin-top: 4px;
  }

  .footer-bottom {
    padding: 18px 0 22px;
  }

  .footer-copy,
  .footer-tagline {
    font-size: 0.8rem;
  }
	
	.tour-block {
		gap: 0px;
	}
}
