body {
  font-family: 'Inter', sans-serif;
}

/* Motel cards polish */
.motel-card {
  box-shadow: 0 12px 28px rgba(0,0,0,0.10);
  transition: transform .18s ease, box-shadow .18s ease;
}
@media (hover:hover) {
  .motel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.14);
  }
}

/* =========================================
   HOTEL GROUP HOMEPAGE — SECTION 1 HERO
   ========================================= */

.hotel-hero {
  min-height: 720px;
}

.hotel-hero .wp-block-cover__background {
  background-color: #0b1720 !important;
}

.hotel-hero-content {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hotel-hero-eyebrow {
  margin: 0 0 18px !important;
  color: #d8b66a !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  line-height: 1.4 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase;
  text-align: center;
}

.hotel-hero-title {
  max-width: 850px;
  margin: 0 auto 22px !important;
  color: #ffffff !important;
  font-size: 58px !important;
  font-weight: 700 !important;
  line-height: 1.08 !important;
  letter-spacing: -1.4px !important;
  text-align: center;
}

.hotel-hero-text {
  max-width: 690px;
  margin: 0 auto 34px !important;
  color: #e5e7eb !important;
  font-size: 19px !important;
  font-weight: 400 !important;
  line-height: 1.65 !important;
  text-align: center;
}

.hotel-hero-buttons {
  gap: 14px !important;
  justify-content: center;
}

.hotel-hero-buttons .wp-block-button__link {
  min-height: 54px;
  padding: 15px 28px !important;
  border-radius: 4px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.hotel-btn-primary .wp-block-button__link {
  background-color: #d8b66a !important;
  border: 1px solid #d8b66a !important;
  color: #0b1720 !important;
}

.hotel-btn-primary .wp-block-button__link:hover {
  background-color: #e2c27c !important;
  border-color: #e2c27c !important;
  color: #0b1720 !important;
  transform: translateY(-2px);
}

.hotel-btn-secondary .wp-block-button__link {
  background-color: transparent !important;
  border: 1px solid #ffffff !important;
  color: #ffffff !important;
}

.hotel-btn-secondary .wp-block-button__link:hover {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #0b1720 !important;
  transform: translateY(-2px);
}

@media (max-width: 781px) {
  .hotel-hero {
    min-height: 620px;
    padding-top: 90px !important;
    padding-right: 20px !important;
    padding-bottom: 90px !important;
    padding-left: 20px !important;
  }

  .hotel-hero-eyebrow {
    font-size: 11px !important;
    letter-spacing: 1.6px !important;
    margin-bottom: 16px !important;
  }

  .hotel-hero-title {
    font-size: 38px !important;
    line-height: 1.12 !important;
    letter-spacing: -0.8px !important;
    margin-bottom: 18px !important;
  }

  .hotel-hero-text {
    font-size: 17px !important;
    line-height: 1.6 !important;
    margin-bottom: 28px !important;
  }

  .hotel-hero-buttons {
    width: 100%;
  }

  .hotel-hero-buttons .wp-block-button {
    width: 100%;
  }

  .hotel-hero-buttons .wp-block-button__link {
    width: 100%;
  }
}
/* SECTION 2 — OUR MOTELS */

.properties-section {
  background: #f7f5f0;
}

.properties-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 110px 24px;
}

.properties-eyebrow {
  margin: 0 0 14px;
  color: #b48b42;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 2px;
  text-align: center;
}

.properties-title {
  max-width: 760px;
  margin: 0 auto 18px;
  color: #0b1720;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.8px;
  text-align: center;
}

.properties-intro {
  max-width: 700px;
  margin: 0 auto 56px;
  color: #65717c;
  font-size: 18px;
  line-height: 1.7;
  text-align: center;
}

.properties-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.properties-grid > .wp-block-column {
  min-width: 0;
  margin: 0 !important;
}

.property-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(11, 23, 32, 0.08);
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(11, 23, 32, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.property-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(11, 23, 32, 0.14);
}

.property-card-image {
  margin: 0 !important;
  overflow: hidden;
}

.property-card-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.property-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.property-card-title {
  margin: 0 0 9px;
  color: #0b1720;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.2;
}

.property-card-address {
  margin: 0 0 14px;
  color: #7a838c;
  font-size: 14px;
  line-height: 1.5;
}

.property-card-description {
  margin: 0 0 24px;
  color: #4e5b66;
  font-size: 15px;
  line-height: 1.7;
}

.property-card-button {
  width: 100%;
  margin-top: auto;
}

.property-card-button .wp-block-button__link {
  width: 100%;
  padding: 14px 20px;
  background: #0b1720;
  border-radius: 4px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
}

.property-card-button .wp-block-button__link:hover {
  background: #d8b66a;
  color: #0b1720;
}

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

@media (max-width: 781px) {
  .properties-inner {
    padding: 76px 20px;
  }

  .properties-title {
    font-size: 34px;
  }

  .properties-intro {
    margin-bottom: 40px;
    font-size: 16px;
  }

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

.properties-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  align-items: stretch;
}

.property-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(11, 23, 32, 0.07);
  border-radius: 18px;
  box-shadow:
    0 8px 18px rgba(11, 23, 32, 0.05),
    0 18px 42px rgba(11, 23, 32, 0.08);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.property-card:hover {
  transform: translateY(-7px);
  border-color: rgba(216, 182, 106, 0.35);
  box-shadow:
    0 12px 24px rgba(11, 23, 32, 0.06),
    0 24px 52px rgba(11, 23, 32, 0.14);
}

.property-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 26px 24px 24px;
}

