/* ------------------------------------------------------------
   Cayman Club Modern - Complete Standalone CSS
   - Centered Navigation with 20px spacing
   - Welcome Section: Text ABOVE the image
   - Scroll Zoom Effect (Starts 20% -> 100%)
------------------------------------------------------------ */

:root{
  --cg-bg: transparent;
  --cg-surface: rgba(255,255,255,0.86);  --cg-surface-solid: #ffffff;
  --cg-text: #0f2530;
  --cg-muted: #3b5562;
  --cg-accent: #0f738a;
  --cg-accent-2: #1da1f2;
  --cg-border: rgba(15, 115, 138, 0.18);
  --cg-shadow: 0 14px 35px rgba(0,0,0,0.12);
  --cg-radius: 16px;
  --cg-radius-sm: 12px;
  --cg-title: #0f738a;        /* Brand green */
  --cg-subtitle: #036f9d;     /* Dark Blue */
  --cg-body: #4a4a4a;         /* Luxury neutral gray */
}



/* ------------------------------------------------------------
   RESET & BASE STYLES
------------------------------------------------------------ */

* {
  box-sizing: border-box;
}

html, body { 
  height: 100%;
  margin: 0;
  padding: 0;
  background: transparent !important;
}

body {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  line-height: 1.4;
  color: var(--cg-text);
  background: transparent !important;
  -webkit-font-smoothing: antialiased;  -moz-osx-font-smoothing: grayscale;
}

p, td {
  line-height: 150%;
}

a {
  color: var(--cg-accent);
  text-decoration: none;
}

a:hover {
  color: #095b6e;
}

a img {
  border: 0;
}

.clear {
  clear: both;
}

/* ------------------------------------------------------------
   VIDEO HERO SECTION
------------------------------------------------------------ */

.cg-video-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: transparent;
  margin-bottom: 0;
}

.cg-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* ------------------------------------------------------------
   HEADER + NAV OVERLAY (positioned over video)
------------------------------------------------------------ */

.cg-header-nav-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.40);
  backdrop-filter: blur(8px);
  height: auto;
}

/* HEADER */
.header {
  padding: 14px 24px 8px 24px;
  height: auto;
  display: grid;
  grid-template-columns: 140px 1fr 200px;
  column-gap: 24px;
  align-items: center;
  color: var(--cg-accent);
  max-width: 1400px;
  margin: 0 auto;
  background: transparent;
  overflow: hidden;
}

.header a {
  color: var(--cg-accent);
}

.header a:hover {
  color: #095b6e;
}

/* Logo (left) */
.logo-crest {
  justify-self: start;
  align-self: center;
}

.logo-crest > img {
  width: 110px;
  height: auto;
  display: block;
  vertical-align: top;
}

/* drop-shadow must live on .logo-crest, not the img —
   backdrop-filter on the parent creates a stacking context
   that swallows child filter: rules. will-change: filter
   forces its own compositing layer, escaping the bug. */
.logo-crest {
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.30));
  will-change: filter;
}

/* Center branding */
.headimgs {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 0;
  grid-column: 2;
}.logo-text {
  max-width: 475px;
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}

.headtxt {
  margin: 0;
  text-align: center;
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
  font-style: italic;
  font-size: 26px;
  line-height: 1.02;
  letter-spacing: 0.2px;
  color: var(--cg-accent);}

/* Weather + Phone (right) */
.headtopright {
  justify-self: end;
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  padding: 0;  margin: 0;
  text-align: right;
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
  font-size: 18px;  line-height: 17px;
  color: var(--cg-accent);
  font-style: italic;
}

.weathert {
  margin: 0;
  border-collapse: collapse;
  font-size: 12.5px;
  line-height: 1.30;
  border: 0;
}

.weathert td {
  padding: 0 6px 0 0;
  vertical-align: top;
  text-align: left;
  font-size: 12px;
  font-style: normal;
  font-family: verdana, arial, sans-serif;
}

.weathert div {
  font-weight: 700;
  margin: 0;
  line-height: 1.30;
}

.weathert span {
  display: inline-block;
  margin-top: 2px;
  font-size: 12px;
  line-height: 1.30;
}

.cg-phone,
.style12aqua {
  margin: 0;
  font-size: 14.5px;
  font-weight: 400;
  text-align: right;
  line-height: 1.2;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  color: var(--cg-accent);
  font-style: normal;
}

