:root {
  --blue: #0284c7;
  --dark: #075985;
  --yellow: #facc15;
  --orange: #f97316;
  --green: #16a34a;
  --red: #ef4444;
  --text: #0f172a;
  --muted: #64748b;
  --shadow: 0 20px 55px rgba(2, 132, 199, .18)
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: white;
  overflow-x: hidden
}

a {
  text-decoration: none;
  color: inherit
}

img {
  display: block;
  max-width: 100%
}

.container {
  width: min(1180px, 92%);
  margin: auto
}

.topbar {
  background: linear-gradient(90deg, #0369a1, #0891b2);
  color: #fff;
  text-align: center;
  font-weight: 800;
  font-size: 13px;
  padding: 8px 0
}

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid #e2e8f0
}

.nav-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 950;
  color: var(--dark);
  font-size: clamp(18px, 2vw, 24px)
}

.logo {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #0284c7, #22d3ee);
  color: #fff;
  box-shadow: 0 12px 28px rgba(2, 132, 199, .28)
}

.brand small {
  display: block;
  color: var(--orange);
  font-size: 12px;
  letter-spacing: 1.2px;
  margin-top: -4px
}

.nav-links {
  display: flex;
  gap: 24px;
  font-weight: 850;
  font-size: 14px;
  color: #334155
}

.nav-links a:hover {
  color: var(--blue)
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 950;
  transition: .22s;
  white-space: nowrap
}

.btn:hover {
  transform: translateY(-2px)
}

.btn-yellow {
  background: linear-gradient(135deg, #facc15, #f59e0b);
  color: #1f2937;
  box-shadow: 0 16px 30px rgba(245, 158, 11, .25)
}

.btn-blue {
  background: linear-gradient(135deg, #0284c7, #06b6d4);
  color: white
}

.btn-white {
  background: white;
  color: var(--dark);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .12)
}

.mobile-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 15px;
  background: var(--blue);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px
}

.mobile-toggle span {
  width: 23px;
  height: 2px;
  background: white;
  border-radius: 999px
}

.mobile-menu {
  display: none;
  background: white;
  border-top: 1px solid #e2e8f0
}

.mobile-menu a {
  display: block;
  padding: 15px 22px;
  font-weight: 900;
  color: var(--dark);
  border-bottom: 1px solid #f1f5f9
}

.nav.open .mobile-menu {
  display: block
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  color: white;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, rgba(2, 6, 23, .6), rgba(2, 132, 199, .22), rgba(255, 255, 255, .06)), url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1900&q=90") center/cover
}

.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, .98) 98%);
  pointer-events: none
}

.ocean-effect {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 190px;
  z-index: 1;
  overflow: hidden;
  pointer-events: none
}

.wave {
  position: absolute;
  left: -50%;
  bottom: 0;
  width: 200%;
  height: 120px;
  background: rgba(255, 255, 255, .45);
  border-radius: 43% 47% 50% 45%;
  animation: waveMove 12s linear infinite;
  filter: blur(.2px)
}

.wave.w1 {
  bottom: 10px;
  opacity: .72;
  animation-duration: 13s
}

.wave.w2 {
  bottom: 36px;
  opacity: .42;
  animation-duration: 18s;
  animation-direction: reverse;
  background: rgba(186, 230, 253, .48)
}

.wave.w3 {
  bottom: 62px;
  opacity: .28;
  animation-duration: 24s;
  background: rgba(255, 255, 255, .32)
}

.wave:before,
.wave:after {
  content: "";
  position: absolute;
  width: 52%;
  height: 100%;
  top: -38px;
  border-radius: 45%;
  background: inherit
}

.wave:before {
  left: 8%;
  transform: rotate(2deg)
}

.wave:after {
  right: 9%;
  transform: rotate(-3deg)
}

.sea-shine {
  position: absolute;
  left: -30%;
  bottom: 95px;
  width: 70%;
  height: 70px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .5), transparent);
  transform: skewX(-18deg);
  animation: seaShine 6s ease-in-out infinite
}

.bubbles {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 120px;
  background:
    radial-gradient(circle at 12% 55%, rgba(255, 255, 255, .55) 0 3px, transparent 4px),
    radial-gradient(circle at 28% 35%, rgba(255, 255, 255, .4) 0 2px, transparent 3px),
    radial-gradient(circle at 46% 70%, rgba(255, 255, 255, .5) 0 3px, transparent 4px),
    radial-gradient(circle at 63% 45%, rgba(255, 255, 255, .38) 0 2px, transparent 3px),
    radial-gradient(circle at 82% 62%, rgba(255, 255, 255, .5) 0 3px, transparent 4px);
  animation: bubbleFloat 5s ease-in-out infinite
}

