:root {
  --navy: #102f43;
  --navy-dark: #071c2d;
  --navy-soft: #173f58;
  --gold: #ffd702;
  --gold-deep: #ffd702;
  --cream: #f4f5f5;
  --cream-2: #eceff0;
  --white: #ffffff;
  --text: #162f43;
  --muted: #687889;
  --line: rgba(16, 47, 67, 0.12);
  --radius: 5px;
  --container: 1180px;
  --shadow-sm: 0 14px 34px rgba(7, 28, 45, 0.06);
  --shadow-md: 0 24px 64px rgba(7, 28, 45, 0.12);
  --shadow-lg: 0 34px 90px rgba(7, 28, 45, 0.20);
  --ease: cubic-bezier(.22,.61,.36,1);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }

.container {
  width: min(var(--container), calc(100% - 64px));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.section-alt {
  background: var(--cream);
}
.hero-slide.is-ismet {
  background-position: center -50%;
}
.section-white {
  background: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: none;
}

.section-title {
  color: var(--navy);
  font-size: clamp(34px, 4.2vw, 54px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.section-text {
  color: var(--muted);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.75;
}

.btn {
  position: relative;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 26px;
  border: 0;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  transition: transform .24s var(--ease), box-shadow .24s var(--ease), background .24s var(--ease), color .24s var(--ease);
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%);
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.42) 48%, transparent 70%);
  pointer-events: none;
}

.btn:hover::before {
  animation: shine .75s var(--ease);
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
  box-shadow: 0 16px 34px rgba(255, 215, 0, 0.23);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #efc900;
  box-shadow: 0 24px 48px rgba(255, 215, 0, 0.30);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 215, 0, 0.52);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroZoom {
  from { transform: scale(1.07); }
  to { transform: scale(1); }
}

@keyframes shine {
  from { transform: translateX(-120%); }
  to { transform: translateX(120%); }
}

.animate-in {
  animation: fadeUp 820ms var(--ease) both;
}

/* HERO */
.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: var(--navy-dark);
  color: var(--white);
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.07);
  transition: opacity 900ms ease, transform 1800ms var(--ease);
}

.hero-slide.active {
  opacity: 1;
  animation: heroZoom 1800ms var(--ease) both;
}

.hero-slide:nth-child(1) { background-image: url("./../img/slider1.jpeg"); }
.hero-slide:nth-child(2) { background-image: url("./../img/slider2.jpeg"); }
.hero-slide:nth-child(3) { background-image: url("./../img/slider3.jpeg"); }

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
  linear-gradient(90deg, rgba(7,28,45,.96) 0%, rgba(7,28,45,.84) 32%, rgba(7,28,45,.48) 68%, rgba(7,28,45,.34) 100%),
  linear-gradient(180deg, rgba(7,28,45,.08), rgba(7,28,45,.72));
}

.floating-header {
  position: absolute;
  z-index: 20;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: min(var(--container), calc(100% - 64px));
  min-height: 76px;
  display: grid;
  grid-template-columns: 230px 1fr 190px;
  align-items: center;
  gap: 22px;
  padding: 0 18px 0 26px;
  background: rgba(255,255,255,.93);
  border: 1px solid rgba(255,255,255,.36);
  border-left: 4px solid var(--gold);
  box-shadow: 0 22px 70px rgba(0,0,0,.20);
  backdrop-filter: blur(18px);
}

.floating-brand {
  color: #000000;
  font-size: 25px;
  font-weight: 900;
  letter-spacing: -0.04em;
  white-space: nowrap;
  line-height: 60px;
}
.floating-brand img{
  float: left;
  margin-right: 10px;
  padding: 5px 10px;
  background: #000;
  border-radius: 5px;
}
.floating-menu {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.floating-menu a {
  position: relative;
  display: inline-flex;
  padding: 10px 0;
}

.floating-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: var(--gold);
  transition: width .24s var(--ease);
}

.floating-menu a.active::after,
.floating-menu a:hover::after { width: 100%; }

.floating-phone {
  min-height: 52px;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 16px 36px rgba(255,215,0,.24);
  white-space: nowrap;
  transition: transform .24s var(--ease), box-shadow .24s var(--ease), background .24s var(--ease);
}

.floating-phone:hover {
  transform: translateY(-2px);
  background: #efc900;
  box-shadow: 0 24px 48px rgba(255,215,0,.30);
}