/* Responsive header */@media (max-width: 980px) {
  .header {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    row-gap: 12px;
    padding: 14px 18px;
  }
  
  .logo-crest {
    grid-column: 1;
    grid-row: 1;
    justify-self: center;
  }
  
  .headimgs {
    grid-column: 1;
    grid-row: 2;
  }
  
  .headtopright {
    grid-column: 1;
    grid-row: 3;
    justify-self: center;
    align-items: center;
    text-align: center;
  }  
  .cg-phone {
    text-align: center;
  }
  
  .headtopright table {
    margin: 0 auto;
  }
}

/* ------------------------------------------------------------
   NAVIGATION
------------------------------------------------------------ */

.rowcont {
  clear: both;
  margin-top: 0;
}

.nbarcont {
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  height: 36px;
  line-height: 36px;
  background: linear-gradient(
    180deg,
    #26a8c1 0%,
    #219ebb 55%,
    #1b86a0 78%,
    #166a80 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.30),
    inset 0 -10px 14px rgba(0,0,0,0.22);
  border-top: 1px solid rgba(255,255,255,0.18);
  border-bottom: 1px solid rgba(0,0,0,0.28);
  padding: 2px 0;
  display: block;
}

.nbar,
.nbar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 12px;
}

.nbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center; /* Center links */
  gap: 0;
}

.nbar > li {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  float: none; /* Removed float for centering */
}

.nbar li {
  list-style: none;
}

.nbar li a,
.nbar li li a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  letter-spacing: .2px;
  color: rgba(255,255,255,0.96);
  font-weight: 600;
  font-size: 13px;
  padding: 0 20px; /* Increased padding */
  height: 32px;
  line-height: 32px;
}

.nbar li a:hover,
.nbar li li a:hover {
  color: #ffffff;
  background: rgba(255,255,255,0.12);
  border-radius: 10px;
}

.nbar li ul {
  position: absolute;  left: 0;
  top: calc(100% - 2px);
  min-width: 260px;
  display: none;
  z-index: 60000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 14px 26px rgba(0,0,0,0.22);
  background: linear-gradient(180deg, #26a8c1 0%, #219ebb 55%, #1b86a0 78%, #166a80 100%);
  border: 1px solid rgba(255,255,255,0.25);
  margin-top: 0;
  padding: 6px 0;
  min-width: 9em;
}

.nbar li:hover ul,
.nbar li.hover ul,
.nbar li ul:hover {
  display: block;
  visibility: visible;
  opacity: 1;
}

.nbar > li > a {
  position: relative;
}

.nbar > li > a::after {  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 14px;
}

.nbar li ul li a {
  padding: 9px 12px;
  white-space: nowrap;
  color: rgba(255,255,255,0.98);
  border-radius: 0;
  background: transparent;
  height: auto;  justify-content: flex-start;
}

.nbar li ul li a:hover {
  background: rgba(255,255,255,0.14);
}.nbar li ul li + li a {
  border-top: 1px solid rgba(255,255,255,0.70);
}

.nbar li:hover ul,
.nbar li.hover ul {
  z-index: 100000;
}

.nbarcont {
  position: relative;
  z-index: 50000;
}

.nbar {
  position: relative;
  z-index: 50001;
}

.nbar > li {
  position: relative;
  z-index: 50002;
}

@media (max-width: 980px) {
  .nbarcont {
    height: auto;
    overflow: hidden;
  }
  
  .nbar {
    display: block;
    font-size: 11px;
  }
  
  .nbar > li {
    width: 100%;
  }
  
  .nbar li ul {
    position: static;
    display: block;
    min-width: 0;
    box-shadow: none;
    border-radius: 0;
    border: 0;
    background: transparent;
    padding: 0;    margin: 0;
  }
  
  .nbar li ul li a {
    padding-left: 22px;
    white-space: normal;
    color: rgba(255,255,255,0.92);
  }
  
  .nbar li ul li a:hover {
    background: rgba(255,255,255,0.10);
  }
  
  .nbar li a,
  .nbar li li a {
    justify-content: flex-start;
    height: 36px;
    line-height: 36px;
    font-size: 12px;
  }
}

/* ------------------------------------------------------------
   FORM SECTION
------------------------------------------------------------ */

.cg-form-section {
  width: 100%;
  background: #eef7fb;
  padding: 0 0 32px 0;
  min-height: 200px;
}

.cg-form-container {
  width: 100%;
  margin: 0 auto;
}

.cg-hero-formcard {
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--cg-radius);
  padding: 20px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
  backdrop-filter: blur(10px);
}

