/*
Theme Name: ThaiAdventure
Theme URI: https://thaiadventure.com
Author: ThaiAdventure
Description: ธีมสำหรับเว็บไซต์ท่องเที่ยว รองรับกิจกรรมหลากหลาย Day Tour กอล์ฟ โหนสลิง และกิจกรรมผจญภัย
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: thaiadventure
Tags: tourism, travel, activities, thai, responsive, custom-logo, custom-menu, footer-widgets
*/

/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
  --ta-orange:        #F4650A;
  --ta-orange-light:  #FF8C3A;
  --ta-orange-dark:   #C44E00;
  --ta-orange-bg:     #FFF4EC;
  --ta-dark:          #1A1209;
  --ta-mid:           #5C3D1E;
  --ta-gray:          #8A7968;
  --ta-light:         #F9F5F1;
  --ta-white:         #FFFFFF;
  --ta-shadow:        0 4px 24px rgba(244,101,10,0.10);
  --ta-radius:        12px;
  --ta-radius-lg:     20px;
  --ta-transition:    all 0.25s ease;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Bai Jamjuree', sans-serif;
  color: var(--ta-dark);
  background: var(--ta-white);
  line-height: 1.6;
  font-size: 16px;
  padding-bottom: 64px; /* space for floating bar */
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--ta-transition); }
ul { list-style: none; }
button { font-family: 'Bai Jamjuree', sans-serif; cursor: pointer; }
input, select, textarea { font-family: 'Bai Jamjuree', sans-serif; }

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--ta-dark);
}
h1 { font-size: clamp(32px, 5vw, 56px); }
h2 { font-size: clamp(24px, 4vw, 36px); }
h3 { font-size: clamp(18px, 3vw, 24px); }
h4 { font-size: 18px; }
p { line-height: 1.75; color: var(--ta-mid); }

/* =============================================
   LAYOUT UTILITIES
   ============================================= */
.ta-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.ta-section { padding: 72px 0; }
.ta-section--light { background: var(--ta-light); }
.ta-section--orange-bg { background: var(--ta-orange-bg); }
.ta-section--dark {
  background: var(--ta-dark);
  color: var(--ta-white);
}

.ta-section-header { margin-bottom: 40px; }
.ta-eyebrow {
  display: inline-block;
  color: var(--ta-orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.ta-section-title { font-size: clamp(22px, 3.5vw, 34px); font-weight: 700; }
.ta-section-sub { color: var(--ta-gray); font-size: 15px; margin-top: 8px; }

/* =============================================
   BUTTONS
   ============================================= */
.ta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--ta-radius);
  font-size: 14px;
  font-weight: 600;
  border: none;
  transition: var(--ta-transition);
  cursor: pointer;
}
.ta-btn--primary {
  background: var(--ta-orange);
  color: var(--ta-white);
  box-shadow: 0 4px 16px rgba(244,101,10,0.35);
}
.ta-btn--primary:hover {
  background: var(--ta-orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244,101,10,0.45);
}
.ta-btn--outline {
  background: transparent;
  color: var(--ta-white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.ta-btn--outline:hover {
  border-color: var(--ta-white);
  background: rgba(255,255,255,0.08);
}
.ta-btn--ghost {
  background: var(--ta-orange-bg);
  color: var(--ta-orange);
  border: 1.5px solid transparent;
}
.ta-btn--ghost:hover {
  background: var(--ta-orange);
  color: var(--ta-white);
}
.ta-btn--full { width: 100%; justify-content: center; }
.ta-btn--lg { padding: 16px 36px; font-size: 16px; }

/* =============================================
   TAGS & BADGES
   ============================================= */
.ta-tag {
  display: inline-block;
  background: var(--ta-orange-bg);
  color: var(--ta-orange);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
}
.ta-badge {
  display: inline-block;
  background: var(--ta-orange);
  color: var(--ta-white);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
}

/* =============================================
   SITE HEADER
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ta-white);
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}

/* Logo */
.site-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.site-logo img { height: 44px; width: auto; }
.site-logo__text {
  font-size: 20px;
  font-weight: 700;
  color: var(--ta-orange);
  white-space: nowrap;
}

/* Nav */
.site-nav { display: flex; align-items: center; gap: 32px; }
.site-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ta-mid);
  position: relative;
  padding-bottom: 2px;
}
.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--ta-orange);
  transition: width 0.25s ease;
}
.site-nav a:hover { color: var(--ta-orange); }
.site-nav a:hover::after { width: 100%; }

