/* ============================================
   ESTAMBUL TOURS — Premium Travel Design
   ============================================ */

:root {
  --brand-primary: #c07434;
  --brand-primary-dark: #9a5a28;
  --brand-primary-light: #fdf3ea;
  --brand-secondary: #1a5c6b;
  --brand-secondary-light: #e8f4f7;
  --brand-accent: #d4956a;
  --brand-dark: #1b2830;
  --brand-bg: #faf8f5;
  --brand-soft: #f4efea;
  --brand-warm: #fef9f3;
  --text-main: #1f2d35;
  --text-body: #4a5d6a;
  --text-muted: #8498a6;
  --border-light: #e6ddd3;
  --shadow-sm: 0 2px 10px rgba(27, 40, 48, 0.05);
  --shadow-md: 0 12px 32px rgba(27, 40, 48, 0.08);
  --shadow-lg: 0 24px 64px rgba(27, 40, 48, 0.12);
  --shadow-card-hover: 0 12px 32px rgba(27, 40, 48, 0.09);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --transition: 0.18s ease;
}

/* === BASE === */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-body);
  background: var(--brand-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.22;
}

p {
  margin-bottom: 1rem;
}

a {
  transition: color var(--transition);
}

img {
  max-width: 100%;
  height: auto;
}

::selection {
  background: var(--brand-primary-light);
  color: var(--brand-primary-dark);
}

/* === TOP BAR === */
.top-contact-bar {
  background: linear-gradient(90deg, var(--brand-dark), #243840);
  color: #c7d8e0;
  padding: 0.42rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.84rem;
  max-height: 60px;
  overflow: hidden;
  opacity: 1;
  transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
}

.top-contact-bar.bar-hidden {
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-bottom-color: transparent;
}

.top-contact-bar i {
  color: var(--brand-accent);
}

/* === NAVBAR === */
header.sticky-top {
  z-index: 1050;
}

.navbar {
  transition: padding var(--transition), box-shadow var(--transition), border-color var(--transition);
  padding: 0.45rem 0;
  background: rgba(250, 248, 245, 0.95) !important;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  padding: 0.3rem 0;
  box-shadow: 0 8px 32px rgba(27, 40, 48, 0.06);
  border-bottom: 1px solid var(--border-light);
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.3px;
  color: var(--brand-dark) !important;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-brand .brand-logo {
  height: 54px;
  width: auto;
}

.navbar-brand .brand-icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
}

.nav-pill-group .nav-link {
  border: 1px solid transparent;
}

.nav-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-body) !important;
  padding: 0.5rem 0.85rem !important;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.nav-link:hover,
.nav-link:focus {
  color: var(--brand-secondary) !important;
  background: var(--brand-secondary-light);
}

.nav-link.active {
  color: var(--brand-secondary) !important;
  font-weight: 600;
  background: linear-gradient(135deg, rgba(26, 92, 107, 0.08), rgba(192, 116, 52, 0.06));
  border-color: rgba(26, 92, 107, 0.12);
}

.lang-switch {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.78rem;
  border: 2px solid var(--border-light);
  color: var(--text-body);
  background: #fff;
  transition: border-color var(--transition), color var(--transition);
  text-decoration: none;
}

.lang-switch:hover {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
}

/* === BUTTONS === */
.btn-brand {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-dark));
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  padding: 0.72rem 1.65rem;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.2px;
  box-shadow: 0 6px 18px rgba(192, 116, 52, 0.25);
  transition: background var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-brand::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.btn-brand:hover,
.btn-brand:focus {
  box-shadow: 0 8px 22px rgba(192, 116, 52, 0.28);
  color: #fff;
  background: linear-gradient(135deg, #d0813c, var(--brand-primary-dark));
}

.btn-brand:hover::after {
  opacity: 1;
}

.btn-outline-brand {
  border: 2px solid var(--brand-secondary);
  color: var(--brand-secondary);
  border-radius: var(--radius-pill);
  padding: 0.65rem 1.55rem;
  font-weight: 600;
  font-size: 0.92rem;
  background: transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.btn-outline-brand:hover,
.btn-outline-brand:focus {
  background: var(--brand-secondary);
  color: #fff;
  border-color: var(--brand-secondary);
}

.btn-outline-light {
  border-radius: var(--radius-pill);
  font-weight: 600;
}

.cta-wrap .btn {
  min-width: 185px;
}

/* === EYEBROW === */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--brand-primary-dark);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-pill);
  background: rgba(192, 116, 52, 0.06);
  border: 1px solid rgba(192, 116, 52, 0.15);
  margin-bottom: 1rem;
}