@keyframes waveMove {
  0% {
    transform: translateX(0) translateY(0) rotate(0)
  }

  50% {
    transform: translateX(12%) translateY(10px) rotate(1deg)
  }

  100% {
    transform: translateX(25%) translateY(0) rotate(0)
  }
}

@keyframes seaShine {
  0% {
    transform: translateX(0) skewX(-18deg);
    opacity: 0
  }

  35% {
    opacity: .75
  }

  100% {
    transform: translateX(210%) skewX(-18deg);
    opacity: 0
  }
}

@keyframes bubbleFloat {

  0%,
  100% {
    transform: translateY(0);
    opacity: .65
  }

  50% {
    transform: translateY(-16px);
    opacity: 1
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 36px;
  padding: 86px 0 120px
}

.kicker {
  display: inline-flex;
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .28);
  backdrop-filter: blur(8px);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 900;
  margin-bottom: 18px
}

.hero h1 {
  font-size: clamp(42px, 7vw, 82px);
  line-height: .98;
  letter-spacing: -2px;
  margin-bottom: 14px;
  text-shadow: 0 18px 40px rgba(0, 0, 0, .28)
}

.hero h1 span {
  display: block;
  color: var(--yellow);
  text-transform: uppercase
}

.hero-sub {
  font-size: clamp(18px, 2.5vw, 25px);
  font-weight: 900;
  margin-bottom: 22px
}

.hero-desc {
  max-width: 650px;
  margin-bottom: 26px;
  font-size: 17px;
  color: rgba(255, 255, 255, .95)
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-width: 650px;
  margin-bottom: 28px
}

.hero-badge {
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .22);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 12px 10px;
  font-size: 13px;
  font-weight: 850
}

.hero-badge b {
  font-size: 22px
}

.hero-visual {
  position: relative;
  min-height: 560px
}

.circle-photo {
  position: absolute;
  right: 0;
  top: 45px;
  width: min(520px, 90vw);
  height: min(520px, 90vw);
  border-radius: 50%;
  padding: 12px;
  background: linear-gradient(135deg, #facc15, #fff, #06b6d4);
  box-shadow: 0 35px 80px rgba(0, 0, 0, .28);
  overflow: hidden
}

.circle-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 10px solid rgba(255, 255, 255, .9)
}

.polaroid {
  position: absolute;
  width: 150px;
  background: white;
  padding: 9px;
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .28);
  transform: rotate(-12deg)
}

.polaroid img {
  height: 130px;
  width: 100%;
  object-fit: cover;
  border-radius: 5px
}

.p1 {
  left: 10px;
  top: 80px
}

.p2 {
  left: 0;
  top: 255px;
  transform: rotate(7deg)
}

.p3 {
  left: 70px;
  top: 420px;
  transform: rotate(-8deg)
}

.seal {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .94);
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--dark);
  font-weight: 950;
  box-shadow: 0 18px 40px rgba(2, 132, 199, .25);
  border: 5px solid #67e8f9
}

.seal span {
  display: block;
  color: var(--orange);
  font-size: 13px
}

.stats {
  position: relative;
  z-index: 3;
  margin-top: -70px
}

.stats-card {
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(14px);
  border-radius: 26px;
  box-shadow: 0 22px 55px rgba(15, 23, 42, .12);
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px
}

.stat {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center
}

.stat-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: #ecfeff;
  color: var(--blue);
  font-size: 24px
}

.stat strong {
  font-size: 25px;
  display: block;
  line-height: 1
}

.stat span {
  color: var(--muted);
  font-size: 14px
}

section {
  padding: clamp(58px, 8vw, 96px) 0
}

.section-title {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px
}

.label {
  color: var(--blue);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 13px
}

.section-title h2 {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: -.8px;
  margin: 5px 0 10px
}

.section-title p {
  color: var(--muted)
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px
}

.gallery-card {
  border: 0;
  padding: 0;
  border-radius: 22px;
  overflow: hidden;
  background: #e2e8f0;
  cursor: pointer;
  height: 270px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, .12);
  position: relative
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .35s
}

.gallery-card:hover img {
  transform: scale(1.08)
}

.gallery-card:after {
  content: "Xem ảnh";
  position: absolute;
  left: 13px;
  bottom: 13px;
  background: rgba(2, 6, 23, .68);
  color: white;
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px
}