.property-card-button {
  width: 100%;
  margin-top: auto;
}

.property-card-button .wp-block-button__link {
  width: 100%;
  min-height: 50px;
  padding: 14px 20px;
  background: #0b1720;
  border: 1px solid #0b1720;
  border-radius: 6px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  transition:
    background-color 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease,
    transform 0.22s ease;
}

.property-card-button .wp-block-button__link:hover {
  background: #d8b66a;
  border-color: #d8b66a;
  color: #0b1720;
  transform: translateY(-1px);
}

/* SECTION 2 — MOBILE FIX */

@media (max-width: 781px) {

  .properties-inner {
    padding: 70px 18px;
  }

  .properties-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }

  .properties-grid > .wp-block-column {
    width: 100% !important;
    flex-basis: 100% !important;
    margin: 0 !important;
  }

  .property-card {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    border-radius: 16px;
  }

  .property-card-image img {
    width: 100%;
    height: 240px;
    aspect-ratio: auto;
    object-fit: cover;
  }

  .property-card-content {
    padding: 22px 20px 20px;
  }

  .property-card-title {
    font-size: 24px;
    line-height: 1.2;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
  }

  .property-card-address {
    font-size: 14px;
    line-height: 1.5;
  }

  .property-card-description {
    font-size: 15px;
    line-height: 1.65;
  }

  .property-card-button .wp-block-button__link {
    width: 100%;
    min-height: 52px;
  }
}

@media (max-width: 480px) {

  .properties-inner {
    padding: 64px 16px;
  }

  .properties-title {
    font-size: 30px;
  }

  .property-card-image img {
    height: 220px;
  }

  .property-card-content {
    padding: 20px 18px 18px;
  }

  .property-card-title {
    font-size: 22px;
  }
}
/* SECTION 1 — HERO MOBILE FIX */

