/* ===== ANNOUNCEMENT BAR ===== */
.announce-bar {
  background: var(--primary);
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  padding: 8px 0;
  overflow: hidden;
  position: relative;
  z-index: 999; /* below logo z-index 1001 */
}
.announce-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.announce-track {
  flex: 1;
  text-align: center;
  transition: opacity 0.3s;
}
.announce-arrow {
  color: var(--accent);
  font-size: 22px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ===== HEADER ===== */
.site-header {
  background: var(--primary-dark);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
  padding-left: 90px; /* space for floating logo */
}
.nav-center {
  display: flex;
  gap: 2px;
  flex: 1;
  justify-content: center;
  flex-wrap: wrap;
}
.nav-center a {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}
.nav-center a:hover, .nav-center a.active {
  color: var(--accent);
  background: rgba(255,255,255,0.06);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.social-icons {
  display: flex;
  gap: 8px;
}
.social-icon {
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  transition: background 0.2s, color 0.2s;
}
.social-icon:hover, .social-icon.facebook:hover { background: var(--accent); color: var(--primary-dark); }
.btn-price-today {
  background: var(--accent);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 14px;
  padding: 9px 16px;
  border-radius: 8px;
  white-space: nowrap;
  transition: background 0.2s;
}
.btn-price-today:hover { background: var(--accent-dark); color: #fff; }
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  border-radius: 2px;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--primary-dark);
  padding: 10px 0 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,0.85);
  padding: 10px 20px;
  font-size: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* ===== SECTION COMMON ===== */
.section-zones, .section-activities, .section-reviews, .section-news, .section-faq { padding: 50px 0; }
.section-zones {
  position: relative;
  background-image: url('../images/bgzone.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.section-zones::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.30);
  pointer-events: none;
  z-index: 0;
}
.section-zones > * { position: relative; z-index: 1; }
.section-title-center {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  margin-bottom: 32px;
  position: relative;
}
.section-title-center::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin: 10px auto 0;
}

/* ===== ZONES ===== */
.zones-slider-wrap {
  overflow: hidden;
  /* padding lets card shadows breathe; negative margin compensates for layout shift */
  padding: 12px 4px 16px;
  margin: -12px -4px -16px;
}
.zones-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 48px) / 4);
  gap: 16px;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.zone-card {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: box-shadow 0.2s;
  background: #fff;
  min-width: 0;
}
.zone-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.zone-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.zone-img {
  height: 280px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.zone-img img { width: 100%; height: 100%; object-fit: cover; }
.zone-img i { font-size: 52px; opacity: 0.9; }
/* Shine sweep on hover */
.zone-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 20%,
    rgba(245, 166, 35, 0.35) 40%,
    rgba(26, 58, 107, 0.25) 60%,
    transparent 80%
  );
  transform: translateX(-120%) skewX(-15deg);
  transition: none;
  pointer-events: none;
}
.zone-card:hover .zone-img::after {
  animation: zone-shine 0.55s ease forwards;
}
@keyframes zone-shine {
  0%   { transform: translateX(-120%) skewX(-15deg); }
  100% { transform: translateX(160%)  skewX(-15deg); }
}
.zone-info {
  padding: 14px 16px;
  background: #fff;
}
.zone-name {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  color: var(--primary);
  margin-bottom: 4px;
}
.zone-desc {
  font-size: 13px;
  color: var(--gray);
  text-align: center;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Zone slider nav arrows */
.zones-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}
.zones-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: #fff;
  color: var(--primary);
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.zones-arrow:hover:not(:disabled) { background: var(--primary); color: #fff; border-color: var(--primary); }
.zones-arrow:disabled { opacity: 0.3; cursor: default; }
.zones-page-info {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray);
  min-width: 50px;
  text-align: center;
}

