/* ============================================================
   AYASOLUK GEZİ REHBERİ — Tourex-Style Custom CSS
   ============================================================ */

/* ===== ROOT VARIABLES ===== */
:root {
  --gold: #CAA05C;
  --gold-dark: #b08a48;
  --green: #2D6A4F;
  --green-light: #40916C;
  --dark: #1a1a2e;
  --dark-2: #16213e;
  --bg-warm: #f8f6f3;
  --bg-grey: #f5f3f0;
  --text: #555;
  --text-light: #888;
  --heading: #1a1a2e;
  --white: #fff;
  --radius: 12px;
  --radius-lg: 25px;
  --shadow-sm: 0 2px 15px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.1);
  --shadow-lg: 0 15px 50px rgba(0,0,0,0.15);
  --transition: all 0.3s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--heading);
  line-height: 1.3;
  font-weight: 700;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
a:hover { color: var(--gold); }
img { max-width: 100%; height: auto; }
ul { list-style: none; padding: 0; margin: 0; }
.p-relative { position: relative; }
.z-index-1 { z-index: 1; }
.fix { overflow: hidden; }
.w-100 { width: 100%; }
.include-bg { background-size: cover; background-position: center; background-repeat: no-repeat; }
.round-25 { border-radius: var(--radius-lg); }

/* ===== PRELOADER ===== */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s, visibility 0.5s;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-spinner {
  width: 44px; height: 44px;
  border: 3px solid #eee;
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* ===== HEADER ===== */
.tg-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  transition: all 0.4s ease;
}
.tg-header.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.tg-header.scrolled .tg-nav a { color: var(--heading); }
.tg-header.scrolled .tg-nav a:hover { color: var(--gold); }
.tg-header.scrolled .logo-title { color: var(--heading); }
.tg-header.scrolled .logo-sub { color: var(--text-light); }
.tg-header.scrolled .header-phone a { color: var(--heading); }
.tg-header.scrolled .header-phone small { color: var(--text-light); }
.tg-header.scrolled .hamburger span { background: var(--heading); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 80px;
}
.guide-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.guide-logo img { height: 44px; transition: var(--transition); }
.logo-text { display: flex; flex-direction: column; }
.logo-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 4px;
  line-height: 1;
  transition: var(--transition);
}
.logo-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: var(--transition);
}

.tg-nav { display: flex; gap: 32px; }
.tg-nav a {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 8px 0;
  position: relative;
}
.tg-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}
.tg-nav a:hover::after,
.tg-nav a.active::after { width: 100%; }
.tg-nav a.active { color: var(--gold); }

.header-phone {
  text-align: right;
}
.header-phone small {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.header-phone a {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
}

/* Hamburger */
.hamburger {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 28px; height: 20px;
  position: relative; z-index: 10;
  flex-direction: column; justify-content: space-between;
}
.hamburger span {
  display: block; width: 100%; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  top: 0; left: -320px;
  width: 300px; height: 100vh;
  background: var(--white);
  z-index: 10000;
  transition: left 0.4s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
  box-shadow: 5px 0 30px rgba(0,0,0,0.15);
}
.mobile-menu.open { left: 0; }
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #eee;
}
.mobile-menu-header .logo-title { color: var(--heading); }
.mobile-menu-header .logo-sub { color: var(--text-light); }
.mobile-close {
  background: none; border: none;
  font-size: 28px; color: var(--heading);
  cursor: pointer; line-height: 1;
}
.mobile-nav { padding: 20px 24px; }
.mobile-nav li { border-bottom: 1px solid #f0f0f0; }
.mobile-nav a {
  display: block;
  padding: 14px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--heading);
}
.mobile-nav a:hover { color: var(--gold); padding-left: 8px; }
.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9999;
  opacity: 0; visibility: hidden;
  transition: all 0.3s;
}
.mobile-menu-backdrop.open { opacity: 1; visibility: visible; }

/* ===== HERO ===== */
.tg-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.tg-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  animation: heroZoom 25s ease-in-out infinite alternate;
}
.tg-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,26,46,0.4) 0%, rgba(26,26,46,0.6) 100%);
}
.tg-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}
.tg-hero-subtitle {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.tg-hero-title {
  font-size: 60px;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.1;
}
.tg-hero-title-2 {
  font-size: 48px;
  color: var(--gold);
  font-style: italic;
  margin-bottom: 24px;
}
.tg-hero-text {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 35px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.tg-hero-stats {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.tg-hero-stat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 10px 20px;
  border-radius: 50px;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.15);
}
.tg-hero-stat i { color: var(--gold); }
.tg-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 50px;
  border: none;
  letter-spacing: 0.5px;
  transition: all 0.4s;
}
.tg-hero-btn:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(45,106,79,0.3);
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: float 2s ease-in-out infinite;
}
.hero-scroll a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.hero-scroll a i { font-size: 18px; }
.hero-scroll a:hover { color: var(--gold); }

