/* ============================================================
   Elephant Freedom Thailand - Modern Luxury Style
   Color Palette: Brown & Cream
   ============================================================ */

@font-face {
  font-family: 'NoeDisplay';
  src: url('NoeDisplay-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  /* River Dawn — Primary: teal-green, Accent: amber */
  --brown-dark:    #1F3536;
  --brown-mid:     #235850;
  --brown-main:    #2E6E63;
  --gold-dark:     #B57E20;
  --gold-main:     #2E6E63;
  --gold-light:    #D79A3C;
  --gold-bright:   #D79A3C;
  --gold-pale:     #DCEBE6;
  --cream-dark:    #C8D8D4;
  --cream-mid:     #D8E8E4;
  --cream-light:   #DCEBE6;
  --cream-pale:    #EDF4F2;
  --cream-white:   #F4F1EA;
  --text-dark:     #1F3536;
  --text-mid:      #1F3536;
  --text-light:    #566862;
  --white:         #FFFFFF;

  --font-serif:    'Prompt', sans-serif;
  --font-sans:     'Prompt', sans-serif;

  --shadow-sm:     0 2px 8px rgba(31, 53, 54, 0.08);
  --shadow-md:     0 4px 20px rgba(31, 53, 54, 0.12);
  --shadow-lg:     0 8px 40px rgba(31, 53, 54, 0.16);
  --shadow-xl:     0 16px 60px rgba(31, 53, 54, 0.20);

  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --radius-xl:     32px;

  --transition:    all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   Base Styles
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* Font by language */
html[lang="th"] {
  --font-serif: 'Prompt', sans-serif;
  --font-sans:  'Prompt', sans-serif;
}
html:not([lang="th"]) {
  --font-serif: 'NoeDisplay', serif;
  --font-sans:  'NoeDisplay', serif;
}
html[lang="zh"] {
  --font-serif: 'KaiTi', 'STKaiti', '楷体', serif;
  --font-sans:  'KaiTi', 'STKaiti', '楷体', serif;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--text-dark);
  background-color: var(--cream-white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--brown-dark);
  line-height: 1.3;
}

a {
  color: var(--gold-main);
  text-decoration: none;
  transition: var(--transition);
}
a:hover { color: var(--gold-dark); }

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

/* ============================================================
   Top Bar
   ============================================================ */
.top-bar {
  background: var(--brown-dark);
  padding: 8px 0;
  font-size: 0.82rem;
}

.top-bar-link,
.top-bar-text {
  color: var(--cream-mid);
  font-size: 0.82rem;
  transition: var(--transition);
}
.top-bar-link:hover { color: var(--gold-bright); }

/* ============================================================
   Navbar
   ============================================================ */
.navbar-luxury {
  background: rgb(235, 244, 241);
  border-bottom: 1px solid var(--cream-mid);
  padding: 14px 0;
  height: 98px;
  display: flex;
  align-items: center;
  transition: var(--transition);
  box-shadow: 0 2px 20px rgba(31, 53, 54, 0.06);
}

.navbar-brand img {
  height: 90px;
  width: auto;
  display: block;
}

@media (max-width: 991px) {
  .navbar-luxury .navbar-collapse {
    background: rgb(235, 244, 241);
    box-shadow: 0 8px 20px rgba(31, 53, 54, 0.1);
    margin-top: 10px;
    border-radius: 10px;
    padding: 6px 16px;
  }
}

@media (max-width: 768px) {
  .navbar-luxury { min-height: 64px; }
  .navbar-brand img { height: 48px; }
}

.navbar-luxury.scrolled {
  padding: 8px 0;
  box-shadow: var(--shadow-md);
  background: rgb(225, 238, 234);
}

/* Brand */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-icon {
  font-size: 2rem;
  line-height: 1;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.brand-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brown-dark);
  letter-spacing: 0.02em;
}
.brand-sub {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--gold-main);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Nav Links */
.navbar-luxury .nav-link {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 8px 14px !important;
  letter-spacing: 0.03em;
  position: relative;
  transition: var(--transition);
}
.navbar-luxury .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--gold-main);
  transform: scaleX(0);
  transform-origin: center;
  transition: var(--transition);
}
.navbar-luxury .nav-link:hover,
.navbar-luxury .nav-link.active {
  color: var(--brown-dark);
}
.navbar-luxury .nav-link:hover::after,
.navbar-luxury .nav-link.active::after {
  transform: scaleX(1);
}