/* Hamburger */
.site-header__menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.site-header__menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ta-dark);
  margin: 5px 0;
  transition: var(--ta-transition);
}

/* Mobile nav */
.site-nav--mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--ta-white);
  border-top: 1px solid #eee;
  padding: 16px 24px;
}
.site-nav--mobile.is-open { display: flex; }
.site-nav--mobile a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ta-mid);
  padding: 12px 0;
  border-bottom: 1px solid #f0ebe4;
}
.site-nav--mobile a:last-child { border-bottom: none; }

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 88vh;
  background: linear-gradient(135deg, #1A0A00 0%, #3D1800 45%, #7A2E00 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.hero__bg {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 15% 50%, rgba(244,101,10,0.2) 0%, transparent 50%),
    radial-gradient(circle at 85% 20%, rgba(255,140,58,0.12) 0%, transparent 40%);
}
.hero__content {
  position: relative;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.hero__badge {
  display: inline-block;
  background: rgba(244,101,10,0.2);
  border: 1px solid rgba(244,101,10,0.4);
  color: var(--ta-orange-light);
  border-radius: 100px;
  padding: 7px 20px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}
.hero__title {
  font-size: clamp(38px, 7vw, 72px);
  font-weight: 700;
  color: var(--ta-white);
  line-height: 1.08;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero__title em { color: var(--ta-orange-light); font-style: normal; }
.hero__desc {
  color: rgba(255,255,255,0.72);
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 36px;
}
.hero__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero__stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  margin-top: 52px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}
.hero__stat-num { font-size: 30px; font-weight: 700; color: var(--ta-orange-light); }
.hero__stat-label { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 2px; }

/* =============================================
   CATEGORY FILTER TABS
   ============================================= */
.ta-filter-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.ta-filter-tab {
  padding: 9px 22px;
  border-radius: 100px;
  border: 1.5px solid #ddd;
  background: var(--ta-white);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--ta-transition);
  color: var(--ta-mid);
}
.ta-filter-tab.is-active,
.ta-filter-tab:hover {
  background: var(--ta-orange);
  border-color: var(--ta-orange);
  color: var(--ta-white);
}

/* =============================================
   ACTIVITY CARDS GRID
   ============================================= */
.ta-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 24px;
}
.ta-card {
  background: var(--ta-white);
  border-radius: var(--ta-radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: var(--ta-transition);
}
.ta-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(244,101,10,0.15);
}
.ta-card__img {
  position: relative;
  height: 210px;
  overflow: hidden;
  background: #ddd;
}
.ta-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.ta-card:hover .ta-card__img img { transform: scale(1.05); }
.ta-card__province {
  position: absolute; top: 12px; left: 12px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  color: var(--ta-white);
  padding: 4px 11px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 500;
}
.ta-card__featured {
  position: absolute; top: 12px; right: 12px;
}
.ta-card__body { padding: 20px; }
.ta-card__tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; }
.ta-card__title { font-size: 16px; font-weight: 700; margin-bottom: 8px; line-height: 1.35; color: var(--ta-dark); }
.ta-card__desc { font-size: 13px; color: var(--ta-gray); line-height: 1.65; margin-bottom: 16px; }
.ta-card__footer { display: flex; justify-content: space-between; align-items: center; }
.ta-card__price { font-size: 20px; font-weight: 700; color: var(--ta-orange); }
.ta-card__price span { font-size: 12px; color: var(--ta-gray); font-weight: 400; }

/* =============================================
   PROVINCE GRID
   ============================================= */