/* Detail Hero */
.tg-hero.detail-hero { height: 55vh; min-height: 400px; }
.tg-hero.detail-hero .tg-hero-title { font-size: 48px; }
.detail-hero-meta {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.detail-hero-meta span {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: 8px;
}
.detail-hero-meta i { color: var(--gold); }

/* ===== SECTION TITLES ===== */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-subtitle {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-size: 42px;
  color: var(--heading);
  margin-bottom: 16px;
}
.section-desc {
  font-size: 16px;
  color: var(--text);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== DESTINATION SLIDER ===== */
.destination-area {
  padding: 120px 0 80px;
  position: relative;
  z-index: 1;
}
.destination-area .section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  text-align: left;
  margin-bottom: 40px;
}
.destination-area .section-header .section-left { flex: 1; }
.destination-slider-nav {
  display: flex;
  gap: 12px;
  margin-bottom: 10px;
}
.slider-nav-btn {
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 2px solid #e0e0e0;
  background: transparent;
  color: var(--heading);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
}
.slider-nav-btn:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--white);
}

/* Destination Card */
.destination-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 380px;
  cursor: pointer;
  display: block;
  text-decoration: none;
}
.destination-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.destination-card:hover img { transform: scale(1.08); }
.destination-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.7) 100%);
  transition: background 0.4s;
}
.destination-card:hover .destination-card-overlay {
  background: linear-gradient(180deg, transparent 20%, rgba(0,0,0,0.8) 100%);
}
.destination-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px;
  color: var(--white);
  z-index: 2;
}
.destination-card-content h3 {
  font-size: 22px;
  color: var(--white);
  margin-bottom: 4px;
}
.destination-card-count {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.destination-card-count span {
  font-weight: 700;
  color: var(--gold);
  font-size: 18px;
}

/* ===== ABOUT SECTION ===== */
.about-area {
  padding: 0 0 100px;
  position: relative;
  z-index: 1;
}
.about-thumb {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-thumb img {
  width: 100%;
  border-radius: var(--radius-lg);
}
.about-thumb-badge {
  position: absolute;
  bottom: 20px; right: 20px;
  background: var(--gold);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-thumb-badge .badge-number {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  display: block;
}
.about-thumb-badge .badge-text {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.about-content { padding-left: 60px; }
.about-content .section-subtitle { text-align: left; }
.about-content .section-title { text-align: left; font-size: 38px; }
.about-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 30px;
}

/* Fun Facts */
.funfact-wrap {
  display: flex;
  gap: 30px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}
.funfact-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.funfact-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(202,160,92,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 20px;
  flex-shrink: 0;
}
.funfact-number {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--heading);
  line-height: 1;
}
.funfact-label {
  font-size: 13px;
  color: var(--text-light);
}

.tg-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 8px;
  border: none;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}
.tg-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--green);
  transition: left 0.4s;
  z-index: -1;
}
.tg-btn:hover::before { left: 0; }
.tg-btn:hover { color: var(--white); transform: translateY(-2px); }

/* ===== LISTING CARDS (Tour Packages) ===== */
.listing-area {
  padding: 120px 0;
  background: var(--bg-grey);
  position: relative;
}
.listing-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s;
}
.listing-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}
.listing-card-thumb {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.listing-card-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.listing-card:hover .listing-card-thumb img { transform: scale(1.08); }
.listing-card-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--gold);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 30px;
  z-index: 2;
}
.listing-card-distance {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 30px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 5px;
}
.listing-card-distance i { color: var(--gold); font-size: 11px; }
.listing-card-content { padding: 22px 24px; }
.listing-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}
.listing-card-meta span {
  font-size: 13px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 5px;
}
.listing-card-meta i { color: var(--gold); font-size: 12px; }
.listing-card-title {
  font-size: 20px;
  margin-bottom: 8px;
  line-height: 1.3;
}
.listing-card-title a:hover { color: var(--gold); }
.listing-card-desc {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.listing-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid #f0f0f0;
}
.listing-card-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.listing-card-price .price-label {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 500;
}
.listing-card-price .price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}
.listing-card-price .price-free {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--green);
  background: rgba(45,106,79,0.08);
  padding: 4px 12px;
  border-radius: 20px;
}
.listing-card-rating {
  display: flex;
  align-items: center;
  gap: 6px;
}
.listing-card-rating i { color: #F5A623; font-size: 13px; }
.listing-card-rating-score {
  font-weight: 700;
  color: var(--heading);
  font-size: 14px;
}
.listing-card-rating-count {
  font-size: 12px;
  color: var(--text-light);
}
.listing-card-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 6px;
}
.listing-card-link:hover { color: var(--green); gap: 10px; }