/* === HERO SECTION (HOME) === */
.hero-section {
  background: linear-gradient(140deg, #faf5ef 0%, #f2f8fa 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: var(--radius-pill);
  padding: 0.45rem 0.95rem;
  background: #fff;
  color: var(--brand-primary);
  border: 1px solid rgba(192, 116, 52, 0.14);
  box-shadow: var(--shadow-sm);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero-section h1,
.hero-title,
.page-hero-title {
  letter-spacing: -0.03em;
  line-height: 1.08;
  max-width: 720px;
}

.hero-text,
.page-hero-copy {
  max-width: 640px;
  color: var(--text-body);
  font-size: 1.05rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.86rem;
  color: var(--text-main);
  font-weight: 500;
}

.hero-meta i {
  color: var(--brand-secondary);
}

.hero-visual-wrap {
  position: relative;
  padding: 0.75rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255,255,255,0.82), rgba(250,245,239,0.7));
  border: 1px solid rgba(192, 116, 52, 0.1);
  box-shadow: var(--shadow-lg);
}

.hero-main-image {
  width: 100%;
  border-radius: 20px;
  height: 480px;
  object-fit: cover;
  display: block;
}

.floating-note {
  position: absolute;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(26, 92, 107, 0.12);
  border-radius: var(--radius-sm);
  padding: 0.55rem 0.75rem;
  box-shadow: var(--shadow-md);
  font-size: 0.83rem;
  color: var(--text-main);
}

.floating-note strong {
  color: var(--brand-secondary);
}

.floating-note-rating {
  left: -16px;
  bottom: 28px;
}

.floating-note-fast {
  right: -12px;
  top: 28px;
}

/* === BREADCRUMB === */
.breadcrumb-bar {
  background: var(--brand-warm);
  border-bottom: 1px solid var(--border-light);
  padding: 0.55rem 0;
}

.breadcrumb-bar .breadcrumb {
  font-size: 0.78rem;
}

.breadcrumb-bar .breadcrumb-item a {
  color: var(--brand-secondary);
  text-decoration: none;
}

.breadcrumb-bar .breadcrumb-item a:hover {
  text-decoration: underline;
}

.breadcrumb-bar .breadcrumb-item.active {
  color: var(--text-muted);
}

.breadcrumb-bar .breadcrumb-item + .breadcrumb-item::before {
  color: var(--text-muted);
}

/* === PAGE HERO === */
.page-hero {
  background: linear-gradient(135deg, #faf5ef 0%, #f0f7f9 60%, #fff 100%);
  padding: 3.5rem 0;
}

/* === TRUST BAR === */
.trust-bar {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(192, 116, 52, 0.08);
  border-bottom: 1px solid rgba(192, 116, 52, 0.08);
}

.trust-item {
  text-align: center;
  padding: 1.5rem 0.5rem;
  position: relative;
}

.trust-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
  height: 34px;
  transform: translateY(-50%);
  background: rgba(192, 116, 52, 0.12);
}

.trust-item:last-child::after {
  display: none;
}

.trust-item .trust-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand-secondary);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.trust-item .trust-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* === WHY US / EXPERIENCE BAND === */
.experience-band {
  background: linear-gradient(180deg, #ffffff 0%, #f5f9fa 100%);
}

.why-us-card {
  text-align: center;
  padding: 2rem 1.2rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background: #fff;
  transition: box-shadow var(--transition), border-color var(--transition);
}

.why-us-card:hover {
  border-color: var(--brand-secondary);
  box-shadow: var(--shadow-md);
}

.why-us-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--brand-secondary);
  background: var(--brand-secondary-light);
  transition: background var(--transition), color var(--transition);
}

.why-us-card:hover .why-us-icon {
  background: var(--brand-secondary);
  color: #fff;
}

/* === SECTION HEADERS === */
.section-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary));
  border-radius: 4px;
  margin: 0 auto 1.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  margin-bottom: 0.5rem;
}

.section-header p {
  max-width: 540px;
  margin: 0 auto;
  color: var(--text-muted);
}

/* === CARDS (BASIC) === */
.card {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md) !important;
  transition: box-shadow var(--transition), border-color var(--transition);
  background: #fff;
  overflow: hidden;
}

