/* ============================================
   NEFRA EXPLORERS — Premium Kenya Tours
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Jost:wght@300;400;500;600;700&display=swap');

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  --primary:    #786b58;
  --secondary:  #bc8365;
  --tertiary:   #cdc6b4;
  --bg:         #f8f6f2;
  --bg-warm:    #f2efe9;
  --dark:       #1e1c19;
  --mid:        #4a4540;
  --muted:      #8a847c;
  --white:      #ffffff;
  --cream:      #fdfbf7;
  --border:     rgba(120, 107, 88, 0.18);
  --shadow-sm:  0 2px 12px rgba(30, 28, 25, 0.06);
  --shadow-md:  0 6px 30px rgba(30, 28, 25, 0.10);
  --shadow-lg:  0 16px 60px rgba(30, 28, 25, 0.14);
  --radius:     0px;
  --radius-lg:  0px;
  --ease:       cubic-bezier(0.25, 0.1, 0.25, 1);
  --transition: all 0.35s var(--ease);
  --font-head:  'Cormorant Garamond', serif;
  --font-body:  'Jost', sans-serif;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 500;
  line-height: 1.2;
  color: var(--dark);
}

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

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   TYPOGRAPHY HELPERS
   ============================================ */
.overline {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--secondary);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--dark);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  font-weight: 300;
  max-width: 540px;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  transition: var(--transition);
}

/* Transparent header (on hero) */
.header.hero-header {
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.header.hero-header .nav-menu a,
.header.hero-header .logo-text {
  color: rgba(255,255,255,0.92);
}

.header.hero-header .mobile-menu-btn span {
  background: var(--white);
}

.header.scrolled,
.header.solid {
  background: #cdc6b4 !important;
  box-shadow: 0 2px 20px rgba(30,28,25,0.12);
}
.header.scrolled .nav-menu a,
.header.solid .nav-menu a { color: #1e1c19; }
.header.scrolled .logo-text,
.header.solid .logo-text { color: #1e1c19; }
.header.scrolled .mobile-menu-btn span,
.header.solid .mobile-menu-btn span { background: var(--dark); }

/* Logo swap */
.logo-pre { display: block; }
.logo-sticky { display: none; }
.header.scrolled .logo-pre,
.header.solid .logo-pre { display: none; }
.header.scrolled .logo-sticky,
.header.solid .logo-sticky { display: block; }

/* Active nav */
.nav-menu a.active { border-bottom: 2px solid currentColor; }
.header.hero-header .nav-menu a.active { color: #fff; }

/* Header right side wrapper */
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

/* Book Tour CTA */
.btn-book-tour {
  background: #bc8365 !important;
  color: #fff !important;
  padding: 10px 20px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 2px solid #bc8365;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
  border-radius: 0 !important;
}
.btn-book-tour:hover {
  background: #786b58 !important;
  border-color: #786b58 !important;
  color: #fff !important;
}
.header.hero-header .btn-book-tour {
  background: #bc8365 !important;
  border-color: #bc8365;
}
.header.hero-header .btn-book-tour:hover {
  background: #786b58 !important;
  border-color: #786b58 !important;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  font-family: var(--font-head);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: var(--transition);
}

/* Navigation */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 38px;
}

.nav-menu a {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  position: relative;
  padding-bottom: 2px;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width 0.3s var(--ease);
}

.nav-menu a:hover::after,
.nav-menu a.active::after { width: 100%; }

/* Mobile menu button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 6px;
}

.mobile-menu-btn span {
  width: 26px;
  height: 1.5px;
  background: var(--dark);
  transition: var(--transition);
  display: block;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero.loaded .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(20, 18, 15, 0.32) 0%,
    rgba(20, 18, 15, 0.48) 60%,
    rgba(20, 18, 15, 0.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--white);
  max-width: 860px;
  padding: 0 24px;
  animation: heroFadeUp 1.2s var(--ease) 0.3s both;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tertiary);
  margin-bottom: 22px;
  opacity: 0.9;
}

.hero-title {
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.12;
  font-style: italic;
}

.hero-subtitle {
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: 44px;
  opacity: 0.88;
  letter-spacing: 0.02em;
}

/* Hero Search */
.hero-search {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-radius: 0;
  padding: 6px 6px 6px 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 680px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}

.hero-search input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 0.95rem;
  background: transparent;
  color: var(--dark);
  min-width: 0;
}

.hero-search input::placeholder { color: var(--muted); }

.hero-search select {
  border: none;
  outline: none;
  font-size: 0.88rem;
  background: transparent;
  color: var(--mid);
  padding: 0 12px;
  border-left: 1px solid var(--border);
  height: 36px;
  appearance: auto;
}

.hero-search-btn {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: var(--white);
  border: none;
  padding: 14px 30px;
  border-radius: 0;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: var(--transition);
  white-space: nowrap;
}

.hero-search-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(188, 131, 101, 0.45);
}

/* ============================================
   SECTION BASE
   ============================================ */
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.section-bg { background: var(--cream); }
.section-warm { background: var(--bg-warm); }

.section-header {
  margin-bottom: 56px;
}

.section-header-flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 56px;
}

.view-all-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--secondary);
  white-space: nowrap;
}

.view-all-link svg { transition: transform 0.3s var(--ease); }
.view-all-link:hover svg { transform: translateX(4px); }

/* ============================================
   CARD SYSTEM — Equal Height, No Displacement
   ============================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.cards-grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white);
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: grid;
  grid-template-rows: 240px auto 1fr auto;
  /* Row 1: image, Row 2: badges/meta, Row 3: flex content, Row 4: footer */
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* Card Image — fixed height row */
.card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.card:hover .card-image img { transform: scale(1.06); }

