/* RESET */
* {
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background:#f4fafa;
  color:#0f2f2f;
  line-height:1.6;
}

/* CONTAINER */
.container {
  width:100%;
  max-width:1400px;   /* keeps it clean but wider */
  margin:0 auto;
  padding:0 30px;
}

/* ===== TOP UTILITY BAR ===== */
.top-utility {
  background:#0f5f5f;
  color:#e6f7f7;
  font-size:14px;
}

.util-inner {
  display:flex;
  justify-content:space-between;
  padding:10px 20px;
}

.top-utility a {
  color:#e6f7f7;
  margin-left:20px;
  text-decoration:none;
}

.top-utility a:hover {
  color:white;
}

/* ===== MAIN HEADER ===== */
.main-header {
  background:#0b4f4f;
}

.nav-inner {
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:30px 20px; /* increased height */
}

.logo-wrap img {
  height:120px; /* 200% bigger */
}

.main-header nav a {
  color:white;
  margin-left:25px;
  text-decoration:none;
  font-weight:500;
}

.main-header nav a:hover {
  color:#7fe0e0;
}

/* ===== PROMO BAR ===== */
.promo-bar {
  background:#12a3a3;
  color:white;
  text-align:center;
  padding:12px;
  font-weight:600;
}

/* ===== HERO ===== */
.hero {
  height:600px;
  display:flex;
  align-items:center;
  justify-content:center;
  background-size:cover;
  background-position:center;
}

.overlay {
  background:rgba(0,0,0,0.55);
  padding:60px;
  border-radius:10px;
  text-align:center;
  color:white;
  max-width:600px;
}

.overlay h1 {
  font-size:48px;
  margin-bottom:15px;
}

.overlay p {
  font-size:18px;
  margin-bottom:25px;
}

.hero-actions {
  display:flex;
  gap:15px;
  justify-content:center;
}

/* ===== BUTTONS ===== */
.btn {
  background:#12a3a3;
  padding:12px 25px;
  color:white;
  text-decoration:none;
  border-radius:6px;
  display:inline-block;
  transition:0.2s;
}

.btn:hover {
  background:#0b7d7d;
}

.btn.secondary {
  background:#3a6f6f;
}

.btn.large {
  padding:15px 40px;
  font-size:18px;
}

/* ===== SECTIONS ===== */
.section {
  padding:50px 0;
  text-align:center;
}

.section h2 {
  font-size:34px;
  margin-bottom:15px;
}

.lead {
  max-width:650px;
  margin:auto;
  color:#4f7a7a;
}

/* ===== GRID ===== */
.grid-3 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(250px,1fr));
  gap:20px;
  margin-top:20px;
}

/* ===== FEATURES ===== */
.feature-box {
  background:white;
  padding:20px 25px;
  border-radius:10px;
  box-shadow:0 3px 10px rgba(0,0,0,0.06);
  text-align:left;
}

.feature-box h3 {
  margin-bottom:10px;
}

/* ===== FEATURED PROPERTY ===== */
.featured-card {
  display:flex;
  gap:20px;
  margin-top:20px;
  width:100%;
  background:white;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 6px 18px rgba(0,0,0,0.1);
}

.featured-image img {
  width:100%;
  height:100%;
  object-fit:cover;
}

.featured-image {
  flex:1;
  min-height:300px;
}

.featured-content {
  flex:1;
  padding:30px;
  text-align:left;
}

.featured-content h3 {
  font-size:26px;
  margin-bottom:10px;
}

.meta {
  color:#6a8f8f;
  margin-bottom:10px;
}

/* ===== BENEFITS ===== */
.benefit {
  background:white;
  padding:20px 25px;
  border-radius:10px;
  box-shadow:0 3px 10px rgba(0,0,0,0.06);
  text-align:left;
}

.benefit h4 {
  margin-bottom:10px;
}

/* ===== LOCATION ===== */
.location-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(250px,1fr));
  gap:30px;
  margin-top:30px;
}

.location-box {
  background:white;
  padding:25px;
  border-radius:10px;
  box-shadow:0 4px 12px rgba(0,0,0,0.08);
}

