/* ============================================================
   Bohemia Design System — General / Utilities
   ============================================================ */

/* ----- BOHEMIA ORNAMENT ----- */
.bh-ornament {
  height: 3px;
  background: repeating-linear-gradient(90deg,
    var(--bh-garnet-400) 0px, var(--bh-garnet-400) 6px,
    transparent 6px, transparent 10px,
    var(--bh-gold-400) 10px, var(--bh-gold-400) 14px,
    transparent 14px, transparent 18px,
    var(--bh-spa-400) 18px, var(--bh-spa-400) 22px,
    transparent 22px, transparent 26px);
}

/* ----- SECTION LABEL ----- */
.section-label {
  font-size: var(--bh-text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bh-garnet-600);
  margin-bottom: var(--bh-sp-2);
  font-family: var(--bh-font-body);
}

/* ----- HERO SECTION ----- */
.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  position: relative;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--bh-stone-900);
  padding: var(--bh-sp-10) var(--bh-sp-8);
}

/* Diamond / argyle pattern overlay */
.hero-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30Z' fill='none' stroke='%23ffffff' stroke-width='0.5'/%3E%3C/svg%3E");
  background-size: 60px 60px;
  z-index: 0;
}

/* Bottom garnet gradient */
.hero-overlay::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 45%;
  background: linear-gradient(to bottom, transparent 0%, var(--bh-garnet-900) 100%);
  opacity: 0.7;
  z-index: 0;
}

.hero-content {
  z-index: 1;
  position: relative;
  text-align: center;
  max-width: 900px;
  padding: 0 var(--bh-sp-8);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--bh-sp-2);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--bh-gold-300);
  font-size: var(--bh-text-sm);
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 999px;
  margin-bottom: var(--bh-sp-6);
  letter-spacing: 0.02em;
}

.hero-title {
  color: white;
  font-size: var(--bh-text-4xl);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
  margin-bottom: var(--bh-sp-4);
  line-height: 1.15;
}

.hero-title em {
  font-style: italic;
  color: var(--bh-gold-300);
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--bh-text-lg);
  margin-bottom: var(--bh-sp-8);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ----- HERO SEARCH BAR ----- */
.hero-search-form {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: var(--bh-surface-card);
  border-radius: var(--bh-radius-xl);
  padding: var(--bh-sp-1);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255,255,255,0.06);
  max-width: 860px;
  margin: 0 auto;
}

.hero-search-field {
  flex: 1;
  padding: var(--bh-sp-3) var(--bh-sp-4);
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  justify-content: center;
}

.hero-search-field + .hero-search-field {
  border-left: 1px solid var(--bh-stone-150);
}

.hero-search-field label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bh-stone-400);
  line-height: 1;
}

.hero-search-field select,
.hero-search-field input[type="text"] {
  border: none;
  padding: 4px 20px 4px 0;
  font-size: var(--bh-text-sm);
  color: var(--bh-text-primary);
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239A948A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  background-size: 12px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  font-family: var(--bh-font-body);
  cursor: pointer;
  transition: color var(--bh-dur-fast);
  line-height: 1.4;
}

.hero-search-field input[type="text"] {
  background-image: none;
  padding-right: 0;
  cursor: text;
}

.hero-search-field select:hover,
.hero-search-field input[type="text"]:hover {
  color: var(--bh-garnet-600);
}

.hero-search-field select:focus,
.hero-search-field input[type="text"]:focus {
  box-shadow: none;
  outline: none;
  color: var(--bh-text-primary);
}

.hero-search-field input[type="text"]::placeholder {
  color: var(--bh-stone-300);
}

.hero-search-btn {
  padding: var(--bh-sp-3) var(--bh-sp-8);
  border-radius: calc(var(--bh-radius-xl) - 4px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--bh-sp-2);
  white-space: nowrap;
  flex-shrink: 0;
  font-size: var(--bh-text-base);
  font-weight: 600;
  min-width: 140px;
  letter-spacing: 0.02em;
}

/* ----- CONTACT PAGE ----- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--bh-sp-10);
  align-items: start;
}

.contact-intro {
  color: var(--bh-stone-500);
  line-height: 1.7;
  margin-bottom: var(--bh-sp-6);
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: var(--bh-sp-4);
}

.contact-card {
  display: flex;
  align-items: center;
  gap: var(--bh-sp-4);
  padding: var(--bh-sp-4) var(--bh-sp-5);
  border: 1px solid var(--bh-border-light);
  border-radius: var(--bh-radius-lg);
  background: var(--bh-surface-card);
  text-decoration: none;
  color: inherit;
  transition: all 0.3s var(--bh-ease-out);
}

a.contact-card:hover {
  transform: translateX(6px);
  border-color: var(--bh-garnet-200);
  box-shadow: var(--bh-shadow-md);
}

.contact-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--bh-radius-lg);
  background: var(--bh-garnet-50);
  color: var(--bh-garnet-600);
  transition: all 0.3s var(--bh-ease-out);
}

a.contact-card:hover .contact-icon {
  background: var(--bh-garnet-600);
  color: white;
}

.contact-card-title {
  display: block;
  font-size: var(--bh-text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bh-stone-400);
  margin-bottom: 2px;
}

.contact-card-value {
  display: block;
  font-size: var(--bh-text-base);
  font-weight: 600;
  color: var(--bh-text-primary);
}

a.contact-card .contact-card-value {
  color: var(--bh-garnet-600);
}

/* CF7 form styling */
.contact-form-wrap .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: var(--bh-sp-4);
}