.ta-province-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 14px;
}
.ta-province-card {
  background: var(--ta-white);
  border-radius: var(--ta-radius);
  padding: 22px 16px;
  text-align: center;
  cursor: pointer;
  transition: var(--ta-transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  border: 1.5px solid transparent;
}
.ta-province-card:hover {
  border-color: var(--ta-orange);
  transform: translateY(-3px);
  box-shadow: var(--ta-shadow);
}
.ta-province-card__icon { font-size: 30px; margin-bottom: 10px; }
.ta-province-card__name { font-size: 14px; font-weight: 700; color: var(--ta-dark); margin-bottom: 4px; }
.ta-province-card__count { font-size: 12px; color: var(--ta-gray); }

/* =============================================
   REVIEWS
   ============================================= */
.ta-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.ta-review-card {
  background: var(--ta-white);
  border-radius: var(--ta-radius);
  padding: 24px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border-left: 3px solid var(--ta-orange);
}
.ta-review-stars { color: #FFAA00; font-size: 15px; margin-bottom: 12px; }
.ta-review-text { font-size: 14px; color: var(--ta-mid); line-height: 1.75; margin-bottom: 16px; font-style: italic; }
.ta-reviewer { display: flex; align-items: center; gap: 12px; }
.ta-reviewer__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--ta-orange-bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
  overflow: hidden;
}
.ta-reviewer__avatar img { width: 100%; height: 100%; object-fit: cover; }
.ta-reviewer__name { font-size: 14px; font-weight: 700; color: var(--ta-dark); }
.ta-reviewer__trip { font-size: 12px; color: var(--ta-gray); }

/* =============================================
   BREADCRUMB
   ============================================= */
.ta-breadcrumb { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; margin-bottom: 16px; }
.ta-breadcrumb a { color: rgba(255,255,255,0.6); font-size: 13px; }
.ta-breadcrumb a:hover { color: var(--ta-white); }
.ta-breadcrumb__sep { color: rgba(255,255,255,0.3); font-size: 13px; }
.ta-breadcrumb__cur { color: var(--ta-white); font-size: 13px; }
.ta-breadcrumb--dark a { color: var(--ta-gray); }
.ta-breadcrumb--dark .ta-breadcrumb__sep { color: #ccc; }
.ta-breadcrumb--dark .ta-breadcrumb__cur { color: var(--ta-dark); }

/* =============================================
   SINGLE ACTIVITY
   ============================================= */
.activity-hero {
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  padding: 48px 0;
  position: relative;
  background: linear-gradient(160deg, #1a4a1a, #2d7a2d);
  overflow: hidden;
}
.activity-hero__bg-img {
  position: absolute; inset: 0;
  object-fit: cover;
  width: 100%; height: 100%;
  opacity: 0.4;
}
.activity-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}
.activity-hero__content { position: relative; }
.activity-hero__title {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  color: var(--ta-white);
  line-height: 1.15;
  margin-bottom: 16px;
}
.activity-hero__meta { display: flex; gap: 20px; flex-wrap: wrap; }
.activity-hero__meta-item {
  display: flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-weight: 500;
}

.activity-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 36px;
  padding: 48px 0;
  align-items: start;
}

/* Gallery */
.ta-gallery { margin-bottom: 36px; border-radius: var(--ta-radius-lg); overflow: hidden; }
.ta-gallery__grid { display: grid; grid-template-columns: 2fr 1fr; gap: 8px; }
.ta-gallery__main { height: 280px; }
.ta-gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.ta-gallery__thumbs { display: grid; gap: 8px; }
.ta-gallery__thumb { height: 134px; }
.ta-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Content blocks */
.ta-content-block { margin-bottom: 36px; }
.ta-content-block__title {
  font-size: 17px; font-weight: 700; color: var(--ta-dark);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--ta-orange-bg);
  display: flex; align-items: center; gap: 8px;
}
.ta-include-list { display: flex; flex-direction: column; gap: 8px; }
.ta-include-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--ta-mid); padding: 8px 0;
  border-bottom: 1px solid #f5f0ea;
}
.ta-include-item:last-child { border-bottom: none; }
.ta-include-item--yes::before { content: '✅'; font-size: 14px; }
.ta-include-item--no::before  { content: '❌'; font-size: 14px; }