.forminc {
  width: 100%;
}

.checkform {
  height: auto;
  padding: 16px;
  border-radius: 14px;
  background-image: none;
  background: linear-gradient(180deg, #f5fbff 0%, #e8f7ff 100%);
  border: 1px solid rgba(52,169,202,0.35);  box-shadow: inset 0 1px 0 rgba(255,255,255,0.65);
  color: #034ea2;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 40px;
  text-align: center;
}

.checkform30 {
  color: #034ea2;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 30px;
  text-align: center;
}

.confform {
  padding: 16px;
  border-radius: 14px;
  background: linear-gradient(180deg, #f5fbff 0%, #e8f7ff 100%);
  border: 1px solid rgba(52,169,202,0.35);  font-size: 14px;
  line-height: 1.5em;
}

.confform span {
  font-weight: bold;
}

.formtl {
  font-size: 18px;
  line-height: 1.25;
  margin-bottom: 10px;
  font-weight: 700;
  color: var(--cg-accent);
  text-align: center;
}

.minform,
.minformstart {
  border-collapse: separate;
  border-spacing: 8px;
  width: 100%;
}

.minform td {
  vertical-align: bottom;
  font-size: 11px;
  text-align: center;
}

.mti {  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--cg-text);
}

.minform input,
.minform input[type="text"],
.minform select,
.binput {
  border-radius: 10px;
  border: 1px solid rgba(15,115,138,0.20);
  padding: 8px 10px;  outline: none;
  font-size: 14px;
  width: 100%;
  box-sizing: border-box;
  background: white;
}

.minform input:focus,
.minform input[type="text"]:focus,
.minform select:focus,.binput:focus {
  border-color: rgba(15,115,138,0.5);
  box-shadow: 0 0 0 4px rgba(15,115,138,0.10);
}

.minsubmit,
input[type="submit"] {
  border-radius: 10px;
  padding: 10px 20px;
  font-weight: 700;
  cursor: pointer;
  background: var(--cg-accent);
  color: white;
  border: none;
  font-size: 14px;
  transition: all 0.2s ease;
}

.minsubmit:hover,
input[type="submit"]:hover {
  filter: brightness(0.92);
  transform: translateY(-1px);
}

@media (max-width: 980px) {  .checkform {
    height: auto;
    overflow: hidden;
  }
  
  .formtl {
    font-size: 13px;
    font-weight: bold;  }
  
  .minform {
    display: block;
  }
  
  .minform > tbody,
  .minform > tbody > tr {
    display: block;
    overflow: hidden;
  }
  
  .minform > tbody > tr > td {
    display: block;
    float: left;
    width: auto;
    text-align: center;
    position: relative;
  }
}

@media (max-width: 500px) {
  .minform > tbody > tr > td {
    float: none;
  }
}


/* ==========================================================
   INDEX FORM TYPOGRAPHY OVERRIDES
   - Title: Raleway, larger, left aligned
   - Field titles: Manrope, subtitle blue (#036f9d)
   ========================================================== */

/* 1) "Check availability now for best rates" (and room-specific variant) */
.minformstart .formtl{
  font-family: 'Raleway', sans-serif !important;
  font-size: 32px !important;          /* ~2 sizes larger */
  font-weight: 300 !important;
  color: var(--cg-accent) !important;  /* uses your teal accent */
  text-align: left !important;
  letter-spacing: 0.4px !important;
  margin: 0 0 12px 0 !important;
  line-height: 1.15 !important;
}

/* 2) Field titles (Guests / Name / Email / Phone / Comments etc.) */
.mti{
  font-family: 'Manrope', sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  color: #036f9d !important;           /* SUB title blue */
  letter-spacing: 0.25px !important;
}

/* If those titles are NOT using .mti everywhere and are plain text in td[nowrap],
   this will help them match too (including Arrival/Departure). Remove if unwanted. */
.minform td[nowrap]{
  font-family: 'Manrope', sans-serif;
  color: #036f9d;
  font-weight: 600;
  letter-spacing: 0.25px;
}


/* --------------------------------
   MAIN CONTENT & WELCOME SECTION 
----------------------------------- */

/* Text + Image side-by-side block */
.cg-text-image {
  display: grid;

  /* Give the image column enough room so it doesn't collapse to ~300px */
  grid-template-columns: minmax(0, 1fr) 600px;

  gap: 40px;
  align-items: center;

  /* Helps prevent any float/JS widget below from sliding up */
  position: relative;
}

/* Mid-size screens: step image column down before stacking */
@media (max-width: 1200px) {
  .cg-text-image {
    grid-template-columns: minmax(0, 1fr) 520px;
    gap: 28px;
  }
}

/* Left text column */
.cg-text-col {
  text-align: center;
}

/* Right image column */
.cg-image-col {
  /* More predictable than text-align for image sizing/alignment */
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* Feature image — cap size on desktop */
.cg-feature-img {
  width: 600px;        /* target size on desktop */
  max-width: 100%;     /* still responsive if column is narrower */
  height: auto;
  border-radius: 8px;
  display: block;
}

/* Responsive: stack on mobile */
@media (max-width: 900px) {
  .cg-text-image {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .cg-image-col {
    justify-content: center;
  }

  .cg-feature-img {
    width: 100%;
    max-width: 600px;  /* still keeps it from becoming huge on tablets */
    margin: 0 auto;
  }
}

.cg-main {
  width: 100%;
  background: #eef7fb;
  padding: 32px 24px;
}

.cg-main-container {
  max-width: 1400px;
  margin: 0 auto;
}

.cg-card {
  background: rgba(255,255,255,0.86);
  border: 1px solid var(--cg-border);
  border-radius: var(--cg-radius);
  padding: 24px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.10);

  /* Contain any floats or external widget layout so the next block doesn't jump up */
  position: relative;
}

/* Clearfix safety for any legacy float behavior (TripAdvisor widgets can be weird) */
.cg-content-stack::after,
.cg-card::after,
.cg-text-image::after {
  content: "";
  display: table;
  clear: both;
}

/* Welcome Stack */
.cg-welcome-container {
  width: 100%;
  margin-bottom: 24px;
  text-align: center;
  padding-top: 1.25rem;

}

/* Zoom Wrapper Logic */
.cg-zoom-wrap {
  width: 100%;
  max-width: 1920px;
  margin: 40px auto;
  overflow: hidden;
  position: relative;
  border-radius: var(--cg-radius);
  box-shadow: var(--cg-shadow);
  background: #f0f0f0;
}

.cg-welcome-img {
  width: 100%;
  height: auto;
  display: block;

  /* Prevent any alt/fallback text from ever being laid out as text */
  font-size: 0;
  line-height: 0;
  color: transparent;

  /* If you DON'T want it tiny without JS, use scale(1) here. */
  transform: scale(1);
  transform-origin: center center;

  transition: transform 0.1s ease-out;
  will-change: transform;
}

.cg-content-stack { width: 100%; }
.cg-center { text-align: center; }

/* Section headings / lede */
.cg-section-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--cg-accent);
}