.contact-form-wrap .wpcf7-form p {
  margin: 0;
}

.contact-form-wrap .wpcf7-form label {
  font-size: var(--bh-text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bh-stone-400);
  display: block;
  margin-bottom: var(--bh-sp-1);
}

.contact-form-wrap .wpcf7-form input[type="text"],
.contact-form-wrap .wpcf7-form input[type="email"],
.contact-form-wrap .wpcf7-form input[type="tel"],
.contact-form-wrap .wpcf7-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--bh-stone-200);
  border-radius: var(--bh-radius-md);
  font-size: var(--bh-text-sm);
  font-family: var(--bh-font-body);
  color: var(--bh-text-primary);
  background: var(--bh-surface-card);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form-wrap .wpcf7-form input:focus,
.contact-form-wrap .wpcf7-form textarea:focus {
  outline: none;
  border-color: var(--bh-garnet-400);
  box-shadow: 0 0 0 3px var(--bh-garnet-50);
}

.contact-form-wrap .wpcf7-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form-wrap .wpcf7-form input[type="submit"] {
  background: var(--bh-garnet-600);
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: var(--bh-radius-md);
  font-size: var(--bh-text-sm);
  font-weight: 600;
  font-family: var(--bh-font-body);
  cursor: pointer;
  transition: all 0.3s var(--bh-ease-out);
  align-self: flex-start;
}

.contact-form-wrap .wpcf7-form input[type="submit"]:hover {
  background: var(--bh-garnet-700);
  transform: translateY(-2px);
  box-shadow: var(--bh-shadow-md);
}

.contact-form-wrap .wpcf7-response-output {
  border-radius: var(--bh-radius-md) !important;
  font-size: var(--bh-text-sm);
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--bh-sp-8);
  }
}

/* ----- PRIVACY POLICY PAGE ----- */
.pp-hero .hero-overlay{min-height:40vh;}
.pp-hero .hero-subtitle{margin-bottom:var(--bh-sp-4);}
.pp-content{max-width:820px;margin-left:auto;margin-right:auto;}
.pp-body{font-size:var(--bh-text-base);line-height:1.8;color:var(--bh-stone-600);}
.pp-body h2{font-size:var(--bh-text-xl);color:var(--bh-stone-800);margin-top:var(--bh-sp-8);margin-bottom:var(--bh-sp-3);padding-bottom:var(--bh-sp-2);border-bottom:1px solid var(--bh-stone-150);}
.pp-body h2:first-child{margin-top:0;}
.pp-body p{margin-bottom:var(--bh-sp-4);}
.pp-body ul,.pp-body ol{padding-left:var(--bh-sp-6);margin-bottom:var(--bh-sp-4);}
.pp-body li{margin-bottom:var(--bh-sp-2);}
.pp-body a{color:var(--bh-garnet-600);text-decoration:underline;text-underline-offset:2px;}
.pp-body a:hover{color:var(--bh-garnet-700);}
.pp-section{margin-bottom:var(--bh-sp-6);}
.pp-updated{margin-top:var(--bh-sp-8);padding-top:var(--bh-sp-4);border-top:1px solid var(--bh-stone-150);font-size:var(--bh-text-sm);color:var(--bh-stone-400);}

/* ----- ABOUT PAGE ----- */
.ab-hero .hero-overlay{min-height:50vh;}
.ab-hero .hero-subtitle{margin-bottom:var(--bh-sp-4);}
.about-values .features-grid{grid-template-columns:repeat(3,1fr);max-width:960px;margin-left:auto;margin-right:auto;}
.ab-stats-section{max-width:900px;margin:-50px auto 0;padding:0 32px;position:relative;z-index:2;}
.ab-stats-section .stats-row{background:var(--bh-surface-card,#fff);border:1px solid var(--bh-stone-150);border-radius:var(--bh-radius-xl);box-shadow:var(--bh-shadow-md);padding:var(--bh-sp-8) var(--bh-sp-6);}

.about-mission-inner {
  display: flex;
  gap: var(--bh-sp-6);
  align-items: flex-start;
  max-width: 800px;
  margin: 0 auto;
}

.about-mission-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bh-garnet-50);
  color: var(--bh-garnet-600);
  margin-top: var(--bh-sp-1);
}