.rooms {
  background: linear-gradient(180deg, #fff 0%, #f0f9ff 100%)
}

.room-slider {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px
}

.room-card {
  background: white;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 55px rgba(15, 23, 42, .12);
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  border: 1px solid #e2e8f0
}

.room-card img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover
}

.room-content {
  padding: 28px
}

.room-content h3 {
  font-size: 25px;
  color: var(--dark);
  margin-bottom: 8px
}

.room-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0;
  color: var(--muted);
  font-weight: 800;
  font-size: 14px
}

.room-meta span {
  background: #f0f9ff;
  color: var(--dark);
  border-radius: 999px;
  padding: 6px 10px
}

.room-list {
  list-style: none;
  display: grid;
  gap: 8px;
  margin: 18px 0 22px
}

.room-list li {
  display: flex;
  gap: 8px;
  color: #334155;
  font-weight: 700;
  font-size: 14px
}

.room-list li:before {
  content: "✓";
  color: var(--green);
  font-weight: 950
}

.price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px
}

.price strong {
  font-size: 27px;
  color: var(--orange)
}

.price small {
  color: var(--muted)
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px
}

.amenity {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 38px rgba(15, 23, 42, .08);
  text-align: center;
  transition: .22s
}

.amenity:hover {
  transform: translateY(-5px)
}

.amenity img {
  width: 100%;
  height: 135px;
  object-fit: cover
}

.amenity-body {
  padding: 14px 10px 18px
}

.amenity-icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  margin: -36px auto 8px;
  background: linear-gradient(135deg, #0284c7, #38bdf8);
  color: white;
  font-size: 22px;
  position: relative;
  border: 4px solid white
}

.amenity h3 {
  font-size: 15px;
  margin-bottom: 4px
}

.amenity p {
  color: var(--muted);
  font-size: 13px
}

.comfort {
  background: #f8fafc
}

.comfort-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px
}

.comfort-card {
  background: white;
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, .08);
  border: 1px solid #e2e8f0
}

.comfort-card h3 {
  color: var(--dark);
  font-size: 25px;
  margin-bottom: 18px
}

.comfort-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px
}

.comfort-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f8fafc;
  padding: 12px;
  border-radius: 15px;
  font-weight: 850;
  color: #334155
}

.comfort-item span {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background: #e0f2fe;
  display: grid;
  place-items: center
}

.location {
  background: linear-gradient(180deg, #ecfeff, #fff)
}

.location-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 28px;
  align-items: center
}

.location-list {
  display: grid;
  gap: 14px
}

.location-item {
  background: white;
  border-radius: 18px;
  padding: 16px 18px;
  border-left: 5px solid var(--blue);
  box-shadow: 0 12px 30px rgba(2, 132, 199, .09)
}

iframe {
  width: 100%;
  height: 440px;
  border: 0;
  border-radius: 28px;
  box-shadow: 0 20px 55px rgba(15, 23, 42, .14)
}

.cta {
  color: white;
  text-align: center;
  background: linear-gradient(rgba(2, 132, 199, .88), rgba(3, 105, 161, .9)), url("../images/exterior-front.jpg") center/cover
}

.cta h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 12px
}

.cta p {
  max-width: 760px;
  margin: 0 auto 26px;
  color: rgba(255, 255, 255, .94)
}

footer {
  background: #082f49;
  color: white;
  text-align: center;
  padding: 28px 16px;
  font-size: 14px
}

footer a {
  color: #7dd3fc;
  font-weight: 950
}

.float-contact {
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 120;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.float-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  font-weight: 950;
  box-shadow: 0 16px 35px rgba(15, 23, 42, .25);
  position: relative
}

.float-btn svg {
  width: 28px;
  height: 28px;
  fill: currentColor
}

.float-btn .tip {
  position: absolute;
  right: 74px;
  top: 50%;
  transform: translate(10px, -50%);
  opacity: 0;
  background: #0f172a;
  color: white;
  padding: 8px 12px;
  border-radius: 999px;
  white-space: nowrap;
  font-size: 13px;
  transition: .2s
}

.float-btn:hover .tip {
  opacity: 1;
  transform: translate(0, -50%)
}

.phone {
  background: var(--red);
  animation: shake 1.8s infinite
}

.zalo {
  background: #2563eb;
  font-size: 13px
}

.map {
  background: #22c55e
}