.card-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--secondary);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Card Meta — consistent height row */
.card-meta {
  padding: 20px 22px 0;
  min-height: 28px;
}

.card-location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  color: var(--secondary);
  font-weight: 500;
}

/* Card Body — grows to fill space */
.card-body {
  padding: 10px 22px 0;
  display: flex;
  flex-direction: column;
}

.card-body h3 {
  font-size: 1.22rem;
  font-weight: 500;
  margin-bottom: 8px;
  line-height: 1.3;
  color: var(--dark);
  /* Fixed 2-line title height to prevent displacement */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6em;
}

.card-body p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Card Footer — always at bottom */
.card-footer {
  padding: 16px 22px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  margin-top: 16px;
}

.card-price {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary);
}

.card-price-sub {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 400;
}

.card-duration {
  font-size: 0.82rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.card-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--mid);
}

.card-rating .star { color: #e9a84a; }

/* Support homepage card class names */
.card-title {
  font-size: 1.22rem;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6em;
}

.card-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-stars { color: #e9a84a; }

.card-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 22px;
  background: var(--primary);
  color: var(--white);
  border-radius: 0;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: var(--transition);
}

.card-btn:hover {
  background: var(--secondary);
  transform: translateY(-1px);
}

/* ============================================
   DESTINATIONS GRID
   ============================================ */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.destination-card {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.destination-card:hover img { transform: scale(1.07); }

.destination-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,18,15,0.75) 0%, rgba(20,18,15,0.05) 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 22px;
  transition: var(--transition);
}

.destination-card:hover .destination-card-overlay {
  background: linear-gradient(to top, rgba(20,18,15,0.85) 0%, rgba(20,18,15,0.1) 55%);
}

.destination-card-overlay h3 {
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 4px;
}

.destination-card-overlay p {
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
}

.dest-explore {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--tertiary);
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
}

.destination-card:hover .dest-explore {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   ABOUT SECTION (Homepage)
   ============================================ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  position: relative;
  height: 520px;
}

.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 72%;
  height: 80%;
  object-fit: cover;
  border-radius: 0;
  box-shadow: var(--shadow-lg);
}

.about-img-secondary {
  position: absolute;
  bottom: 0; right: 0;
  width: 54%;
  height: 55%;
  object-fit: cover;
  border-radius: 0;
  border: 5px solid var(--white);
  box-shadow: var(--shadow-md);
}

.about-badge {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  background: var(--secondary);
  color: var(--white);
  padding: 20px 18px;
  border-radius: 0;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about-badge-number {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 600;
  display: block;
}

.about-badge-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.9;
}

.about-content { }

.about-content .overline { margin-bottom: 14px; }

.about-content h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  margin-bottom: 22px;
  line-height: 1.2;
}

.about-content p {
  font-size: 0.98rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 18px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.about-feature-icon {
  width: 36px;
  height: 36px;
  background: rgba(188, 131, 101, 0.12);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  flex-shrink: 0;
}

.about-feature-text h4 {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.about-feature-text p {
  font-size: 0.8rem;
  margin: 0;
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: var(--primary);
  padding: 50px 0;
}

.stats-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item { color: var(--white); }

.stat-number {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 600;
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.75;
}

/* ============================================
   BLOG CARDS
   ============================================ */
.blog-card {
  background: var(--white);
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-rows: 220px auto 1fr auto;
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.blog-card-image {
  height: 220px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.blog-card:hover .blog-card-image img { transform: scale(1.06); }

.blog-card-meta {
  padding: 20px 24px 0;
  display: flex;
  align-items: center;
  gap: 14px;
}

.blog-tag {
  background: rgba(188, 131, 101, 0.12);
  color: var(--secondary);
  padding: 3px 10px;
  border-radius: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.blog-date {
  font-size: 0.8rem;
  color: var(--muted);
}

.blog-card-body {
  padding: 12px 24px 0;
}

.blog-card-body h3 {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6em;
}

.blog-card-body p {
  font-size: 0.88rem;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-footer {
  padding: 16px 24px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  margin-top: 14px;
}

.blog-author {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--muted);
}

.blog-read-more {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-read-more svg { transition: transform 0.25s var(--ease); }
.blog-read-more:hover svg { transform: translateX(3px); }

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter {
  position: relative;
  background: linear-gradient(135deg, var(--primary) 0%, #5a5046 100%);
  padding: 80px 0;
  overflow: hidden;
}

.newsletter::before {
  content: '';
  position: absolute;
  top: -60%; right: -10%;
  width: 600px; height: 600px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  pointer-events: none;
}

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

.newsletter-text h2 {
  color: var(--white);
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.newsletter-text p {
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  width: 420px;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 0;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form input:focus { border-color: rgba(255,255,255,0.6); }

.newsletter-form button {
  padding: 14px 28px;
  background: var(--secondary);
  color: var(--white);
  border: none;
  border-radius: 0;
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: var(--white);
  color: var(--primary);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  padding-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {}

.footer .logo-text { color: var(--tertiary); font-size: 1.4rem; }
.footer .logo img { filter: brightness(0) invert(1); opacity: 0.85; }

.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  line-height: 1.75;
  margin-top: 16px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--secondary);
  color: var(--white);
}

.footer-col h4 {
  color: var(--tertiary);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.45);
  font-size: 0.88rem;
  margin-bottom: 10px;
  transition: var(--transition);
}

.footer-col a:hover { color: var(--white); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.45);
  font-size: 0.88rem;
}

.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  color: rgba(255,255,255,0.3);
  font-size: 0.82rem;
}

/* ============================================
   PAGE HERO (Inner Pages)
   ============================================ */
.page-hero {
  position: relative;
  height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: 0;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to top, rgba(20,18,15,0.82) 0%, rgba(20,18,15,0.2) 60%);
}

.page-hero-content {
  position: relative;
  z-index: 3;
  padding: 50px 0;
  width: 100%;
}

.page-hero-content .container {
  display: flex;
  flex-direction: column;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 14px;
}

.breadcrumb a { color: rgba(255,255,255,0.55); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.35); }

.page-hero-content h1 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  color: var(--white);
  font-weight: 400;
  font-style: italic;
  max-width: 700px;
}

/* ============================================
   TOUR / HOTEL DETAIL PAGES
   ============================================ */
.detail-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
  padding: 60px 0 80px;
}

/* Gallery */
.detail-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 320px 200px;
  gap: 12px;
  margin-bottom: 48px;
  border-radius: 0;
  overflow: hidden;
}