.card:hover {
  box-shadow: var(--shadow-card-hover);
  border-color: transparent;
}

.card-tour img,
.card img.card-img-top {
  height: 220px;
  object-fit: cover;
}

.card-body {
  padding: 1.4rem;
}

.card-body h2,
.card-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.card-body .small.text-muted {
  font-size: 0.82rem;
}

article.card.border-0 {
  border: 1px solid var(--border-light) !important;
}

article.card.border-0:hover {
  transform: none;
  box-shadow: var(--shadow-md);
}

/* === COLLECTION CARDS (LUXURY) === */
.collection-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(192, 116, 52, 0.1);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: box-shadow var(--transition), border-color var(--transition);
}

.collection-card:hover {
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(26, 92, 107, 0.2);
}

.collection-media {
  position: relative;
  overflow: hidden;
}

.collection-media img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.collection-chip {
  position: absolute;
  left: 16px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.7rem;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.94);
  color: var(--brand-secondary);
  font-size: 0.76rem;
  font-weight: 700;
  border: 1px solid rgba(26, 92, 107, 0.12);
}

.collection-content {
  padding: 1.35rem;
}

.collection-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.8rem;
  color: var(--text-muted);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.collection-list,
.feature-list-check,
.feature-list-muted {
  list-style: none;
  padding: 0;
  margin: 0;
}

.collection-list li,
.feature-list-check li,
.feature-list-muted li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.72rem;
  font-size: 0.92rem;
}

.collection-list li::before,
.feature-list-check li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-secondary), var(--brand-primary));
}

.feature-list-muted li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c6cdd1;
}

.feature-list-check.compact li {
  margin-bottom: 0.5rem;
}

.collection-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--brand-secondary);
  font-weight: 700;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
  transition: color var(--transition);
}

.collection-link:hover {
  color: var(--brand-primary-dark);
}

.collection-card-wide .collection-media img {
  height: 300px;
}

/* === HUB / TOPIC-GUIDE CARDS === */
.hub-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  height: 100%;
  min-height: 220px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.hub-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.hub-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.hub-card:hover img {
  transform: scale(1.06);
}

.hub-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(27,40,48,0.82) 0%, rgba(27,40,48,0.35) 50%, rgba(27,40,48,0.10) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.4rem;
  color: #fff;
  transition: background 0.3s ease;
}

.hub-card:hover .hub-card-overlay {
  background: linear-gradient(0deg, rgba(27,40,48,0.88) 0%, rgba(27,40,48,0.40) 55%, rgba(27,40,48,0.12) 100%);
}

.hub-card-overlay h3 {
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0.5rem;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.25);
}

.hub-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-pill);
  padding: 0.3rem 0.75rem;
  width: fit-content;
  transition: background 0.25s ease, color 0.25s ease;
}

.hub-card:hover .hub-card-badge {
  background: var(--brand-primary);
  color: #fff;
  border-color: var(--brand-primary);
}

.hub-card-badge i {
  transition: transform 0.25s ease;
}

.hub-card:hover .hub-card-badge i {
  transform: translateX(3px);
}

/* === BADGES === */
.badge.text-bg-dark {
  background: var(--brand-dark) !important;
  font-weight: 600;
  font-size: 0.85rem;
}

.badge.text-bg-light {
  background: var(--brand-secondary-light) !important;
  color: var(--brand-secondary) !important;
  font-weight: 600;
  font-size: 0.85rem;
  border: 1px solid rgba(26, 92, 107, 0.12);
}

/* === PROCESS SECTION === */
.process-section {
  background: linear-gradient(180deg, var(--brand-warm) 0%, #fff 100%);
}

.process-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  position: relative;
  transition: box-shadow var(--transition), border-color var(--transition);
}

.process-card:hover {
  border-color: rgba(26, 92, 107, 0.18);
  box-shadow: var(--shadow-md);
}

.process-step {
  display: inline-flex;
  min-width: 48px;
  justify-content: center;
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-secondary), var(--brand-primary));
  margin-bottom: 0.8rem;
}

/* === DETAIL PAGES === */
.detail-panel,
.side-offer-card,
.editorial-article {
  background: rgba(255,255,255,0.94);
  border: 1px solid var(--border-light);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
}

.detail-hero-media {
  padding: 0.75rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255,255,255,0.8), rgba(250,245,239,0.7));
  border: 1px solid rgba(192, 116, 52, 0.1);
  box-shadow: var(--shadow-lg);
}