/* Dropdown */
.luxury-dropdown {
  background: var(--cream-white);
  border: 1px solid var(--cream-mid);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  min-width: 200px;
}
.luxury-dropdown .dropdown-item {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 10px 20px;
  transition: var(--transition);
}
.luxury-dropdown .dropdown-item:hover {
  background: var(--cream-light);
  color: var(--brown-dark);
  padding-left: 26px;
}

/* Navbar Buttons */
.btn-luxury {
  background: #D79A3C;
  color: var(--white) !important;
  border: none;
  border-radius: var(--radius-md);
  padding: 9px 22px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: var(--transition);
  box-shadow: 0 3px 12px rgba(181, 126, 32, 0.3);
}
.btn-luxury:hover {
  background: #B57E20;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(181, 126, 32, 0.4);
  color: var(--white) !important;
}

.btn-luxury-outline {
  background: transparent;
  color: var(--gold-main) !important;
  border: 1.5px solid var(--gold-main);
  border-radius: var(--radius-md);
  padding: 8px 22px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: var(--transition);
}
.btn-luxury-outline:hover {
  background: var(--gold-main);
  color: var(--white) !important;
  transform: translateY(-2px);
}

/* Mobile Toggler */
.luxury-toggler {
  border: 1.5px solid var(--gold-light);
  border-radius: 50%;
  padding: 10px;
  width: 44px;
  height: 44px;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.luxury-toggler span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold-main);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   Hero Section
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--brown-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/212494.jpg') center center / cover no-repeat;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/2412.jpg') center center / cover no-repeat;
  opacity: 0;
  animation: heroFade 15s 5s infinite;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/2414.jpg') center center / cover no-repeat;
  opacity: 0;
  animation: heroFade 15s 10s infinite;
}
@keyframes heroFade {
  0%, 6.7%  { opacity: 0; }
  13.3%     { opacity: 1; }
  33.3%     { opacity: 1; }
  40%, 100% { opacity: 0; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(20, 16, 10, 0.75) 0%, rgba(20, 16, 10, 0.55) 45%, rgba(20, 16, 10, 0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 100px 0 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(46, 110, 99, 0.2);
  border: 1px solid rgba(46, 110, 99, 0.4);
  color: var(--gold-pale);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--cream-white);
  line-height: 1.15;
  margin-bottom: 8px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}
.hero-title-gold {
  color: var(--gold-bright);
  display: block;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--cream-mid);
  font-weight: 300;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.hero-desc {
  font-size: 1rem;
  color: rgba(245, 237, 214, 0.85);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.btn-hero-primary {
  background: #D79A3C;
  color: var(--white);
  border: none;
  padding: 16px 36px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  letter-spacing: 0.04em;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(215, 154, 60, 0.35);
}
.btn-hero-primary:hover {
  background: #B57E20;
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(215, 154, 60, 0.5);
  color: var(--white);
}

.btn-hero-outline {
  background: transparent;
  color: var(--cream-light);
  border: 1.5px solid rgba(245, 237, 214, 0.5);
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.btn-hero-outline:hover {
  background: rgba(245, 237, 214, 0.1);
  border-color: var(--cream-light);
  color: var(--cream-white);
  transform: translateY(-2px);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-stat {
  text-align: center;
}
.hero-stat-number {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-bright);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.75rem;
  color: var(--cream-mid);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Hero Image Side */
.hero-image-side {
  position: relative;
  z-index: 2;
}
.hero-image-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.hero-image-placeholder {
  width: 100%;
  height: 520px;
  background: linear-gradient(135deg, var(--brown-mid) 0%, var(--gold-dark) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-xl);
}
.hero-elephant-icon {
  font-size: 8rem;
  margin-bottom: 16px;
}
.hero-image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(31, 53, 54, 0.85);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  color: var(--cream-light);
  border: 1px solid rgba(46, 110, 99, 0.3);
}

/* ============================================================
   Section Styles
   ============================================================ */
.section-luxury {
  padding: 90px 0;
}
.section-cream {
  background: var(--cream-light);
  padding: 90px 0;
}
.section-cream-bg1 {
  background: url('../images/bg1.jpg') center center / cover no-repeat;
  padding: 90px 0;
  position: relative;
}

.section-cream-bg1 > * {
  position: relative;
  z-index: 1;
}
.section-dark {
  background: var(--brown-dark);
  padding: 90px 0;
}
.section-mid {
  background: var(--cream-mid);
  padding: 90px 0;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-main);
  margin-bottom: 16px;
}
.section-label::before,
.section-label::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold-main);
  opacity: 0.6;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--brown-dark);
  margin-bottom: 16px;
  font-weight: 700;
}
.section-title-white {
  color: var(--cream-white);
}
.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-main), var(--gold-bright));
  margin: 0 auto 20px;
  border-radius: 2px;
}
.section-desc {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.8;
}
.section-desc-white {
  color: var(--cream-mid);
}