.about-mission h2 {
  margin-top: 0;
}

.about-mission-text {
  color: var(--bh-stone-500);
  line-height: 1.75;
  font-size: var(--bh-text-base);
}

.stats-row {
  display: flex;
  justify-content: center;
  gap: var(--bh-sp-10);
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  min-width: 120px;
}

.stat-number {
  display: block;
  font-family: var(--bh-font-display);
  font-size: var(--bh-text-3xl);
  font-weight: 700;
  color: var(--bh-garnet-600);
  line-height: 1.1;
  margin-bottom: var(--bh-sp-2);
}

.stat-label {
  display: block;
  font-size: var(--bh-text-sm);
  color: var(--bh-stone-500);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (max-width: 768px) {
  .ab-stats-section{padding:0 16px;margin-top:-30px;}

  .about-mission-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .stats-row {
    gap: var(--bh-sp-6);
  }

  .stat-number {
    font-size: var(--bh-text-2xl);
  }
}

/* ----- BLOG SECTION ----- */
.blog-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--bh-sp-6);
  gap: var(--bh-sp-4);
}

.blog-section-header h2 {
  margin: 0;
}

.blog-section-link {
  display: inline-flex;
  align-items: center;
  gap: var(--bh-sp-2);
  color: var(--bh-garnet-600);
  font-size: var(--bh-text-sm);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  padding-bottom: var(--bh-sp-2);
  transition: gap 0.3s var(--bh-ease-out), color var(--bh-dur-fast);
}

.blog-section-link:hover {
  gap: var(--bh-sp-3);
  color: var(--bh-garnet-700);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--bh-sp-5);
}

.blog-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--bh-border-light);
  border-radius: var(--bh-radius-lg);
  overflow: hidden;
  background: var(--bh-surface-card);
  transition: transform 0.4s var(--bh-ease-out), box-shadow 0.4s var(--bh-ease-out), border-color 0.3s;
  position: relative;
}

/* Garnet accent bar — appears on hover */
.blog-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--bh-garnet-500), var(--bh-gold-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--bh-ease-out);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  border-color: var(--bh-stone-200);
}

.blog-card:hover::after {
  transform: scaleX(1);
}

.blog-card-img {
  height: 180px;
  overflow: hidden;
}

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

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

.blog-card-body {
  padding: var(--bh-sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--bh-sp-2);
  flex: 1;
}

/* Meta & typography */
.blog-meta {
  display: flex;
  align-items: center;
  gap: var(--bh-sp-2);
  font-size: var(--bh-text-xs);
  color: var(--bh-stone-400);
}

.blog-cat {
  background: var(--bh-garnet-50);
  color: var(--bh-garnet-600);
  padding: 2px 10px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.blog-card-title {
  font-family: var(--bh-font-display);
  font-size: var(--bh-text-md);
  color: var(--bh-text-primary);
  margin: 0;
  line-height: 1.35;
  transition: color 0.3s;
}

.blog-card:hover .blog-card-title {
  color: var(--bh-garnet-600);
}

.blog-card-excerpt {
  font-size: var(--bh-text-sm);
  color: var(--bh-stone-500);
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-card-img {
    height: 160px;
  }

  .blog-section-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ----- FEATURES SECTION ----- */
.features-section {
  background: var(--bh-stone-50);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--bh-sp-6);
  margin-top: var(--bh-sp-8);
}

.feature-card {
  background: var(--bh-surface-card);
  border: 1px solid var(--bh-border-light);
  border-radius: var(--bh-radius-lg);
  padding: var(--bh-sp-6) var(--bh-sp-5);
  text-align: center;
  transition: all var(--bh-dur-norm) var(--bh-ease-out);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--bh-garnet-50) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--bh-dur-norm) var(--bh-ease-out);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--bh-shadow-lg);
  border-color: var(--bh-garnet-100);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  position: relative;
  width: 60px;
  height: 60px;
  margin: 0 auto var(--bh-sp-4);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--bh-radius-lg);
  background: var(--bh-garnet-50);
  color: var(--bh-garnet-600);
  transition: all var(--bh-dur-norm) var(--bh-ease-out);
}

.feature-card:hover .feature-icon {
  background: var(--bh-garnet-600);
  color: white;
  transform: scale(1.1);
}

.feature-title {
  position: relative;
  font-family: var(--bh-font-display);
  font-size: var(--bh-text-md);
  font-weight: 600;
  color: var(--bh-text-primary);
  margin: 0 0 var(--bh-sp-2);
}