@media (max-width: 781px) {

  .hotel-hero {
    min-height: 620px;
    padding: 90px 20px !important;
    background-position: center center !important;
  }

  .hotel-hero-content {
    width: 100%;
    max-width: 100%;
    padding: 0 !important;
  }

  .hotel-hero-eyebrow {
    margin: 0 0 14px !important;
    font-size: 11px !important;
    line-height: 1.4 !important;
    letter-spacing: 1.6px !important;
    text-align: center;
  }

  .hotel-hero-title {
    max-width: 100%;
    margin: 0 auto 18px !important;
    font-size: 38px !important;
    line-height: 1.12 !important;
    letter-spacing: -0.8px !important;
    text-align: center;
  }

  .hotel-hero-text {
    max-width: 560px;
    margin: 0 auto 28px !important;
    font-size: 17px !important;
    line-height: 1.6 !important;
    text-align: center;
  }

  .hotel-hero-buttons {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    width: 100%;
    max-width: 420px;
    margin: 0 auto !important;
  }

  .hotel-hero-buttons .wp-block-button {
    width: 100%;
    margin: 0 !important;
  }

  .hotel-hero-buttons .wp-block-button__link {
    width: 100%;
    min-height: 54px;
    padding: 15px 20px !important;
    font-size: 16px !important;
    text-align: center;
  }
}

@media (max-width: 480px) {

  .hotel-hero {
    min-height: 580px;
    padding: 76px 16px !important;
  }

  .hotel-hero-eyebrow {
    font-size: 10px !important;
    letter-spacing: 1.4px !important;
  }

  .hotel-hero-title {
    font-size: 33px !important;
    line-height: 1.14 !important;
    letter-spacing: -0.5px !important;
  }

  .hotel-hero-text {
    font-size: 16px !important;
    line-height: 1.55 !important;
    margin-bottom: 24px !important;
  }

  .hotel-hero-buttons {
    max-width: 100%;
  }

  .hotel-hero-buttons .wp-block-button__link {
    min-height: 52px;
    padding: 14px 18px !important;
  }
}

/* SECTION 3 — WHY STAY WITH US */

.stay-benefits-section {
  background:
    linear-gradient(
      135deg,
      #0b1720 0%,
      #12232f 100%
    );
}

.stay-benefits-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 105px 24px;
}

.stay-benefits-eyebrow {
  margin: 0 0 14px !important;
  color: #d8b66a !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;
  letter-spacing: 2px !important;
  text-align: center;
}

.stay-benefits-title {
  max-width: 850px;
  margin: 0 auto 18px !important;
  color: #ffffff !important;
  font-size: 42px !important;
  font-weight: 700 !important;
  line-height: 1.15 !important;
  letter-spacing: -0.8px !important;
  text-align: center;
}

.stay-benefits-intro {
  max-width: 720px;
  margin: 0 auto 56px !important;
  color: #cbd5e1 !important;
  font-size: 18px !important;
  line-height: 1.7 !important;
  text-align: center;
}

.stay-benefits-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px !important;
}

.stay-benefits-grid > .wp-block-column {
  min-width: 0;
  margin: 0 !important;
}

.stay-benefit-card {
  height: 100%;
  padding: 30px 24px 28px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  text-align: center;
  backdrop-filter: blur(6px);
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease;
}

.stay-benefit-card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.09);
  border-color: rgba(216,182,106,0.34);
}

.stay-benefit-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 18px !important;
}

.stay-benefit-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.stay-benefit-title {
  margin: 0 0 10px !important;
  color: #ffffff !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
}

.stay-benefit-text {
  margin: 0 !important;
  color: #cbd5e1 !important;
  font-size: 15px !important;
  line-height: 1.65 !important;
}

/* SECTION 3 — TABLET */

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

/* SECTION 3 — MOBILE */

@media (max-width: 781px) {
  .stay-benefits-inner {
    padding: 76px 20px;
  }

  .stay-benefits-title {
    font-size: 34px !important;
    line-height: 1.17 !important;
  }

  .stay-benefits-intro {
    margin-bottom: 40px !important;
    font-size: 16px !important;
  }

  .stay-benefits-grid {
    grid-template-columns: 1fr;
    gap: 18px !important;
  }

  .stay-benefit-card {
    padding: 26px 22px 24px;
  }

  .stay-benefit-title {
    font-size: 18px !important;
  }

  .stay-benefit-text {
    font-size: 15px !important;
  }
}