.detail-gallery img {
  width: 100%; height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.4s var(--ease);
}

.detail-gallery img:hover { transform: scale(1.02); }

.detail-gallery img:first-child {
  grid-row: 1 / 3;
}

/* Detail Content */
.detail-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
}

.detail-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--muted);
}

.detail-meta-item svg { color: var(--secondary); }

.detail-meta-item strong { color: var(--dark); font-weight: 600; }

.detail-section { margin-bottom: 42px; }

.detail-section h2 {
  font-size: 1.7rem;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.detail-section p {
  font-size: 0.96rem;
  color: var(--muted);
  line-height: 1.85;
}

.highlights-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--mid);
}

.highlight-icon {
  width: 22px; height: 22px;
  background: rgba(188, 131, 101, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  flex-shrink: 0;
}

/* Amenities */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg);
  padding: 12px 14px;
  border-radius: 0;
  font-size: 0.88rem;
  color: var(--mid);
}

.amenity-item svg { color: var(--secondary); flex-shrink: 0; }

/* Booking Sidebar */
.booking-sidebar {
  position: sticky;
  top: 100px;
}

.booking-card {
  background: var(--white);
  border-radius: 0;
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.booking-price-block {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.booking-price-main {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--primary);
}

.booking-price-sub {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 2px;
}

.booking-card h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 0;
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--bg);
  outline: none;
  transition: var(--transition);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--secondary);
  background: var(--white);
}

.booking-form textarea { resize: vertical; min-height: 80px; }

.booking-form input::placeholder,
.booking-form textarea::placeholder { color: var(--muted); }

.booking-btn-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 4px;
}

.btn-book {
  padding: 14px 20px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: var(--white);
  border: none;
  border-radius: 0;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
}

.btn-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(188, 131, 101, 0.4);
}

.btn-inquire {
  padding: 14px 20px;
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  border-radius: 0;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
}

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

/* ============================================
   INQUIRY MODAL
   ============================================ */
.inquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.inquiry-modal.open {
  opacity: 1;
  visibility: visible;
}

.inquiry-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20,18,15,0.6);
  backdrop-filter: blur(4px);
}

.inquiry-box {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: 0;
  padding: 40px;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px);
  transition: var(--transition);
}

.inquiry-modal.open .inquiry-box { transform: translateY(0); }

.inquiry-box h2 {
  font-size: 1.8rem;
  margin-bottom: 6px;
}

.inquiry-box .overline { margin-bottom: 20px; }

.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--bg);
  border: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mid);
  font-size: 1.1rem;
  transition: var(--transition);
}

.modal-close:hover { background: var(--tertiary); color: var(--dark); }

/* ============================================
   FILTERS BAR
   ============================================ */
.filters-bar {
  background: var(--white);
  border-radius: 0;
  padding: 20px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
  box-shadow: var(--shadow-sm);
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
}

.filter-group select,
.filter-group input {
  padding: 8px 14px;
  border: 1.5px solid var(--border);
  border-radius: 0;
  font-size: 0.85rem;
  color: var(--mid);
  background: var(--bg);
  outline: none;
  transition: var(--transition);
}

.filter-group select:focus,
.filter-group input:focus { border-color: var(--secondary); }

.filter-separator {
  width: 1px;
  height: 24px;
  background: var(--border);
}

.filters-search {
  flex: 1;
  min-width: 200px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 0;
  padding: 8px 16px;
  transition: var(--transition);
}

.filters-search:focus-within { border-color: var(--secondary); }

.filters-search input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 0.88rem;
  outline: none;
  color: var(--dark);
  padding: 0;
}

.filters-search svg { color: var(--muted); flex-shrink: 0; }

/* ============================================
   BLOG POST PAGE
   ============================================ */
.blog-post-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  padding: 60px 0 80px;
  align-items: start;
}

.blog-post-content h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.2;
  margin-bottom: 20px;
}