/* ===== ADS / PROMO BANNER (Full-Width) ===== */
.ads-area {
  position: relative;
  z-index: 1;
}
.ads-wrap {
  overflow: hidden;
  position: relative;
  display: flex;
  min-height: 420px;
}
.ads-wrap-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 8s ease;
}
.ads-wrap:hover .ads-wrap-bg { transform: scale(1.05); }
.ads-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,46,0.9) 0%, rgba(26,26,46,0.5) 60%, transparent 100%);
  z-index: 1;
}
.ads-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 80px 60px;
  max-width: 1320px;
  margin: 0 auto;
}
.ads-content {
  max-width: 560px;
}
.ads-content .section-subtitle { text-align: left; color: var(--gold); }
.ads-content h2 {
  font-size: 40px;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}
.ads-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 28px;
}
.ads-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 32px;
}
.ads-stat {
  text-align: center;
}
.ads-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.ads-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-top: 6px;
  display: block;
}
.ads-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 50px;
  transition: all 0.4s;
}
.ads-btn:hover {
  background: var(--white);
  color: var(--heading);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* ===== PROCESS / HOW IT WORKS (Checkerboard) ===== */
.process-area {
  padding: 120px 0;
  position: relative;
  z-index: 1;
  background: var(--bg-warm);
  overflow: hidden;
}
.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
.process-thumb {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  min-height: 280px;
}
.process-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
  border-radius: var(--radius-lg);
}
.process-thumb:hover img { transform: scale(1.06); }
.process-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s;
  height: 100%;
  position: relative;
}
.process-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.process-card-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(202,160,92,0.1);
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}
.process-card-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(202,160,92,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--gold);
  font-size: 28px;
  transition: all 0.4s;
}
.process-card:hover .process-card-icon {
  background: var(--gold);
  color: var(--white);
  transform: scale(1.1);
}
.process-card h4 {
  font-size: 20px;
  margin-bottom: 10px;
}
.process-card p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
  margin: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonial-area {
  padding: 120px 0 80px;
  position: relative;
  background: var(--bg-warm);
}
.testimonial-quote-icon {
  text-align: center;
  margin-bottom: 30px;
}
.testimonial-quote-icon i {
  font-size: 48px;
  color: var(--gold);
  opacity: 0.3;
}
.testimonial-slide {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.testimonial-name {
  font-size: 20px;
  margin-bottom: 4px;
}
.testimonial-role {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 16px;
}
.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 20px;
}
.testimonial-stars i { color: #F5A623; font-size: 16px; }
.testimonial-text {
  font-size: 18px;
  color: var(--text);
  line-height: 1.8;
  font-style: italic;
}

/* Testimonial thumb slider */
.testimonial-thumb-wrap {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
}
.testimonial-thumb {
  width: 60px; height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid transparent;
  cursor: pointer;
  transition: all 0.3s;
  opacity: 0.5;
}
.testimonial-thumb.active {
  border-color: var(--gold);
  opacity: 1;
  transform: scale(1.15);
}
.testimonial-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 35px;
}
.testimonial-nav button {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid #ddd;
  background: transparent;
  color: var(--heading);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
}
.testimonial-nav button:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--white);
}

/* ===== BLOG / TIPS ===== */
.blog-area {
  padding: 120px 0;
  position: relative;
  z-index: 1;
}
.blog-card {
  margin-bottom: 30px;
  transition: all 0.4s;
}
.blog-card:hover { transform: translateY(-6px); }
.blog-card-thumb {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 260px;
  margin-bottom: 22px;
}
.blog-card-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.blog-card:hover .blog-card-thumb img { transform: scale(1.06); }
.blog-card-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--gold);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 30px;
  z-index: 2;
}
.blog-card-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  line-height: 1.4;
}
.blog-card-content h3 a:hover { color: var(--gold); }
.blog-card-date {
  font-size: 13px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
}
.blog-card-date i { color: var(--gold); }