/* ============================================================
   No Riding Banner
   ============================================================ */
.no-riding-section {
  background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown-mid) 100%);
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.no-riding-icon {
  font-size: 4rem;
  margin-bottom: 16px;
  display: block;
}
.no-riding-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 800;
  color: var(--cream-white);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.no-riding-sub {
  font-size: 1rem;
  color: var(--cream-mid);
}

/* ============================================================
   Tour Cards
   ============================================================ */
.tour-card {
  background: var(--cream-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--cream-mid);
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--gold-pale);
}

.tour-card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--brown-mid), var(--gold-dark));
  clip-path: polygon(0 0, 100% 0, 100% 78%, 0 100%);
}
.tour-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.tour-card:hover .tour-card-image img {
  transform: scale(1.06);
}
.tour-card-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  background: linear-gradient(135deg, var(--brown-mid), var(--gold-dark));
}

.tour-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(31, 53, 54, 0.78);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 13px;
  border-radius: 100px;
  letter-spacing: 0.05em;
}

.tour-card-icon {
  display: none;
}

.tour-card-body {
  padding: 4px 22px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tour-card-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--brown-dark);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.3;
}
.tour-card-duration {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.tour-card-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 1;
}
.tour-card-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--cream-mid);
  width: 100%;
}
.tour-card-price {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-dark);
}
.tour-card-price-unit {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-light);
  display: block;
  line-height: 1;
}

/* ============================================================
   Why Choose Us
   ============================================================ */
.feature-card {
  text-align: center;
  padding: 40px 28px;
  background: var(--cream-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--cream-mid);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-main), var(--gold-bright));
  transform: scaleX(0);
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-pale);
}
.feature-card:hover::before {
  transform: scaleX(1);
}
.feature-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--cream-light), var(--cream-mid));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
  border: 2px solid var(--gold-pale);
  transition: var(--transition);
}
.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--gold-main), var(--gold-bright));
  border-color: var(--gold-main);
}
.feature-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: 12px;
}
.feature-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ============================================================
   Testimonial / Review Cards
   ============================================================ */
.review-card {
  background: var(--cream-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--cream-mid);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 28px;
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--gold-pale);
  line-height: 1;
  opacity: 0.6;
}
.review-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gold-pale);
}
.review-stars {
  color: var(--gold-bright);
  font-size: 0.9rem;
  margin-bottom: 16px;
}
.review-text {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold-main), var(--gold-bright));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.review-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--brown-dark);
}
.review-country {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ============================================================
   CTA Section
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown-mid) 60%, var(--gold-dark) 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--cream-white);
  margin-bottom: 16px;
}
.cta-desc {
  font-size: 1rem;
  color: var(--cream-mid);
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.cta-gold-line {
  width: 60px;
  height: 3px;
  background: var(--gold-bright);
  margin: 0 auto 24px;
  border-radius: 2px;
}

/* ============================================================
   Gallery Grid
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: linear-gradient(135deg, var(--brown-mid), var(--gold-dark));
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  opacity: 0;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}
.gallery-item-large {
  grid-column: span 2;
}

/* ============================================================
   FAQ Accordion
   ============================================================ */
.faq-accordion .accordion-item {
  background: var(--cream-white);
  border: 1px solid var(--cream-mid);
  border-radius: var(--radius-md) !important;
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-accordion .accordion-item:hover {
  border-color: var(--gold-pale);
  box-shadow: var(--shadow-sm);
}
.faq-accordion .accordion-button {
  background: transparent;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--brown-dark);
  padding: 20px 24px;
  box-shadow: none;
  border-radius: var(--radius-md) !important;
}
.faq-accordion .accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, var(--cream-light), var(--cream-mid));
  color: var(--gold-dark);
}
.faq-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232E6E63'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.faq-accordion .accordion-body {
  font-size: 16px;
  color: var(--text-light);
  line-height: 24px;
  padding: 15px 24px 20px;
  border-top: 1px solid var(--cream-mid);
}