.feature-text {
  position: relative;
  font-size: var(--bh-text-sm);
  color: var(--bh-stone-500);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: var(--bh-sp-4);
  }

  .feature-card {
    display: flex;
    flex-direction: row;
    text-align: left;
    gap: var(--bh-sp-4);
    padding: var(--bh-sp-4);
  }

  .feature-icon {
    margin: 0;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
  }

  .feature-card:hover {
    transform: translateY(-2px);
  }
}

/* ----- CITIES GRID ----- */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--bh-sp-5);
  margin-top: var(--bh-sp-6);
}

.city-card {
  aspect-ratio: 3 / 4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: var(--bh-radius-xl);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.city-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.city-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: var(--bh-radius-xl);
  transition: transform 0.5s ease;
}

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

.city-card .overlay {
  border-radius: 0 0 var(--bh-radius-xl) var(--bh-radius-xl);
  padding: var(--bh-sp-4) var(--bh-sp-5);
  background: linear-gradient(to bottom, transparent 0%, rgba(26, 25, 22, 0.6) 30%, rgba(26, 25, 22, 0.8) 100%);
}

.city-card h3 {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.city-hotel-count {
  font-size: var(--bh-text-sm);
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* ----- HOTEL CARD (homepage) ----- */
.hotel-card-home {
  display: flex;
  flex-direction: column;
}

.hotel-card-image {
  overflow: hidden;
  border-radius: var(--bh-radius-lg) var(--bh-radius-lg) 0 0;
  height: 200px;
}

.hotel-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.5s var(--bh-ease-out);
}

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

.hotel-card-body {
  padding: var(--bh-sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--bh-sp-1);
  flex: 1;
}

.hotel-card-body .hotel-stars {
  color: var(--bh-gold-400);
  font-size: var(--bh-text-sm);
  letter-spacing: 1px;
}

.hotel-card-body .h5 {
  margin: 0;
  font-size: var(--bh-text-md);
}

.hotel-card-location {
  font-size: var(--bh-text-sm);
  color: var(--bh-stone-400);
  margin: 0;
  display: flex;
  align-items: center;
  gap: var(--bh-sp-1);
}

.hotel-card-footer {
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: var(--bh-sp-3);
  border-top: 1px solid var(--bh-stone-100);
}

.hotel-card-rating {
  display: flex;
  align-items: center;
  gap: var(--bh-sp-2);
}

.hotel-card-score {
  background: var(--bh-garnet-600);
  color: white;
  font-family: var(--bh-font-mono);
  font-size: var(--bh-text-sm);
  font-weight: 700;
  padding: 6px 10px;
  border-radius: var(--bh-radius-sm);
  line-height: 1;
}

.hotel-card-rating-info {
  display: flex;
  flex-direction: column;
}

.hotel-card-rating-label {
  font-size: var(--bh-text-sm);
  font-weight: 600;
  color: var(--bh-stone-700);
  line-height: 1.2;
}

.hotel-card-reviews {
  font-size: var(--bh-text-xs);
  color: var(--bh-stone-400);
  line-height: 1.2;
}

.hotel-card-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.hotel-card-price-label {
  font-size: var(--bh-text-xs);
  color: var(--bh-stone-400);
  line-height: 1.2;
}

.hotel-card-price-value {
  font-family: var(--bh-font-heading);
  font-size: var(--bh-text-lg);
  font-weight: 700;
  color: var(--bh-garnet-600);
  line-height: 1.2;
}

/* ----- HEADER CONTACTS ----- */
.header-contacts {
  display: flex;
  align-items: center;
  gap: var(--bh-sp-4);
}

.header-contact-link {
  display: flex;
  align-items: center;
  gap: var(--bh-sp-1);
  text-decoration: none;
  color: var(--bh-stone-500);
  font-size: var(--bh-text-xs);
  font-weight: 500;
  white-space: nowrap;
  transition: color var(--bh-dur-fast);
}

.header-contact-link:hover {
  color: var(--bh-garnet-600);
}

.header-site-name {
  font-family: var(--bh-font-display);
  font-size: var(--bh-text-lg);
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* ----- FOOTER LANG ----- */
.footer-lang {
  font-size: var(--bh-text-xs);
}

@media (max-width: 1024px) and (min-width: 769px) {
  .cities-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-overlay {
    min-height: 60vh;
    padding: var(--bh-sp-8) var(--bh-sp-4);
  }

  .hero-title {
    font-size: var(--bh-text-2xl);
  }

  .hero-subtitle {
    font-size: var(--bh-text-base);
  }

  .hero-search-form {
    flex-direction: column;
    border-radius: var(--bh-radius-lg);
  }

  .hero-search-field + .hero-search-field {
    border-left: none;
    border-top: 1px solid var(--bh-stone-150);
  }

  .hero-search-btn {
    width: 100%;
    justify-content: center;
    border-radius: var(--bh-radius-lg);
    padding: var(--bh-sp-3) var(--bh-sp-4);
    min-width: unset;
  }

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

  .hotel-card-image {
    height: 160px;
  }

  .header-contacts {
    gap: var(--bh-sp-2);
  }

  .header-contact-link span {
    display: none;
  }
}

@media (max-width: 480px) {
  .cities-grid {
    grid-template-columns: 1fr;
  }

  .hero-overlay {
    min-height: 50vh;
  }
}

/* ----- BREADCRUMBS ----- */
.breadcrumbs {
  display: block;
  border-top: 1px solid var(--bh-border-light);
  padding: var(--bh-sp-3) 0;
}

.breadcrumbs ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  font-size: var(--bh-text-sm);
  color: var(--bh-stone-500);
}

.breadcrumbs ol li {
  break-inside: avoid;
}

.breadcrumbs li:not(:last-child)::after {
  content: "›";
  margin: 0 var(--bh-sp-2);
  color: var(--bh-stone-300);
}

.breadcrumbs a {
  color: var(--bh-stone-500);
  text-decoration: none;
  transition: color var(--bh-dur-fast);
}

.breadcrumbs a:hover {
  color: var(--bh-garnet-600);
}

@media (max-width: 768px) {
  .breadcrumbs ol {
    justify-content: start;
    text-align: left;
  }
}

/* ----- MAP ----- */
.map-container {
  height: 600px;
  width: 100%;
  border-radius: var(--bh-radius-lg);
  box-shadow: var(--bh-shadow-md);
  margin: var(--bh-sp-6) 0;
  z-index: 11;
  overflow: hidden;
}

.map-container img {
  border-radius: 0;
}

/* ----- LOADER / SPINNER ----- */
.loader {
  border: 4px solid var(--bh-stone-150);
  border-top: 4px solid var(--bh-garnet-500);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  animation: spin 0.8s linear infinite;
  z-index: 100;
}

.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  background-color: rgba(26, 25, 22, 0.4);
  display: none;
}