.hero-content {
  position: relative;
  z-index: 4;
  min-height: 760px;
  display: flex;
  align-items: center;
  padding: 152px 0 104px;
}

.hero-copy {
  max-width: 760px;
  animation: fadeUp 850ms var(--ease) both;
}

.hero-kicker {
  color: var(--gold);
}

.hero-title {
  max-width: 780px;
  color: var(--white);
  font-size: clamp(48px, 5.2vw, 76px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.055em;
  margin-bottom: 22px;
  text-shadow: 0 24px 58px rgba(0,0,0,.28);
  transition: opacity 450ms ease, transform 450ms ease;
}

.hero-text {
  max-width: 660px;
  color: rgba(255,255,255,.86);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.65;
  margin-bottom: 34px;
  transition: opacity 450ms ease, transform 450ms ease;
}

.hero-title.changing,
.hero-text.changing {
  opacity: 0;
  transform: translateY(16px);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.slider-arrow {
  position: absolute;
  z-index: 8;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.08);
  color: var(--white);
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: background .24s var(--ease), color .24s var(--ease), transform .24s var(--ease);
  font-size: 18px;
}

.slider-arrow:hover {
  transform: translateY(-50%) scale(1.04);
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}

.slider-arrow.prev { left: 28px; }
.slider-arrow.next { right: 28px; }

.slide-status {
  position: absolute;
  z-index: 7;
  top: 138px;
  right: calc((100% - min(var(--container), calc(100% - 64px))) / 2);
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,.72);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 1px;
}

.slide-status strong {
  color: var(--gold);
  font-size: 26px;
  line-height: 1;
}

.slide-status span {
  width: 54px;
  height: 1px;
  background: rgba(255,255,255,.42);
  display: inline-block;
}

.slider-dots {
  position: absolute;
  z-index: 8;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  align-items: center;
}

.slider-dot {
  width: 34px;
  height: 5px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  cursor: pointer;
  transition: width .24s var(--ease), background .24s var(--ease);
}

.slider-dot.active {
  width: 50px;
  background: var(--gold);
}

/* INTRO */
.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 440px;
  gap: 68px;
  align-items: center;
}

.intro-copy .section-title {
  margin-bottom: 20px;
}

.intro-copy .section-text {
  margin-bottom: 22px;
  max-width: 760px;
}

.intro-visual {
  position: relative;
  min-height: 470px;
  border-radius: var(--radius);
  overflow: hidden;
  background:
  linear-gradient(180deg, rgba(7,28,45,.08), rgba(7,28,45,.48)),
  url("./../img/hakkimizda.jpeg") center/cover;
  box-shadow: var(--shadow-md);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}

.intro-visual:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.intro-visual::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: var(--radius);
  pointer-events: none;
  opacity: .75;
}

.intro-visual-badge {
  position: absolute;
  left: 28px;
  bottom: 28px;
  max-width: 330px;
  padding: 20px 22px;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  background: rgba(255,255,255,.92);
  color: var(--navy);
  box-shadow: 0 18px 45px rgba(0,0,0,.12);
  backdrop-filter: blur(12px);
}

.intro-visual-badge strong {
  display: block;
  margin-bottom: 6px;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.intro-visual-badge span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

/* NEARBY */
.section-head {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-head .section-title {
  margin-bottom: 0;
}

.nearby-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.info-card {
  position: relative;
  min-height: 286px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}

.info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(circle at 18% 0%, rgba(255,215,0,.16), transparent 42%);
  transition: opacity .28s var(--ease);
  pointer-events: none;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

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

.info-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(15,47,68,.32);
  border-radius: 50%;
  color: var(--navy);
  margin-bottom: 20px;
  font-size: 17px;
}

.info-card h3 {
  color: var(--navy);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(15,47,68,.07);
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 22px;
}

.info-card p {
  color: var(--text);
  font-size: 16px;
  line-height: 1.55;
}

/* ROOMS */
.rooms {
  overflow: hidden;
}

.rooms-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 34px;
}

.rooms-heading .section-title {
  font-size: clamp(44px, 5vw, 70px);
  line-height: 1;
}

.rooms-slider {
  position: relative;
  overflow: hidden;
}