/* ============================================================
   Contact Form
   ============================================================ */
.form-luxury .form-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 6px;
}
.form-luxury .form-control,
.form-luxury .form-select {
  background: var(--cream-white);
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.92rem;
  color: var(--text-dark);
  transition: var(--transition);
}
.form-luxury .form-control:focus,
.form-luxury .form-select:focus {
  border-color: var(--gold-main);
  box-shadow: 0 0 0 3px rgba(46, 110, 99, 0.12);
  background: var(--white);
}
.form-luxury .form-control::placeholder {
  color: var(--cream-dark);
}

/* ============================================================
   Booking Form
   ============================================================ */
.booking-card {
  background: var(--cream-white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--cream-mid);
}

/* ============================================================
   Stats Section
   ============================================================ */
.stat-item {
  text-align: center;
  padding: 32px 20px;
}
.stat-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold-bright);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.88rem;
  color: var(--cream-mid);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  background: rgba(46, 110, 99, 0.2);
  align-self: stretch;
}

/* ============================================================
   Ornamental Elements
   ============================================================ */
.ornament-line {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin: 20px 0;
}
.ornament-line::before,
.ornament-line::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-pale));
}
.ornament-line::after {
  background: linear-gradient(90deg, var(--gold-pale), transparent);
}
.ornament-diamond {
  width: 8px;
  height: 8px;
  background: var(--gold-main);
  transform: rotate(45deg);
}

/* ============================================================
   Footer
   ============================================================ */
.footer-luxury {
  background: var(--brown-dark);
  position: relative;
}
.footer-wave {
  line-height: 0;
  margin-top: -1px;
}
.footer-wave svg {
  width: 100%;
  height: 60px;
}
.footer-main {
  padding: 70px 0 50px;
}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.footer-logo-icon { font-size: 2.5rem; }
.footer-logo-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cream-white);
  display: block;
}
.footer-logo-sub {
  font-size: 0.7rem;
  color: var(--gold-bright);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.footer-desc {
  font-size: 0.88rem;
  color: var(--cream-dark);
  line-height: 1.8;
  margin-bottom: 20px;
}
.footer-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(46, 110, 99, 0.15);
  border: 1px solid rgba(46, 110, 99, 0.3);
  color: var(--gold-bright);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  letter-spacing: 0.05em;
}
.footer-heading {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream-white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(46, 110, 99, 0.3);
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: var(--cream-dark);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a::before {
  content: '›';
  color: var(--gold-main);
  font-size: 1.1rem;
  line-height: 1;
}
.footer-links a:hover { color: var(--gold-bright); padding-left: 4px; }
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.88rem;
  color: var(--cream-dark);
}
.footer-contact li i {
  color: var(--gold-bright);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-contact a { color: var(--cream-dark); }
.footer-contact a:hover { color: var(--gold-bright); }
.footer-social {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 38px;
  height: 38px;
  background: rgba(212, 168, 83, 0.15);
  border: 1px solid rgba(212, 168, 83, 0.25);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream-dark);
  font-size: 0.95rem;
  transition: var(--transition);
}
.social-btn:hover {
  background: var(--gold-main);
  border-color: var(--gold-main);
  color: var(--white);
  transform: translateY(-3px);
}
.footer-bottom {
  border-top: 1px solid rgba(212, 168, 83, 0.1);
  padding: 20px 0;
  font-size: 0.82rem;
  color: rgba(212, 197, 169, 0.6);
}
.footer-tagline { color: rgba(212, 197, 169, 0.7); }

/* ============================================================
   Back to Top
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(180, 120, 30, 0.4);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  z-index: 999;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(180, 120, 30, 0.5);
}

/* ============================================================
   Breadcrumb
   ============================================================ */