@keyframes spin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ----- ARROWS ----- */
.right-arrow {
  vertical-align: text-bottom;
}

/* ----- SLIDER SECTION ----- */
.slider-section {
  overflow: hidden;
  margin-left: var(--default-container-margin);
  margin-right: var(--default-container-margin);
  padding-left: var(--default-container-padding);
  padding-right: var(--default-container-padding);
}

@media (max-width: 768px) {
  .slider-section {
    margin-left: var(--default-container-margin-small);
    margin-right: var(--default-container-margin-small);
    padding-left: var(--default-container-padding-small);
    padding-right: var(--default-container-padding-small);
  }
}

@media (min-width: 1600px) {
  .slider-section {
    margin-left: calc(((100vw - 1200px) / 2 + 2rem) * -1);
    margin-right: calc(((100vw - 1200px) / 2 + 2rem) * -1);
    padding-left: calc((100vw - 1200px) / 2 + 2rem);
    padding-right: calc((100vw - 1200px) / 2 + 2rem);
  }
}

/* ----- INLINE TITLE ----- */
.inline-title {
  flex: 1 0 100%;
}

/* ----- CARD ----- */
.card {
  border-radius: var(--bh-radius-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--bh-border-light);
  background: var(--bh-surface-card);
  transition: all var(--bh-dur-norm) var(--bh-ease-out);
}

.card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 0;
}

.link {
  text-decoration: none;
  color: inherit;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--bh-shadow-lg);
  border-color: var(--bh-stone-200);
}

/* ----- CAROUSEL (prev/next) ----- */
.circle-buttons {
  display: flex;
  justify-content: space-between;
  width: 120px;
  z-index: 999;
  position: relative;
  padding-top: var(--bh-sp-6);
}

.prev,
.next {
  width: 44px;
  height: 44px;
  background-color: var(--bh-surface-card);
  border: 1px solid var(--bh-border-medium);
  border-radius: 50%;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--bh-dur-fast);
  color: var(--bh-stone-600);
}

.prev img,
.next img {
  vertical-align: middle;
  border-radius: 0;
}

.prev:hover,
.next:hover {
  border-color: var(--bh-garnet-400);
  background: var(--bh-garnet-50);
  color: var(--bh-garnet-600);
}

/* ----- TAILCATEGORIES (carousel container) ----- */
.tailcategories {
  width: 100%;
  min-height: 200px;
  position: relative;
  padding: var(--bh-sp-6) 0;
  overflow: hidden;
}

.tailcategories .inner {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  transition: all 0.3s var(--bh-ease-out);
  gap: var(--bh-sp-5);
}

.tailcategories .inner > div,
.tailcategories .inner > article {
  min-width: 420px;
  max-width: 420px;
  transition: all 0.5s var(--bh-ease-out);
}