@keyframes shake {

  0%,
  100% {
    transform: rotate(0)
  }

  10% {
    transform: rotate(-8deg)
  }

  20% {
    transform: rotate(8deg)
  }

  30% {
    transform: rotate(-5deg)
  }

  40% {
    transform: rotate(5deg)
  }

  50% {
    transform: rotate(0)
  }
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, .92);
  z-index: 999;
  align-items: center;
  justify-content: center;
  padding: 22px
}

.lightbox.open {
  display: flex
}

.lightbox-inner {
  position: relative;
  width: min(1100px, 100%)
}

.lightbox-img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 20px;
  background: #0f172a;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .45)
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  border: 0;
  cursor: pointer;
  color: white;
  background: rgba(255, 255, 255, .16);
  backdrop-filter: blur(8px);
  font-weight: 950;
  display: grid;
  place-items: center
}

.lightbox-close {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  top: -14px;
  right: -14px;
  font-size: 25px
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 58px;
  border-radius: 18px;
  font-size: 32px
}

.lightbox-prev {
  left: 12px
}

.lightbox-next {
  right: 12px
}

.lightbox-caption {
  color: white;
  text-align: center;
  margin-top: 12px;
  font-weight: 900
}

@media(max-width:1080px) {

  .hero-inner,
  .location-grid,
  .comfort-grid {
    grid-template-columns: 1fr
  }

  .hero-visual {
    min-height: 560px
  }

  .room-slider {
    grid-template-columns: 1fr
  }

  .amenity-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .nav-links {
    display: none
  }

  .mobile-toggle {
    display: flex
  }
}

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

  .topbar {
    font-size: 12px
  }

  .nav-inner {
    min-height: 66px
  }

  .logo {
    width: 42px;
    height: 42px
  }

  .nav .btn-yellow {
    display: none
  }

  .hero {
    min-height: auto
  }

  .hero-inner {
    padding: 58px 0 96px;
    gap: 20px
  }

  .hero-badges {
    grid-template-columns: repeat(2, 1fr)
  }

  .hero-actions .btn {
    width: 100%
  }

  .hero-visual {
    min-height: 420px
  }

  .circle-photo {
    width: 330px;
    height: 330px;
    right: 50%;
    transform: translateX(50%);
    top: 34px
  }

  .polaroid {
    width: 112px;
    padding: 7px
  }

  .polaroid img {
    height: 95px
  }

  .p1 {
    left: 5px;
    top: 35px
  }

  .p2 {
    left: 14px;
    top: 178px
  }

  .p3 {
    left: 48px;
    top: 305px
  }

  .seal {
    right: 8px;
    bottom: 0;
    width: 118px;
    height: 118px;
    font-size: 13px
  }

  .stats {
    margin-top: -54px
  }

  .stats-card {
    grid-template-columns: repeat(2, 1fr);
    padding: 16px;
    border-radius: 20px
  }

  .stat {
    justify-content: flex-start
  }

  .stat strong {
    font-size: 21px
  }

  .stat span {
    font-size: 12px
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px
  }

  .gallery-card {
    height: 165px;
    border-radius: 16px
  }

  .gallery-card:first-child {
    grid-column: span 2;
    height: 210px
  }

  .room-card {
    grid-template-columns: 1fr
  }

  .room-card img {
    min-height: auto;
    height: 245px
  }

  .room-content {
    padding: 22px
  }

  .price {
    display: block
  }

  .amenity-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px
  }

  .amenity img {
    height: 110px
  }

  .comfort-list {
    grid-template-columns: 1fr
  }

  iframe {
    height: 360px;
    border-radius: 20px
  }

  .float-contact {
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    transform: none;
    flex-direction: row;
    gap: 8px;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(12px);
    padding: 9px;
    border-top: 1px solid #e2e8f0
  }

  .float-btn {
    flex: 1;
    width: auto;
    height: 56px;
    border-radius: 16px;
    animation: none
  }

  .float-btn .tip {
    position: static;
    opacity: 1;
    transform: none;
    background: transparent;
    padding: 0 0 0 6px;
    font-size: 12px
  }

  .lightbox {
    padding: 12px
  }

  .lightbox-close {
    top: -52px;
    right: 0
  }

  .lightbox-prev,
  .lightbox-next {
    width: 42px;
    height: 50px;
    font-size: 26px
  }

  .lightbox-prev {
    left: 6px
  }

  .lightbox-next {
    right: 6px
  }
}


/* Final polish: screenshot-like beach sale hero */
.hero {
  background:
    radial-gradient(circle at 72% 30%, rgba(255, 255, 255, .38), transparent 0 18%, transparent 42%),
    linear-gradient(90deg, rgba(0, 60, 128, .92), rgba(0, 130, 200, .38), rgba(0, 150, 210, .05)),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1900&q=90") center/cover !important;
}