.rooms-track {
  display: flex;
  gap: 24px;
  transition: transform 650ms var(--ease);
  will-change: transform;
}

.premium-room {
  position: relative;
  flex: 0 0 calc((100% - 48px) / 3);
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  text-decoration: none;
  color: inherit;
}

.premium-room:hover {
  transform: translateY(-6px);
}

.premium-room::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(7,28,45,.02) 0%, rgba(7,28,45,.16) 38%, rgba(7,28,45,.84) 100%);
}

.premium-room::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  transform: translateX(-110%);
  background: linear-gradient(120deg, transparent 0%, rgba(255,215,0,.18) 50%, transparent 100%);
  transition: opacity .28s var(--ease), transform .55s var(--ease);
  pointer-events: none;
}

.premium-room:hover::before {
  opacity: 1;
  transform: translateX(110%);
}

.premium-room-content {
  position: absolute;
  z-index: 3;
  left: 28px;
  right: 28px;
  bottom: 28px;
  color: #ffffff;
  transition: transform .3s var(--ease);
}

.premium-room:hover .premium-room-content {
  transform: translateY(-5px);
}

.room-meta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 10px;
  color: rgba(255,255,255,.86);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.premium-room h3 {
  color: #ffffff;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.05em;
  max-width: 330px;
}

.room-slider-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  gap: 20px;
}

.room-slider-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.room-slider-dot {
  width: 34px;
  height: 5px;
  border: 0;
  border-radius: 999px;
  background: rgba(15,47,68,.22);
  cursor: pointer;
  transition: width .24s var(--ease), background .24s var(--ease);
}

.room-slider-dot.active {
  width: 50px;
  background: var(--gold);
}

.room-arrows {
  display: flex;
  align-items: center;
  gap: 10px;
}

.room-nav {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(15,47,68,.18);
  border-radius: 50%;
  background: #ffffff;
  color: var(--navy);
  cursor: pointer;
  transition: transform .24s var(--ease), background .24s var(--ease), color .24s var(--ease), box-shadow .24s var(--ease);
}

.room-nav:hover {
  transform: translateY(-2px);
  background: var(--navy);
  color: #ffffff;
}

/* AMENITIES */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.amenity-card {
  min-height: 250px;
}

.amenity-icon {
  color: #ffd702;
  font-size: 32px;
  margin-bottom: 24px;
  transition: transform .24s var(--ease);
}

.info-card:hover .amenity-icon {
  transform: translateY(-3px);
}

/* CORPORATE */
.corporate {
  background: #050505;
  color: var(--white);
  padding: 46px 0;
}

.corporate-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 54px;
  align-items: center;
}

.corporate h2 {
  max-width: none;
  white-space: nowrap;
  margin-bottom: 12px;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.05em;
}

.corporate p {
  max-width: 820px;
  color: rgba(255,255,255,.82);
  font-size: 16px;
  line-height: 1.65;
}

.iteo-logo-only {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
}

.iteo-logo-only img {
  height: 100px;
  width: auto;
  object-fit: contain;
}

/* FOOTER */
.footer {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  border-top: 3px solid var(--gold);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 48px;
  padding: 58px 0;
}

.footer-col h3 {
  color: #ffffff;
  font-size: 27px;
  font-weight: 900;
  margin-bottom: 15px;
  letter-spacing: -.04em;
  line-height: 55px;
}

.footer-col h3 img{
  float: left;
  margin-right: 10px;
  padding: 5px 10px;
  background: #000;
  border-radius: 5px;
}

.footer-col h4 {
  color: var(--gold);
  margin-bottom: 16px;
  font-size: 17px;
  font-weight: 900;
}

.footer-col p {
  color: rgba(255,255,255,.84);
  line-height: 1.7;
  margin-bottom: 10px;
}

.footer-col ul {
  list-style: none;
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 0;
}

.footer-col a {
  display: inline-block;
  color: rgba(255,255,255,.84);
  transition: color .22s ease, transform .22s ease;
}

.footer-col a:hover {
  color: var(--gold);
  transform: translateX(2px);
}

.footer-col i {
  color: var(--gold);
  margin-right: 8px;
  width: 16px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.14);
  padding: 18px 0;
  color: rgba(255,255,255,.72);
  font-size: 14px;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