.tailcategories .inner > div.active,
.tailcategories .inner > article.active {
  transform: scale(1.08);
  margin: var(--bh-sp-6) var(--bh-sp-6) var(--bh-sp-5);
}

.testimonials .tailcategories .inner {}

/* ----- OVERLAY (card gradient) ----- */
.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(26, 25, 22, 0.55) 40%, rgba(26, 25, 22, 0.75) 100%);
  padding: var(--bh-sp-5);
  color: white;
}

/* ----- HIGHLIGHT ----- */
.highlight {
  position: relative;
  z-index: 1;
}

.highlight::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(184, 43, 74, 0.15);
  border-radius: var(--bh-radius-lg);
  transition: opacity 0.5s var(--bh-ease-out);
  opacity: 1;
  z-index: -1;
}

.highlight.fade-out::before {
  opacity: 0;
}

/* ----- CENTER UTILITY ----- */
.center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ----- FEATURED IMAGE ----- */
.featured-image.wide:after {
  content: "";
  display: block;
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(26,25,22,0) 35%, rgba(26,25,22,0.6) 100%);
  border-radius: var(--bh-radius-lg);
  z-index: -1;
}

.home .featured-image.wide:after {}

.featured-image.wide {
  position: relative;
  margin-top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 65vh;
  margin-top: var(--bh-sp-3);
  margin-bottom: var(--bh-sp-3);
}

@media (min-height: 1200px) {
  .featured-image.wide {
    min-height: 50vh;
  }
}

.featured-image > * {
  padding: 0 var(--bh-sp-8);
}

.featured-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  padding: 0;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: var(--bh-radius-lg);
}

/* ----- SINGLE PAGE TITLE ----- */
.single-page-title {
  text-align: center;
  z-index: 1;
  position: relative;
  margin: 0;
  color: white;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  letter-spacing: -0.02em;
  font-family: var(--bh-font-display);
}

.list-title {
  font-weight: 600;
  color: white;
  margin: 0;
  text-align: left;
}

/* ----- PAGINATION ----- */
.pagination {
  margin-top: var(--bh-sp-4);
  margin-bottom: var(--bh-sp-4);
}

.pagination ul {
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: row;
  list-style: none;
  flex-wrap: wrap;
  gap: var(--bh-sp-1);
  padding-inline-start: 0;
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--bh-border-medium);
  border-radius: var(--bh-radius-md);
  text-decoration: none;
  color: var(--bh-stone-600);
  width: 36px;
  height: 36px;
  font-size: var(--bh-text-sm);
  font-weight: 600;
  transition: all var(--bh-dur-fast);
  background: var(--bh-surface-card);
}

.pagination .dots {
  border: none;
  background: transparent;
}

.pagination a:hover {
  border-color: var(--bh-garnet-400);
  color: var(--bh-garnet-600);
}

.pagination .current {
  background-color: var(--bh-garnet-600);
  color: #fff;
  border-color: var(--bh-garnet-600);
}

.pagination .prev {
  background-image: url(/wp-content/themes/mytheme-vacationrentals/img/Vector.svg);
  border: 0;
  background-color: transparent;
}

.pagination .next {
  background-image: url(/wp-content/themes/mytheme-vacationrentals/img/Vector.svg);
  border: 0;
  transform: rotate(180deg);
  background-color: transparent;
}

.pagination-title {
  text-align: center;
  font-weight: 600;
  z-index: 1;
  position: relative;
  margin: var(--bh-sp-4);
  color: white;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}

/* ----- CITIES LIST ----- */
.cities-cities-list > ul {
  column-count: 2;
  column-gap: var(--bh-sp-10);
}

.cities-cities-list li.h5 {
  margin: var(--bh-sp-2) 0;
}

.city-list {
  break-inside: avoid;
}

/* ----- FEATURED IMAGE RESPONSIVE ----- */
@media screen and (min-width: 1200px) {
  figure.featured-image {
    max-height: 40vw;
  }
}

@media (max-width: 768px) {
  figure.featured-image {
    border-radius: 0;
    margin-bottom: -20rem;
    margin-top: -7rem;
  }

  .featured-image.wide {
    margin-top: 0;
  }

  .featured-image > img,
  .featured-image.wide:after {
    border-radius: 0;
  }

  .card img {
    height: 280px;
  }

  .tailcategories .inner > div,
  .tailcategories .inner > article {
    min-width: 320px;
    max-width: 320px;
  }

  .tailcategories .inner {
    gap: var(--bh-sp-4);
  }

  .testimonials .tailcategories .inner {
    gap: var(--bh-sp-4);
  }

  .tailcategories .inner > div.active,
  .tailcategories .inner > article.active {
    transform: scale(1.08);
    margin: var(--bh-sp-5) var(--bh-sp-5) var(--bh-sp-5);
  }
}