.hero h1 span,
.hero h1 {
  text-shadow: 0 10px 0 rgba(0, 85, 150, .22), 0 20px 40px rgba(0, 0, 0, .22);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1900&q=90") center/cover;
  opacity: .18;
  mix-blend-mode: screen;
  animation: heroZoom 16s ease-in-out infinite alternate;
}

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

  to {
    transform: scale(1.06);
  }
}

.circle-photo,
.splash-ring {
  border: 7px solid rgba(255, 255, 255, .88);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .28), 0 0 0 14px rgba(255, 255, 255, .18);
}

.polaroid {
  border: 1px solid rgba(255, 255, 255, .9);
}

.sea-strip {
  background:
    linear-gradient(180deg, rgba(223, 247, 255, .95), rgba(0, 168, 216, .98)),
    radial-gradient(circle at 80% 80%, rgba(255, 212, 0, .35), transparent 22%);
}



/* Stronger animated ocean effect */
.ocean-animated-layer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 260px;
  z-index: 3;
  overflow: hidden;
  pointer-events: none;
}

.ocean-ripple {
  position: absolute;
  left: -20%;
  width: 140%;
  height: 150px;
  bottom: 35px;
  opacity: .34;
  background:
    radial-gradient(ellipse at 25% 60%, rgba(255, 255, 255, .55) 0 4%, transparent 5%),
    radial-gradient(ellipse at 55% 45%, rgba(255, 255, 255, .34) 0 3%, transparent 4%),
    radial-gradient(ellipse at 80% 65%, rgba(255, 255, 255, .48) 0 4%, transparent 5%),
    linear-gradient(90deg, rgba(255, 255, 255, .15), rgba(255, 255, 255, .38), rgba(255, 255, 255, .12));
  filter: blur(.3px);
  border-radius: 45%;
  animation: oceanDrift 9s ease-in-out infinite;
}

.ripple-b {
  bottom: 78px;
  opacity: .22;
  animation-duration: 14s;
  animation-direction: reverse;
}

.ocean-foam {
  position: absolute;
  left: -50%;
  right: -50%;
  bottom: 0;
  height: 110px;
  background:
    radial-gradient(circle at 8% 55%, rgba(255, 255, 255, .85) 0 4px, transparent 5px),
    radial-gradient(circle at 18% 42%, rgba(255, 255, 255, .62) 0 3px, transparent 4px),
    radial-gradient(circle at 31% 62%, rgba(255, 255, 255, .7) 0 5px, transparent 6px),
    radial-gradient(circle at 47% 48%, rgba(255, 255, 255, .6) 0 3px, transparent 4px),
    radial-gradient(circle at 63% 70%, rgba(255, 255, 255, .76) 0 4px, transparent 5px),
    radial-gradient(circle at 78% 55%, rgba(255, 255, 255, .7) 0 5px, transparent 6px),
    radial-gradient(circle at 92% 44%, rgba(255, 255, 255, .6) 0 3px, transparent 4px);
  animation: foamMove 5.8s ease-in-out infinite;
}

@keyframes oceanDrift {
  0% {
    transform: translateX(0) translateY(0) scaleX(1)
  }

  50% {
    transform: translateX(6%) translateY(-14px) scaleX(1.04)
  }

  100% {
    transform: translateX(12%) translateY(0) scaleX(1)
  }
}

@keyframes foamMove {

  0%,
  100% {
    transform: translateX(0) translateY(0);
    opacity: .55
  }

  50% {
    transform: translateX(8%) translateY(-10px);
    opacity: .9
  }
}