/* Timeline */
.ta-timeline { display: flex; flex-direction: column; gap: 0; }
.ta-timeline-item { display: flex; gap: 16px; padding-bottom: 20px; position: relative; }
.ta-timeline-item::before {
  content: '';
  position: absolute;
  left: 43px; top: 32px;
  width: 2px; height: calc(100% - 12px);
  background: #f0ebe4;
}
.ta-timeline-item:last-child::before { display: none; }
.ta-timeline-time {
  font-size: 13px; font-weight: 700; color: var(--ta-orange);
  width: 60px; flex-shrink: 0; padding-top: 10px; text-align: right;
}
.ta-timeline-dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--ta-orange);
  flex-shrink: 0;
  margin-top: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  color: white;
  position: relative; z-index: 1;
}
.ta-timeline-content { flex: 1; padding-top: 6px; }
.ta-timeline-content strong { font-size: 14px; font-weight: 700; color: var(--ta-dark); display: block; margin-bottom: 2px; }
.ta-timeline-content span { font-size: 13px; color: var(--ta-gray); }

/* Price table */
.ta-price-table { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ta-price-row {
  background: var(--ta-orange-bg);
  border-radius: var(--ta-radius);
  padding: 16px 20px;
  display: flex; justify-content: space-between; align-items: center;
}
.ta-price-label { font-size: 14px; color: var(--ta-mid); font-weight: 500; }
.ta-price-value { font-size: 22px; font-weight: 700; color: var(--ta-orange); }
.ta-price-value span { font-size: 12px; color: var(--ta-gray); font-weight: 400; }

/* FAQ */
.ta-faq-item {
  border-bottom: 1px solid #eee;
  overflow: hidden;
}
.ta-faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 16px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--ta-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.ta-faq-question:hover { color: var(--ta-orange); }
.ta-faq-icon { font-size: 18px; flex-shrink: 0; transition: transform 0.3s ease; }
.ta-faq-item.is-open .ta-faq-icon { transform: rotate(45deg); }
.ta-faq-answer {
  font-size: 14px;
  color: var(--ta-gray);
  line-height: 1.75;
  padding-bottom: 16px;
  display: none;
}
.ta-faq-item.is-open .ta-faq-answer { display: block; }

/* Booking sidebar */
.ta-booking-card {
  background: var(--ta-white);
  border-radius: var(--ta-radius-lg);
  padding: 28px;
  box-shadow: var(--ta-shadow);
  border: 1px solid #f0ebe4;
  position: sticky;
  top: 84px;
}
.ta-booking-price { font-size: 34px; font-weight: 700; color: var(--ta-orange); }
.ta-booking-price-note { font-size: 13px; color: var(--ta-gray); margin-bottom: 24px; }
.ta-form-group { margin-bottom: 16px; }
.ta-form-label { font-size: 12px; font-weight: 700; color: var(--ta-mid); margin-bottom: 6px; display: block; letter-spacing: 0.5px; }
.ta-form-input, .ta-form-select, .ta-form-textarea {
  width: 100%;
  padding: 11px 14px;
  border-radius: 8px;
  border: 1.5px solid #e5e0da;
  font-size: 14px;
  font-family: 'Bai Jamjuree', sans-serif;
  outline: none;
  transition: border-color 0.2s;
  background: var(--ta-white);
  color: var(--ta-dark);
}
.ta-form-input:focus,
.ta-form-select:focus,
.ta-form-textarea:focus { border-color: var(--ta-orange); }
.ta-form-textarea { resize: vertical; min-height: 80px; }
.ta-contact-divider {
  text-align: center;
  color: var(--ta-gray);
  font-size: 12px;
  margin: 16px 0;
  position: relative;
}
.ta-contact-divider::before, .ta-contact-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 38%;
  height: 1px;
  background: #eee;
}
.ta-contact-divider::before { left: 0; }
.ta-contact-divider::after  { right: 0; }
.ta-contact-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.ta-btn-line { background: #06C755; color: var(--ta-white); border: none; border-radius: 8px; padding: 11px; font-size: 13px; font-weight: 700; cursor: pointer; font-family: 'Bai Jamjuree', sans-serif; transition: opacity 0.2s; }
.ta-btn-line:hover { opacity: 0.88; }
.ta-btn-tel  { background: var(--ta-white); color: var(--ta-dark); border: 1.5px solid #ddd; border-radius: 8px; padding: 11px; font-size: 13px; font-weight: 700; cursor: pointer; font-family: 'Bai Jamjuree', sans-serif; transition: border-color 0.2s; }
.ta-btn-tel:hover { border-color: var(--ta-orange); color: var(--ta-orange); }

/* =============================================
   CONTACT PAGE
   ============================================= */
.ta-contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  padding: 64px 0;
  align-items: start;
}
.ta-contact-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 28px; }
.ta-contact-icon { font-size: 22px; margin-top: 2px; flex-shrink: 0; }
.ta-contact-label { font-size: 11px; font-weight: 700; color: var(--ta-gray); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.ta-contact-value { font-size: 15px; color: var(--ta-dark); font-weight: 600; }
.ta-social-btns { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px; }
.ta-social-btn {
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  font-family: 'Bai Jamjuree', sans-serif;
  transition: opacity 0.2s;
}
.ta-social-btn:hover { opacity: 0.85; }
.ta-social-btn--line { background: #06C755; color: var(--ta-white); }
.ta-social-btn--fb   { background: #1877F2; color: var(--ta-white); }
.ta-social-btn--ig   { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); color: var(--ta-white); }
.ta-social-btn--wa   { background: #25D366; color: var(--ta-white); }
.ta-social-btn--tt   { background: #000; color: var(--ta-white); }

.ta-contact-form-box {
  background: var(--ta-white);
  border-radius: var(--ta-radius-lg);
  padding: 36px;
  box-shadow: var(--ta-shadow);
  border: 1px solid #f0ebe4;
}
.ta-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ta-map-box {
  height: 220px;
  background: var(--ta-light);
  border-radius: var(--ta-radius);
  margin-top: 24px;
  overflow: hidden;
  border: 2px solid #eee;
}
.ta-map-box iframe { width: 100%; height: 100%; border: none; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--ta-dark);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 0;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 48px;
}
.site-footer__brand { }
.site-footer__logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.site-footer__logo img { height: 38px; width: auto; }
.site-footer__logo-text { font-size: 18px; font-weight: 700; color: var(--ta-white); }
.site-footer__desc { font-size: 13px; line-height: 1.8; color: rgba(255,255,255,0.6); }
.site-footer__col h4 { color: var(--ta-white); font-size: 14px; font-weight: 700; margin-bottom: 16px; }
.site-footer__col a {
  display: block;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.site-footer__col a:hover { color: var(--ta-orange-light); }
.site-footer__col p { font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 8px; }

/* Footer editor content */
.site-footer__custom-content { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.8; }
.site-footer__custom-content a { color: var(--ta-orange-light); }
.site-footer__custom-content a:hover { color: var(--ta-white); }

.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .activity-layout { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  body { padding-bottom: 64px; }
  .site-nav { display: none; }
  .site-header__menu-toggle { display: block; }
  .ta-section { padding: 48px 0; }
  .hero { padding: 60px 0; min-height: auto; }
  .hero__stats { gap: 24px; }
  .ta-cards-grid { grid-template-columns: 1fr; }
  .ta-contact-layout { grid-template-columns: 1fr; }
  .ta-form-row { grid-template-columns: 1fr; }
  .ta-gallery__grid { grid-template-columns: 1fr; }
  .ta-price-table { grid-template-columns: 1fr; }
  .activity-hero { min-height: 300px; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .ta-contact-form-box { padding: 24px; }
  .ta-booking-card { position: static; }
}

@media (max-width: 480px) {
  .ta-container { padding: 0 16px; }
  .hero__btns { flex-direction: column; align-items: center; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .ta-province-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =============================================
   WORDPRESS CORE
   ============================================= */
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 13px; color: var(--ta-gray); text-align: center; padding: 6px 0; }
.alignleft { float: left; margin: 0 20px 20px 0; }
.alignright { float: right; margin: 0 0 20px 20px; }
.aligncenter { display: block; margin: 0 auto 20px; }
.screen-reader-text {
  border: 0; clip: rect(1px,1px,1px,1px);
  clip-path: inset(50%);
  height: 1px; width: 1px;
  margin: -1px; overflow: hidden;
  padding: 0; position: absolute; word-wrap: normal;
}