@media (max-width: 1100px) {
  .floating-header {
    width: min(100% - 56px, var(--container));
    grid-template-columns: 1fr auto;
    min-height: auto;
    padding: 14px 16px 14px 22px;
  }

  .floating-menu {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .slide-status { right: 32px; }

  .intro-grid,
  .corporate-grid {
    grid-template-columns: 1fr;
  }

  .corporate h2 {
    white-space: normal;
  }

  .iteo-logo-only {
    justify-content: flex-start;
  }

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

  .premium-room {
    flex-basis: calc((100% - 24px) / 2);
  }

  .rooms-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-top .footer-col:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 36px, var(--container));
  }

  .hero { min-height: 760px; }

  .floating-header {
    top: 18px;
    width: min(100% - 36px, var(--container));
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .floating-brand { font-size: 20px;     line-height: 45px;}
  .floating-phone { width: 100%; }
  .floating-menu { gap: 18px; }
  .floating-brand img{
    height: 45px;
  }
  .hero-content { padding-top: 230px; }
  .hero-title { font-size: 42px; }
  .hero-text { font-size: 18px; }

  .slide-status { display: none; }

  .slider-arrow {
    width: 44px;
    height: 44px;
  }

  .slider-arrow.prev { left: 10px; }
  .slider-arrow.next { right: 10px; }

  .intro-grid,
  .nearby-grid,
  .amenities-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-top .footer-col:first-child {
    grid-column: auto;
  }

  .premium-room {
    flex-basis: 100%;
    min-height: 380px;
  }

  .section {
    padding: 68px 0;
  }

  .corporate {
    padding: 48px 0;
  }

  .corporate h2 {
    font-size: 28px;
  }
}

/* ORDER + GREY PALETTE REFINEMENT */
body {
  background: #f4f5f5;
}

.section-alt {
  background: #eceff0;
}

.section-white {
  background: #ffffff;
}

.nearby-section {
  background: #ffffff;
}

.amenities-section {
  background: #eceff0;
}

.info-card {
  background: #ffffff;
  border-color: rgba(16, 47, 67, 0.10);
}

.intro {
  background: #ffffff;
}

.intro-copy .eyebrow::before,
.section-head .eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
  margin-right: 8px;
  vertical-align: middle;
}


/* FINAL COLOR + GALLERY REFINEMENT */
:root {
  --gold: #ffd702;
  --gold-deep: #ffd702;
  --gold-muted: #ffd702;
}

.btn-primary,
.floating-phone {
  background: #ffd702 !important;
  color: #071c2d !important;
}

.btn-primary:hover,
.floating-phone:hover {
  background: #000000 !important;
  color: #ffffff !important;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.22) !important;
}

.room-nav:hover,
.slider-arrow:hover {
  background: #000000 !important;
  color: #ffffff !important;
  border-color: #000000 !important;
}

.section-kicker,
.eyebrow,
.hero-kicker,
.slide-status strong,
.footer-col h4,
.footer-col i,
.amenity-icon {
  color: var(--text);
}

.floating-menu a::after,
.slider-dot.active,
.room-slider-dot.active,
.intro-copy .eyebrow::before,
.section-head .eyebrow::before {
  background: var(--text);
}

.rooms {
  padding-bottom: 78px !important;
}

.rooms-slider {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.room-slider-controls {
  background: transparent !important;
  box-shadow: none !important;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}
}


/* FINAL GALLERY SLIDER */
.gallery-section {
  background: #f1f3f4;
}

.gallery-slider {
  position: relative;
  margin-top: 34px;
  overflow: hidden;
}

.gallery-track {
  display: flex;
  gap: 20px;
  transition: transform 560ms var(--ease);
  will-change: transform;
}

.gallery-card {
  position: relative;
  flex: 0 0 calc((100% - 60px) / 4);
  height: 270px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--navy-dark);
  box-shadow: var(--shadow-sm);
  isolation: isolate;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s var(--ease), opacity .35s ease;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,28,45,0.04), rgba(7,28,45,0.60));
  opacity: .78;
  transition: opacity .3s ease;
  z-index: 1;
}

.gallery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  transform: translateX(-110%);
  background: linear-gradient(120deg, transparent 0%, rgba(255,215,2,.22) 50%, transparent 100%);
  transition: opacity .25s ease, transform .55s var(--ease);
  pointer-events: none;
}

.gallery-card:hover img {
  transform: scale(1.07);
  opacity: .96;
}