/* Ocean sound button */
.sound-toggle {
  position: fixed;
  left: 18px;
  bottom: 22px;
  z-index: 130;
  min-height: 48px;
  padding: 10px 16px;
  border: 0;
  border-radius: 999px;
  color: #075985;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 14px 35px rgba(0, 0, 0, .18);
  font-weight: 950;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.sound-toggle.is-playing {
  background: linear-gradient(135deg, #0ea5e9, #22d3ee);
  color: white;
}

.sound-toggle span {
  font-size: 13px;
}

/* Long homestay name display */
.hero h1 {
  font-size: clamp(48px, 5vw, 92px);
}

.brand strong {
  font-size: 22px;
}

.round-logo strong {
  font-size: 20px;
  line-height: 1.05;
}

@media(max-width:760px) {
  .sound-toggle {
    left: 9px;
    right: 9px;
    bottom: 84px;
    justify-content: center;
  }

  .hero h1 {
    font-size: 50px;
  }
}



/* Stronger beach visual */
.hero {
  background:
    radial-gradient(circle at 75% 22%, rgba(255, 255, 255, .62), transparent 0 10%, transparent 34%),
    linear-gradient(90deg, rgba(0, 64, 130, .88), rgba(0, 150, 210, .30), rgba(0, 190, 230, .10)),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=2200&q=95") center/cover !important;
}

.hero:before {
  opacity: .32 !important;
  filter: saturate(1.35) contrast(1.08);
}

.ocean-waves,
.ocean-animated-layer {
  height: 310px !important;
}

.wave {
  height: 145px !important;
  opacity: .72 !important;
  background: rgba(255, 255, 255, .66) !important;
  filter: drop-shadow(0 -8px 18px rgba(255, 255, 255, .28));
}

.wave-2,
.wave.w2 {
  opacity: .55 !important;
  background: rgba(125, 211, 252, .60) !important;
}

.wave-3,
.wave.w3 {
  opacity: .40 !important;
  background: rgba(255, 255, 255, .45) !important;
}

.ocean-ripple {
  opacity: .50 !important;
  filter: blur(.1px) saturate(1.2);
}

.ocean-foam {
  opacity: .90 !important;
}

/* Enhanced floating contact */
.float-contact {
  gap: 14px !important;
}

.float-btn {
  isolation: isolate;
  overflow: visible;
  transition: .25s ease;
}

.float-btn:hover {
  transform: translateX(-7px) scale(1.08);
}

.float-btn:before,
.float-btn:after {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: inherit;
  z-index: -1;
  opacity: .75;
  animation: contactPulse 1.8s infinite;
}

.float-btn:after {
  animation-delay: .55s;
}

.phone:before,
.phone:after {
  border: 2px solid rgba(255, 56, 56, .55)
}

.zalo:before,
.zalo:after {
  border: 2px solid rgba(36, 124, 255, .50)
}

.map:before,
.map:after {
  border: 2px solid rgba(32, 198, 90, .50)
}

.phone {
  animation: ringBell 1.35s infinite !important;
}

.phone svg {
  animation: bellIcon .9s infinite;
  transform-origin: center;
}

@keyframes contactPulse {
  0% {
    transform: scale(.82);
    opacity: .75
  }

  100% {
    transform: scale(1.35);
    opacity: 0
  }
}

@keyframes bellIcon {

  0%,
  100% {
    transform: rotate(0)
  }

  20% {
    transform: rotate(-16deg)
  }

  40% {
    transform: rotate(15deg)
  }

  60% {
    transform: rotate(-10deg)
  }

  80% {
    transform: rotate(8deg)
  }
}

@keyframes ringBell {

  0%,
  100% {
    box-shadow: 0 16px 35px rgba(255, 56, 56, .35)
  }

  50% {
    box-shadow: 0 16px 45px rgba(255, 56, 56, .70)
  }
}

/* Go to top */
.go-top {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 131;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #facc15, #f97316);
  color: #102033;
  font-size: 28px;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 16px 35px rgba(249, 115, 22, .30);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: .25s ease;
}

.go-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.go-top:hover {
  transform: translateY(-4px) scale(1.06);
}

/* Better sound button */
.sound-toggle {
  animation: soundFloat 2.8s ease-in-out infinite;
}

.sound-toggle.is-playing {
  box-shadow: 0 14px 35px rgba(14, 165, 233, .35), 0 0 0 8px rgba(14, 165, 233, .12);
}

@keyframes soundFloat {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-4px)
  }
}

@media(max-width:760px) {
  .go-top {
    right: 12px;
    bottom: 150px;
    width: 48px;
    height: 48px;
    font-size: 24px;
  }

  .float-btn:before,
  .float-btn:after {
    display: none;
  }

  .float-btn:hover {
    transform: none;
  }
}


/* Contact information section */
.contact-info {
  background: linear-gradient(180deg, #ffffff, #f0f9ff);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.contact-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: center;
  box-shadow: 0 16px 38px rgba(15, 23, 42, .08);
  transition: .22s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(2, 132, 199, .15);
}

.contact-card b {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #0284c7, #22d3ee);
  color: white;
  font-size: 26px;
  flex: 0 0 auto;
}

.contact-card strong {
  display: block;
  color: #075985;
  font-size: 18px;
  line-height: 1.25;
}

.contact-card span {
  color: #64748b;
  font-size: 14px;
  font-weight: 700;
}

.facebook {
  background: #1877f2 !important;
  font-size: 28px !important;
  font-family: Arial, Helvetica, sans-serif;
}

.facebook:before,
.facebook:after {
  border: 2px solid rgba(24, 119, 242, .5);
}

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

  .contact-card {
    padding: 16px;
  }

  .contact-card strong {
    font-size: 16px;
  }
}