/* ===== CONTACT PAGE ===== */
.contact-page {
  padding:80px 0;
}

.contact-wrapper {
  display:flex;
  gap:40px;
  margin-top:40px;
}

.contact-form {
  flex:2;
  background:white;
  padding:30px;
  border-radius:10px;
  box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.contact-form input,
.contact-form textarea {
  width:100%;
  padding:12px;
  margin-bottom:15px;
  border:1px solid #cfecec;
  border-radius:6px;
  font-size:14px;
}

.contact-info {
  flex:1;
  background:#0b4f4f;
  color:white;
  padding:30px;
  border-radius:10px;
}

/* ===== CTA ===== */
.cta {
  background:#0b4f4f;
  color:white;
}

.cta p {
  margin-bottom:20px;
}

/* ===== FOOTER ===== */
.footer {
  text-align:center;
  padding:30px;
  background:#062f2f;
  color:white;
}

/* ===== RESPONSIVE ===== */
@media(max-width:900px){

  .nav-inner {
    flex-direction:column;
    gap:10px;
  }

  .featured-card {
    flex-direction:column;
  }

  .contact-wrapper {
    flex-direction:column;
  }

  .hero {
    height:500px;
  }

  .overlay h1 {
    font-size:32px;
  }
}

/* ===== HEADER LAYOUT (NO PADDING BASED HEIGHT) ===== */
.header-wrapper {
  display:flex;
  width:100%;
  height:140px; /* 🔥 MASTER HEIGHT = logo height */
}

/* LEFT LOGO */
.logo-block {
  width:220px;
  height:100%;

  background:#12a3a3; /* 🔥 SAME AS HEADER */

  display:flex;
  align-items:center;
  justify-content:center;
}

.logo-block img {
  height:120px;   /* 🔥 controls everything */
  width:auto;
  display:block;
}

/* RIGHT SIDE */
.header-right {
  flex:1;
  height:100%;
  display:flex;
  flex-direction:column;
}

/* TOP BAR */
.top-utility {
  height:70px; /* 50% of total */
  background:#12a3a3;

  display:flex;
  align-items:center;
}

/* NAV + UTIL ALIGNMENT */
.util-inner {
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:0 25px; /* only horizontal padding allowed */
}

/* LEFT NAV */
.nav-left a {
  color:white;
  margin-right:25px;
  text-decoration:none;
  font-weight:500;
}

/* RIGHT UTIL */
.nav-right a {
  color:#e6f7f7;
  margin-left:20px;
  text-decoration:none;
  font-size:14px;
}

/* PROMO BAR */
.promo-bar {
  height:90px;
  background:#12a3a3;
  overflow:hidden;
  display:flex;
  align-items:center;
  position:relative;
}

/* TRACK */
.promo-track {
  display:flex;
  white-space:nowrap;
  animation:scroll-right 18s linear infinite;
}

/* TEXT */
.promo-track span {
  font-size:22px;
  font-weight:600;
  color:white;
  margin-right:120px;
}

/* ANIMATION: LEFT ➜ RIGHT */
@keyframes scroll-right {
  0% {
    transform:translateX(-100%);
  }
  100% {
    transform:translateX(100%);
  }
}

/* TOP BAR TEXT UPGRADE */
.nav-left a,
.nav-right a {
  font-size: 1.2em;       /* 🔥 20% larger */
  font-weight: 700;       /* 🔥 bold */

  /* 🔥 subtle gold layered shadow */
  text-shadow:
    0 1px 0 rgba(0,0,0,0.3),          /* depth */
    0 2px 4px rgba(0,0,0,0.2),        /* soft blur */
    0 0 6px rgba(212,175,55,0.6);     /* gold glow */
}

/* LAYOUT */
.search-layout {
  display:flex;
  gap:20px;
  padding:20px 30px;   /* tighter */
  align-items:flex-start;
}

.results {
  flex:1;
  padding-top:10px;   /* aligns with filter top */
}


/* LEFT FILTER PANEL */
.filters {
  position:sticky;
  top:20px;
  width:320px;   /* 🔥 FIXED WIDTH */
  background:white;
  padding:20px;
  border-radius:12px;
  box-shadow:0 6px 18px rgba(0,0,0,0.1);
}

/* ===== HERO SLIDER ===== */
.hero-slider {
	overflow:visible;
  height:420px;
  position:relative;
  overflow:hidden;
}

/* SLIDES */
.slide {
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;

  background-size:cover;
  background-position:center;

  opacity:0;
  animation:fadeZoom 18s infinite;
}

/* TIMING */
.slide:nth-child(1) { animation-delay:0s; }
.slide:nth-child(2) { animation-delay:6s; }
.slide:nth-child(3) { animation-delay:12s; }

/* 🔥 FADE + ZOOM */
@keyframes fadeZoom {
  0%   { opacity:0; transform:scale(1); }
  5%   { opacity:1; }
  30%  { opacity:1; transform:scale(1.08); }
  35%  { opacity:0; }
  100% { opacity:0; }
}

/* DARK OVERLAY */
.hero-slider::after {
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    to bottom,
    rgba(0,0,0,0.5),
    rgba(0,0,0,0.2),
    rgba(0,0,0,0.5)
  );
}