.breadcrumb-luxury {
  background: linear-gradient(135deg, var(--brown-dark), var(--brown-mid));
  padding: 60px 0 40px;
}
.breadcrumb-luxury h1 {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--cream-white);
  margin-bottom: 12px;
}
.breadcrumb-luxury .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}
.breadcrumb-luxury .breadcrumb-item a { color: var(--gold-bright); }
.breadcrumb-luxury .breadcrumb-item.active { color: var(--cream-mid); }
.breadcrumb-luxury .breadcrumb-item + .breadcrumb-item::before { color: var(--gold-pale); }

/* ============================================================
   Page Inner Sections
   ============================================================ */
.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.about-image-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.about-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, var(--gold-light), transparent);
  border-radius: 50%;
  opacity: 0.15;
  z-index: -1;
}

/* ============================================================
   Utility Classes
   ============================================================ */
.text-gold { color: var(--gold-main) !important; }
.text-brown { color: var(--brown-dark) !important; }
.text-cream { color: var(--cream-mid) !important; }
.bg-cream { background-color: var(--cream-light) !important; }
.bg-brown { background-color: var(--brown-dark) !important; }
.bg-gold { background-color: var(--gold-main) !important; }

/* ============================================================
   Animations
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.animate-fade-up {
  animation: fadeInUp 0.7s ease forwards;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1199px) {
  .navbar-actions { display: none !important; }
}

@media (max-width: 991px) {
  .navbar-luxury .navbar-nav { padding: 20px 0; }
  .navbar-luxury .nav-link::after { display: none; }
  .hero-image-side { display: none; }
}

@media (max-width: 768px) {
  .section-luxury,
  .section-cream,
  .section-dark,
  .section-mid { padding: 60px 0; }
  .hero-section { min-height: auto; }
  .hero-content { padding: 80px 0 60px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item-large { grid-column: span 1; }
  .hero-stats { gap: 20px; }
  .booking-card { padding: 24px; }
}

@media (max-width: 576px) {
  /* เพิ่ม padding ซ้าย-ขวาบนมือถือทุก container */
  .container,
  .container-fluid {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

  /* Section horizontal breathing room */
  .section-luxury,
  .section-cream,
  .section-dark,
  .section-mid {
    padding: 50px 0;
  }

  /* Fix Bootstrap row negative margin overflow on mobile */
  .hero-section .row,
  .section-luxury .row,
  .section-cream .row,
  .section-dark .row,
  .section-mid .row,
  .no-riding-section .row,
  .cta-section .row {
    --bs-gutter-x: 1.2rem;
  }

  /* Hero */
  .hero-content { padding: 90px 4px 50px; }
  .hero-title   { font-size: 2.2rem; }
  .hero-badge   { font-size: 0.72rem; padding: 6px 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .hero-stats   { gap: 12px; justify-content: space-between; }
  .hero-stat-number { font-size: 1.5rem; }
  .hero-stat-label  { font-size: 0.7rem; }

  /* No-riding section */
  .no-riding-section { padding: 40px 0; }

  /* Cards */
  .tour-card { margin-bottom: 0; }
  .review-card { padding: 24px 20px; }
  .feature-card { padding: 24px 20px; }

  /* Breadcrumb */
  .breadcrumb-luxury { padding: 80px 0 30px; }

  /* Footer */
  .footer-main { padding: 50px 0 30px; }
  .social-icons-row { gap: 12px; }
  .social-icon-box .icon-wrap { width: 58px; height: 58px; font-size: 1.5rem; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .top-bar { display: none; }
}

/* ============================================================
   Social Network Section (before footer)
   ============================================================ */
.social-network-section {
  background: var(--cream-white);
  padding: 56px 0;
  border-top: 1px solid var(--cream-dark);
}

.social-network-section .section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-main);
  margin-bottom: 10px;
}

.social-network-section h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: 8px;
}

.social-network-section p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 36px;
}