@media (max-width: 480px) {
  .stay-benefits-inner {
    padding: 66px 16px;
  }

  .stay-benefits-title {
    font-size: 30px !important;
  }
}
/* Benefit Icons */

.stay-icon {
    width: 72px;
    height: 72px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 24px;

    font-size: 30px;

    color: #D8B66A;

    background: rgba(216,182,106,.10);

    border: 1px solid rgba(216,182,106,.25);

    border-radius: 50%;

    transition: all .3s ease;
}

.stay-benefit-card:hover .stay-icon {
    background: #D8B66A;
    color: #0B1720;

    transform: translateY(-4px) scale(1.05);

    box-shadow: 0 10px 30px rgba(216,182,106,.25);
}
/* =========================================
   SECTION 4 — ELKO LOCATION
   ========================================= */

.elko-location-section {
  background: #f7f5f0;
}

.elko-location-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 110px 24px;
}

.elko-location-columns {
  display: grid !important;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 72px !important;
  align-items: center;
}

.elko-location-columns > .wp-block-column {
  min-width: 0;
  margin: 0 !important;
}

/* Image side */

.elko-location-image-wrap {
  position: relative;
}

.elko-location-image {
  margin: 0 !important;
  overflow: hidden;
  border-radius: 22px;
  box-shadow:
    0 16px 35px rgba(11, 23, 32, 0.10),
    0 30px 70px rgba(11, 23, 32, 0.12);
}

.elko-location-image img {
  display: block;
  width: 100%;
  height: 570px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.elko-location-image-wrap:hover .elko-location-image img {
  transform: scale(1.035);
}

/* Floating badge */

.elko-location-badge {
  position: absolute;
  right: 26px;
  bottom: 26px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  color: #ffffff;
  background: rgba(11, 23, 32, 0.90);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(11, 23, 32, 0.25);
  backdrop-filter: blur(8px);
  font-size: 15px;
  font-weight: 600;
}

.elko-location-badge i {
  color: #d8b66a;
  font-size: 17px;
}

/* Content side */

.elko-location-content {
  max-width: 530px;
}

.elko-location-eyebrow {
  margin: 0 0 14px !important;
  color: #b48b42 !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;
  letter-spacing: 2px !important;
}

.elko-location-title {
  margin: 0 0 22px !important;
  color: #0b1720 !important;
  font-size: 46px !important;
  font-weight: 700 !important;
  line-height: 1.12 !important;
  letter-spacing: -0.9px !important;
}

.elko-location-text {
  margin: 0 0 30px !important;
  color: #5f6c76 !important;
  font-size: 18px !important;
  line-height: 1.75 !important;
}

/* Feature list */

.elko-location-list {
  display: grid;
  gap: 16px;
  margin-bottom: 34px;
}

.elko-location-list-item {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #24323c;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.elko-location-check {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0b1720;
  background: rgba(216, 182, 106, 0.22);
  border: 1px solid rgba(180, 139, 66, 0.25);
  border-radius: 50%;
}

.elko-location-check i {
  font-size: 12px;
}

/* Buttons */

.elko-location-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px !important;
}

.elko-location-buttons .wp-block-button__link {
  min-height: 52px;
  padding: 15px 24px !important;
  border-radius: 6px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.22s ease,
    background-color 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease;
}

.elko-location-primary .wp-block-button__link {
  color: #ffffff !important;
  background: #0b1720 !important;
  border: 1px solid #0b1720 !important;
}

.elko-location-primary .wp-block-button__link:hover {
  color: #0b1720 !important;
  background: #d8b66a !important;
  border-color: #d8b66a !important;
  transform: translateY(-2px);
}