/* ===== TEXT OVERLAY ===== */
.hero-overlay {
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, -60%);
  text-align:center;
  color:white;
  z-index:2;
}

.hero-overlay h1 {
  font-size:48px;
  margin-bottom:10px;
}

.hero-overlay p {
  font-size:18px;
  margin-bottom:20px;
}

.hero-actions {
  display:flex;
  gap:15px;
  justify-content:center;
}

/* ===== PROMO PANEL ===== */
.promo-panel {
  margin-top:25px;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 6px 18px rgba(0,0,0,0.1);
}

/* IMAGE */
.promo-image {
  height:180px;
  background-size:cover;
  background-position:center;
  position:relative;
}

/* OVERLAY TEXT */
.promo-overlay {
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.45);
  color:white;
  padding:20px;

  display:flex;
  flex-direction:column;
  justify-content:flex-end;
}

.promo-overlay h3 {
  font-size:18px;
  margin-bottom:5px;
}

.promo-overlay p {
  font-size:17px;
}

/* CONTACT FORM */
.promo-contact {
  background:white;
  padding:20px;
  font-size:17px;   /* 🔥 sets everything */
}

/* TITLE */
.promo-contact h4 {
  margin-bottom:10px;
  color:#0b4f4f;
  font-size:17px;
}

/* INPUTS */
.promo-contact input {
  width:100%;
  padding:12px;
  margin-bottom:10px;
  border:1px solid #d0eeee;
  border-radius:6px;
  font-size:17px;
}

/* BUTTON */
.promo-contact button {
  width:100%;
  padding:14px;
  background:#12a3a3;
  color:white;
  border:none;
  border-radius:6px;
  font-weight:600;
  font-size:17px;
  cursor:pointer;
}

.promo-contact button:hover {
  background:#0b7d7d;
}

/* LABELS */
.filter-box label {
  font-size:17px;   /* was ~12–13 */
  font-weight:600;
}

/* INPUTS */
.filter-box input,
.filter-box select {
  font-size:17px;
  padding:12px;   /* bigger touch area */
}

/* SECTION TITLES */
.filter-section h4 {
  font-size:17px;
}

/* CHECKBOX LABELS */
.filter-section label {
  font-size:17px;
}

/* BUTTON */
.search-btn {
  font-size:17px;
  padding:16px;
}

/* ========================================= */
/* MINI PROPERTY CARDS (FIXED SYSTEM) */
/* ========================================= */

.mini-card {
  display:block;
  text-decoration:none;
  margin-bottom:20px;
}

.mini-card-img {
  height:200px;
  border-radius:12px;
  background-size:cover;
  background-position:center;
  position:relative;
  overflow:hidden;
  transition:0.3s ease;
}

/* DARK OVERLAY */
.mini-card-overlay {
  position:absolute;
  bottom:0;
  width:100%;
  padding:15px;
  color:white;
  background:linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.2));
}