.cg-prose p,
.cg-lede {
  margin: 16px 0;
  line-height: 2;
}

.cg-lede {
  font-size: 18px;
  color: var(--cg-accent);
}

/* ============================================================
   DOUBLE-SPACED LUXURY TEXT
------------------------------------------------------------ */

.cg-welcome-text-block,
.cg-welcome-text-block p,
.cg-prose .cg-double-space,
.cg-double-space {
  line-height: 2 !important;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.2px;
  color: var(--cg-body) !important;
}

.cg-welcome-text-block p,
.cg-prose p.cg-double-space,
.cg-double-space p {
  margin: 0 0 28px 0;
}

.cg-prose .cg-double-space,
.cg-double-space {
  margin: 0 0 28px 0;
}

.cg-body-text {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 300;
  margin: 8px 0 0 0;
  color: var(--cg-body);
}

/* ============================================================
   WELCOME TYPOGRAPHY
------------------------------------------------------------ */

/* TITLE — Raleway */
.cg-welcome-title {
  font-family: 'Raleway', sans-serif !important;
  font-size: 46px;
  line-height: 1.15;
  margin: 0 0 24px 0;
  font-weight: 300;
  letter-spacing: 0.6px;
  color: var(--cg-title) !important;
}

/* Two-line welcome title tightening */
.cg-two-line-title {
  margin: 0 0 12px 0 !important;
  line-height: 1.05;
}