/* Facebook Page Plugin */
.facebook-page {
  background: linear-gradient(180deg, #f0f9ff, #ffffff);
}

.facebook-plugin-wrap {
  display: grid;
  grid-template-columns: minmax(280px, 540px) 1fr;
  gap: 24px;
  align-items: center;
  max-width: 1050px;
  margin: 0 auto;
}

.facebook-plugin-wrap .fb-page,
.facebook-plugin-wrap iframe {
  max-width: 100% !important;
}

.facebook-plugin-wrap .fb-page {
  background: white;
  border-radius: 24px;
  padding: 14px;
  box-shadow: 0 18px 45px rgba(24, 119, 242, .14);
  border: 1px solid #e2e8f0;
  overflow: hidden;
}

.facebook-side-card {
  background: linear-gradient(135deg, #1877f2, #0ea5e9);
  color: white;
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 20px 55px rgba(24, 119, 242, .25);
}

.facebook-side-card .fb-icon {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  background: white;
  color: #1877f2;
  display: grid;
  place-items: center;
  font-size: 38px;
  font-weight: 950;
  margin-bottom: 18px;
}

.facebook-side-card h3 {
  font-size: 28px;
  line-height: 1.15;
  margin-bottom: 12px;
}

.facebook-side-card p {
  color: rgba(255, 255, 255, .92);
  margin-bottom: 22px;
}

@media(max-width:860px) {
  .facebook-plugin-wrap {
    grid-template-columns: 1fr;
  }

  .facebook-side-card {
    padding: 26px;
  }
}


/* Facebook plugin local fallback fix */
.facebook-plugin-box {
  background: white;
  border-radius: 24px;
  padding: 14px;
  box-shadow: 0 18px 45px rgba(24, 119, 242, .14);
  border: 1px solid #e2e8f0;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.facebook-local-fallback {
  display: none;
}

.fb-cover-card {
  background: linear-gradient(135deg, #1877f2, #0ea5e9);
  color: white;
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 20px 55px rgba(24, 119, 242, .20);
}

.fb-cover-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.fb-logo {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: white;
  color: #1877f2;
  display: grid;
  place-items: center;
  font-size: 42px;
  font-weight: 950;
}

.fb-cover-top h3 {
  font-size: 25px;
  line-height: 1.15;
}

.fb-cover-top p,
.fb-desc {
  color: rgba(255, 255, 255, .92);
}

.fb-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0 14px;
}

.fb-cover-card small {
  color: rgba(255, 255, 255, .78);
  font-weight: 700;
}

@media(max-width:860px) {
  .facebook-plugin-box {
    min-height: auto;
  }
}


/* Facebook card pro - clean single card */
.facebook-plugin-wrap,
.facebook-side-card,
.facebook-plugin-box,
.facebook-local-fallback {
  display: none !important;
}

.facebook-page {
  background: linear-gradient(180deg, #f0f9ff, #ffffff);
}

.facebook-pro-card {
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #dbeafe;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(24, 119, 242, .16);
}

.facebook-cover {
  height: 250px;
  position: relative;
  overflow: hidden;
  background: #1877f2;
}

.facebook-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.05);
}

.facebook-cover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24, 119, 242, .05), rgba(24, 119, 242, .82));
}

.facebook-profile {
  position: relative;
  display: flex;
  gap: 18px;
  align-items: flex-end;
  padding: 0 30px 22px;
  margin-top: -58px;
}

.facebook-avatar {
  width: 116px;
  height: 116px;
  border-radius: 28px;
  background: #1877f2;
  border: 6px solid #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 16px 34px rgba(24, 119, 242, .24);
  flex: 0 0 auto;
}

.facebook-avatar svg {
  width: 68px;
  height: 68px;
  fill: white;
}

.facebook-info {
  padding-bottom: 8px;
}

.facebook-info h3 {
  font-size: 32px;
  line-height: 1.1;
  color: #0f172a;
  margin-bottom: 5px;
}

.facebook-info p {
  color: #64748b;
  font-weight: 800;
}

.facebook-stars {
  color: #f59e0b;
  font-weight: 950;
  margin-top: 8px;
}