.blog-post-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.blog-post-meta span {
  font-size: 0.85rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-post-body {
  font-size: 1.02rem;
  line-height: 1.9;
  color: var(--mid);
}

.blog-post-body h2 {
  font-size: 1.6rem;
  color: var(--dark);
  margin: 36px 0 16px;
}

.blog-post-body p { margin-bottom: 20px; }

.blog-post-body img {
  width: 100%;
  border-radius: 0;
  margin: 28px 0;
}

.blog-sidebar { position: sticky; top: 100px; }

.sidebar-card {
  background: var(--white);
  border-radius: 0;
  padding: 28px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.sidebar-card h4 {
  font-size: 1rem;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.sidebar-article {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.sidebar-article:last-child { border-bottom: none; padding-bottom: 0; }

.sidebar-article img {
  width: 60px; height: 60px;
  object-fit: cover;
  border-radius: 0;
  flex-shrink: 0;
}

.sidebar-article-text h5 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--dark);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sidebar-article-text span {
  font-size: 0.77rem;
  color: var(--muted);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero {
  position: relative;
  height: 55vh;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.value-card {
  background: var(--white);
  border-radius: 0;
  padding: 36px 30px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}

.value-card:hover {
  transform: translateY(-5px);
  border-bottom-color: var(--secondary);
  box-shadow: var(--shadow-md);
}

.value-icon {
  width: 60px; height: 60px;
  background: rgba(188, 131, 101, 0.1);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--secondary);
}

.value-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.team-card {
  text-align: center;
}

.team-photo {
  width: 130px; height: 130px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 4px solid var(--tertiary);
}

.team-card h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.team-card p { font-size: 0.85rem; color: var(--secondary); font-weight: 500; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
}

.contact-info-icon {
  width: 46px; height: 46px;
  background: rgba(188, 131, 101, 0.1);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  flex-shrink: 0;
}

.contact-info-item h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.contact-info-item p { font-size: 0.96rem; color: var(--dark); }

.contact-form-box {
  background: var(--white);
  border-radius: 0;
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.contact-form-box h2 {
  font-size: 1.8rem;
  margin-bottom: 6px;
}

.contact-form-box .overline { margin-bottom: 24px; }

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--mid);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 0;
  font-size: 0.92rem;
  background: var(--bg);
  color: var(--dark);
  outline: none;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--secondary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(188, 131, 101, 0.1);
}

.form-group textarea { resize: vertical; min-height: 130px; }

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: var(--white);
  border: none;
  border-radius: 0;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: var(--transition);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(188, 131, 101, 0.42);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  border-radius: 0;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
}

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

/* ============================================
   DESTINATION DETAIL
   ============================================ */
.destination-hero {
  position: relative;
  height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.dest-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 50px;
  padding: 28px 36px;
  background: var(--white);
  border-radius: 0;
  box-shadow: var(--shadow-sm);
}

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

.dest-stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary);
  display: block;
}

.dest-stat-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 600;
}

/* ============================================
   ADMIN DASHBOARD
   ============================================ */
.admin-wrapper {
  display: flex;
  min-height: 100vh;
  background: #f4f2ef;
}

/* Admin Login Screen */
.admin-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
}

.admin-login-box {
  background: var(--white);
  padding: 50px 44px;
  border-radius: 0;
  width: 100%;
  max-width: 420px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.admin-login-box .logo-text {
  font-size: 1.6rem;
  color: var(--primary);
  display: block;
  margin-bottom: 6px;
}

.admin-login-box p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.admin-login-box input {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: 0;
  font-size: 0.95rem;
  margin-bottom: 12px;
  outline: none;
  transition: var(--transition);
  font-family: var(--font-body);
}

.admin-login-box input:focus { border-color: var(--secondary); }

.admin-login-box button {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: var(--white);
  border: none;
  border-radius: 0;
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: 8px;
  transition: var(--transition);
}

.admin-login-box button:hover { opacity: 0.9; transform: translateY(-1px); }

/* Admin Sidebar */
.admin-sidebar {
  width: 260px;
  background: var(--dark);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  padding: 0;
  position: fixed;
  top: 0; left: 0; bottom: 0;
  z-index: 800;
  overflow-y: auto;
}

.admin-sidebar-header {
  padding: 28px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.admin-logo {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--tertiary);
  display: block;
  margin-bottom: 4px;
}

.admin-role {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.admin-nav-section {
  padding: 18px 14px 8px;
}

.admin-nav-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  padding: 0 10px;
  margin-bottom: 6px;
  display: block;
}

.admin-nav button {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: 0;
  margin-bottom: 2px;
  transition: var(--transition);
  text-align: left;
}

.admin-nav button:hover {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.85);
}

.admin-nav button.active {
  background: rgba(188, 131, 101, 0.2);
  color: var(--secondary);
}

.admin-nav button svg { flex-shrink: 0; }

.admin-sidebar-footer {
  margin-top: auto;
  padding: 20px 14px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.admin-logout-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(220, 53, 69, 0.12);
  border: none;
  color: #f8807a;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 0;
  cursor: pointer;
  transition: var(--transition);
}

.admin-logout-btn:hover { background: rgba(220, 53, 69, 0.22); }

/* Admin Main */
.admin-main {
  flex: 1;
  margin-left: 260px;
  min-height: 100vh;
  overflow-y: auto;
}

.admin-topbar {
  background: var(--white);
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 700;
}

.admin-topbar h1 {
  font-size: 1.4rem;
  font-weight: 500;
}

.admin-topbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.admin-content {
  padding: 32px;
}

.admin-section { display: none; }
.admin-section.active { display: block; }

/* Stats cards */
.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.stat-card {
  background: var(--white);
  border-radius: 0;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--secondary);
}

.stat-card-value {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-card-label {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
}

/* Admin Table */
.admin-table-wrap {
  background: var(--white);
  border-radius: 0;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.admin-table-header {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}

.admin-table-header h3 {
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-body);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table thead th {
  text-align: left;
  padding: 12px 20px;
  background: var(--bg);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}

.admin-table tbody td {
  padding: 14px 20px;
  font-size: 0.88rem;
  color: var(--mid);
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.admin-table tbody tr:last-child td { border-bottom: none; }

.admin-table tbody tr:hover { background: var(--bg); }

.admin-table img {
  width: 48px; height: 36px;
  object-fit: cover;
  border-radius: 0;
}

/* Admin Form */
.admin-form-card {
  background: var(--white);
  border-radius: 0;
  padding: 32px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}

.admin-form-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  font-family: var(--font-body);
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.admin-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.admin-form-grid-3 { grid-template-columns: 1fr 1fr 1fr; }
.admin-form-full { grid-column: 1 / -1; }

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--mid);
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 0;
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--bg);
  outline: none;
  transition: var(--transition);
  font-family: var(--font-body);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--secondary);
  background: var(--white);
}

.form-field textarea { min-height: 100px; resize: vertical; }