.detail-hero-media img {
  width: 100%;
  display: block;
}

.detail-stat-row {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.detail-stat-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 0.95rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 8px 20px rgba(192, 116, 52, 0.2);
}

.detail-stat-pill.light {
  background: rgba(255,255,255,0.92);
  color: var(--brand-secondary);
  border: 1px solid rgba(26, 92, 107, 0.12);
  box-shadow: none;
}

/* === ITINERARY === */
.itinerary-timeline {
  position: relative;
  display: grid;
  gap: 1rem;
}

.itinerary-step {
  position: relative;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 0.4rem 0;
}

.itinerary-index {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-secondary), #2a7a8c);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}

.side-offer-card {
  padding: 1.5rem;
}

/* === ACCORDION (FAQ) === */
.accordion-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm) !important;
  margin-bottom: 0.5rem;
  overflow: hidden;
}

.accordion-button {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-main);
  padding: 1rem 1.2rem;
}

.accordion-button:not(.collapsed) {
  background: var(--brand-secondary-light);
  color: var(--brand-secondary);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--brand-secondary);
}

.accordion-body {
  font-size: 0.92rem;
  color: var(--text-body);
  padding: 1rem 1.2rem;
}

/* === TESTIMONIALS === */
blockquote.blockquote {
  border-left: 4px solid var(--brand-primary) !important;
  background: var(--brand-primary-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.2rem 1.5rem;
  font-style: italic;
  color: var(--text-body);
}

/* === GUIDE PHOTO === */
.guide-photo {
  min-height: 400px;
  border-radius: var(--radius-lg);
  background: url('/assets/images/fotos/en-capadocia-con-el-grupo-estambul-tours.webp') center/cover;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.guide-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, transparent 55%, rgba(27, 40, 48, 0.2));
}

.guide-photo-premium {
  min-height: 480px;
  border: 1px solid rgba(192, 116, 52, 0.1);
}

/* === GUIDE SIDEBAR === */
.guide-sidebar-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: url('/assets/images/fotos/en-capadocia-con-el-grupo-estambul-tours.webp') center/cover;
  border: 3px solid var(--brand-primary-light);
  box-shadow: 0 4px 12px rgba(192, 116, 52, 0.15);
}

.sidebar-trust-list {
  display: grid;
  gap: 0.6rem;
}

.sidebar-trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-main);
  font-weight: 500;
}

.sidebar-trust-item i {
  color: var(--brand-secondary);
  font-size: 1rem;
  width: 20px;
  text-align: center;
}

.text-brand-secondary {
  color: var(--brand-secondary) !important;
}

/* === LEAD FORM === */
.lead-form-section .card {
  background: linear-gradient(135deg, #fff, #fafcfd);
  border: 1px solid var(--border-light);
}

.lead-form-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.98), rgba(250,245,239,0.94)) !important;
  border: 1px solid rgba(26, 92, 107, 0.12) !important;
  box-shadow: 0 16px 40px rgba(27, 40, 48, 0.08) !important;
}

.lead-form-section .form-control,
.lead-form-section .form-select {
  border: 2px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 0.72rem 1rem;
  font-size: 0.92rem;
  transition: border-color var(--transition);
  background: #fff;
}

.lead-form-section .form-control:focus,
.lead-form-section .form-select:focus {
  border-color: var(--brand-secondary);
  box-shadow: 0 0 0 3px rgba(26, 92, 107, 0.06);
}

.lead-form-section .form-label {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-main);
  margin-bottom: 0.35rem;
}

.mini-trust-pill {
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(26, 92, 107, 0.16);
  background: rgba(26, 92, 107, 0.06);
  color: var(--brand-secondary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.32rem 0.7rem;
}

.form-trust-note {
  color: var(--text-muted);
}

/* === BLOG === */
.blog-links {
  background: var(--brand-secondary-light);
  border: 1px solid rgba(26, 92, 107, 0.1);
}

.editorial-article {
  overflow: hidden;
}

.editorial-cover {
  max-height: 520px;
  object-fit: cover;
}

.luxury-cta-box {
  background: linear-gradient(145deg, rgba(250,245,239,0.9), rgba(232,244,247,0.7));
}

/* === CONTACT === */
.contact-stack {
  display: grid;
  gap: 0.9rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.88);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

.contact-method:hover {
  box-shadow: var(--shadow-md);
}

.contact-method strong {
  display: block;
  color: var(--text-main);
  font-size: 0.95rem;
}

.contact-method-label {
  display: block;
  color: var(--text-muted);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.12rem;
}

.contact-method-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-secondary-light);
  color: var(--brand-secondary);
  font-size: 1.1rem;
  flex: 0 0 auto;
}