.elko-location-secondary .wp-block-button__link {
  color: #0b1720 !important;
  background: transparent !important;
  border: 1px solid rgba(11, 23, 32, 0.28) !important;
}

.elko-location-secondary .wp-block-button__link:hover {
  color: #ffffff !important;
  background: #0b1720 !important;
  border-color: #0b1720 !important;
  transform: translateY(-2px);
}

/* Tablet */

@media (max-width: 1024px) {
  .elko-location-columns {
    gap: 42px !important;
  }

  .elko-location-image img {
    height: 500px;
  }

  .elko-location-title {
    font-size: 39px !important;
  }
}

/* Mobile */

@media (max-width: 781px) {
  .elko-location-inner {
    padding: 76px 20px;
  }

  .elko-location-columns {
    grid-template-columns: 1fr;
    gap: 46px !important;
  }

  .elko-location-image img {
    height: 390px;
  }

  .elko-location-badge {
    right: 18px;
    bottom: 18px;
    padding: 12px 15px;
    font-size: 14px;
  }

  .elko-location-content {
    max-width: 100%;
  }

  .elko-location-title {
    font-size: 34px !important;
    line-height: 1.16 !important;
  }

  .elko-location-text {
    font-size: 16px !important;
    line-height: 1.7 !important;
  }

  .elko-location-buttons {
    width: 100%;
  }

  .elko-location-buttons .wp-block-button {
    width: 100%;
    margin: 0 !important;
  }

  .elko-location-buttons .wp-block-button__link {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .elko-location-inner {
    padding: 66px 16px;
  }

  .elko-location-image {
    border-radius: 18px;
  }

  .elko-location-image img {
    height: 320px;
  }

  .elko-location-title {
    font-size: 30px !important;
  }

  .elko-location-list-item {
    align-items: flex-start;
    font-size: 15px;
  }
}
/* =========================================
   SECTION 5 — FINAL BOOKING CTA
   ========================================= */

.booking-cta-section {
  min-height: 430px;
}

.booking-cta-section .wp-block-cover__background {
  background: #0b1720 !important;
  opacity: 0.82 !important;
}

.booking-cta-content {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  padding: 86px 24px;
  text-align: center;
}

.booking-cta-eyebrow {
  margin: 0 0 14px !important;
  color: #d8b66a !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;
  letter-spacing: 2px !important;
  text-align: center;
}

.booking-cta-title {
  max-width: 820px;
  margin: 0 auto 18px !important;
  color: #ffffff !important;
  font-size: 46px !important;
  font-weight: 700 !important;
  line-height: 1.12 !important;
  letter-spacing: -0.9px !important;
  text-align: center;
}

.booking-cta-text {
  max-width: 680px;
  margin: 0 auto 34px !important;
  color: #d7dee5 !important;
  font-size: 18px !important;
  line-height: 1.7 !important;
  text-align: center;
}

/* Contact information strip */

.booking-cta-info {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin: 0 auto 34px;
  padding: 18px 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  backdrop-filter: blur(8px);
}

.booking-cta-info-item {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #ffffff;
  text-align: left;
}

.booking-cta-info-icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #d8b66a;
  background: rgba(216, 182, 106, 0.12);
  border: 1px solid rgba(216, 182, 106, 0.28);
  border-radius: 50%;
  font-size: 18px;
}

.booking-cta-info-item div {
  display: flex;
  flex-direction: column;
}

.booking-cta-info-label {
  margin-bottom: 2px;
  color: #aeb8c1;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.booking-cta-info-item a,
.booking-cta-info-item span:last-child {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
}

.booking-cta-info-item a:hover {
  color: #d8b66a;
}

.booking-cta-info-divider {
  width: 1px;
  height: 42px;
  background: rgba(255, 255, 255, 0.18);
}

/* Buttons */

.booking-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 14px !important;
}

.booking-cta-buttons .wp-block-button__link {
  min-height: 54px;
  padding: 15px 28px !important;
  border-radius: 6px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.22s ease,
    background-color 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease;
}