/* TITLE */
.mini-card-overlay h3 {
  margin:0;
  font-size:18px;
  font-weight:600;
}

/* SUBTEXT */
.mini-card-overlay p {
  margin:5px 0 8px;
  font-size:14px;
}

/* FEATURES */
.mini-features {
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}

.mini-features span {
  font-size:12px;
  background:rgba(255,255,255,0.2);
  padding:4px 8px;
  border-radius:4px;
}

/* HOVER */
.mini-card:hover .mini-card-img {
  transform:scale(1.03);
}

.contact-premium {
  margin-top:30px;   /* 🔥 breathing space */
}


/* ========================================= */
/* PREMIUM CONTACT PANEL – UPGRADE */
/* ========================================= */

/* PANEL HEIGHT + PRESENCE */
.contact-premium {
  margin-top:30px;
  border-radius:14px;
  overflow:hidden;
  background:white;
  box-shadow:0 12px 30px rgba(0,0,0,0.12);
}

/* IMAGE TALLER */
.contact-img {
  height:220px;   /* 🔥 was ~180 */
  background-size:cover;
  background-position:center;
  position:relative;
}

/* TEAL HEADING BAR */
.contact-overlay {
  position:absolute;
  inset:0;
  background:linear-gradient(
    to bottom,
    rgba(18,163,163,0.15),
    rgba(18,163,163,0.85)
  );
  color:white;
  padding:22px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
}

.contact-overlay h3 {
  font-size:20px;      /* 🔥 bigger */
  font-weight:700;
  margin-bottom:6px;
}

.contact-overlay p {
  font-size:15px;
  opacity:0.95;
}

/* FORM AREA BIGGER */
.contact-form {
  padding:22px;
}

/* INPUTS BIGGER + PREMIUM */
.contact-form input {
  width:100%;
  padding:14px;        /* 🔥 bigger */
  margin-bottom:12px;
  border:1px solid #cfecec;
  border-radius:8px;
  font-size:15px;
}

/* BUTTON STRONGER */
.contact-form button {
  width:100%;
  padding:16px;        /* 🔥 bigger */
  background:#12a3a3;
  color:white;
  border:none;
  border-radius:8px;
  font-weight:700;
  font-size:16px;
  cursor:pointer;
  transition:0.2s;
}

.contact-form button:hover {
  background:#0b7d7d;
}

.filters {
  width:360px;
}

/* DATE + GUEST STYLING */
.contact-form select {
  width:100%;
  padding:14px;
  margin-bottom:12px;
  border:1px solid #cfecec;
  border-radius:8px;
  font-size:15px;
  background:white;
  appearance:none;
}

/* DATE INPUTS */
.contact-form input[type="text"] {
  cursor:pointer;
}

/* ============================== */
/* DATE INPUT FIX */
/* ============================== */

/* INPUT TEXT VISIBILITY */
.contact-form input {
  color:#0f2f2f;          /* 🔥 force readable text */
  background:white;
}

/* PLACEHOLDER */
.contact-form input::placeholder {
  color:#8aa5a5;
  opacity:1;
}

/* WHEN VALUE IS SET */
.contact-form input:focus,
.contact-form input:not(:placeholder-shown) {
  border:2px solid #12a3a3;
  background:#ffffff;
}

/* FIX FLATPICKR TEXT */
.flatpickr-input {
  color:#0f2f2f !important;
  font-weight:500;
}

/* ============================== */
/* FLATPICKR THEME MATCH */
/* ============================== */

.flatpickr-calendar {
  border-radius:12px;
  box-shadow:0 15px 35px rgba(0,0,0,0.15);
  border:none;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
  background:#12a3a3;
  border-color:#12a3a3;
}

.flatpickr-day:hover {
  background:#0b7d7d;
  color:white;
}

.flatpickr-current-month {
  color:#0b4f4f;
  font-weight:600;
}


/* HERO */
.property-hero {
  display:flex;
  gap:20px;
  padding:25px;
}

/* ================= ALWAYS VISIBLE SCROLLBAR ================= */