/* ===== SHOP SEARCH ===== */
.shop-search-banner {
  background: var(--accent);
  padding: 28px 0;
  box-shadow: 0 4px 18px rgba(245,166,35,0.35);
}
.shop-search-wrap {
  position: relative;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.shop-search-box {
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
  border: none;
  border-radius: 50px;
  padding: 0 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15), 0 1px 4px rgba(0,0,0,0.08);
  transition: box-shadow 0.2s;
}
.shop-search-box:focus-within {
  box-shadow: 0 6px 28px rgba(0,0,0,0.22), 0 2px 8px rgba(0,0,0,0.10);
}
.shop-search-icon {
  color: var(--accent);
  font-size: 17px;
  flex-shrink: 0;
  margin-right: 10px;
}
.shop-search-input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--font-th);
  font-size: 15px;
  color: var(--dark);
  padding: 14px 0;
  background: transparent;
}
.shop-search-input::placeholder { color: var(--gray); }
.shop-search-clear {
  background: none;
  border: none;
  color: var(--gray);
  font-size: 14px;
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 50%;
  flex-shrink: 0;
  transition: background 0.15s, color 0.15s;
}
.shop-search-clear:hover { background: #f1f5f9; color: #333; }
.shop-search-results {
  position: absolute;
  top: calc(100% + 8px);
  left: 0; right: 0;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
  overflow: hidden;
  z-index: 500;
  max-height: 380px;
  overflow-y: auto;
}
.shop-search-results::-webkit-scrollbar { width: 4px; }
.shop-search-results::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
.shop-search-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 20px;
  cursor: pointer;
  border-bottom: 1px solid var(--border);
  transition: background 0.12s;
  text-decoration: none;
  color: inherit;
}
.shop-search-item:last-child { border-bottom: none; }
.shop-search-item:hover { background: #f8faff; }
.shop-search-item-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.shop-search-item-info { flex: 1; min-width: 0; }
.shop-search-item-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.shop-search-item-meta {
  font-size: 12px;
  color: var(--gray);
  margin-top: 2px;
}
.shop-search-zone-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
  background: #eef2ff;
  color: var(--primary);
}
.shop-search-empty {
  padding: 28px 20px;
  text-align: center;
  color: var(--gray);
  font-size: 14px;
}
.shop-search-footer {
  padding: 10px 20px;
  text-align: center;
  background: #f8faff;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--primary);
  font-weight: 600;
  cursor: pointer;
}
.shop-search-footer:hover { background: #eef2ff; }

/* ===== ACTIVITIES ===== */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.activity-card {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  background: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.activity-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.activity-img {
  height: 280px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.activity-img img { width:100%; height:100%; object-fit:cover; }
.activity-img i { font-size: 52px; opacity: 0.9; }
.activity-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--accent);
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}
.activity-body { padding: 14px; }
.activity-title { font-size: 15px; font-weight: 700; color: var(--primary); margin-bottom: 4px; line-height: 1.15; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.activity-sub { font-size: 12px; color: var(--gray); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* ===== REVIEWS ===== */
.reviews-slider-wrap {
  overflow: hidden;
  padding: 12px 4px 16px;
  margin: -12px -4px -16px;
}
.reviews-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.review-card {
  background: var(--primary);
  border: 1px solid var(--primary-light);
  border-radius: 18px;
  padding: 28px 24px 22px;
  text-align: left;
  box-shadow: 0 4px 16px rgba(15,35,71,0.20);
  display: flex;
  flex-direction: column;
  gap: 14px;
  cursor: default;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(245,166,35,0.35);
  border-color: var(--accent);
  background: var(--accent);
}
.review-card:hover .review-detail { color: #fff; }
.review-card:hover .review-name { color: #fff; }
.review-card:hover .review-quote-icon { color: rgba(255,255,255,0.7); }
.review-card:hover .review-footer { border-top-color: rgba(255,255,255,0.35); }
.review-card:hover .review-avatar { border-color: rgba(255,255,255,0.6); }

/* Quote icon */
.review-quote-icon {
  font-size: 24px;
  color: var(--accent);
  line-height: 1;
  transition: color 0.25s;
}

/* Detail text */
.review-detail {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  flex: 1;
  transition: color 0.25s;
}

/* Footer */
.review-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.20);
  padding-top: 14px;
  margin-top: 4px;
  transition: border-color 0.25s;
}
.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255,255,255,0.30);
  transition: border-color 0.25s;
}
.review-avatar img { width:100%; height:100%; object-fit:cover; }
.review-avatar i { font-size: 26px; color: rgba(255,255,255,0.9); }
.review-meta { display: flex; flex-direction: column; gap: 3px; }
.review-name { font-size: 14px; font-weight: 700; color: #fff; transition: color 0.25s; }

/* ===== SLIDER DOTS ===== */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.slider-dot.active {
  background: var(--primary);
  transform: scale(1.3);
}

/* ===== NEWS ===== */
.news-grid-home {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.news-card-home {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.news-card-home:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.news-thumb {
  height: 180px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.news-thumb img { width:100%; height:100%; object-fit:cover; }
.news-thumb-placeholder { font-size: 50px; display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }
.video-badge {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
  font-size: 40px;
  color: #fff;
}
.news-home-cat {
  background: var(--accent);
  color: #1a1a2e;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
  letter-spacing: 0.03em;
  flex-shrink: 0;
}
.news-meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.news-body-home { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.news-title-home { font-size: 15px; font-weight: 700; color: var(--primary); margin-bottom: 8px; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.news-date-home { font-size: 13px; color: var(--gray); display: flex; align-items: center; gap: 5px; }
.news-date-home i { font-size: 12px; }
.news-summary-home { font-size: 13px; color: var(--gray); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; flex: 1; margin-bottom: 12px; }
.news-read-more {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  text-align: right;
  transition: color 0.2s;
}
.news-card-home:hover .news-read-more { color: var(--accent); }

/* ===== ร่วมธุรกิจกับเรา (HOME SECTION) ===== */
.section-biz-home {
  position: relative;
  background: url('../images/ycbg.jpg') center/cover no-repeat var(--primary-dark);
  overflow: hidden;
}
.biz-home-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10,28,60,0.82) 0%, rgba(15,42,90,0.70) 55%, rgba(20,55,120,0.60) 100%);
  z-index: 0;
}
.biz-home-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  padding-top: 64px;
  padding-bottom: 60px;
}
/* Left */
.biz-home-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,166,35,0.18);
  border: 1px solid rgba(245,166,35,0.45);
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.biz-home-title {
  font-size: 40px;
  font-weight: 900;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 16px;
}
.biz-home-accent { color: var(--accent); }
.biz-home-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.80);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 480px;
}
.biz-home-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.biz-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #1a1a2e;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.biz-btn-primary:hover { background: #ffc43a; transform: translateY(-2px); }
.biz-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.45);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.biz-btn-outline:hover { background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.7); }
/* Right badges */
.biz-home-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
}
.biz-badge {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  backdrop-filter: blur(4px);
}
.biz-badge-num {
  font-size: 28px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.biz-badge-label {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}
/* Bottom stats bar */
.biz-stats-bar {
  position: relative;
  z-index: 1;
  background: rgba(10,28,60,0.85);
  border-top: 1px solid rgba(255,255,255,0.10);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 20px max(20px, calc((100vw - 1200px) / 2 + 20px));
}
.biz-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  border-right: 1px solid rgba(255,255,255,0.12);
  padding: 4px 16px;
}
.biz-stat-item:last-child { border-right: none; }
.biz-stat-num {
  font-size: 26px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.biz-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.70);
  text-align: center;
}
/* Mobile */
@media (max-width: 900px) {
  .biz-home-inner {
    grid-template-columns: 1fr;
    padding-top: 40px;
    padding-bottom: 36px;
  }
  .biz-home-right { flex-direction: row; flex-wrap: wrap; }
  .biz-badge { flex: 1 1 calc(50% - 6px); }
  .biz-home-title { font-size: 28px; }
  .biz-stats-bar { grid-template-columns: repeat(2, 1fr); }
  .biz-stat-item:nth-child(2) { border-right: none; }
  .biz-stat-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.12); }
  .biz-stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.12); border-right: none; }
}

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { border: 1px solid var(--border); border-radius: 10px; overflow: hidden; background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.07); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  text-align: left;
  font-family: var(--font-th);
  transition: background 0.2s;
  gap: 16px;
}
.faq-q:hover { background: var(--light-gray); }
.faq-q--open { color: var(--accent) !important; background: var(--primary); }
.faq-q--open:hover { background: var(--primary-dark); }
.faq-icon {
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
  transition: color 0.2s;
}
.faq-q--open .faq-icon { color: #fff; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  transition: max-height 0.3s ease, padding 0.3s;
  padding: 0 20px;
}
.faq-a.open { max-height: 200px; padding: 10px 20px 18px; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.75);
  padding: 50px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-col-main .footer-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: contain;
  background: #fff;
  padding: 6px;
  margin-bottom: 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.footer-info p { font-size: 16px; line-height: 1.4; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-col h4 { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 14px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 16px; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--accent); }