.booking-cta-primary .wp-block-button__link {
  color: #0b1720 !important;
  background: #d8b66a !important;
  border: 1px solid #d8b66a !important;
}

.booking-cta-primary .wp-block-button__link:hover {
  color: #0b1720 !important;
  background: #e4c57e !important;
  border-color: #e4c57e !important;
  transform: translateY(-2px);
}

.booking-cta-secondary .wp-block-button__link {
  color: #ffffff !important;
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.88) !important;
}

.booking-cta-secondary .wp-block-button__link:hover {
  color: #0b1720 !important;
  background: #ffffff !important;
  border-color: #ffffff !important;
  transform: translateY(-2px);
}

/* MOBILE */

@media (max-width: 781px) {
  .booking-cta-section {
    min-height: 520px;
  }

  .booking-cta-content {
    padding: 76px 20px;
  }

  .booking-cta-title {
    font-size: 34px !important;
    line-height: 1.16 !important;
  }

  .booking-cta-text {
    font-size: 16px !important;
    margin-bottom: 28px !important;
  }

  .booking-cta-info {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 430px;
    gap: 18px;
    padding: 20px;
  }

  .booking-cta-info-divider {
    width: 100%;
    height: 1px;
  }

  .booking-cta-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
    gap: 12px !important;
  }

  .booking-cta-buttons .wp-block-button {
    width: 100%;
    margin: 0 !important;
  }

  .booking-cta-buttons .wp-block-button__link {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .booking-cta-content {
    padding: 66px 16px;
  }

  .booking-cta-title {
    font-size: 30px !important;
  }

  .booking-cta-info-item a,
  .booking-cta-info-item span:last-child {
    font-size: 15px;
  }
}
.booking-cta-info-item a {
    color: #ffffff;
    text-decoration: none;
    transition: color .25s ease;
    word-break: break-word;
}

.booking-cta-info-item a:hover {
    color: #D8B66A;
}

.booking-cta-info {
    flex-wrap: wrap;
}

/* =========================================
   SECTION 5 — FINAL BOOKING CTA
   ========================================= */

.booking-cta-section {
  min-height: 430px;
}

.booking-cta-section .wp-block-cover__background {
  background: #0b1720 !important;
  opacity: 0.82 !important;
}

.booking-cta-content {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  padding: 86px 24px;
  text-align: center;
}

.booking-cta-eyebrow {
  margin: 0 0 14px !important;
  color: #d8b66a !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;
  letter-spacing: 2px !important;
  text-align: center;
}

.booking-cta-title {
  max-width: 820px;
  margin: 0 auto 18px !important;
  color: #ffffff !important;
  font-size: 46px !important;
  font-weight: 700 !important;
  line-height: 1.12 !important;
  letter-spacing: -0.9px !important;
  text-align: center;
}

.booking-cta-text {
  max-width: 680px;
  margin: 0 auto 34px !important;
  color: #d7dee5 !important;
  font-size: 18px !important;
  line-height: 1.7 !important;
  text-align: center;
}

/* Contact information strip */

.booking-cta-info {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin: 0 auto 34px;
  padding: 18px 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  backdrop-filter: blur(8px);
}

.booking-cta-info-item {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #ffffff;
  text-align: left;
}

.booking-cta-info-icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #d8b66a;
  background: rgba(216, 182, 106, 0.12);
  border: 1px solid rgba(216, 182, 106, 0.28);
  border-radius: 50%;
  font-size: 18px;
}

.booking-cta-info-item div {
  display: flex;
  flex-direction: column;
}

.booking-cta-info-label {
  margin-bottom: 2px;
  color: #aeb8c1;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.booking-cta-info-item a,
.booking-cta-info-item span:last-child {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
}

.booking-cta-info-item a:hover {
  color: #d8b66a;
}

.booking-cta-info-divider {
  width: 1px;
  height: 42px;
  background: rgba(255, 255, 255, 0.18);
}

/* Buttons */

.booking-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 14px !important;
}