.social-icons-row {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.social-icon-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.social-icon-box .icon-wrap {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: #889063;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.7rem;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(181,144,69,0.25);
}

.social-icon-box:hover .icon-wrap {
  transform: translateY(-4px) scale(1.06);
  background: #4C3D19;
  box-shadow: 0 8px 24px rgba(139,94,60,0.30);
}

.social-icon-box .icon-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

/* TikTok SVG icon */
.tiktok-icon {
  width: 1.5rem;
  height: 1.5rem;
  fill: #fff;
}

@media (max-width: 480px) {
  .social-icon-box .icon-wrap { width: 56px; height: 56px; font-size: 1.4rem; border-radius: 14px; }
  .social-icons-row { gap: 14px; }
}

/* ============================================================
   Visitors Flags Section
   ============================================================ */
.visitors-flags-section {
  background: #F8F6EA;
  padding: 36px 0;
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
}

.visitors-label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 20px;
}

.flags-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.flags-strip span {
  font-size: 2.2rem;
  line-height: 1;
  display: inline-block;
  border-radius: 6px;
  transition: transform 0.2s;
  cursor: default;
}

.flags-strip span:hover {
  transform: scale(1.25) translateY(-3px);
}

@media (max-width: 576px) {
  .flags-strip span { font-size: 1.8rem; }
  .flags-strip { gap: 8px; }
}

/* ============================================================
   Language Flag Links
   ============================================================ */
.flag-link {
  text-decoration: none;
  display: inline-block;
  border-radius: 8px;
  padding: 2px;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 2px solid transparent;
}

.flag-link span.fi {
  width: 2.2rem;
  height: 1.65rem;
  display: block;
  border-radius: 3px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.18);
  transition: box-shadow 0.2s, transform 0.2s;
  background-size: cover;
}

.flag-link:hover span.fi {
  transform: scale(1.2) translateY(-3px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.28);
}

.flag-link.flag-active {
  border-color: var(--gold-main);
  background: rgba(136,144,99,0.1);
  border-radius: 10px;
}

.flag-link.flag-active span.fi {
  transform: scale(1.1);
}

@media (max-width: 576px) {
  .flag-link span.fi { width: 1.8rem; height: 1.35rem; }
  .flags-strip { gap: 6px; }
}

/* ============================================================
   Enhanced Dropdown Menu
   ============================================================ */
.luxury-dropdown {
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px rgba(53,64,36,0.14);
  padding: 8px 0;
  min-width: 240px;
  background: #fff;
  margin-top: 8px !important;
}

.dropdown-header-item {
  padding: 8px 18px 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-main);
  border-bottom: 1px solid var(--cream-dark);
  margin-bottom: 4px;
}

.luxury-dropdown .dropdown-item {
  padding: 10px 18px;
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-mid);
  border-radius: 0;
  transition: background 0.18s, color 0.18s, padding-left 0.18s;
  display: flex;
  align-items: center;
}

.luxury-dropdown .dropdown-item:hover,
.luxury-dropdown .dropdown-item:focus {
  background: var(--cream-light);
  color: var(--brown-dark);
  padding-left: 24px;
}

.luxury-dropdown .dropdown-item i {
  color: var(--gold-main);
  width: 18px;
  flex-shrink: 0;
}

.luxury-dropdown .dropdown-item.dropdown-item-highlight {
  color: #25D366;
  font-weight: 600;
}

.luxury-dropdown .dropdown-item.dropdown-item-highlight i {
  color: #25D366;
}

.luxury-dropdown .dropdown-item.dropdown-item-highlight:hover {
  background: #f0fdf4;
  color: #1a9e4e;
}

.luxury-dropdown .dropdown-divider {
  border-color: var(--cream-dark);
  margin: 4px 12px;
}

/* Animate dropdown */
.luxury-dropdown {
  animation: dropdownFade 0.18s ease;
}
@keyframes dropdownFade {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Nested dropend submenu */
.dropend .dropdown-menu {
  margin-top: -4px;
  margin-left: 2px;
}
.dropend > .dropdown-toggle::after {
  margin-left: auto;
}

/* Mobile dropdown */
@media (max-width: 991px) {
  .luxury-dropdown {
    box-shadow: none;
    border: none;
    border-left: 3px solid var(--gold-main);
    border-radius: 0;
    margin-left: 12px !important;
    padding: 4px 0;
    min-width: auto;
    background: var(--cream-pale);
  }
  .luxury-dropdown .dropdown-item { padding: 9px 16px; font-size: 0.85rem; }
}