/* Buttons */
.btn-add {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: var(--white);
  border: none;
  border-radius: 0;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-add:hover { opacity: 0.9; transform: translateY(-1px); }

.btn-save {
  padding: 11px 28px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 0;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-save:hover { background: var(--secondary); }

.btn-edit, .btn-delete, .btn-view {
  padding: 6px 14px;
  border: none;
  border-radius: 0;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-edit { background: rgba(120, 107, 88, 0.12); color: var(--primary); }
.btn-edit:hover { background: var(--primary); color: var(--white); }

.btn-delete { background: rgba(220, 53, 69, 0.1); color: #dc3545; }
.btn-delete:hover { background: #dc3545; color: var(--white); }

.btn-view { background: rgba(188, 131, 101, 0.12); color: var(--secondary); }
.btn-view:hover { background: var(--secondary); color: var(--white); }

/* Status Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 0;
  font-size: 0.72rem;
  font-weight: 600;
}

.badge-pending { background: rgba(255, 193, 7, 0.15); color: #856404; }
.badge-confirmed { background: rgba(40, 167, 69, 0.15); color: #155724; }
.badge-cancelled { background: rgba(220, 53, 69, 0.12); color: #721c24; }
.badge-published { background: rgba(40, 167, 69, 0.15); color: #155724; }
.badge-draft { background: rgba(108, 117, 125, 0.12); color: #495057; }

/* Image upload zone */
.upload-zone {
  border: 2px dashed var(--tertiary);
  border-radius: 0;
  padding: 40px 24px;
  text-align: center;
  background: var(--bg);
  transition: var(--transition);
  cursor: pointer;
}

.upload-zone:hover,
.upload-zone.drag-over {
  border-color: var(--secondary);
  background: rgba(188, 131, 101, 0.04);
}

.upload-zone p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 10px;
}

.upload-zone span { font-size: 0.8rem; color: var(--secondary); font-weight: 600; }

.image-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.preview-item {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.preview-item img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.preview-remove {
  position: absolute;
  top: 4px; right: 4px;
  background: rgba(0,0,0,0.65);
  color: var(--white);
  border: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.preview-remove:hover { background: #dc3545; }

/* Settings sections */
.settings-section {
  background: var(--white);
  border-radius: 0;
  padding: 28px 32px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}

.settings-section h3 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  color: var(--dark);
}

.settings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Gallery Manager */
.gallery-item-admin {
  background: var(--white);
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.gallery-item-admin img {
  width: 100%; height: 140px;
  object-fit: cover;
}

.gallery-item-info {
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.gallery-item-name {
  font-size: 0.78rem;
  color: var(--mid);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
}

/* Rich Text Editor */
.richtext-toolbar {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  padding: 8px 12px;
  border: 1.5px solid var(--border);
  border-bottom: none;
  border-radius: 0;
  background: var(--bg);
}

.richtext-btn {
  padding: 5px 10px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 0;
  font-size: 0.82rem;
  color: var(--mid);
  cursor: pointer;
  transition: var(--transition);
}

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

.richtext-area {
  min-height: 200px;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: 0;
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--dark);
  background: var(--white);
  outline: none;
  width: 100%;
  resize: vertical;
}

.richtext-area:focus { border-color: var(--secondary); }

/* ============================================
   TOAST NOTIFICATION
   ============================================ */
.toast {
  position: fixed;
  bottom: 28px; right: 28px;
  background: var(--dark);
  color: var(--white);
  padding: 14px 22px;
  border-radius: 0;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  z-index: 99999;
  display: none;
  align-items: center;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.toast.show {
  display: flex;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* ============================================
   PAGINATION
   ============================================ */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 50px;
}

.pagination button {
  width: 38px; height: 38px;
  border: 1.5px solid var(--border);
  background: var(--white);
  border-radius: 0;
  font-size: 0.88rem;
  color: var(--mid);
  transition: var(--transition);
}

.pagination button:hover,
.pagination button.active {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--white);
}

/* ============================================
   RELATED SECTION
   ============================================ */
.related-section {
  padding: 60px 0 80px;
  background: var(--bg-warm);
}

.related-section .section-header { margin-bottom: 40px; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .destinations-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .detail-layout { grid-template-columns: 1fr; }
  .booking-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .dashboard-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-menu {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    gap: 14px;
    box-shadow: var(--shadow-md);
    display: none;
  }

  .nav-menu.open { display: flex; }
  .nav-menu a { color: var(--mid) !important; }

  .mobile-menu-btn { display: flex; }

  .hero-title { font-size: 2.4rem; }
  .hero-search { flex-direction: column; border-radius: 0; padding: 16px; }
  .hero-search select { border-left: none; border-top: 1px solid var(--border); padding-top: 10px; }

  .cards-grid { grid-template-columns: 1fr; }
  .destinations-grid { grid-template-columns: 1fr 1fr; }

  .about-split { grid-template-columns: 1fr; gap: 40px; }
  .about-images { height: 320px; }

  .stats-bar-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }

  .newsletter-inner { flex-direction: column; gap: 30px; }
  .newsletter-form { width: 100%; flex-direction: column; }

  .blog-post-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }

  .contact-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }

  .admin-sidebar { transform: translateX(-100%); transition: var(--transition); }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-main { margin-left: 0; }
  .admin-content { padding: 20px; }
  .dashboard-stats { grid-template-columns: 1fr 1fr; }
  .admin-form-grid { grid-template-columns: 1fr; }
  .settings-grid { grid-template-columns: 1fr; }
  .admin-form-grid-3 { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }

  .detail-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: 260px repeat(2, 160px);
  }

  .detail-gallery img:first-child { grid-row: auto; }

  .amenities-grid { grid-template-columns: 1fr 1fr; }
  .highlights-list { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .destinations-grid { grid-template-columns: 1fr; }
  .stats-bar-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-btn-group { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════════════════════
   DESTINATION INTRO
═══════════════════════════════════════════════════════ */
.dest-intro-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 2rem;
}
.dest-intro-img { border-radius: 0; overflow: hidden; }
.dest-intro-img img { width: 100%; height: 420px; object-fit: cover; display: block; }
.dest-intro-text .section-badge { margin-bottom: 12px; }
.dest-intro-text h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; color: var(--dark); margin-bottom: 16px; font-weight: 500; }
.dest-intro-text p { color: #666; line-height: 1.8; margin-bottom: 20px; }
.dest-highlights { list-style: none; padding: 0; }
.dest-highlights li { padding: 6px 0 6px 20px; position: relative; color: #555; font-size: .9rem; }
.dest-highlights li::before { content: '→'; position: absolute; left: 0; color: var(--secondary); }
@media (max-width: 768px) {
  .dest-intro-card { grid-template-columns: 1fr; }
  .dest-intro-img img { height: 260px; }
}

/* ═══════════════════════════════════════════════════════
   BLOG FEATURED
═══════════════════════════════════════════════════════ */
.blog-featured { margin-bottom: 40px; }
.blog-featured-link { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: 0; overflow: hidden; text-decoration: none; background: #fff; box-shadow: 0 4px 24px rgba(0,0,0,.08); transition: transform .3s, box-shadow .3s; }
.blog-featured-link:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.14); }
.blog-featured-img { height: 360px; overflow: hidden; }
.blog-featured-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.blog-featured-link:hover .blog-featured-img img { transform: scale(1.04); }
.blog-featured-body { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.blog-featured-body h2 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--dark); margin: 12px 0; font-weight: 500; line-height: 1.25; }
.blog-featured-body p { color: #666; line-height: 1.7; margin-bottom: 24px; }
@media (max-width: 768px) {
  .blog-featured-link { grid-template-columns: 1fr; }
  .blog-featured-img { height: 240px; }
}

/* ═══════════════════════════════════════════════════════
   BLOG POST DETAIL
═══════════════════════════════════════════════════════ */
.blog-layout { display: grid; grid-template-columns: 1fr 360px; gap: 60px; padding: 60px 0; }
.blog-post-header { margin-bottom: 32px; }
.blog-post-header h1 { font-family: 'Cormorant Garamond', serif; font-size: 2.6rem; color: var(--dark); font-weight: 500; line-height: 1.2; margin: 12px 0; }
.blog-post-excerpt { font-size: 1.1rem; color: #666; line-height: 1.7; font-style: italic; }
.blog-post-cover { border-radius: 0; overflow: hidden; margin-bottom: 40px; }
.blog-post-cover img { width: 100%; height: 420px; object-fit: cover; display: block; }
.blog-post-body { color: #3a3530; line-height: 1.9; font-size: .95rem; }
.blog-post-body p { margin-bottom: 1.4em; }
.blog-post-body h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--dark); margin: 2em 0 .8em; }
.blog-post-body ul, .blog-post-body ol { padding-left: 1.5em; margin-bottom: 1.4em; }
.blog-post-body li { margin-bottom: .5em; }
.blog-post-body img { width: 100%; border-radius: 0; margin: 1.5em 0; }
.blog-post-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 32px 0; }
.tag { background: var(--light); padding: 5px 14px; border-radius: 0; font-size: .8rem; color: var(--primary); }
.blog-share { display: flex; align-items: center; gap: 12px; padding: 24px 0; border-top: 1px solid #e8e4de; }
.blog-share span { color: #888; font-size: .85rem; }
.blog-share button { display: flex; align-items: center; gap: 6px; padding: 8px 16px; background: var(--light); border: none; border-radius: 0; cursor: pointer; font-size: .82rem; color: var(--primary); font-family: 'Jost', sans-serif; }
.blog-share button:hover { background: var(--primary); color: #fff; }
/* Sidebar */
.blog-sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-widget { background: #fff; border-radius: 0; padding: 28px; border: 1px solid #e8e4de; }
.sidebar-widget-title { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; color: var(--dark); margin-bottom: 20px; font-weight: 600; padding-bottom: 12px; border-bottom: 1px solid #e8e4de; }
.sidebar-post { display: flex; gap: 12px; text-decoration: none; margin-bottom: 16px; align-items: flex-start; }
.sidebar-post:last-child { margin-bottom: 0; }
.sidebar-post img { width: 64px; height: 48px; object-fit: cover; border-radius: 0; flex-shrink: 0; }
.sidebar-post-cat { font-size: .72rem; color: var(--secondary); text-transform: uppercase; letter-spacing: .06em; display: block; margin-bottom: 3px; }
.sidebar-post p { font-size: .82rem; color: #3a3530; line-height: 1.4; margin: 0; font-weight: 500; }
.sidebar-post:hover p { color: var(--primary); }
.sidebar-tour { display: flex; gap: 12px; text-decoration: none; margin-bottom: 14px; align-items: center; }
.sidebar-tour img { width: 56px; height: 42px; object-fit: cover; border-radius: 0; flex-shrink: 0; }
.sidebar-tour p { font-size: .82rem; color: #3a3530; margin: 0 0 3px; font-weight: 500; line-height: 1.3; }
.sidebar-tour span { font-size: .76rem; color: var(--secondary); }
.sidebar-tour:hover p { color: var(--primary); }
.sidebar-cta { background: linear-gradient(135deg, var(--primary), #4a3f32); color: #fff; }
.sidebar-cta .section-badge { background: rgba(255,255,255,.15); color: #fff; margin-bottom: 12px; }
.sidebar-cta h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; margin-bottom: 10px; font-weight: 500; }
.sidebar-cta p { font-size: .85rem; opacity: .85; margin-bottom: 20px; line-height: 1.6; }
.page-hero.short { height: 300px; }
@media (max-width: 1024px) { .blog-layout { grid-template-columns: 1fr; } .blog-sidebar { display: grid; grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .blog-sidebar { grid-template-columns: 1fr; } .blog-post-header h1 { font-size: 1.8rem; } }

/* ═══════════════════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════════════════ */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-split-images { position: relative; }
.about-img-main { border-radius: 0; overflow: hidden; }
.about-img-main img { width: 100%; height: 480px; object-fit: cover; display: block; }
.about-img-secondary { position: absolute; bottom: -30px; right: -30px; width: 200px; border-radius: 0; overflow: hidden; border: 4px solid #fff; box-shadow: 0 8px 32px rgba(0,0,0,.15); }
.about-img-secondary img { width: 100%; height: 150px; object-fit: cover; display: block; }
.about-badge-float { position: absolute; top: 20px; left: -20px; background: var(--secondary); color: #fff; padding: 12px 20px; border-radius: 0; text-align: center; box-shadow: 0 8px 24px rgba(188,131,101,.4); }
.about-badge-num { display: block; font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 600; line-height: 1; }
.about-badge-label { font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; opacity: .9; }
.about-split-text { padding-left: 20px; }
.about-split-text h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.6rem; color: var(--dark); margin: 12px 0 20px; font-weight: 500; line-height: 1.2; }
.about-split-text p { color: #666; line-height: 1.8; margin-bottom: 16px; }
.about-stats-row { display: flex; gap: 32px; margin-top: 32px; padding-top: 32px; border-top: 1px solid #e8e4de; }
.about-stat span { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; color: var(--primary); font-weight: 600; display: block; }
.about-stat label { font-size: .78rem; color: #888; text-transform: uppercase; letter-spacing: .07em; }
@media (max-width: 900px) {
  .about-split { grid-template-columns: 1fr; gap: 48px; }
  .about-img-secondary { right: 0; }
  .about-split-text { padding-left: 0; }
}
/* Values */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { background: #fff; border-radius: 0; padding: 32px; border: 1px solid #e8e4de; }
.value-icon { width: 52px; height: 52px; background: var(--light); border-radius: 0; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: var(--primary); }
.value-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--dark); margin-bottom: 10px; font-weight: 600; }
.value-card p { color: #666; font-size: .87rem; line-height: 1.7; }
@media (max-width: 900px) { .values-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .values-grid { grid-template-columns: 1fr; } }
/* Timeline */
.timeline { position: relative; max-width: 700px; margin: 0 auto; }
.timeline::before { content: ''; position: absolute; left: 80px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--secondary), var(--tertiary)); }
.timeline-item { display: flex; gap: 32px; margin-bottom: 40px; position: relative; }
.timeline-year { width: 64px; flex-shrink: 0; font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: var(--secondary); font-weight: 600; padding-top: 4px; text-align: right; }
.timeline-content { flex: 1; background: #fff; border-radius: 0; padding: 24px; border: 1px solid #e8e4de; margin-left: 16px; position: relative; }
.timeline-content::before { content: ''; position: absolute; left: -25px; top: 12px; width: 10px; height: 10px; background: var(--secondary); border-radius: 50%; border: 2px solid #fff; }
.timeline-content h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--dark); margin-bottom: 8px; font-weight: 600; }
.timeline-content p { color: #666; font-size: .87rem; line-height: 1.7; margin: 0; }
/* Team */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card { background: #fff; border-radius: 0; overflow: hidden; border: 1px solid #e8e4de; }
.team-img { height: 220px; overflow: hidden; }
.team-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s; }
.team-card:hover .team-img img { transform: scale(1.05); }
.team-body { padding: 24px; }
.team-body h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--dark); margin-bottom: 4px; }
.team-body span { font-size: .75rem; color: var(--secondary); text-transform: uppercase; letter-spacing: .07em; }
.team-body p { color: #666; font-size: .83rem; line-height: 1.7; margin-top: 10px; }
@media (max-width: 1024px) { .team-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .team-grid { grid-template-columns: 1fr; } }
/* CTA Section */
.cta-section { background: linear-gradient(135deg, var(--primary) 0%, #4a3f32 100%); }
.cta-content { text-align: center; max-width: 640px; margin: 0 auto; }
.cta-content h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.6rem; color: #fff; margin: 16px 0 20px; font-weight: 400; }
.cta-content p { color: rgba(255,255,255,.8); line-height: 1.7; margin-bottom: 32px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-light { background: #fff; color: var(--primary); padding: 14px 32px; border-radius: 0; text-decoration: none; font-size: .88rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; transition: .2s; display: inline-block; }
.btn-light:hover { background: var(--tertiary); }
.btn-outline-light { border: 2px solid rgba(255,255,255,.6); color: #fff; padding: 12px 30px; border-radius: 0; text-decoration: none; font-size: .88rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; transition: .2s; display: inline-block; }
.btn-outline-light:hover { background: rgba(255,255,255,.1); border-color: #fff; }

/* ═══════════════════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════════════════ */
.contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: flex-start; }
.contact-info h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; color: var(--dark); margin: 12px 0 20px; font-weight: 500; line-height: 1.2; }
.contact-info > p { color: #666; line-height: 1.8; margin-bottom: 32px; }
.contact-detail { display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; }
.contact-icon { width: 44px; height: 44px; background: var(--light); border-radius: 0; display: flex; align-items: center; justify-content: center; color: var(--primary); flex-shrink: 0; }
.contact-detail label { display: block; font-size: .72rem; color: #999; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 3px; }
.contact-detail a, .contact-detail span { color: #3a3530; font-size: .9rem; line-height: 1.5; text-decoration: none; display: block; }
.contact-detail a:hover { color: var(--primary); }
.contact-socials { display: flex; gap: 12px; margin-top: 32px; }
.social-link { width: 40px; height: 40px; background: var(--light); border-radius: 0; display: flex; align-items: center; justify-content: center; color: var(--primary); text-decoration: none; transition: .2s; }
.social-link:hover { background: var(--primary); color: #fff; }
.contact-form-wrap { background: #fff; border-radius: 0; padding: 40px; border: 1px solid #e8e4de; }
.contact-form-wrap h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--dark); margin: 12px 0 28px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form .form-group { display: flex; flex-direction: column; gap: 6px; }
.contact-form label { font-size: .78rem; color: #666; font-weight: 500; text-transform: uppercase; letter-spacing: .05em; }
.contact-form input, .contact-form textarea { padding: 12px 16px; border: 1.5px solid #e0ddd7; border-radius: 0; font-family: 'Jost', sans-serif; font-size: .9rem; color: #2c2620; transition: .2s; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--primary); }
.contact-form textarea { resize: vertical; }
@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .contact-form .form-row { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   MISC
═══════════════════════════════════════════════════════ */
.no-results { text-align: center; color: #aaa; padding: 48px; font-style: italic; }
.blog-grid { margin-top: 40px; }

/* ═══════════════════════════════════════════════════════
   ADDITIONAL OVERRIDES — v2
═══════════════════════════════════════════════════════ */

/* Force no border-radius on all cards and buttons */
.card, .btn, .btn-primary, .btn-secondary, .search-btn,
.filter-select, .filters-bar input, .booking-form input,
.booking-form select, .booking-form textarea,
.contact-form input, .contact-form textarea,
.newsletter-input, .newsletter-btn, .f-card, .tc, .sb,
.lc, .lc-btn, .hero-search-box, .search-input, .search-select,
.stat-card, .value-card, .team-card, .timeline-content,
.sidebar-widget, .sidebar-cta, .blog-featured-link,
.dest-card, .dest-intro-card, .admin-form-wrap, .t-card,
.detail-layout, .booking-sidebar, .inquiry-modal-content {
  border-radius: 0 !important;
}

.card-img, .card-img img, .hero-img, .team-img,
.blog-featured-img, .dest-card-img, .about-img-main,
.about-img-secondary, .gallery-thumb, .img-thumb,
.ith, .about-img-main img, .about-img-secondary img {
  border-radius: 0 !important;
}

/* Logo image sizing */
.logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Header mobile toggle color on #cdc6b4 bg */
.header.scrolled .mobile-menu-btn span,
.header.solid .mobile-menu-btn span {
  background: #1e1c19;
}

/* Video section */
.video-section {
  background: #1e1c19;
  padding: 0;
  position: relative;
  overflow: hidden;
}
.video-section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.video-label {
  padding: 48px 24px 24px;
  text-align: center;
}
.video-label .section-badge {
  margin-bottom: 12px;
}
.video-label h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  font-weight: 400;
  margin-bottom: 12px;
}
.video-label p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
}
.video-embed-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  position: relative;
  overflow: hidden;
}
.video-embed-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.video-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #786b58, #4a3f32);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  gap: 12px;
}
.video-placeholder svg { opacity: .4; }

/* About section — single large image */
.about-single-img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
}
.about-split-single {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-split-single .about-img-wrap {
  position: relative;
  overflow: hidden;
  order: 1;
}
.about-split-single .about-content {
  order: 2;
}
.about-split-single .about-img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  transition: transform .6s;
}
.about-split-single .about-img-wrap:hover img { transform: scale(1.03); }
.about-badge-overlay {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: #bc8365;
  color: #fff;
  padding: 14px 22px;
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
}
.about-badge-overlay span { display: block; font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 600; line-height: 1; }
.about-badge-overlay small { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; opacity: .9; }

@media(max-width:900px) {
  .about-split-single { grid-template-columns: 1fr; gap: 40px; }
  .about-split-single .about-img-wrap img, .about-single-img { height: 300px; }
}

/* Page hero heights — match contact to others */
.page-hero { min-height: 420px !important; }
.page-hero.short { min-height: 420px !important; }

/* Card features — no rounded badges */
.card-badge, .badge, .bx, .section-badge, .card-stars {
  border-radius: 0 !important;
}

/* Pill items — keep slight radius for readability */
.pill { border-radius: 0 !important; }
.pill-list .pill { border-radius: 0 !important; }

/* ═══════════════════════════════════════════════
   GLOBAL: No rounded edges on cards/buttons
═══════════════════════════════════════════════ */
.card, .tour-card, .hotel-card, .dest-card, .blog-card,
.btn, .btn-primary, .btn-secondary, .filter-select,
.booking-form, .sidebar-cta, .inquiry-modal-content,
.newsletter-inner, .search-bar, .search-bar input,
input[type="text"], input[type="email"], input[type="tel"],
input[type="date"], input[type="number"], input[type="password"],
select, textarea, .section-badge { border-radius: 0 !important; }

/* ── SEARCH FILTER BAR ─────────────────────────────────────── */
.search-filter {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 220px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  padding: 10px 16px;
  transition: var(--transition);
}
.search-filter:focus-within { border-color: var(--secondary); }
.search-filter svg { color: var(--muted); flex-shrink: 0; }
.search-filter input {
  border: none;
  background: transparent;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--dark);
  width: 100%;
}
.search-filter input::placeholder { color: var(--muted); }

.filter-select {
  padding: 10px 16px;
  border: 1.5px solid var(--border);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--mid);
  outline: none;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 0 !important;
}
.filter-select:focus { border-color: var(--secondary); }