.thumbs {
  width:400px;
  display:flex;
  flex-direction:column;
  gap:14px;
  max-height:520px;

  overflow-y:scroll;        /* 🔥 force scrollbar ALWAYS */
  padding-right:10px;

  scrollbar-width:thin;     /* Firefox */
  scrollbar-color:#12a3a3 #e6f7f7;
}

/* CHROME / EDGE / SAFARI */
.thumbs::-webkit-scrollbar {
  width:8px;                /* 🔥 visible width */
}

.thumbs::-webkit-scrollbar-track {
  background:#e6f7f7;       /* light background */
  border-radius:10px;
}

.thumbs::-webkit-scrollbar-thumb {
  background:#12a3a3;       /* brand colour */
  border-radius:10px;
}

.thumbs::-webkit-scrollbar-thumb:hover {
  background:#0b7d7d;       /* darker on hover */
}

.main-image {
  position:relative;
  flex:1;
}

.main-image {
  position:relative;
  height:520px;
  overflow:hidden;
  border-radius:14px;
}

/* BACKGROUND IMAGE (PANORAMIC FILL) */
.main-image img {
  position:absolute;

  top:50%;
  left:50%;

  width:100%;
  height:100%;

  object-fit:cover;

  transform:translate(-50%, -50%) scale(1.1); /* 🔥 slight zoom = panoramic feel */
}

.main-image img {
  object-position:center;
}

.image-fade {
  position:absolute;
  inset:0;
  background:linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.6));
  border-radius:14px;
}

.image-overlay {
  position:absolute;
  bottom:30px;
  left:30px;
  color:white;
}

.image-overlay h1 {
  font-size:40px;
}

.image-overlay .highlight {
  color:#12a3a3;
  font-weight:bold;
}

/* CALENDAR */
.calendar-wrap {
  display:flex;
  align-items:center;
  gap:10px;
  padding:20px;
}

#calendar {
  display:flex;
  gap:10px;
  overflow-x:auto;
}

#calendar button {
  min-width:40px;
  padding:10px;
  border:none;
  border-radius:6px;
  cursor:pointer;
  background:#eee;
}

/* LAYOUT */
.property-layout {
  display:flex;
  gap:40px;
  padding:30px;
}

.property-details {
  flex:2;
}

.booking-box {
  flex:1;
  background:white;
  padding:20px;
  border-radius:12px;
  box-shadow:0 5px 15px rgba(0,0,0,0.1);
  position:sticky;
  top:100px;
}

.reserve-btn {
  width:100%;
  padding:12px;
  background:#ff385c;
  color:white;
  border:none;
  border-radius:8px;
  margin-top:15px;
  cursor:pointer;
}

/* ================= CALENDAR ================= */

.calendar-section {
  max-width:1300px;
  margin:40px auto;
  background:white;
  padding:25px 30px;
  border-radius:14px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

/* HEADER */
.calendar-header {
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:15px;
}

.calendar-header h2 {
  font-size:22px;
  font-weight:600;
}

.calendar-header button {
  background:#12a3a3;
  color:white;
  border:none;
  padding:8px 14px;
  border-radius:6px;
  cursor:pointer;
}

/* WEEKDAYS */
.calendar-weekdays {
  display:grid;
  grid-template-columns:repeat(7,1fr);
  text-align:center;
  margin-bottom:10px;
  font-weight:600;
  color:#4f7a7a;
}

/* GRID */
#calendarGrid {
  display:grid;
  grid-template-columns:repeat(7,1fr);
  gap:8px;
}

/* DAY */
.day {
  padding:14px 0;
  text-align:center;
  border-radius:8px;
  cursor:pointer;
  transition:0.2s;
}

.day:hover {
  background:#e6f7f7;
}

/* PAST */
.day.disabled {
  color:#ccc;
  pointer-events:none;
}

/* SELECTED */
.day.selected {
  background:#12a3a3;
  color:white;
}

/* RANGE */
.day.in-range {
  background:#bdeeee;
}

/* SUMMARY */
.calendar-summary {
  display:flex;
  justify-content:space-between;
  margin-top:20px;
  padding-top:15px;
  border-top:1px solid #eee;
  font-size:15px;
}