.footer-social-col { display: flex; flex-direction: column; gap: 10px; }
.footer-social-col a { font-size: 16px; color: rgba(255,255,255,0.65); display: flex; align-items: center; gap: 8px; transition: color 0.2s; }
.footer-social-col a:hover { color: var(--accent); }
.footer-bottom-bar {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 14px 0;
  font-size: 15px;
  color: rgba(255,255,255,0.4);
}
.footer-bottom-bar a { color: rgba(255,255,255,0.5); }
.footer-bottom-bar a:hover { color: var(--accent); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .reviews-track { grid-template-columns: repeat(2,1fr); }
  .news-grid-home { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .nav-center, .nav-right { display: none; }
  .hamburger { display: block; }
  .rental-content { grid-template-columns: 1fr; }
  .rental-photo { height: 200px; }
  .reviews-track { grid-template-columns: repeat(2,1fr); }
  .news-grid-home { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .activities-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 480px) {
  .reviews-track { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ===== MOBILE SLIDER (zones / activities / news) ===== */
.mobile-slider-nav {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 18px;
}
.mobile-slider-arrow {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, opacity 0.2s;
  flex-shrink: 0;
}
.mobile-slider-arrow:hover { background: var(--primary-dark); }
.mobile-slider-arrow:disabled { opacity: 0.3; cursor: default; }
.mobile-slider-page-info {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  min-width: 56px;
  text-align: center;
}

@media (max-width: 768px) {
  /* Zones — 1 card per view */
  .zones-track { grid-auto-columns: 100%; }

  /* Activities — horizontal scroll snap */
  .activities-grid {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0;
    padding-bottom: 4px;
  }
  .activities-grid::-webkit-scrollbar { display: none; }
  .activity-card {
    flex: 0 0 100%;
    scroll-snap-align: start;
  }

  /* News — horizontal scroll snap */
  .news-grid-home {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0;
    padding-bottom: 4px;
  }
  .news-grid-home::-webkit-scrollbar { display: none; }
  .news-card-home {
    flex: 0 0 100%;
    scroll-snap-align: start;
  }

  /* Show mobile slider nav */
  .mobile-slider-nav { display: flex; }
}