.gallery-card:hover::before {
  opacity: 1;
  transform: translateX(110%);
}

.gallery-caption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 3;
  color: #ffffff;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -0.03em;
  transition: color .24s ease;
}

.gallery-card:hover .gallery-caption {
  color: #ffd702;
}

.gallery-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 22px;
}

.gallery-nav {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(15,47,68,.18);
  border-radius: 50%;
  background: #ffffff;
  color: var(--navy);
  cursor: pointer;
  transition: transform .24s var(--ease), background .24s var(--ease), color .24s var(--ease), box-shadow .24s var(--ease);
}

.gallery-nav:hover {
  transform: translateY(-2px);
  background: #000000;
  border-color: #000000;
  color: #ffffff;
}

@media (max-width: 1100px) {
  .gallery-card {
    flex-basis: calc((100% - 20px) / 2);
  }
}

@media (max-width: 760px) {
  .gallery-card {
    flex-basis: 100%;
    height: 250px;
  }
}


/* FINAL YELLOW SYSTEM */
:root {
  --gold: #ffd702;
  --gold-deep: #ffd702;
  --gold-muted: #ffd702;
}

.btn-primary,
.floating-phone {
  background: #ffd702 !important;
  color: #071c2d !important;
}

.btn-primary:hover,
.floating-phone:hover {
  background: #000000 !important;
  color: #ffffff !important;
}


.amenity-icon {
  color: #ffd702 !important;
}

.room-nav:hover,
.slider-arrow:hover {
  background: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}

.rooms {
  padding-bottom: 78px !important;
}

.rooms-slider,
.room-slider-controls {
  background: transparent !important;
  box-shadow: none !important;
  margin-bottom: 0 !important;
}


/* SAFE FINAL STABILITY FIX */
:root {
  --gold: #ffd702;
  --gold-deep: #ffd702;
  --gold-muted: #ffd702;
  --cream: #f4f5f5;
  --cream-2: #eceff0;
}

body {
  background: #f4f5f5;
}

.section-alt {
  background: #eceff0 !important;
}

.section-white,
.gallery-section {
  background: #ffffff !important;
}

.btn-primary,
.floating-phone,
.mobile-call {
  background: #ffd702 !important;
  color: #071c2d !important;
}

.btn-primary:hover,
.floating-phone:hover,
.mobile-call:hover {
  background: #000000 !important;
  color: #ffffff !important;
}




.amenity-icon {
  color: #ffd702 !important;
}

.room-nav:hover,
.slider-arrow:hover,
.gallery-nav:hover {
  background: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}

.rooms {
  padding-bottom: 90px !important;
  background: #ffffff !important;
}

.rooms-slider,
.room-slider-controls,
.gallery-section,
.gallery-slider,
.gallery-track,
.gallery-controls {
  box-shadow: none !important;
}

.room-slider-controls {
  background: transparent !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.info-card {
  cursor: default;
}

.info-card::before {
  background: radial-gradient(circle at 18% 0%, rgba(255, 215, 2, .16), transparent 42%) !important;
}

.info-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 24px 62px rgba(7, 28, 45, .10) !important;
}

.info-card:hover .info-icon {
  background: #ffd702;
  color: #ffffff;
  border-color: #ffd702;
}

.mobile-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: var(--radius);
  background: #ffd702;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  justify-self: end;
}

.mobile-menu-toggle span {
  width: 20px;
  height: 2px;
  background: #071c2d;
  border-radius: 999px;
}

.mobile-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(7,28,45,.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease);
  backdrop-filter: blur(3px);
}

.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: min(360px, 86vw);
  height: 100vh;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-right: 4px solid #ffd702;
  box-shadow: 28px 0 80px rgba(7,28,45,.24);
  transform: translateX(-105%);
  transition: transform .42s var(--ease);
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .mobile-backdrop {
  opacity: 1;
  pointer-events: auto;
}

body.menu-open .mobile-drawer {
  transform: translateX(0);
}

.mobile-drawer-head {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}

.mobile-drawer-head strong {
  color: var(--navy);
  font-size: 23px;
  font-weight: 900;
}

.mobile-close {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f1f3f4;
  color: var(--navy);
  cursor: pointer;
}

.mobile-nav {
  display: grid;
  padding: 18px 24px;
}