@media (max-width: 480px) {
  .single-page-title {}

  .pagination a,
  .pagination span {
    width: 28px;
    height: 28px;
    font-size: var(--bh-text-xs);
  }

  .cities-cities-list > ul {
    column-count: 1;
  }

  .tailcategories .inner > div,
  .tailcategories .inner > article {
    min-width: 270px;
    max-width: 270px;
  }

  .tailcategories .inner > div.active,
  .tailcategories .inner > article.active {
    margin: var(--bh-sp-5);
  }
}

/* ----- INLINE COLORS ----- */
.inline-color-red {
  color: var(--bh-garnet-500);
}

.inline-shadow {
  text-shadow: 0 2px 8px rgba(26, 25, 22, 0.2);
}

.inline-color-yellow {
  color: var(--bh-gold-400);
}

/* ----- TWO BUTTONS ----- */
.two-buttons {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: var(--bh-sp-4);
}

.two-buttons .universal-red-button {
  margin: 0;
}

@media (max-width: 768px) {
  .two-buttons {
    flex-direction: column;
  }
}

/* ----- PAGINATION BLOCK (blog cards grid) ----- */
.pagination-block {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--bh-sp-5);
  width: 100%;
  margin: var(--bh-sp-6) 0;
}

.pagination-block .card {
  position: relative;
  border: 1px solid var(--bh-border-light);
  border-radius: var(--bh-radius-lg);
  padding: var(--bh-sp-4);
}

/* ----- CTA BANNER ----- */
.find-hotels-container {
  background: linear-gradient(135deg, var(--bh-garnet-800), var(--bh-garnet-700), var(--bh-garnet-600));
  padding: var(--bh-sp-8) 0;
  overflow: hidden;
  border-radius: var(--bh-radius-xl);
  margin: var(--bh-sp-4) 0;
  position: relative;
}

.find-hotels-button {
  text-decoration: none;
  color: white;
  position: relative;
  margin: 0 auto;
  display: block;
  font-size: var(--bh-text-2xl);
  font-family: var(--bh-font-display);
  padding-left: var(--bh-sp-8);
  padding-right: var(--bh-sp-8);
  transition: all 0.3s var(--bh-ease-out);
  text-align: center;
}

.find-hotels-button:hover {
  transform: scale(1.05);
  color: white;
}