.booking-cta-buttons .wp-block-button__link {
  min-height: 54px;
  padding: 15px 28px !important;
  border-radius: 6px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.22s ease,
    background-color 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease;
}

.booking-cta-primary .wp-block-button__link {
  color: #0b1720 !important;
  background: #d8b66a !important;
  border: 1px solid #d8b66a !important;
}

.booking-cta-primary .wp-block-button__link:hover {
  color: #0b1720 !important;
  background: #e4c57e !important;
  border-color: #e4c57e !important;
  transform: translateY(-2px);
}

.booking-cta-secondary .wp-block-button__link {
  color: #ffffff !important;
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.88) !important;
}

.booking-cta-secondary .wp-block-button__link:hover {
  color: #0b1720 !important;
  background: #ffffff !important;
  border-color: #ffffff !important;
  transform: translateY(-2px);
}

/* MOBILE */

@media (max-width: 781px) {
  .booking-cta-section {
    min-height: 520px;
  }

  .booking-cta-content {
    padding: 76px 20px;
  }

  .booking-cta-title {
    font-size: 34px !important;
    line-height: 1.16 !important;
  }

  .booking-cta-text {
    font-size: 16px !important;
    margin-bottom: 28px !important;
  }

  .booking-cta-info {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 430px;
    gap: 18px;
    padding: 20px;
  }

  .booking-cta-info-divider {
    width: 100%;
    height: 1px;
  }

  .booking-cta-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
    gap: 12px !important;
  }

  .booking-cta-buttons .wp-block-button {
    width: 100%;
    margin: 0 !important;
  }

  .booking-cta-buttons .wp-block-button__link {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .booking-cta-content {
    padding: 66px 16px;
  }

  .booking-cta-title {
    font-size: 30px !important;
  }

  .booking-cta-info-item a,
  .booking-cta-info-item span:last-child {
    font-size: 15px;
  }
}


/* CONTACT HERO BUTTONS */

.contact-hero-buttons {
  display: flex !important;
  justify-content: center !important;
  gap: 14px !important;
  margin: 0 !important;
}

.contact-hero-buttons .wp-block-button {
  margin: 0 !important;
}

.contact-hero-buttons .wp-block-button__link {
  min-height: 54px !important;
  padding: 15px 28px !important;
  border-radius: 6px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  transition:
    transform 0.22s ease,
    background-color 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease !important;
}

/* Call Now — gold button */
.contact-hero-primary .wp-block-button__link,
.wp-block-button.contact-hero-primary .wp-block-button__link {
  background-color: #d8b66a !important;
  border: 1px solid #d8b66a !important;
  color: #0b1720 !important;
}

.contact-hero-primary .wp-block-button__link:hover,
.wp-block-button.contact-hero-primary .wp-block-button__link:hover {
  background-color: #e4c57e !important;
  border-color: #e4c57e !important;
  color: #0b1720 !important;
  transform: translateY(-2px);
}

/* Email Us — white outline */
.contact-hero-secondary .wp-block-button__link,
.wp-block-button.contact-hero-secondary .wp-block-button__link {
  background-color: transparent !important;
  border: 1px solid #ffffff !important;
  color: #ffffff !important;
}

.contact-hero-secondary .wp-block-button__link:hover,
.wp-block-button.contact-hero-secondary .wp-block-button__link:hover {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #0b1720 !important;
  transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 781px) {
  .contact-hero-buttons {
    flex-direction: column !important;
    width: 100% !important;
    max-width: 430px;
    margin: 0 auto !important;
    gap: 12px !important;
  }

  .contact-hero-buttons .wp-block-button {
    width: 100% !important;
  }

  .contact-hero-buttons .wp-block-button__link {
    width: 100% !important;
  }
}

.page-id-XXX .entry-title {
  display: none !important;
}