/* ================= CALENDAR FULL WIDTH (FINAL CLEAN) ================= */

.calendar-section {
  position:relative;
  width:100vw;

  /* 🔥 true breakout from container */
  left:50%;
  right:50%;
  margin-left:-50vw;
  margin-right:-50vw;

  padding:40px 80px;
  background:white;
}

/* ================= HEADER ================= */

/* ================= CALENDAR CLEAN FIX ================= */

.calendar-section {
  padding:40px 20px;
  background:white;
}

/* HEADER */
.calendar-header {
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  margin-bottom:30px;
}

.calendar-header h2 {
  font-size:22px;
  font-weight:600;
}

/* ARROWS (no overlap anymore) */
.cal-nav {
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:#12a3a3;
  color:white;
  border:none;
  width:40px;
  height:40px;
  border-radius:50%;
  cursor:pointer;
  z-index:2;
}

.cal-nav.prev {
  left:0;
}

.cal-nav.next {
  right:0;
}

/* MONTH ROW */
.calendar-row {
  display:flex;
  gap:5px;
  width:100%;
}
.calendar-month {
  flex:0 0 calc(100% / 6);
  box-sizing:border-box;   /* 🔥 ensures exact fit */
}

/* 🔥 FORCE EXACTLY 6 MONTHS */
.calendar-month {
  flex:0 0 calc(100% / 6);
}

/* MONTH TITLE */
.month-title {
  text-align:center;
  font-weight:600;
  font-size:14px;
  margin-bottom:10px;
}

/* GRID */
.month-grid {
  display:grid;
  grid-template-columns:repeat(7, 1fr);
  gap:4px;
}

/* DAYS */
.day {
  padding:6px;
  text-align:center;
  border-radius:6px;
  cursor:pointer;
  font-size:12px;
}

.day:hover {
  background:#e9fbfb;
}

.day.selected {
  background:#12a3a3;
  color:white;
  font-weight:600;
}

.day.in-range {
  background:#dff7f7;
}

.day.disabled {
  opacity:0.25;
  pointer-events:none;
}

.day.today {
  border:1px solid #12a3a3;
}

/* SUMMARY */
.calendar-summary {
  display:flex;
  justify-content:space-between;
  margin-top:25px;
  padding-top:15px;
  border-top:1px solid #eee;
  font-size:14px;
}



/* 🔥 FORCE FULL WIDTH BREAKOUT (OVERRIDES EVERYTHING) */
.property-layout + .calendar-section,
.property-hero + .calendar-section,
.calendar-section {
  position:relative !important;

  width:100vw !important;

  left:50% !important;
  transform:translateX(-50%) !important;

  margin:0 !important;
  padding:40px 80px !important;

  max-width:none !important;
}

.calendar-month {
  flex:0 0 calc(100% / 6);

  border:1px solid #12a3a3;     /* 🔥 thin teal line */
  border-radius:10px;
  padding:10px 8px;

  background:white;

  transition:0.2s;
}

.calendar-month:hover {
  box-shadow:0 4px 12px rgba(18,163,163,0.15);
}

@media (max-width: 900px) {

  .container {
    max-width:100%;
    padding:0 10px;   /* 🔥 reduce side padding */
  }

  .search-layout {
    flex-direction:column;
    padding:10px;     /* 🔥 remove big side padding */
  }

  .filters {
    width:100%;
    max-width:100%;
    position:relative;
  }

  .results {
    width:100%;
  }

}

/* ================= PROPERTY MOBILE FIX ================= */
@media (max-width: 900px) {

  .property-hero {
    flex-direction:column;
  }

  .thumbs {
    width:100%;
    flex-direction:row;
    overflow-x:auto;
  }

  .main-image {
    height:300px;
  }

  .property-layout {
    display:block;
    padding:15px;
  }

  .booking-box {
    position:relative;
    top:auto;
    margin-top:20px;
  }

}