.contact-method-icon.whatsapp {
  background: #e9f9ef;
  color: #21a85a;
}

.contact-method-icon.warm {
  background: var(--brand-primary-light);
  color: var(--brand-primary-dark);
}

/* === CONTACT GUARANTEES === */
.contact-guarantees {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding-top: 0.5rem;
}

.contact-guarantee-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-main);
  font-weight: 500;
}

.contact-guarantee-item i {
  color: var(--brand-secondary);
  font-size: 1rem;
}

.contact-method[href] {
  text-decoration: none;
  cursor: pointer;
}

.contact-method[href]:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--brand-secondary-light);
}

/* === PROCESS STEPS === */
.process-step-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  height: 100%;
  position: relative;
}

.process-step-number {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  font-size: 2.4rem;
  font-weight: 700;
  color: rgba(192, 116, 52, 0.1);
  line-height: 1;
}

.process-step-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-secondary-light);
  color: var(--brand-secondary);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

/* === CONTACT FAQ === */
.contact-faq .accordion-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm) !important;
  margin-bottom: 0.6rem;
  overflow: hidden;
}

.contact-faq .accordion-button {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-main);
  background: #fff;
  padding: 1rem 1.25rem;
}

.contact-faq .accordion-button:not(.collapsed) {
  color: var(--brand-secondary);
  background: var(--brand-secondary-light);
  box-shadow: none;
}

.contact-faq .accordion-button::after {
  color: var(--brand-secondary);
}

.contact-faq .accordion-body {
  font-size: 0.9rem;
  line-height: 1.7;
  padding: 0.75rem 1.25rem 1.1rem;
}

/* === SIDEBAR === */
.sticky-sidebar {
  position: sticky;
  top: 100px;
}

/* === FOOTER === */
.site-footer {
  background: linear-gradient(180deg, var(--brand-dark) 0%, #10181d 100%);
  color: #b4c5d6;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary), var(--brand-primary));
}

.site-footer h5,
.site-footer h6 {
  color: #fff;
}

.site-footer a {
  color: #c8d6e0;
  text-decoration: none;
  transition: color var(--transition);
}

.site-footer a:hover {
  color: var(--brand-accent);
}

.site-footer ul li {
  padding: 0.3rem 0;
}

.site-footer hr {
  border-color: rgba(255, 255, 255, 0.1);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-brand-logo {
  height: 72px;
  width: auto;
  max-width: 260px;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.footer-brand-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.95rem;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #c8d6e0;
  font-size: 1rem;
  margin-right: 0.5rem;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.footer-social a:hover {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #fff;
}

.footer-mini-note {
  color: #87a6bf;
}

/* === WHATSAPP FLOATING === */
.whatsapp-sticky {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #fff;
  font-size: 1.8rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 1080;
  text-decoration: none;
  animation: whatsapp-pulse 3s infinite;
}

.whatsapp-sticky:hover {
  color: #fff;
}

@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3); }
  50% { box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3), 0 0 0 8px rgba(37, 211, 102, 0.08); }
}

/* === REVEAL ANIMATIONS === */
.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.04s; }
.reveal-delay-2 { transition-delay: 0.08s; }
.reveal-delay-3 { transition-delay: 0.12s; }
.reveal-delay-4 { transition-delay: 0.16s; }

/* === ALERTS === */
.alert {
  border-radius: var(--radius-sm);
  font-weight: 500;
  border: none;
}

.alert-success {
  background: #e8f8f0;
  color: #1a7a4c;
}

.alert-danger {
  background: #fde8e8;
  color: #b91c1c;
}

/* === BG WARM === */
.bg-warm {
  background: var(--brand-warm);
}

.bg-brand-soft {
  background-color: var(--brand-secondary-light);
}

/* === UTILITY === */
.text-brand {
  color: var(--brand-primary);
}

.fw-800 {
  font-weight: 700 !important;
}

.ls-tight {
  letter-spacing: -0.03em;
}

.dot-separator {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--text-muted);
  margin: 0 0.75rem;
  vertical-align: middle;
}