.mobile-nav a {
  position: relative;
  padding: 17px 0;
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
  border-bottom: 1px solid rgba(15,47,68,.09);
  transform: translateX(-12px);
  opacity: 0;
  transition: transform .34s var(--ease), opacity .34s var(--ease), color .22s ease;
}

body.menu-open .mobile-nav a {
  transform: translateX(0);
  opacity: 1;
}

body.menu-open .mobile-nav a:nth-child(1) { transition-delay: .08s; }
body.menu-open .mobile-nav a:nth-child(2) { transition-delay: .12s; }
body.menu-open .mobile-nav a:nth-child(3) { transition-delay: .16s; }
body.menu-open .mobile-nav a:nth-child(4) { transition-delay: .20s; }
body.menu-open .mobile-nav a:nth-child(5) { transition-delay: .24s; }
body.menu-open .mobile-nav a:nth-child(6) { transition-delay: .28s; }

.mobile-drawer-footer {
  margin-top: auto;
  padding: 24px;
  background: #f1f3f4;
  display: grid;
  gap: 14px;
}

.mobile-call {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--radius);
  font-weight: 900;
}

.mobile-drawer-footer span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

@media (max-width: 760px) {
  .floating-header {
    grid-template-columns: 1fr auto !important;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }

  .floating-header nav,
  .floating-phone {
    display: none !important;
  }
}


/* FINAL CLEANUP: SECTION COLORS, BANDS, SOFT MOTION */
:root {
  --gold: #ffd702;
  --gold-deep: #ffd702;
  --gold-muted: #ffd702;
  --page-gray: #f3f4f5;
  --page-gray-2: #eceff1;
  --soft-ease: cubic-bezier(.25, .8, .25, 1);
}

body {
  background: var(--page-gray);
}

/* Logical section color rhythm */
main > section.section-white,
main > section.rooms,
main > section.gallery-section {
  background: #ffffff !important;
}

main > section.section-alt,
main > section.amenities-section,
main > section.nearby-section {
  background: var(--page-gray) !important;
}

.corporate {
  background: #050505 !important;
}


/* =========================
   12. Footer
========================= */

.footer {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #ffffff;
  border-top: 3px solid var(--gold);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap: 54px;
  padding: 62px 0;
}

.footer-col h3 {
  color: #ffffff;
  font-size: 27px;
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -.04em;
}

.footer-col h4 {
  color: var(--gold);
  margin-bottom: 16px;
  font-size: 17px;
  font-weight: 900;
}

.footer-col p {
  max-width: 470px;
  color: rgba(255,255,255,.80);
  line-height: 1.7;
  margin-bottom: 10px;
}

.footer-col ul {
  list-style: none;
  display: grid;
  gap: 9px;
}

.footer-col a {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  color: rgba(255,255,255,.82);
  transition: color .22s ease, transform .22s ease;
}

.footer-col a:hover {
  color: var(--gold);
  transform: translateX(2px);
}

.footer-col i {
  color: var(--gold);
  margin-top: 4px;
  width: 16px;
  flex: 0 0 16px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.14);
  padding: 18px 0;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  background: rgba(0,0,0,.08);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* Remove grey/gradient bands under sliders */
.rooms,
.gallery-section {
  position: relative;
  overflow: hidden;
  padding-bottom: 96px !important;
}

.rooms::after,
.gallery-section::after,
.rooms-slider::after,
.gallery-slider::after,
.room-slider-controls::after,
.gallery-controls::after {
  display: none !important;
  content: none !important;
}

.rooms-slider,
.gallery-slider {
  background: #ffffff !important;
  box-shadow: none !important;
  overflow: hidden !important;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

.rooms-track,
.gallery-track {
  background: transparent !important;
  box-shadow: none !important;
}

.room-slider-controls,
.gallery-controls {
  position: relative !important;
  z-index: 5;
  margin-top: 24px !important;
  padding: 0 !important;
  background: #ffffff !important;
  box-shadow: none !important;
  border: 0 !important;
}

.room-arrows,
.gallery-controls {
  background: transparent !important;
  box-shadow: none !important;
}

/* Soft hover motion */
.info-card,
.premium-room,
.gallery-card,
.intro-visual,
.btn,
.floating-phone,
.room-nav,
.gallery-nav,
.slider-arrow,
.footer-col a,
.mobile-nav a {
  transition-duration: .38s !important;
  transition-timing-function: var(--soft-ease) !important;
}

.info-card:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 18px 44px rgba(7, 28, 45, .085) !important;
}