.facebook-stars span {
  color: #475569;
  margin-left: 8px;
  font-size: 14px;
}

.facebook-actions-pro {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0 30px 26px;
}

.facebook-actions-pro a {
  min-height: 48px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-weight: 950;
  transition: .22s ease;
}

.facebook-actions-pro a:hover {
  transform: translateY(-2px);
}

.fb-primary {
  background: #1877f2;
  color: #fff;
  box-shadow: 0 14px 28px rgba(24, 119, 242, .25);
}

.fb-primary svg {
  width: 22px;
  height: 22px;
  fill: white;
}

.fb-secondary {
  background: #eff6ff;
  color: #075985;
}

.facebook-note {
  border-top: 1px solid #e2e8f0;
  background: #f8fafc;
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
  padding: 14px 30px;
}

@media(max-width:760px) {
  .facebook-cover {
    height: 190px;
  }

  .facebook-profile {
    align-items: center;
    padding: 0 20px 18px;
    margin-top: -44px;
  }

  .facebook-avatar {
    width: 88px;
    height: 88px;
    border-radius: 22px;
  }

  .facebook-avatar svg {
    width: 50px;
    height: 50px;
  }

  .facebook-info h3 {
    font-size: 22px;
  }

  .facebook-stars span {
    display: block;
    margin-left: 0;
  }

  .facebook-actions-pro {
    padding: 0 20px 22px;
  }

  .facebook-actions-pro a {
    width: 100%;
  }

  .facebook-note {
    padding: 13px 20px;
  }
}


/* Final logo + mobile CTA fixes */
.brand__logo-img,
.logo.brand__logo-img {
  background: #fff !important;
  overflow: hidden;
  padding: 3px;
}

.brand__logo-img img,
.logo.brand__logo-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: inherit;
}

/* Hero CTA buttons: remove overlap, clean booking style */
.hero__actions,
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 26px;
}

.hero__actions .btn,
.hero-actions .btn {
  box-shadow: 0 8px 18px rgba(0, 0, 0, .14);
}

.hero__actions .btn-yellow,
.hero-actions .btn-yellow {
  box-shadow: 0 8px 18px rgba(255, 174, 0, .24);
}

/* Footer/fixed buttons safe area */
@media(max-width:760px) {
  body {
    padding-bottom: 150px;
  }

  footer {
    padding-bottom: 170px;
  }

  .hero__actions,
  .hero-actions {
    flex-direction: column;
    gap: 18px;
  }

  .hero__actions .btn,
  .hero-actions .btn {
    width: 100%;
    min-height: 58px;
    font-size: 20px;
    margin: 0 !important;
    box-shadow: 0 6px 14px rgba(0, 0, 0, .12);
  }

  .sound-toggle {
    bottom: 92px;
    left: 12px;
    right: 12px;
    width: auto;
  }

  .float-contact {
    bottom: 0;
  }

  .go-top {
    bottom: 165px;
  }
}

/* Optional Blade footer note:
   Trong Laravel Blade đổi:
   © <span id="currentYear">2026</span>
   thành:
   © {{ now()->year }}
*/


/* === Production v1 final fixes === */
.brand__logo-img,
.logo.brand__logo-img {
  background: #fff !important;
  overflow: hidden;
  padding: 3px;
}

.brand__logo-img img,
.logo.brand__logo-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: inherit;
}

.hero__actions,
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 26px;
}

.hero__actions .btn,
.hero-actions .btn {
  box-shadow: 0 8px 18px rgba(0, 0, 0, .14);
}

.hero__actions .btn-yellow,
.hero-actions .btn-yellow {
  box-shadow: 0 8px 18px rgba(255, 174, 0, .24);
}

.facebook-plugin-wrap,
.facebook-side-card,
.facebook-plugin-box,
.facebook-local-fallback {
  display: none !important;
}

.facebook-pro-card {
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #dbeafe;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(24, 119, 242, .16);
}

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

  footer {
    padding-bottom: 170px;
  }

  .hero__actions,
  .hero-actions {
    flex-direction: column;
    gap: 18px;
  }

  .hero__actions .btn,
  .hero-actions .btn {
    width: 100%;
    min-height: 58px;
    font-size: 20px;
    margin: 0 !important;
    box-shadow: 0 6px 14px rgba(0, 0, 0, .12);
  }

  .sound-toggle {
    bottom: 92px;
    left: 12px;
    right: 12px;
    width: auto;
  }

  .float-contact {
    bottom: 0;
  }

  .go-top {
    bottom: 165px;
  }
}