/* ----- RESPONSIVE grid ----- */
@media (max-width: 1279px) and (min-width: 769px) {
  .pagination-block {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .find-hotels-container {
    padding: var(--bh-sp-6) 0;
  }

  .find-hotels-button {
    font-size: var(--bh-text-xl);
  }

  .pagination-block {
    grid-template-columns: 1fr;
  }
}

/* ----- CONTACT PAGE ----- */
.ct-hero .hero-overlay{min-height:50vh;}
.ct-hero .hero-subtitle{margin-bottom:var(--bh-sp-4);}
.ct-cards-section{max-width:1200px;margin:-60px auto 0;padding:0 32px;position:relative;z-index:2;}
.ct-cards-row{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:16px;max-width:900px;margin:0 auto;}
.ct-card{display:flex;flex-direction:column;align-items:center;text-align:center;gap:10px;padding:28px 20px 24px;border:1px solid var(--bh-stone-150);border-radius:var(--bh-radius-xl);background:var(--bh-surface-card,#fff);box-shadow:var(--bh-shadow-sm);text-decoration:none;color:inherit;transition:all 0.3s var(--bh-ease-out);}
a.ct-card:hover{transform:translateY(-4px);box-shadow:var(--bh-shadow-lg);border-color:var(--bh-garnet-200);}
.ct-card-icon{width:52px;height:52px;display:flex;align-items:center;justify-content:center;border-radius:14px;transition:all 0.3s var(--bh-ease-out);}
.ct-card-icon--phone{background:var(--bh-forest-50,#F0F7F2);color:var(--bh-forest-600,#2E7D46);}
.ct-card-icon--email{background:var(--bh-spa-50,#F0F7FA);color:var(--bh-spa-600,#1B7A9E);}
.ct-card-icon--map{background:var(--bh-garnet-50);color:var(--bh-garnet-600);}
a.ct-card:hover .ct-card-icon{transform:scale(1.1);}
.ct-card-label{font-size:var(--bh-text-xs);font-weight:700;text-transform:uppercase;letter-spacing:0.08em;color:var(--bh-stone-400);}
.ct-card-val{font-size:var(--bh-text-base);font-weight:600;color:var(--bh-text-primary);}
a.ct-card .ct-card-val{color:var(--bh-garnet-600);}
.ct-card-hint{font-size:var(--bh-text-xs);color:var(--bh-stone-400);}
.ct-grid{display:grid;grid-template-columns:1fr 380px;gap:40px;align-items:start;}
.ct-form-card{background:var(--bh-surface-card,#fff);border:1px solid var(--bh-stone-150);border-radius:var(--bh-radius-xl);padding:36px;box-shadow:var(--bh-shadow-sm);}
.ct-form-header{margin-bottom:28px;}
.ct-form-header h2{margin-bottom:8px;}
.ct-form-sub{font-size:var(--bh-text-sm);color:var(--bh-stone-500);line-height:1.6;}
.ct-form-card .wpcf7-form{display:flex;flex-direction:column;gap:var(--bh-sp-4);}
.ct-form-card .wpcf7-form p{margin:0;}
.ct-form-card .wpcf7-form label{font-size:var(--bh-text-xs);font-weight:700;text-transform:uppercase;letter-spacing:0.08em;color:var(--bh-stone-400);display:block;margin-bottom:var(--bh-sp-1);}
.ct-form-card .wpcf7-form input[type="text"],.ct-form-card .wpcf7-form input[type="email"],.ct-form-card .wpcf7-form input[type="tel"],.ct-form-card .wpcf7-form textarea{width:100%;padding:13px 16px;border:1px solid var(--bh-stone-200);border-radius:var(--bh-radius-md);font-size:var(--bh-text-sm);font-family:var(--bh-font-body);color:var(--bh-text-primary);background:var(--bh-stone-50,#faf9f7);transition:all 0.2s var(--bh-ease-out);}
.ct-form-card .wpcf7-form input:focus,.ct-form-card .wpcf7-form textarea:focus{outline:none;border-color:var(--bh-garnet-400);box-shadow:0 0 0 3px var(--bh-garnet-50);background:var(--bh-surface-card,#fff);}
.ct-form-card .wpcf7-form textarea{min-height:130px;resize:vertical;}
.ct-form-card .wpcf7-form input[type="submit"]{width:100%;background:var(--bh-garnet-600);color:white;border:none;padding:15px 32px;border-radius:var(--bh-radius-lg);font-size:var(--bh-text-base);font-weight:600;font-family:var(--bh-font-body);cursor:pointer;transition:all 0.3s var(--bh-ease-out);box-shadow:0 2px 8px rgba(184,43,74,0.2);}
.ct-form-card .wpcf7-form input[type="submit"]:hover{background:var(--bh-garnet-700);transform:translateY(-2px);box-shadow:0 4px 16px rgba(184,43,74,0.3);}
.ct-form-card .wpcf7-response-output{border-radius:var(--bh-radius-md)!important;font-size:var(--bh-text-sm);}
.ct-faq{margin-bottom:28px;}
.ct-faq h3{font-family:var(--bh-font-display);font-size:var(--bh-text-lg);margin-bottom:16px;}
.ct-faq-list{display:flex;flex-direction:column;gap:8px;}
.ct-faq-item{border:1px solid var(--bh-stone-150);border-radius:var(--bh-radius-md);overflow:hidden;transition:border-color 0.2s;}
.ct-faq-item[open]{border-color:var(--bh-garnet-200);}
.ct-faq-q{padding:14px 16px;font-size:var(--bh-text-sm);font-weight:600;color:var(--bh-text-primary);cursor:pointer;list-style:none;display:flex;align-items:center;justify-content:space-between;gap:12px;transition:background 0.2s;}
.ct-faq-q:hover{background:var(--bh-stone-50,#faf9f7);}
.ct-faq-q::after{content:'';width:8px;height:8px;border-right:2px solid var(--bh-stone-400);border-bottom:2px solid var(--bh-stone-400);transform:rotate(45deg);flex-shrink:0;transition:transform 0.2s;}
.ct-faq-item[open] .ct-faq-q::after{transform:rotate(-135deg);}
.ct-faq-q::-webkit-details-marker{display:none;}
.ct-faq-a{padding:0 16px 14px;font-size:var(--bh-text-sm);color:var(--bh-stone-500);line-height:1.65;}
.ct-trust{display:flex;flex-direction:column;gap:12px;padding:20px;background:var(--bh-stone-50,#faf9f7);border-radius:var(--bh-radius-lg);border:1px solid var(--bh-stone-150);}
.ct-trust-item{display:flex;align-items:center;gap:10px;font-size:var(--bh-text-sm);font-weight:500;color:var(--bh-stone-600);}
.ct-trust-item svg{color:var(--bh-forest-500,#3B8550);flex-shrink:0;}
@media(max-width:768px){.ct-cards-section{padding:0 16px;margin-top:-24px;}.ct-cards-row{grid-template-columns:1fr;gap:10px;}.ct-card{flex-direction:row;text-align:left;padding:16px 20px;}.ct-card-icon{width:44px;height:44px;}.ct-grid{grid-template-columns:1fr;gap:28px;}.ct-form-card{padding:24px;}}