/* ===== CTA SECTION ===== */
.cta-area {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}
.cta-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  padding: 80px 60px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.cta-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,46,0.9) 0%, rgba(26,26,46,0.7) 100%);
}
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.cta-content .section-subtitle { color: rgba(255,255,255,0.5); }
.cta-content h2 {
  font-size: 42px;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-content p {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  max-width: 550px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 50px;
  transition: all 0.4s;
}
.cta-btn:hover {
  background: var(--white);
  color: var(--heading);
  transform: translateY(-2px);
}

/* ===== ARTICLE / DETAIL PAGE ===== */
.article-section {
  padding: 80px 0 100px;
}
.article-content h2 {
  font-size: 28px;
  margin-bottom: 16px;
  margin-top: 36px;
}
.article-content h2:first-child { margin-top: 0; }
.article-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 16px;
}
.article-content ul {
  padding-left: 0;
  margin-bottom: 24px;
}
.article-content ul li {
  padding: 10px 0 10px 24px;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
  font-size: 15px;
  line-height: 1.7;
}
.article-content ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 18px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
.article-content ul li strong { color: var(--heading); }

/* Sidebar */
.info-sidebar {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid #f0f0f0;
  position: sticky;
  top: 100px;
}
.info-sidebar h4 {
  font-size: 22px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--gold);
}
.info-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #f0f0f0;
}
.info-item:last-of-type { border-bottom: none; }
.info-item i {
  color: var(--gold);
  font-size: 18px;
  width: 24px;
  text-align: center;
  padding-top: 3px;
  flex-shrink: 0;
}
.info-item strong {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 4px;
}
.info-item span {
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}
.tip-box {
  background: rgba(202,160,92,0.08);
  border-radius: var(--radius);
  padding: 22px;
  margin-top: 20px;
  border-left: 4px solid var(--gold);
}
.tip-box h5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tip-box h5 i { color: var(--gold); }
.tip-box p {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.7;
}

/* Related places */
.related-section {
  padding: 100px 0;
  background: var(--bg-warm);
}

/* ===== FOOTER ===== */
.tg-footer {
  background-color: var(--dark);
  background-size: cover;
  background-position: center;
  position: relative;
  color: rgba(255,255,255,0.65);
}
.tg-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26,26,46,0.92);
}
.tg-footer .container { position: relative; z-index: 2; }
.footer-top { padding: 80px 0 40px; }
.footer-widget { margin-bottom: 40px; }
.footer-widget h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 14px;
}
.footer-widget h3::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 40px; height: 2px;
  background: var(--gold);
}
.footer-logo-wrap .guide-logo { margin-bottom: 18px; }
.footer-logo-wrap .logo-title { color: var(--white); }
.footer-logo-wrap .logo-sub { color: rgba(255,255,255,0.4); }
.footer-logo-wrap p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Footer newsletter */
.footer-form { margin-bottom: 24px; }
.footer-form form {
  display: flex;
  border-radius: 8px;
  overflow: hidden;
}
.footer-form input {
  flex: 1;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,0.12);
  border-right: none;
  background: rgba(255,255,255,0.05);
  color: var(--white);
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color 0.3s;
}
.footer-form input::placeholder { color: rgba(255,255,255,0.3); }
.footer-form input:focus { border-color: var(--gold); }
.footer-form button {
  padding: 14px 20px;
  background: var(--gold);
  border: none;
  color: var(--white);
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s;
}
.footer-form button:hover { background: var(--green); }

/* Footer social */
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
}

/* Footer links */
.footer-links li { margin-bottom: 12px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a::before {
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 10px;
  color: var(--gold);
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }

/* Footer info */
.footer-info li {
  margin-bottom: 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.footer-info li i {
  color: var(--gold);
  font-size: 16px;
  width: 20px;
  text-align: center;
  padding-top: 3px;
  flex-shrink: 0;
}
.footer-info a { color: rgba(255,255,255,0.6); }
.footer-info a:hover { color: var(--gold); }

/* Footer copyright */
.footer-copyright {
  text-align: center;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 14px;
  color: rgba(255,255,255,0.4);
}
.footer-copyright a { color: var(--gold); }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  border: none;
  font-size: 18px;
  cursor: pointer;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.4s;
  box-shadow: 0 4px 15px rgba(202,160,92,0.4);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--green);
  transform: translateY(-4px);
}