/* === RESPONSIVE === */
@media (max-width: 991.98px) {
  .sticky-sidebar {
    position: static;
  }

  .guide-photo,
  .guide-photo-premium {
    min-height: 320px;
  }

  .hero-section {
    padding: 2rem 0;
  }

  .trust-item .trust-number {
    font-size: 1.5rem;
  }

  .trust-item::after {
    display: none;
  }

  .hero-main-image {
    height: 360px;
  }

  .navbar-collapse {
    background: #fff;
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-top: 0.5rem;
    box-shadow: var(--shadow-md);
  }

  .floating-note-rating {
    left: 10px;
  }

  .floating-note-fast {
    right: 10px;
  }
}

@media (max-width: 767.98px) {
  .display-4 {
    font-size: 2rem;
  }

  .display-5 {
    font-size: 1.7rem;
  }

  .cta-wrap .btn {
    min-width: auto;
    width: 100%;
  }

  .card-tour img,
  .card img.card-img-top {
    height: 180px;
  }

  .hero-main-image,
  .collection-media img,
  .collection-card-wide .collection-media img {
    height: 230px;
  }

  .floating-note {
    position: static;
    margin-top: 0.6rem;
  }

  .hero-visual-wrap {
    padding: 0.5rem;
  }

  .detail-stat-row {
    gap: 0.5rem;
  }

  .itinerary-step {
    grid-template-columns: 38px 1fr;
    gap: 0.8rem;
  }

  .itinerary-index {
    width: 38px;
    height: 38px;
  }

  .whatsapp-sticky {
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
    right: 14px;
    bottom: 14px;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}

/* === PACKAGE DETAIL ENHANCEMENTS === */

/* Highlights strip */
.highlights-strip {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--border-light);
}

.highlights-scroll {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}

.highlight-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-pill);
  background: var(--brand-secondary-light);
  color: var(--brand-secondary);
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px solid rgba(26, 92, 107, 0.1);
  white-space: nowrap;
}

.highlight-chip i {
  font-size: 0.82rem;
}

/* Enhanced itinerary timeline */
.itinerary-step-enhanced {
  display: flex;
  gap: 1.2rem;
  padding-bottom: 1.5rem;
}

.itinerary-step-enhanced:last-child {
  padding-bottom: 0;
}

.itinerary-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.itinerary-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(180deg, var(--brand-secondary), rgba(26, 92, 107, 0.15));
  margin-top: 0.5rem;
  border-radius: 2px;
  min-height: 30px;
}

.itinerary-body {
  padding-top: 0.25rem;
}

.itinerary-body h3 {
  color: var(--brand-secondary);
  font-size: 0.95rem;
}

.itinerary-body p {
  font-size: 0.9rem;
  line-height: 1.7;
}

/* Hotel option cards */
.hotel-option-card {
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: var(--brand-warm);
  border: 1px solid var(--border-light);
  font-weight: 600;
  font-size: 0.88rem;
  text-align: center;
  color: var(--text-main);
  transition: border-color var(--transition);
}

.hotel-option-card:hover {
  border-color: var(--brand-primary);
}

/* Sidebar price badge */
.side-price-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 6px 16px rgba(192, 116, 52, 0.2);
}

/* Text brand helper */
.text-brand,
.text-brand-secondary {
  color: var(--brand-secondary) !important;
}

/* Tour quick-info badges */
.tour-quick-info {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.tour-quick-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-pill);
  background: #fff;
  border: 1px solid var(--border-light);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-main);
  box-shadow: var(--shadow-sm);
}

.tour-quick-badge i {
  color: var(--brand-secondary);
  font-size: 0.9rem;
}

.tour-quick-badge.cruise {
  background: var(--brand-secondary-light);
  border-color: rgba(26, 92, 107, 0.15);
  color: var(--brand-secondary);
}

/* Tour gallery images */
.tour-gallery-img {
  height: 260px;
  object-fit: cover;
}

/* Sidebar trust list */
.sidebar-trust-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.75rem;
}

.sidebar-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-body);
}

.sidebar-trust-item i {
  color: var(--brand-secondary);
  font-size: 0.85rem;
}

@media (max-width: 767.98px) {
  .highlights-scroll {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    justify-content: flex-start;
    padding-bottom: 0.5rem;
  }

  .highlights-scroll::-webkit-scrollbar {
    display: none;
  }

  .itinerary-step-enhanced {
    gap: 0.8rem;
  }

  .hotel-option-card {
    font-size: 0.82rem;
    padding: 0.8rem;
  }
}