/* ================= MOBILE CALENDAR FIX ================= */
@media (max-width: 900px) {

  /* HEADER CENTER */
  .calendar-header {
    justify-content:center;
    text-align:center;
  }

  .calendar-header h2 {
    font-size:18px;
  }

  /* ARROWS POSITION */
  .cal-nav.prev {
    left:10px;
  }

  .cal-nav.next {
    right:10px;
  }

  /* 🔥 SHOW ONLY 1 MONTH */
  .calendar-row {
    display:flex;
    overflow:hidden;
  }

  .calendar-month {
    flex:0 0 100%;   /* 🔥 full width */
    max-width:100%;
  }

  /* CLEAN SPACING */
  .calendar-month {
    padding:10px;
  }

  /* DAYS BIGGER FOR TOUCH */
  .day {
    padding:10px 0;
    font-size:14px;
  }

  /* SUMMARY STACK */
  .calendar-summary {
    flex-direction:column;
    gap:10px;
    text-align:center;
    align-items:center;
  }

}

/* ================= MOBILE NAV CLEAN ROW ================= */
@media (max-width: 900px) {

  .header-wrapper {
    flex-direction:column;
    height:auto;
  }

  .logo-block {
    width:100%;
    justify-content:center;
    padding:10px 0;
  }

  .header-right {
    width:100%;
  }

  .top-utility {
    height:auto;
  }

  .util-inner {
    display:flex;
    flex-direction:column;
    align-items:center;
    padding:10px 0;
  }

  /* 🔥 FORCE SINGLE ROW */
  .nav-left,
  .nav-right {
    display:flex;
    flex-direction:row;
    justify-content:center;
    align-items:center;
    flex-wrap:nowrap;
    gap:1px;              /* 🔥 almost no gap */
    width:100%;
  }

  .nav-left a,
  .nav-right a {
    margin:0;
    padding:4px 2px;      /* 🔥 tighter */
    font-size:14px;       /* 🔥 smaller so it fits */
    white-space:nowrap;
  }

  /* 🔥 remove extra spacing */
  .nav-right {
    margin:0;
  }

}

/* GOLD LINE UNDER NAV */
.nav-left {
  border-bottom:4px solid #d4af37; /* 🔥 gold */
  padding-bottom:6px;
}

/* GOLD LINE UNDER PROMO BAR */
.promo-bar {
  border-bottom:4px solid #d4af37;
  padding-bottom:0px;
}

/* ================= SUCCESS LAYOUT FIX ================= */

.success-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;  /* 🔥 horizontal center */
  align-items: center;      /* 🔥 vertical center */
  min-height: 60vh;
}

/* CARD */
.success-card {
  background: #ffffff;
  padding: 40px 50px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  max-width: 500px;
  width: 100%;
  text-align: center;
}

/* ICON */
.success-icon {
  font-size: 48px;
  color: #1e7e34;
  margin-bottom: 10px;
}

/* TITLE */
.success-card h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

/* SUBTEXT */
.success-sub {
  font-size: 16px;
  color: #666;
  margin-bottom: 25px;
}

/* DETAILS (🔥 THIS IS YOUR MAIN REQUEST) */
.success-details {
  text-align: left;
  font-size: 18px;   /* 🔥 50% bigger */
  line-height: 1.7;
  margin-bottom: 25px;
}

.success-details strong {
  display: inline-block;
  min-width: 110px;
}

/* MESSAGE BOX */
.success-details .msg {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #eee;
}

/* BUTTON */
.success-card .btn {
  margin-top: 10px;
  padding: 12px 20px;
  font-size: 16px;
}

/* ================= SUCCESS PAGE FIX ================= */

/* Kill the side-by-side layout when showing success */
.contact-wrapper {
  justify-content: center;
}

/* Force full width wrapper so centering works properly */
.success-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Make sure card is perfectly centred */
.success-card {
  margin: 0 auto;
}

/* ================= CONTACT HEADER CENTER ================= */

.contact-page .container {
  text-align: center;   /* 🔥 centres heading + subtitle */
}

/* tighten spacing so it aligns visually with card */
.contact-page h1 {
  margin-bottom: 10px;
}

.contact-page .lead {
  max-width: 600px;
  margin: 0 auto 20px auto;  /* 🔥 centre + constrain width */
}