.cg-two-line-title span {
  display: inline-block;
  margin-top: 6px;
}

/* SUBTITLE — Manrope */
.cg-welcome-sub {
  font-family: 'Manrope', sans-serif !important;
  font-size: 22px;
  line-height: 1.5;
  margin: 0 0 10px 0;  /* Default - can be overridden by page-specific styles */ /* slightly tighter since body text follows */
  font-weight: 400;
  letter-spacing: 0.2px;
  color: var(--cg-subtitle) !important;
}

/* TEXT BLOCK WRAPPER */
.cg-welcome-text-block {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

/* PARAGRAPH — Manrope */
.cg-welcome-text-block p {
  font-family: 'Manrope', sans-serif !important;
  font-size: 18px;
  line-height: 2 !important;
  margin: 0;
  text-align: justify;
  font-weight: 300;
  letter-spacing: 0.2px;
  color: var(--cg-body) !important;
}

/* Mobile refinement */
@media (max-width: 980px) {
  .cg-main { padding: 20px 16px; }

  .cg-welcome-title { font-size: 34px; letter-spacing: 0.4px; }
  .cg-welcome-sub { font-size: 15px; }

  .cg-welcome-text-block,
  .cg-welcome-text-block p,
  .cg-prose .cg-double-space,
  .cg-double-space {
    font-size: 16px;
    line-height: 1.85 !important;
  }

  .cg-body-text { font-size: 16px; }
}

/* Final hard guard (keep this ONCE) */
h1.cg-welcome-title,
.cg-welcome-container .cg-welcome-title {
  font-family: 'Raleway', sans-serif !important;
  font-style: normal !important;
  font-weight: 300 !important;
  letter-spacing: 0.6px !important;
  color: var(--cg-title) !important;
}
/* ============================================================
   FOOTER — MODERNIZED (lighter top gradient + improved spacing)
------------------------------------------------------------ */

.footer {
  width: 100%;
  height: auto;
  padding: 32px 16px;  /* more vertical breathing room */

  /* Subtle Cayman-style gradient (lighter at top) */
  background: linear-gradient(
    180deg,
    rgba(24,142,165,0.95) 0%,   /* lighter blue top */
    rgba(15,115,138,0.92) 35%,
    rgba(9,85,104,0.92) 100%
  );

  /* Default footer text */
  color: #a6fcff;

  /* Typography */
  font-family: 'Manrope', sans-serif;
  font-size: 14.5px;     /* slightly larger */
  line-height: 1.75;     /* modern, airy */
  letter-spacing: 0.25px;
  font-weight: 400;
}

/* Centered footer content + prevent layout bleed */
.footer > div[align="center"] {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;

  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

/* Prevent any container/card styles from leaking in */
.footer * {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

/* Footer links (clean + modern) */
.footer a,
.footer .footlinks a {
  color: rgba(255,255,255,0.96) !important;
  text-decoration: none;
  font-weight: 500;
}

.footer a:hover,
.footer .footlinks a:hover {
  color: #b8fee2 !important;
  text-decoration: underline;
}

/* Footer link row */
.footlinks,
.footlinks a {
  font-size: 13.5px;
}

/* Secondary footer lines */
.footlines {
  font-size: 12.5px;
  opacity: 0.95;
}

/* Images in footer */
.footer img {
  max-width: 100%;
  height: auto;
}
/* ==========================================================
   FULL-BLEED FOOTER ON INDEX
   ========================================================== */
.cg-footer-wrap[data-bleed="1"] {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}

/* Spread footer content wider */
.cg-footer-wrap[data-bleed="1"] .cg-footer-card {
  max-width: 1430px !important;
  margin: 0 auto !important;
}

/* Right-align contact column on index */
.cg-footer-wrap[data-bleed="1"] .cg-footer-col-contact {
  text-align: right !important;
}

.cg-footer-wrap[data-bleed="1"] .cg-footer-col-contact ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
/* FORCE: move "Choose from the very best of the best" down 10px */
.cg-welcome-container *:contains("Choose from the very best of the best") {
  display: block;
  margin-top: 10px !important;
}

/* ============================================================
   INDEX PAGE SPECIFIC OVERRIDES (moved from inline styles)
------------------------------------------------------------ */

/* Zoom images specific initial scale */
#scrollZoomImg.cg-welcome-img,
#scrollZoomImg2.cg-welcome-img {
  width: 100% !important;
  height: auto !important;
  display: block !important;

  /* Keep the hard guard here too (safe with !important) */
  font-size: 0 !important;
  line-height: 0 !important;
  color: transparent !important;

  transform: scale(0.2) !important;
  transform-origin: center center !important;
  transition: transform 0.05s ease-out !important;
  will-change: transform !important;
  -webkit-transform: scale(0.2) !important;
  -ms-transform: scale(0.2) !important;
}

/* Zoom wrapper - index specific */
.cg-zoom-wrap {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto !important;
  overflow: hidden !important;
  position: relative;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
}

/* Wipe wrapper */
.cg-wipe-wrap {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto !important;
  position: relative;
  border-radius: 0;
  padding: 0 !important;

  /* Prevent any fallback text from leaking outside during reveal */
  overflow: hidden;
}

/* Index page spacing adjustments */
.cg-form-section {
  padding: 0 0 16px 0 !important;
}

.cg-main {
  padding: 16px 24px !important;
}

.cg-welcome-title {
  margin-bottom: 8px !important;
}

.cg-welcome-sub {
  margin-bottom: 8px !important;
}

.cg-welcome-container {
  margin-bottom: 16px !important;
}

.cg-welcome-text-block {
  max-width: 900px;
  margin: 16px auto;
  padding: 0 20px;
  text-align: left;
  line-height: 2;
  font-size: 16px;
  color: #0f2530;
}

.cg-welcome-text-block p {
  margin: 0;
}

/* TripAdvisor section styles (moved from inline) */
.cg-ta-shell {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 32px;
  margin-bottom: 0;
  align-items: start;
}

.cg-ta-heading {
  text-align: center;
  margin-bottom: 28px;
}

.cg-ta-heading h2 {
  font-family: 'Raleway', sans-serif;
  font-size: 32px;
  font-weight: 300;
  color: #0f738a;
  margin: 0 0 12px 0;
}

.cg-ta-heading p {
  font-family: 'Manrope', sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #036f9d;
  letter-spacing: 0.2px;
  margin: 0;
}

.cg-ta-inner {
  margin: 32px auto 0;
  max-width: 1300px;
}

.cg-ta-left {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.cg-ta-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.cg-ta-logo {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}

.cg-ta-logo img {
  width: 100%;
  height: auto;
}

.cg-ta-brandtitle {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: rgba(0,0,0,0.85);
}

.cg-ta-brandlink {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  color: #0f738a;
  text-decoration: none;
}

.cg-ta-brandlink:hover {
  text-decoration: underline;
}

.cg-ta-widget-frame {
  flex: 1;
  min-height: 75px;
  max-height: 130px;
  overflow: hidden;
}

.cg-ta-trustline {
  margin-top: 4px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  text-align: center;
}

.cg-ta-trustline a {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: #0f738a;
  text-decoration: none;
}

.cg-ta-trustline a:hover {
  text-decoration: underline;
}

.cg-ta-right {
  overflow: hidden;
  border-radius: 14px;
  background: #fafafa;
  padding: 6px 0;
}

.cg-ta-scroller {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.cg-ta-scroller::-webkit-scrollbar {
  display: none;
}

.cg-ta-track {
  display: flex;
  gap: 16px;
  padding: 0 10px;
}

.cg-ta-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  padding: 18px;
  min-width: 300px;
  max-width: 300px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.cg-ta-cardtop {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cg-ta-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0f738a, #26a8c1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
}

.cg-ta-avatar img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cg-ta-initials {
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.cg-ta-name {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.cg-ta-meta {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  color: rgba(0,0,0,0.6);
}

.cg-ta-stars {
  margin: 6px 0;
  font-size: 14px;
  letter-spacing: .8px;
  color: #0f738a;
}

.cg-ta-quote {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(0,0,0,0.78);
  margin: 0 0 8px 0;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cg-ta-guest {
  margin-top: auto;
  padding-top: 6px;
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  color: rgba(0,0,0,0.6);
  border-top: 1px solid rgba(0,0,0,0.08);
}

.cg-ta-hero {
  padding: 32px 24px;
  text-align: center;
  background: #eef7fb;
}

/* Responsive */
@media (max-width: 980px) {
  .cg-ta-shell {
    grid-template-columns: 1fr;
  }
}