.premium-room:hover,
.gallery-card:hover,
.intro-visual:hover {
  transform: translateY(-3px) !important;
}

.gallery-card:hover img {
  transform: scale(1.035) !important;
}

.premium-room:hover .premium-room-content {
  transform: translateY(-2px) !important;
}

.btn-primary:hover,
.floating-phone:hover,
.room-nav:hover,
.gallery-nav:hover {
  transform: translateY(-1px) !important;
}

.premium-room::before,
.gallery-card::before {
  transition-duration: .75s !important;
  opacity: .7;
}

/* Footer contact links */
.footer-col p a {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  color: rgba(255,255,255,.84);
  line-height: 1.65;
}

.footer-col p a i {
  margin-right: 0;
  margin-top: 4px;
  flex: 0 0 16px;
}

.footer-col p a:hover {
  color: #ffd702;
  transform: translateX(2px);
}

/* Yellow system */
.btn-primary,
.floating-phone,
.mobile-call {
  background: #ffd702 !important;
  color: #071c2d !important;
}

.btn-primary:hover,
.floating-phone:hover,
.mobile-call:hover,
.room-nav:hover,
.gallery-nav:hover,
.slider-arrow:hover {
  background: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}




.amenity-icon {
  color: #ffd702 !important;
}

@media (max-width: 760px) {
  .rooms,
  .gallery-section {
    padding-bottom: 68px !important;
  }

  .room-slider-controls,
  .gallery-controls {
    background: transparent !important;
  }
}


.fixed-actions {
  position: fixed;
  inset: auto 0 34px 0;
  z-index: 120;
  pointer-events: none;
}

.fixed-action {
  position: fixed;
  bottom: 34px;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 22px;
  border-radius: 5px;
  background: #ffd702;
  color: #071c2d;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 18px 44px rgba(7, 28, 45, .18);
  pointer-events: auto;
  transition: .28s cubic-bezier(.25,.8,.25,1);
}

.fixed-action:hover {
  background: #000;
  color: #fff;
  transform: translateY(-2px);
}

.fixed-action-left {
  left: 28px;
}

.fixed-action-right {
  right: 28px;
}

.fixed-action i {
  font-size: 18px;
}

@media (max-width: 760px) {
  body {
    padding-bottom: 82px;
  }

  .fixed-actions {
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    padding: 10px;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(14px);
    border-top: 1px solid rgba(15,47,68,.10);
  }

  .fixed-action {
    position: static;
    min-height: 56px;
    justify-content: center;
    border-radius: 5px;
    padding: 0 12px;
    font-size: 14px;
    box-shadow: none;
  }
}


/* =========================
   Footer
========================= */

.footer {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #ffffff;
  border-top: 3px solid var(--gold);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap: 54px;
  padding: 62px 0;
}

.footer-col h3 {
  color: #ffffff;
  font-size: 27px;
  font-weight: 900;
  margin-bottom: 15px;
  letter-spacing: -.04em;
  line-height: 55px;
}

.footer-col h3 img {
  float: left;
  margin-right: 10px;
  padding: 5px 10px;
  background: #000;
  border-radius: 5px;
}

.footer-col h4 {
  color: var(--gold);
  margin-bottom: 16px;
  font-size: 17px;
  font-weight: 900;
}

.footer-col p {
  max-width: 470px;
  color: rgba(255,255,255,.80);
  line-height: 1.7;
  margin-bottom: 10px;
}

.footer-col ul {
  list-style: none;
  display: grid;
  gap: 9px;
}

.footer-col a {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  color: rgba(255,255,255,.82);
  transition: color .22s ease, transform .22s ease;
}

.footer-col a:hover {
  color: var(--gold);
  transform: translateX(2px);
}

.footer-col i {
  color: var(--gold);
  margin-top: 4px;
  width: 16px;
  flex: 0 0 16px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.14);
  padding: 18px 0;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  background: rgba(0,0,0,.08);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}


/* =========================
   Footer Responsive
========================= */

@media (max-width: 1100px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-top .footer-col:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-top .footer-col:first-child {
    grid-column: auto;
  }
}