/* ===== ANIMATIONS ===== */
@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1199px) {
  .tg-nav { display: none; }
  .hamburger { display: flex; }
  .header-inner { padding: 0 20px; }
  .about-content { padding-left: 0; margin-top: 40px; }
  .tg-hero-title { font-size: 48px; }
  .tg-hero-title-2 { font-size: 38px; }
  .section-title { font-size: 36px; }
  .cta-content h2 { font-size: 36px; }
  .ads-inner { padding: 60px 40px; }
  .ads-content h2 { font-size: 34px; }
}
@media (max-width: 991px) {
  .tg-hero { height: 80vh; min-height: 500px; }
  .tg-hero-title { font-size: 40px; }
  .tg-hero-title-2 { font-size: 32px; }
  .tg-hero-text { font-size: 16px; }
  .section-title { font-size: 32px; }
  .destination-area, .listing-area, .process-area, .testimonial-area, .blog-area { padding: 80px 0; }
  .cta-area { padding: 60px 0; }
  .tg-hero-bg { animation: none; background-attachment: scroll; }
  .cta-wrap { background-attachment: scroll; padding: 60px 30px; }
  .ads-inner { padding: 60px 30px; }
  .ads-content h2 { font-size: 30px; }
  .ads-stats { gap: 24px; }
  .ads-stat-number { font-size: 28px; }
  .destination-card { height: 320px; }
  .listing-card-thumb { height: 200px; }
  .about-content .section-title { font-size: 30px; }
  .funfact-number { font-size: 24px; }
  .funfact-icon { width: 48px; height: 48px; font-size: 18px; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .process-grid .process-thumb:nth-child(5) { display: none; }
}
@media (max-width: 767px) {
  .tg-hero { height: 70vh; min-height: 450px; }
  .tg-hero-title { font-size: 32px; }
  .tg-hero-title-2 { font-size: 26px; }
  .tg-hero.detail-hero .tg-hero-title { font-size: 28px; }
  .destination-area, .listing-area, .process-area, .testimonial-area, .blog-area,
  .article-section, .related-section { padding: 60px 0; }
  .cta-area { padding: 40px 0; }
  .cta-wrap { padding: 50px 20px; }
  .cta-content h2 { font-size: 28px; }
  .section-title { font-size: 28px; }
  .testimonial-text { font-size: 16px; }
  .ads-inner { padding: 50px 24px; }
  .ads-content h2 { font-size: 26px; }
  .ads-stats { gap: 20px; flex-wrap: wrap; }
  .ads-stat-number { font-size: 24px; }
  .ads-wrap { min-height: 350px; }
  .footer-top { padding: 60px 0 20px; }
  .info-sidebar { position: static; margin-top: 40px; }
  .guide-logo img { height: 38px; }
  .logo-title { font-size: 20px; letter-spacing: 3px; }
  .logo-sub { font-size: 9px; }
  .hero-scroll { display: none; }
  .detail-hero-meta { flex-wrap: wrap; gap: 10px; }
  .destination-area .section-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .destination-card { height: 280px; }
  .tg-hero-stats { gap: 8px; }
  .tg-hero-stat { padding: 8px 14px; font-size: 12px; }
  .blog-card-thumb { height: 200px; }
  .process-grid { grid-template-columns: 1fr; gap: 16px; }
  .process-thumb { min-height: 220px; }
  .process-grid .process-thumb:nth-child(5) { display: block; }
  .listing-card-price .price-amount { font-size: 19px; }
}
@media (max-width: 480px) {
  .tg-hero-title { font-size: 26px; }
  .tg-hero-title-2 { font-size: 22px; }
  .guide-logo img { height: 32px; }
  .logo-title { font-size: 17px; letter-spacing: 2px; }
  .logo-sub { font-size: 8px; }
  .destination-card { height: 260px; }
  .listing-card-thumb { height: 180px; }
  .listing-card-content { padding: 18px 20px; }
  .listing-card-title { font-size: 18px; }
  .funfact-wrap { gap: 20px; }
  .footer-form form { flex-direction: column; }
  .footer-form input { border-right: 1px solid rgba(255,255,255,0.12); }
  .footer-form button { width: 100%; padding: 14px; }
}
