/* =========================================================
   BEACH PARADISE MIRAMAR — HOMEPAGE
   Original navy / white / blue identity
   ========================================================= */

:root {
  --navy: #071044;
  --navy-deep: #04082d;
  --blue: #159dcc;
  --blue-light: #55c9ee;
  --white: #ffffff;
  --off-white: #f7f8fb;
  --text: #202431;
  --muted: #697080;
  --border: rgba(255,255,255,.16);
  --ease: cubic-bezier(.22, .61, .36, 1);
  --header-height: 92px;
  
}

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

/* =====================================================
   BEACH PARADISE — GLOBAL POPPINS FONT
   ===================================================== */

*,
*::before,
*::after {
  font-family: "Poppins", sans-serif !important;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background: var(--off-white);
  overflow-x: hidden;
}

/* ===== GLOBAL FONT ===== */

html,
body,
button,
input,
textarea,
select,
a,
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
div {
  font-family: "Poppins", sans-serif;
}

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

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

button {
  font: inherit;
}



/* ================= HEADER ================= */

/* =========================================================
   BEACH PARADISE MIRAMAR
   SHARED NAVBAR
   ========================================================= */


/* =========================
   HEADER
   ========================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;

    background: transparent;

    transition:
        background 0.35s ease,
        box-shadow 0.35s ease,
        backdrop-filter 0.35s ease;
}


/* =========================
   SCROLLED HEADER
   ========================= */

.site-header.scrolled {
    background: rgba(7, 31, 45, 0.94);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.18);
}


/* =========================
   NAVBAR
   ========================= */

.navbar {
    width: 100%;
    max-width: 1440px;

    min-height: 88px;

    margin: 0 auto;

    padding: 0 50px;

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

    gap: 30px;
}


/* =========================
   LOGO
   ========================= */

.brand {
    display: flex;
    align-items: center;

    flex-shrink: 0;

    text-decoration: none;
}


.brand img {
    display: block;

    width: auto;
    height: 58px;

    object-fit: contain;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}


.brand:hover img {
    transform: scale(1.04);
}


/* =========================
   NAV LINKS
   ========================= */

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 30px;

    margin-left: auto;
}


.nav-links a {
    position: relative;

    display: inline-flex;
    align-items: center;

    padding: 8px 0;

    color: #ffffff;

    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 500;

    text-decoration: none;

    white-space: nowrap;

    transition:
        color 0.3s ease,
        opacity 0.3s ease;
}


/* underline */

.nav-links a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 2px;

    background: #ffffff;

    border-radius: 20px;

    transition:
        width 0.3s ease;
}


/* hover */

.nav-links a:hover {
    color: #ffffff;
}


.nav-links a:hover::after {
    width: 100%;
}


/* ACTIVE PAGE */

.nav-links a.active {
    color: #ffffff;
}


.nav-links a.active::after {
    width: 100%;
}


/* =========================
   BOOK BUTTON
   ========================= */

.nav-book {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 5px;

    width: 125px !important;
    height: 38px !important;
    padding: 0 !important;

    color: #fff;
    background: #082f44;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;

    font-family: "Poppins", sans-serif;
    font-size: 10px !important;
    font-weight: 600;

    text-decoration: none;
    box-sizing: border-box;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.nav-book span {
    font-size: 13px;
}


.nav-book span {
    font-size: 16px;

    transition:
        transform 0.3s ease;
}


.nav-book:hover {
    background: #ffffff;

    color: #082f44;

    border-color: #ffffff;

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.18);
}


.nav-book:hover span {
    transform: translate(3px, -3px);
}


/* =========================
   MOBILE BUTTON
   ========================= */

.menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    padding: 0;

    border: 1px solid rgba(255, 255, 255, 0.25);

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.08);

    cursor: pointer;

    flex-shrink: 0;

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

    flex-direction: column;

    gap: 5px;
}


.menu-toggle span {
    display: block;

    width: 19px;
    height: 2px;

    background: #ffffff;

    border-radius: 10px;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}


/* hamburger -> X */

.menu-toggle.active span:nth-child(1) {
    transform:
        translateY(7px)
        rotate(45deg);
}


.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}


.menu-toggle.active span:nth-child(3) {
    transform:
        translateY(-7px)
        rotate(-45deg);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1150px) {

    .navbar {
        padding: 0 30px;
    }


    .nav-links {
        gap: 20px;
    }


    .nav-links a {
        font-size: 12px;
    }


    .nav-book {
        padding: 12px 16px;

        font-size: 11px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 900px) {

    .navbar {
        min-height: 78px;

        padding: 0 22px;
    }


    .brand img {
        height: 52px;
    }


    /* hide desktop navigation */

    .nav-links {
        position: absolute;

        top: 78px;
        left: 15px;
        right: 15px;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        margin: 0;

        padding: 12px;

        background: rgba(7, 31, 45, 0.98);

        border: 1px solid rgba(255, 255, 255, 0.12);

        border-radius: 16px;

        box-shadow:
            0 20px 50px rgba(0, 0, 0, 0.3);

        opacity: 0;

        visibility: hidden;

        transform:
            translateY(-10px);

        transition:
            opacity 0.3s ease,
            visibility 0.3s ease,
            transform 0.3s ease;
    }


    .nav-links.active {
        opacity: 1;

        visibility: visible;

        transform:
            translateY(0);
    }


    .nav-links a {
        width: 100%;

        padding: 13px 15px;

        border-radius: 10px;

        font-size: 13px;
    }


    .nav-links a:hover {
        background:
            rgba(255, 255, 255, 0.08);
    }


    .nav-links a::after {
        display: none;
    }


    .nav-links a.active {
        background:
            rgba(255, 255, 255, 0.10);
    }


    .nav-book {
        display: none;
    }


    .menu-toggle {
        display: flex;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .navbar {
        padding: 0 16px;
    }


    .brand img {
        height: 48px;
    }


    .nav-links {
        left: 10px;
        right: 10px;
    }

}
/* ================= HERO ================= */

.hero {
  min-height: 100svh;
  height: 900px;
  max-height: 1000px;
  position: relative;
  overflow: hidden;
  background: var(--navy-deep);
  color: white;
}

.hero-slides,
.hero-slide,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: opacity 1.3s ease, transform 7s linear;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  background:
    linear-gradient(90deg,
      rgba(2, 7, 37, .86) 0%,
      rgba(4, 12, 50, .65) 38%,
      rgba(4, 12, 50, .28) 72%,
      rgba(2, 5, 25, .20) 100%),
    linear-gradient(0deg,
      rgba(2, 6, 30, .72) 0%,
      transparent 38%);
  z-index: 2;
}

.hero-content-wrap {
  position: relative;
  z-index: 4;
  width: min(1440px, calc(100% - 70px));
  min-height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 790px;
  padding-top: 70px;
}

.eyebrow,
.section-kicker {
  color: var(--blue-light);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: 13px;
  font-weight: 700;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 24px;
}

.eyebrow span {
  width: 40px;
  height: 2px;
  background: var(--blue-light);
}

.hero-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(56px, 6.5vw, 100px);
  line-height: .96;
  letter-spacing: -.045em;
  max-width: 900px;
}

.hero-line {
  display: block;
}

.hero-line.accent {
  color: var(--white);
  font-style: italic;
}

.hero-description {
  max-width: 650px;
  margin-top: 28px;
  color: rgba(255,255,255,.88);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  min-height: 54px;
  padding: 0 25px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 700;
  transition: .3s var(--ease);
}

.btn-primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 12px 30px rgba(21,157,204,.22);
}

.btn-primary:hover {
  background: #2bb0da;
  transform: translateY(-3px);
  box-shadow: 0 17px 38px rgba(21,157,204,.30);
}

.btn-light {
  background: white;
  color: var(--navy);
}

.btn-light:hover {
  background: #eaf8fc;
  transform: translateY(-3px);
}

.hero-reveal {
  animation: heroReveal .9s var(--ease) both;
}

.hero-content .hero-reveal:nth-child(1) { animation-delay: .15s; }
.hero-content .hero-reveal:nth-child(2) { animation-delay: .28s; }
.hero-content .hero-reveal:nth-child(3) { animation-delay: .42s; }
.hero-content .hero-reveal:nth-child(4) { animation-delay: .56s; }

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

.hero-bottom {
  position: absolute;
  z-index: 5;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1440px, calc(100% - 70px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.hero-meta {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.hero-meta div {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,.9);
  font-size: 13px;
  font-weight: 600;
}

.meta-icon {
  color: var(--blue-light);
  font-size: 17px;
}

.slider-controls {
  display: flex;
  align-items: center;
  gap: 14px;
}

.slider-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.3);
  background: rgba(0,0,0,.12);
  color: white;
  cursor: pointer;
  transition: .25s ease;
}

.slider-arrow:hover {
  background: white;
  color: var(--navy);
}

.slide-count {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  min-width: 50px;
}

.slide-count strong {
  color: white;
  font-size: 17px;
}

.progress-track {
  width: 115px;
  height: 2px;
  background: rgba(255,255,255,.28);
  overflow: hidden;
}

.progress-track span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--blue-light);
}

.progress-track span.running {
  animation: progress 5.8s linear forwards;
}

@keyframes progress {
  from { width: 0; }
  to { width: 100%; }
}

.scroll-cue {
  position: absolute;
  z-index: 5;
  right: 34px;
  top: 52%;
  writing-mode: vertical-rl;
  color: rgba(255,255,255,.7);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .15em;
  display: flex;
  gap: 12px;
  align-items: center;
}

.scroll-cue i {
  color: var(--blue-light);
  font-style: normal;
  font-size: 18px;
}

/* ================= GENERAL ================= */

.section {
  padding: 115px 0;
}

.container {
  width: min(1240px, calc(100% - 70px));
  margin: auto;
}

.intro {
  background: white;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(55px, 8vw, 120px);
  align-items: center;
}

.section-image {
  position: relative;
}

.section-image img {
  height: 600px;
  object-fit: cover;
}

.image-badge {
  position: absolute;
  right: -25px;
  bottom: -25px;
  width: 150px;
  height: 150px;
  background: var(--navy);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 25px;
}

.image-badge strong {
  color: var(--blue-light);
  font-size: 32px;
  font-family: "Playfair Display", serif;
}

.image-badge span {
  font-size: 12px;
  line-height: 1.35;
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.intro-copy {
  max-width: 550px;
}

.section-kicker {
  color: var(--blue);
  margin-bottom: 17px;
}

.section-kicker.light {
  color: var(--blue-light);
}

.intro-copy h2,
.section-heading h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(43px, 4.5vw, 67px);
  line-height: 1.02;
  letter-spacing: -.035em;
}

.intro-copy h2 em,
.section-heading h2 em {
  color: var(--blue-light);
  font-style: italic;
}

.intro-copy > p:not(.section-kicker) {
  color: var(--muted);
  line-height: 1.8;
  font-size: 16px;
  margin-top: 22px;
}

.text-link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  color: var(--navy);
  font-weight: 700;
  margin-top: 28px;
  border-bottom: 1px solid var(--blue);
  padding-bottom: 6px;
}

.text-link span {
  color: var(--blue);
  transition: transform .25s ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

/* ================= ROOMS ================= */

.section-dark {
  background: var(--navy);
  color: white;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.1fr .7fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 55px;
}

.section-heading > p {
  color: rgba(255,255,255,.67);
  line-height: 1.8;
  max-width: 430px;
}

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

.room-card {
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.1);
  overflow: hidden;
  transition: transform .45s var(--ease), background .3s ease;
}

.room-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,.085);
}

.room-image {
  height: 360px;
  position: relative;
  overflow: hidden;
}

.room-image img {
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}

.room-card:hover .room-image img {
  transform: scale(1.06);
}

.room-number {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(4,8,45,.8);
  backdrop-filter: blur(8px);
  padding: 8px 11px;
  font-size: 12px;
}

.room-info {
  padding: 25px;
}

.room-info h3 {
  font-family: "Playfair Display", serif;
  font-size: 27px;
  font-weight: 600;
}

.room-info p {
  color: rgba(255,255,255,.62);
  font-size: 14px;
  line-height: 1.7;
  margin: 10px 0 20px;
}

.room-info a {
  color: var(--blue-light);
  font-weight: 700;
  font-size: 14px;
}

.room-info a span {
  margin-left: 7px;
}

/* ================= BOOKING CTA ================= */

.booking-strip {
  background:
    linear-gradient(90deg, rgba(4,8,45,.96), rgba(7,16,68,.82)),
    url("https://images.unsplash.com/photo-1505881502353-a1986add3762?auto=format&fit=crop&w=1800&q=85") center/cover;
  color: white;
  padding: 65px 0;
}

.booking-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}

.booking-inner h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 4vw, 55px);
  margin: 7px 0;
}

.booking-inner p:last-child {
  color: rgba(255,255,255,.65);
}

/* ================= REVEAL ================= */

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1100px) {
  .navbar,
  .hero-content-wrap,
  .hero-bottom,
  .container {
    width: min(100% - 42px, 1000px);
  }

  .nav-links {
    gap: 18px;
  }

  .nav-links a {
    font-size: 14px;
  }

  .nav-book {
    display: none;
  }

  .brand {
    width: 105px;
    height: 105px;
  }

  .intro-grid {
    gap: 55px;
  }

  .section-heading {
    gap: 40px;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 74px;
  }

  .site-header {
    background: rgba(4,8,45,.94);
  }

  .navbar {
    width: calc(100% - 32px);
    justify-content: space-between;
  }

  .brand {
    width: 82px;
    height: 82px;
    margin-top: 18px;
    border-width: 4px;
  }

  .brand-fallback strong {
    font-size: 14px;
  }

  .brand-fallback small {
    font-size: 7px;
  }

  .brand-fallback em {
    font-size: 7px;
  }

  .menu-toggle {
    display: block;
    z-index: 2;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    height: 100svh;
    background: var(--navy-deep);
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    transform: translateX(100%);
    transition: transform .45s var(--ease);
    margin: 0;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 24px;
    padding: 9px;
  }

  .menu-toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero {
    height: 820px;
  }

  .hero-content-wrap {
    width: calc(100% - 38px);
  }

  .hero-content {
    padding-top: 70px;
  }

  .hero-title {
    font-size: clamp(48px, 11vw, 72px);
  }

  .hero-description {
    max-width: 560px;
  }

  .hero-bottom {
    width: calc(100% - 38px);
    align-items: flex-end;
  }

  .hero-meta {
    display: none;
  }

  .scroll-cue {
    display: none;
  }

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

  .section-image img {
    height: 500px;
  }

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

  .room-grid .room-card:last-child {
    grid-column: 1 / -1;
    max-width: calc(50% - 11px);
  }

  .booking-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 80px 0;
  }

  .container {
    width: calc(100% - 30px);
  }

  .hero {
    height: 780px;
  }

  .hero-content-wrap {
    width: calc(100% - 30px);
  }

  .eyebrow {
    font-size: 10px;
    letter-spacing: .09em;
  }

  .eyebrow span {
    width: 25px;
  }

  .hero-title {
    font-size: 48px;
    line-height: 1;
  }

  .hero-description {
    font-size: 15px;
    line-height: 1.65;
    margin-top: 22px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 260px;
  }

  .btn {
    width: 100%;
  }

  .hero-bottom {
    width: calc(100% - 30px);
    bottom: 24px;
  }

  .slider-controls {
    width: 100%;
    justify-content: space-between;
  }

  .progress-track {
    flex: 1;
  }

  .section-image img {
    height: 390px;
  }

  .image-badge {
    right: 12px;
    bottom: -20px;
    width: 120px;
    height: 120px;
    padding: 20px;
  }

  .image-badge strong {
    font-size: 27px;
  }

  .intro-copy {
    padding-top: 20px;
  }

  .intro-copy h2,
  .section-heading h2 {
    font-size: 44px;
  }

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

  .room-grid .room-card:last-child {
    grid-column: auto;
    max-width: none;
  }

  .room-image {
    height: 330px;
  }

  .booking-strip {
    padding: 55px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* ================= NAVBAR — FIT EVERYTHING ================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 82px;
  z-index: 1000;
  background: rgba(7, 16, 68, 0.94);
  transition: all 0.35s ease;
}

.site-header.scrolled {
  height: 72px;
  background: rgba(4, 8, 45, 0.98);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(12px);
}

.navbar {
  width: calc(100% - 50px);
  max-width: 1500px;
  height: 100%;
  margin: 0 auto;

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

  gap: 18px;
}


/* ================= LOGO ================= */

.brand {
  width: 88px;
  height: 88px;

  flex: 0 0 88px;

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

  margin-top: 18px;

  z-index: 10;
}

.brand img {
  width: 100%;
  height: 100%;

  object-fit: contain;

  display: block;

  opacity: 1;

  border-radius: 0;

  background: transparent;

  box-shadow: none;
}


/* Hide fake logo text */

.brand-fallback {
  display: none;
}


/* ================= NAV LINKS ================= */

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: clamp(12px, 1.5vw, 25px);

  flex: 1;

  min-width: 0;
}

.nav-links a {
  position: relative;

  color: rgba(255, 255, 255, 0.9);

  font-size: clamp(12px, 0.9vw, 15px);

  font-weight: 500;

  white-space: nowrap;

  padding: 8px 0;

  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.nav-links a::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: 0;

  width: 0;
  height: 2px;

  background: var(--blue-light);

  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffffff;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}


/* ================= BOOK BUTTON ================= */

.nav-book {
  flex: 0 0 auto;

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

  white-space: nowrap;

  background: var(--blue);

  color: white;

  padding: 12px 17px;

  border-radius: 999px;

  font-size: 12px;

  font-weight: 700;

  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.nav-book:hover {
  background: #29add8;

  transform: translateY(-2px);
}

.nav-book span {
  margin-left: 6px;
}


/* ================= MOBILE BUTTON ================= */

.menu-toggle {
  display: none;

  width: 40px;
  height: 40px;

  background: transparent;

  cursor: pointer;

  flex: 0 0 auto;
}

.menu-toggle span {
  display: block;

  width: 26px;
  height: 2px;

  margin: 5px auto;

  background: white;

  transition: all 0.3s ease;
}


/* ================= TABLET ================= */

@media (max-width: 1100px) {

  .navbar {
    width: calc(100% - 35px);
    gap: 12px;
  }

  .brand {
    width: 75px;
    height: 75px;
    flex-basis: 75px;
  }

  .nav-links {
    gap: 12px;
  }

  .nav-links a {
    font-size: 12px;
  }

  .nav-book {
    padding: 10px 13px;
    font-size: 11px;
  }
}


/* ================= MOBILE ================= */

@media (max-width: 820px) {

  .site-header {
    height: 72px;
  }

  .navbar {
    width: calc(100% - 30px);
  }

  .brand {
    width: 70px;
    height: 70px;
    margin-top: 12px;
  }

  .nav-book {
    display: none;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 1002;
  }

  .nav-links {
    position: fixed;

    inset: 0;

    width: 100%;
    height: 100vh;

    background: var(--navy-deep);

    display: flex;
    flex-direction: column;

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

    gap: 10px;

    transform: translateX(100%);

    transition: transform 0.45s ease;

    z-index: 1001;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 23px;
    padding: 9px;
  }

  .menu-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}


/* ================= ABOUT / FEATURES ================= */

.about-features {
  background: white;
}

.about-features-heading {
  margin-bottom: 55px;
}

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

.feature-card {
  position: relative;
  min-height: 285px;
  padding: 34px 30px 30px;
  background: var(--off-white);
  border: 1px solid rgba(7, 16, 68, .08);
  overflow: hidden;
  transition: transform .4s var(--ease), background .3s ease, box-shadow .3s ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 0;
  background: var(--blue);
  transition: height .4s var(--ease);
}

.feature-card:hover {
  transform: translateY(-8px);
  background: white;
  box-shadow: 0 18px 45px rgba(7, 16, 68, .10);
}

.feature-card:hover::before {
  height: 100%;
}

.feature-number {
  position: absolute;
  top: 20px;
  right: 22px;
  color: rgba(7, 16, 68, .22);
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-weight: 600;
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 25px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.feature-card h3 {
  color: var(--navy);
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
  max-width: 360px;
}

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

  .feature-card:last-child {
    grid-column: 1 / -1;
    max-width: calc(50% - 11px);
    width: 100%;
    justify-self: center;
  }
}

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

  .feature-card:last-child {
    grid-column: auto;
    max-width: none;
  }

  .feature-card {
    min-height: 260px;
  }
}

/* Fix

/* =========================================================
   FULL SCREEN / ONE FRAME LAYOUT
   ========================================================= */

html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Header */
.site-header {
    height: 72px;
}

/* Hero fits remaining screen */
.hero {
    height: 100vh;
    min-height: 600px;
    max-height: none;
}

/* Keep hero content inside viewport */
.hero-content {
    padding-top: 50px;
}

.hero-title {
    font-size: clamp(48px, 5.5vw, 82px);
}

.hero-description {
    margin-top: 20px;
    font-size: clamp(14px, 1.1vw, 18px);
    line-height: 1.5;
}

.hero-actions {
    margin-top: 25px;
}

.btn {
    min-height: 48px;
}

/* Bottom hero controls */
.hero-bottom {
    bottom: 25px;
}

/* Prevent oversized sections */
.section {
    padding: 70px 0;
}

/* Images */
.section-image img {
    height: 500px;
}

/* Room cards */
.room-image {
    height: 300px;
}

/* Booking section */
.booking-strip {
    padding: 45px 0;
}


/* ================= ABOUT HERO ================= */

.about-hero {
  min-height: 720px;
  height: 80vh;
  position: relative;
  overflow: hidden;
  background: var(--navy-deep);
  color: white;
}

.about-hero-image {
  position: absolute;
  inset: 0;

  background-image:
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=2200&q=88");

  background-size: cover;
  background-position: center;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(2, 7, 37, .88) 0%,
      rgba(4, 12, 50, .65) 45%,
      rgba(4, 12, 50, .25) 100%
    ),
    linear-gradient(
      0deg,
      rgba(2, 6, 30, .75) 0%,
      transparent 55%
    );
}

.about-hero-content {
  position: relative;
  z-index: 2;

  width: min(1240px, calc(100% - 70px));

  min-height: 720px;

  margin: auto;

  display: flex;
  flex-direction: column;
  justify-content: center;

  padding-top: 80px;
}

.about-hero-content h1 {
  font-family: "Playfair Display", serif;

  font-size: clamp(52px, 6vw, 90px);

  line-height: .98;

  letter-spacing: -.045em;

  max-width: 850px;
}

.about-hero-content h1 em {
  color: var(--blue-light);
  font-style: italic;
}

.about-hero-content > p:last-child {
  max-width: 560px;

  margin-top: 28px;

  color: rgba(255,255,255,.82);

  font-size: 18px;

  line-height: 1.7;
}


/* ================= ABOUT INTRO ================= */

.about-location {
  background: white;
}


/* ================= ABOUT EXPERIENCES ================= */

.about-experiences {
  background: var(--navy);
  color: white;
}

.about-experiences .section-heading {
  margin-bottom: 35px;
}

.about-feature-list {
  border-top: 1px solid rgba(255,255,255,.14);
}

.about-feature {
  display: grid;

  grid-template-columns: 90px 1fr;

  gap: 30px;

  padding: 32px 0;

  border-bottom: 1px solid rgba(255,255,255,.14);

  transition:
    padding-left .35s var(--ease),
    background .3s ease;
}

.about-feature:hover {
  padding-left: 15px;
}

.about-feature-number {
  color: var(--blue-light);

  font-family: "Playfair Display", serif;

  font-size: 18px;
}

.about-feature h3 {
  font-family: "Playfair Display", serif;

  font-size: clamp(27px, 3vw, 38px);

  font-weight: 600;

  margin-bottom: 8px;
}

.about-feature p {
  max-width: 650px;

  color: rgba(255,255,255,.62);

  font-size: 15px;

  line-height: 1.75;
}


/* ================= ABOUT RESPONSIVE ================= */

@media (max-width: 820px) {

  .about-hero {
    min-height: 650px;
    height: 75vh;
  }

  .about-hero-content {
    width: calc(100% - 38px);
    min-height: 650px;
  }

  .about-hero-content h1 {
    font-size: clamp(48px, 10vw, 70px);
  }

  .about-feature {
    grid-template-columns: 55px 1fr;
    gap: 20px;
  }

}


@media (max-width: 560px) {

  .about-hero {
    min-height: 620px;
    height: 75vh;
  }

  .about-hero-content {
    width: calc(100% - 30px);
    min-height: 620px;
    padding-top: 70px;
  }

  .about-hero-content h1 {
    font-size: 48px;
  }

  .about-hero-content > p:last-child {
    font-size: 15px;
  }

  .about-feature {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 28px 0;
  }

  .about-feature-number {
    font-size: 14px;
  }

}

/* ================= ABOUT PAGE ================= */

.about-page-hero {
  min-height: 100svh;
  height: 900px;
  max-height: 1000px;
  position: relative;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  background:
    linear-gradient(
      90deg,
      rgba(4, 8, 45, .94),
      rgba(7, 16, 68, .65),
      rgba(4, 8, 45, .35)
    ),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=2200&q=88")
    center / cover;
  color: white;
}

.about-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(4, 8, 45, .7),
    transparent 60%
  );
}

.about-page-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 90px;
}

.about-page-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(52px, 7vw, 90px);
  line-height: .98;
  letter-spacing: -.04em;
  max-width: 850px;
}

.about-page-hero h1 em {
  color: var(--blue-light);
  font-style: italic;
}

.about-page-hero p:last-child {
  max-width: 620px;
  margin-top: 25px;
  color: rgba(255,255,255,.8);
  font-size: 18px;
  line-height: 1.7;
}


/* =========================================================
   ABOUT PAGE — EVERYTHING WE OFFER
   Clean white section + modern feature tiles
   ========================================================= */

.about-offers {
  background: #ffffff;
  color: var(--navy);
  position: relative;
  overflow: hidden;
}

/* subtle background detail */
.about-offers::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  top: -180px;
  right: -180px;
  border-radius: 50%;
  background: rgba(21, 157, 204, 0.045);
  pointer-events: none;
}

.about-offers .container {
  position: relative;
  z-index: 1;
}


/* ================= SECTION HEADING ================= */

.about-features-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .72fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 55px;
}

.about-features-heading h2 {
  color: var(--navy);
}

.about-features-heading > p {
  max-width: 500px;
  margin: 0;
  color: #5f6575;
  font-size: 15px;
  line-height: 1.8;
}


/* ================= FEATURE GRID ================= */

.about-feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}


/* ================= FEATURE TILE ================= */

.about-feature {
  min-height: 265px;
  padding: 32px 32px 30px;

  background: #ffffff;
  border: 1px solid #e4e8ee;
  border-radius: 4px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  position: relative;
  overflow: hidden;

  transition:
    transform .35s var(--ease),
    border-color .35s ease,
    box-shadow .35s ease;
}


/* blue accent line */
.about-feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 3px;

  background: var(--blue);

  transform: scaleX(0);
  transform-origin: left;

  transition: transform .4s var(--ease);
}


/* subtle corner detail */
.about-feature::after {
  content: "";
  position: absolute;

  width: 110px;
  height: 110px;

  right: -55px;
  bottom: -55px;

  border-radius: 50%;

  background: rgba(21, 157, 204, .055);

  transition: transform .45s var(--ease);
}


.about-feature:hover {
  transform: translateY(-7px);

  border-color: rgba(21, 157, 204, .35);

  box-shadow:
    0 18px 45px rgba(5, 17, 55, .09);
}


.about-feature:hover::before {
  transform: scaleX(1);
}


.about-feature:hover::after {
  transform: scale(1.5);
}


/* ================= NUMBER ================= */

.about-feature-number {
  color: var(--blue);

  font-family: "Playfair Display", serif;
  font-size: 17px;
  line-height: 1;

  position: relative;
  z-index: 2;
}


/* ================= TITLE ================= */

.about-feature h3 {
  margin: 42px 0 12px;

  color: var(--navy);

  font-family: "Playfair Display", serif;
  font-size: clamp(25px, 2.1vw, 31px);
  line-height: 1.1;
  font-weight: 600;

  position: relative;
  z-index: 2;
}


/* ================= DESCRIPTION ================= */

.about-feature p {
  max-width: 360px;

  margin: 0;

  color: #686f7e;

  font-size: 14px;
  line-height: 1.75;

  position: relative;
  z-index: 2;
}


/* ================= MOBILE ================= */

@media (max-width: 1020px) {

  .about-features-heading {
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
  }

  .about-features-heading > p {
    max-width: 650px;
  }

  .about-feature-list {
    grid-template-columns: repeat(2, 1fr);
  }

}


@media (max-width: 820px) {

  .about-features-heading {
    margin-bottom: 40px;
  }

  .about-feature {
    min-height: 250px;
    padding: 28px;
  }

  .about-feature h3 {
    margin-top: 35px;
  }

}


@media (max-width: 560px) {

  .about-features-heading {
    gap: 16px;
    margin-bottom: 32px;
  }

  .about-features-heading > p {
    font-size: 14px;
    line-height: 1.7;
  }

  .about-feature-list {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .about-feature {
    min-height: 225px;
    padding: 26px;
  }

  .about-feature h3 {
    margin-top: 30px;
    font-size: 27px;
  }

  .about-feature p {
    font-size: 14px;
    line-height: 1.7;
  }

}
@media (max-width: 560px) {

  .about-page-hero {
    min-height: 70vh;
  }

  .about-page-hero h1 {
    font-size: 48px;
  }

  .about-page-hero p:last-child {
    font-size: 15px;
  }

  .about-feature-list {
    grid-template-columns: 1fr;
  }

  .about-feature {
    min-height: auto;
  }

}

/*REVIEWS CSS*/
/* =========================================================
   BEACH PARADISE — ANIMATED REVIEWS
   DARK BEACH THEME
   ========================================================= */

.reviews-section {

    width: 100%;

    min-height: 100vh;
    min-height: 100svh;

    /* Beach Paradise theme background */
    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(21, 155, 208, 0.18),
            transparent 30%
        ),
        radial-gradient(
            circle at 10% 85%,
            rgba(21, 155, 208, 0.10),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #070b3d 0%,
            #0c104f 48%,
            #071b45 100%
        );

    padding: 110px 0 80px;

    overflow: hidden;

    position: relative;
}


/* =========================================================
   BACKGROUND DECORATION
   ========================================================= */

.reviews-section::before {

    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    top: -250px;
    right: -180px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(21, 155, 208, 0.18),
            transparent 68%
        );

    pointer-events: none;
}


.reviews-section::after {

    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    bottom: -220px;
    left: -180px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(21, 155, 208, 0.12),
            transparent 68%
        );

    pointer-events: none;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.reviews-container {

    width: min(1500px, calc(100% - 100px));

    margin: 0 auto;

    position: relative;

    z-index: 2;
}


/* =========================================================
   HEADING
   ========================================================= */

.reviews-heading {

    margin-bottom: 55px;

    animation: reviewsHeadingIn 0.9s ease both;
}


.reviews-kicker {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    color: #54c8ed;

    font-size: 13px;

    font-weight: 600;

    letter-spacing: 2px;

    text-transform: uppercase;

    margin-bottom: 15px;
}


.reviews-kicker::before {

    content: "";

    width: 35px;

    height: 2px;

    background: #159bd0;
}


.reviews-heading h2 {

    margin: 0;

    color: #ffffff;

    font-size: clamp(42px, 5vw, 72px);

    line-height: 1.08;

    font-weight: 700;

    letter-spacing: -2px;
}


.reviews-heading h2 span {

    color: #54c8ed;
}


.reviews-heading p {

    max-width: 600px;

    margin: 18px 0 0;

    color: rgba(255,255,255,.72);

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================================
   SLIDER
   ========================================================= */

.reviews-slider {

    width: 100%;

    overflow: hidden;

    padding: 15px 5px 35px;
}


.reviews-track {

    display: flex;

    gap: 26px;

    transition:
        transform 0.8s cubic-bezier(.77, 0, .18, 1);

    will-change: transform;
}


/* =========================================================
   REVIEW CARD
   ========================================================= */

.review-card {

    flex: 0 0 calc((100% - 52px) / 3);

    min-height: 390px;

    position: relative;

    padding: 38px 34px 45px;

    /* Keep cards white for readability */
    background: rgba(255,255,255,.98);

    border-radius: 0 28px 28px 28px;

    border: 1px solid rgba(255,255,255,.15);

    box-shadow:
        0 20px 50px rgba(0,0,0,.22);

    overflow: hidden;

    transform: translateY(0);

    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease;

    opacity: 1;
}


/* =========================================================
   BLUE ACCENT
   ========================================================= */

.review-card::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;

    height: 4px;

    background:
        linear-gradient(
            90deg,
            #159bd0,
            #54c8ed,
            #0c104f
        );

    transform: scaleX(0);

    transform-origin: left;

    transition:
        transform 0.45s ease;
}


.review-card:hover {

    transform: translateY(-10px);

    box-shadow:
        0 30px 65px rgba(0,0,0,.30);
}


.review-card:hover::before {

    transform: scaleX(1);
}


/* =========================================================
   STARS
   ========================================================= */

.review-stars {

    color: #ffb51b;

    font-size: 18px;

    letter-spacing: 5px;

    margin-bottom: 25px;
}


/* =========================================================
   NAME
   ========================================================= */

.review-card h3 {

    margin: 0 0 18px;

    color: #0c104f;

    font-size: 25px;

    line-height: 1.3;

    font-weight: 600;
}


/* =========================================================
   REVIEW TEXT
   ========================================================= */

.review-card p {

    margin: 0;

    color: #333b48;

    font-size: 15.5px;

    line-height: 1.9;

    max-width: 95%;
}


/* =========================================================
   QUOTE
   ========================================================= */

.review-quote {

    position: absolute;

    right: 28px;

    bottom: 10px;

    color: #b9ddff;

    font-family: Georgia, serif;

    font-size: 100px;

    line-height: 1;

    font-weight: bold;

    opacity: .75;

    pointer-events: none;
}


/* =========================================================
   CONTROLS
   ========================================================= */

.reviews-controls {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-top: 10px;
}


/* =========================================================
   ARROWS
   ========================================================= */

.review-arrow {

    width: 55px;
    height: 55px;

    border: 1px solid rgba(255,255,255,.20);

    border-radius: 50%;

    background: rgba(255,255,255,.08);

    color: #ffffff;

    font-size: 22px;

    cursor: pointer;

    display: flex;

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

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease,
        border-color .3s ease;

    backdrop-filter: blur(8px);
}


.review-arrow:hover {

    background: #159bd0;

    color: #ffffff;

    border-color: #159bd0;

    transform: scale(1.08);
}


/* =========================================================
   PAGINATION
   ========================================================= */

.review-pagination {

    display: flex;

    align-items: center;

    gap: 16px;
}


.review-page-number {

    color: #ffffff;

    font-size: 15px;

    font-weight: 700;
}


.review-page-number.muted {

    color: rgba(255,255,255,.35);
}


.review-page-line {

    width: 70px;

    height: 1px;

    background: rgba(255,255,255,.25);

    position: relative;
}


/* =========================================================
   DOTS
   ========================================================= */

.review-dots {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 8px;

    margin-top: 28px;
}


.review-dot {

    width: 7px;

    height: 7px;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background: rgba(255,255,255,.25);

    cursor: pointer;

    transition:
        width .35s ease,
        background .35s ease;
}


.review-dot.active {

    width: 28px;

    border-radius: 10px;

    background: #159bd0;
}


/* =========================================================
   HEADING ANIMATION
   ========================================================= */

@keyframes reviewsHeadingIn {

    from {

        opacity: 0;

        transform: translateY(30px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .reviews-container {

        width: min(
            900px,
            calc(100% - 50px)
        );

    }


    .review-card {

        flex: 0 0 calc(
            (100% - 26px) / 2
        );

    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 650px) {

    .reviews-section {

        padding: 80px 0 60px;

    }


    .reviews-container {

        width: calc(100% - 35px);

    }


    .reviews-heading {

        margin-bottom: 35px;

    }


    .reviews-heading h2 {

        font-size: 40px;

        letter-spacing: -1px;

    }


    .reviews-heading p {

        font-size: 14px;

    }


    .reviews-slider {

        padding-left: 0;

        padding-right: 0;

    }


    .review-card {

        flex: 0 0 100%;

        min-height: 390px;

        padding: 32px 26px 45px;

    }


    .review-card h3 {

        font-size: 22px;

    }


    .review-card p {

        font-size: 14px;

        line-height: 1.8;

    }


    .reviews-controls {

        margin-top: 5px;

    }


    .review-arrow {

        width: 48px;

        height: 48px;

        font-size: 18px;

    }

}

/* =========================================================
   BEACH PARADISE MIRAMAR — COMPACT BOOKING SECTION
   ========================================================= */

.booking-section {
    position: relative;
    width: 100%;

    /* Don't force the entire section to be 100vh */
    min-height: auto;

    padding: 75px 0 45px;

    background:
        linear-gradient(
            135deg,
            #f8fbfd 0%,
            #ffffff 52%,
            #f2faff 100%
        );

    overflow: hidden;
}


/* Background decoration */

.booking-section::before {
    content: "";
    position: absolute;

    width: 420px;
    height: 420px;

    right: -230px;
    top: -180px;

    border-radius: 50%;

    background: rgba(21, 157, 204, 0.06);

    pointer-events: none;
}


.booking-section::after {
    content: "";
    position: absolute;

    width: 350px;
    height: 350px;

    left: -230px;
    bottom: 80px;

    border-radius: 50%;

    background: rgba(7, 16, 68, 0.025);

    pointer-events: none;
}


/* =========================================================
   MAIN CONTENT
   ========================================================= */

.booking-wrapper {
    position: relative;
    z-index: 2;

    width: min(1320px, calc(100% - 70px));

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(300px, .82fr)
        minmax(480px, 1.18fr);

    gap: 55px;

    align-items: center;
}


/* =========================================================
   LEFT CONTENT
   ========================================================= */

.booking-intro {
    padding-right: 10px;
}


.booking-kicker {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: #159dcc;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

    margin-bottom: 12px;
}


.booking-kicker::before {
    content: "";

    width: 30px;
    height: 2px;

    background: #159dcc;
}


.booking-intro h2 {
    margin: 0;

    max-width: 520px;

    color: #071044;

    font-size: clamp(38px, 4.2vw, 58px);

    line-height: 1.04;

    letter-spacing: -1.8px;

    font-weight: 700;
}


.booking-intro h2 span {
    display: block;

    color: #159dcc;
}


.booking-description {
    max-width: 500px;

    margin: 18px 0 25px;

    color: #626a76;

    font-size: 13px;

    line-height: 1.75;
}


/* =========================================================
   CONTACT DETAILS
   ========================================================= */

.booking-details {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 10px;

    max-width: 570px;
}


.booking-detail {
    display: flex;

    align-items: center;

    gap: 10px;

    padding: 10px;

    border-radius: 11px;

    background: rgba(255,255,255,.82);

    border: 1px solid rgba(7,16,68,.055);

    text-decoration: none;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


.booking-detail:hover {
    transform: translateY(-3px);

    box-shadow:
        0 8px 25px rgba(7,16,68,.08);
}


.booking-detail-icon {
    width: 35px;
    height: 35px;

    flex: 0 0 35px;

    display: flex;

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

    border-radius: 50%;

    color: #159dcc;

    background: rgba(21,157,204,.09);

    font-size: 13px;
}


.booking-detail-icon.whatsapp-icon {
    color: #25D366;

    background: rgba(37,211,102,.10);
}


.booking-detail span {
    display: block;

    color: #969ca6;

    font-size: 8px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: .8px;

    margin-bottom: 2px;
}


.booking-detail strong {
    display: block;

    color: #071044;

    font-size: 10px;

    font-weight: 600;
}


/* =========================================================
   PROMISE
   ========================================================= */

.booking-promise {
    display: flex;

    align-items: center;

    gap: 18px;

    margin-top: 20px;
}


.booking-promise p {
    display: flex;

    align-items: center;

    gap: 6px;

    color: #69717d;

    font-size: 10px;

    margin: 0;
}


.booking-promise i {
    color: #159dcc;
}


.promise-line {
    width: 28px;
    height: 1px;

    background: #159dcc;
}


/* =========================================================
   FORM CARD
   ========================================================= */

.booking-form-card {
    position: relative;

    background: #ffffff;

    padding: 27px 30px;

    border-radius: 22px;

    border: 1px solid rgba(7,16,68,.055);

    box-shadow:
        0 18px 50px rgba(7,16,68,.10);
}


.booking-form-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    border-radius: 22px 22px 0 0;

    background:
        linear-gradient(
            90deg,
            #071044,
            #159dcc
        );
}


/* =========================================================
   FORM HEADER
   ========================================================= */

.booking-form-header {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 17px;
}


.booking-form-header span {
    display: block;

    color: #159dcc;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 1.7px;

    margin-bottom: 3px;
}


.booking-form-header h3 {
    margin: 0;

    color: #071044;

    font-size: 23px;

    font-weight: 700;
}


.booking-form-mark {
    width: 40px;
    height: 40px;

    display: flex;

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

    border-radius: 11px;

    color: #159dcc;

    background: #eef9fd;

    font-size: 16px;
}


/* =========================================================
   FORM GRID
   ========================================================= */

.booking-form-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 11px 14px;
}


.booking-field-full {
    grid-column: span 2;
}


.booking-field label {
    display: block;

    margin-bottom: 4px;

    color: #071044;

    font-size: 9px;

    font-weight: 600;
}


.booking-input-wrap {
    position: relative;
}


.booking-input-wrap > i {
    position: absolute;

    left: 12px;

    top: 50%;

    transform: translateY(-50%);

    color: #8b929d;

    font-size: 11px;

    pointer-events: none;

    transition: color .3s ease;
}


.booking-input-wrap input,
.booking-input-wrap select,
.booking-input-wrap textarea {
    width: 100%;

    border: 1px solid #e4e8ee;

    background: #f8fafc;

    border-radius: 8px;

    color: #202431;

    font-family: "Poppins", sans-serif;

    font-size: 10px;

    outline: none;

    transition:
        border-color .3s ease,
        background .3s ease,
        box-shadow .3s ease;
}


.booking-input-wrap input,
.booking-input-wrap select {
    height: 38px;

    padding: 0 10px 0 33px;
}


.booking-input-wrap textarea {
    min-height: 58px;

    padding: 10px 10px 10px 33px;

    resize: none;
}


.booking-input-wrap input:focus,
.booking-input-wrap select:focus,
.booking-input-wrap textarea:focus {
    border-color: #159dcc;

    background: #ffffff;

    box-shadow:
        0 0 0 3px rgba(21,157,204,.07);
}


.booking-input-wrap:focus-within > i {
    color: #159dcc;
}


.booking-input-wrap input::placeholder,
.booking-input-wrap textarea::placeholder {
    color: #a2a8b2;

    font-family: "Poppins", sans-serif;
}


/* =========================================================
   WHATSAPP BUTTON
   ========================================================= */

.whatsapp-booking-btn {
    width: 100%;

    min-height: 52px;

    display: flex;

    align-items: center;

    gap: 11px;

    margin-top: 15px;

    padding: 7px 14px;

    border: none;

    border-radius: 10px;

    background: #25D366;

    color: #ffffff;

    font-family: "Poppins", sans-serif;

    cursor: pointer;

    text-align: left;

    box-shadow:
        0 9px 22px rgba(37,211,102,.20);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        background .3s ease;
}


.whatsapp-booking-btn:hover {
    background: #20bd5b;

    transform: translateY(-2px);

    box-shadow:
        0 13px 28px rgba(37,211,102,.27);
}


.whatsapp-button-icon {
    width: 36px;
    height: 36px;

    flex: 0 0 36px;

    display: flex;

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

    border-radius: 50%;

    background: rgba(255,255,255,.18);

    font-size: 19px;
}


.whatsapp-button-text {
    flex: 1;
}


.whatsapp-button-text strong {
    display: block;

    font-size: 11px;

    font-weight: 700;
}


.whatsapp-button-text small {
    display: block;

    margin-top: 1px;

    font-size: 8px;

    opacity: .85;
}


.whatsapp-arrow {
    font-size: 11px;

    transition:
        transform .3s ease;
}


.whatsapp-booking-btn:hover .whatsapp-arrow {
    transform: translateX(4px);
}


/* =========================================================
   NOTE
   ========================================================= */

.booking-note {
    display: flex;

    justify-content: center;

    align-items: center;

    gap: 5px;

    margin: 8px 0 0;

    color: #9298a2;

    font-size: 8px;

    text-align: center;
}


.booking-note i {
    color: #159dcc;
}


/* =========================================================
   SUCCESS
   ========================================================= */

.booking-success {
    display: none;

    align-items: center;

    gap: 9px;

    margin-top: 10px;

    padding: 9px;

    border-radius: 8px;

    background: #ecfdf5;

    border: 1px solid #b7f2d0;

    color: #087f43;

    animation:
        bookingSuccessIn .4s ease both;
}


.booking-success.show {
    display: flex;
}


.booking-success > i {
    font-size: 17px;
}


.booking-success strong,
.booking-success span {
    display: block;
}


.booking-success strong {
    font-size: 9px;
}


.booking-success span {
    margin-top: 1px;

    font-size: 8px;

    opacity: .8;
}


@keyframes bookingSuccessIn {

    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================================
   MAP
   ========================================================= */

.booking-map {
    position: relative;

    z-index: 2;

    width: min(1320px, calc(100% - 70px));

    /* REDUCED FROM 330px */
    height: 210px;

    margin: 40px auto 0;

    border-radius: 18px;

    overflow: hidden;

    box-shadow:
        0 15px 40px rgba(7,16,68,.09);
}


.booking-map iframe {
    width: 100%;
    height: 100%;

    border: 0;

    filter:
        saturate(.85)
        contrast(.95);
}


/* Map floating card */

.map-overlay-card {
    position: absolute;

    left: 18px;
    bottom: 18px;

    display: flex;

    align-items: center;

    gap: 9px;

    padding: 9px 13px;

    border-radius: 10px;

    background: rgba(255,255,255,.94);

    box-shadow:
        0 7px 22px rgba(0,0,0,.14);

    backdrop-filter: blur(10px);
}


.map-overlay-card > i {
    width: 30px;
    height: 30px;

    display: flex;

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

    border-radius: 50%;

    color: #159dcc;

    background: #eef9fd;

    font-size: 11px;
}


.map-overlay-card strong,
.map-overlay-card span {
    display: block;
}


.map-overlay-card strong {
    color: #071044;

    font-size: 9px;
}


.map-overlay-card span {
    margin-top: 1px;

    color: #747b86;

    font-size: 8px;
}


/* =========================================================
   REVEAL
   ========================================================= */

.booking-reveal {
    opacity: 0;

    transform: translateY(25px);

    transition:
        opacity .7s ease,
        transform .7s cubic-bezier(.22,1,.36,1);
}


.booking-reveal.booking-visible {
    opacity: 1;

    transform: translateY(0);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {

    .booking-wrapper {
        grid-template-columns: 1fr;

        gap: 40px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 650px) {

    .booking-section {
        padding: 65px 0 40px;
    }


    .booking-wrapper,
    .booking-map {
        width: calc(100% - 30px);
    }


    .booking-intro h2 {
        font-size: 40px;

        letter-spacing: -1px;
    }


    .booking-description {
        font-size: 13px;
    }


    .booking-details {
        grid-template-columns: 1fr;
    }


    .booking-form-card {
        padding: 23px 16px;

        border-radius: 18px;
    }


    .booking-form-grid {
        grid-template-columns: 1fr;
    }


    .booking-field-full {
        grid-column: span 1;
    }


    .booking-map {
        height: 180px;

        margin-top: 35px;

        border-radius: 15px;
    }

}

/* =========================================================
   BEACH PARADISE — GALLERY SECTION
   ========================================================= */


/* =========================================================
   BEACH PARADISE MIRAMAR
   PREMIUM FOOTER
   ========================================================= */


/* =========================================================
   FOOTER
   ========================================================= */
/* =========================================================
   BEACH PARADISE MIRAMAR FOOTER
   ========================================================= */

.bp-footer {
    position: relative;
    overflow: hidden;

    background: #0c104f;

    color: #ffffff;

    padding: 70px 6% 0;

    font-family: "Poppins", sans-serif;
}


/* subtle background glow */

.bp-footer::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    left: -250px;
    bottom: -300px;

    border-radius: 50%;

    background: rgba(21, 155, 211, 0.13);

    filter: blur(90px);

    pointer-events: none;
}


.bp-footer::after {
    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    right: -200px;
    top: -200px;

    border-radius: 50%;

    background: rgba(21, 155, 211, 0.08);

    filter: blur(90px);

    pointer-events: none;
}


/* =========================================================
   MAIN FOOTER
   ========================================================= */

.bp-footer-main {

    position: relative;

    z-index: 2;

    max-width: 1400px;

    margin: auto;

    display: grid;

    grid-template-columns:
        1.35fr
        .75fr
        1.15fr
        1.2fr;

    gap: 55px;

    padding-bottom: 60px;
}


/* =========================================================
   LOGO
   ========================================================= */

.bp-footer-logo {

    width: 115px;
    height: 115px;

    border-radius: 50%;

    background: #ffffff;

    display: flex;

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

    margin-bottom: 20px;

    box-shadow:
        0 12px 35px rgba(0,0,0,.25);
}


.bp-footer-logo img {

    width: 100%;
    height: 100%;

    object-fit: contain;

    border-radius: 50%;
}


/* =========================================================
   BRAND
   ========================================================= */

.bp-footer-brand h3 {

    margin: 0 0 10px;

    font-size: 25px;

    font-weight: 700;

    color: #ffffff;
}


.bp-footer-brand > p {

    max-width: 330px;

    margin: 0;

    color: rgba(255,255,255,.68);

    font-size: 13.5px;

    line-height: 1.8;
}


/* =========================================================
   SOCIAL
   ========================================================= */

.bp-social {

    display: flex;

    gap: 12px;

    margin-top: 24px;
}


.bp-social a {

    width: 43px;
    height: 43px;

    display: flex;

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

    border-radius: 13px;

    background: rgba(255,255,255,.09);

    border: 1px solid rgba(255,255,255,.16);

    color: #ffffff;

    text-decoration: none;

    transition:
        .3s ease;
}


.bp-social svg {

    width: 19px;
    height: 19px;

    display: block;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.8;

    stroke-linecap: round;

    stroke-linejoin: round;
}


.bp-social a:first-child svg {
    fill: currentColor;
    stroke: none;
}


.bp-social a:hover {

    transform: translateY(-5px);

    background: #159bd3;

    border-color: #159bd3;

    box-shadow:
        0 10px 25px rgba(21,155,211,.3);
}


/* =========================================================
   FOOTER COLUMNS
   ========================================================= */

.bp-footer-column h4 {

    margin: 0 0 23px;

    color: #ffffff;

    font-size: 17px;

    font-weight: 600;

    position: relative;

    padding-bottom: 11px;
}


.bp-footer-column h4::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 38px;
    height: 3px;

    border-radius: 10px;

    background: #159bd3;
}


/* =========================================================
   LINKS
   ========================================================= */

.bp-footer-column > a:not(.bp-contact) {

    display: block;

    margin-bottom: 12px;

    color: rgba(255,255,255,.68);

    font-size: 13.5px;

    text-decoration: none;

    transition:
        color .25s ease,
        transform .25s ease;
}


.bp-footer-column > a:not(.bp-contact):hover {

    color: #ffffff;

    transform: translateX(5px);
}


/* =========================================================
   CONTACT
   ========================================================= */

.bp-contact {

    display: flex !important;

    align-items: flex-start !important;

    gap: 13px;

    margin-bottom: 17px;

    color: rgba(255,255,255,.70) !important;

    text-decoration: none !important;

    font-size: 13px;

    line-height: 1.65;

    transition: color .25s ease;
}


.bp-contact:hover {

    color: #ffffff !important;
}


/* CONTACT ICON */

.bp-contact-icon {

    width: 42px;

    height: 42px;

    min-width: 42px;

    display: flex !important;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: rgba(21,155,211,.13);

    color: #159bd3;

    flex-shrink: 0;
}


.bp-contact-icon svg {

    width: 19px !important;

    height: 19px !important;

    display: block !important;

    visibility: visible !important;

    opacity: 1 !important;

    fill: none !important;

    stroke: #159bd3 !important;

    stroke-width: 1.7 !important;

    stroke-linecap: round !important;

    stroke-linejoin: round !important;
}


.bp-contact-icon svg path,
.bp-contact-icon svg circle,
.bp-contact-icon svg rect {

    fill: none !important;

    stroke: currentColor !important;

    stroke-width: 1.7 !important;

    stroke-linecap: round !important;

    stroke-linejoin: round !important;
}


.bp-contact:hover .bp-contact-icon {

    background: #159bd3;

    color: #ffffff;

}


/* =========================================================
   MAP
   ========================================================= */

.bp-map {

    position: relative;

    height: 220px;

    overflow: hidden;

    border-radius: 18px;

    border: 1px solid rgba(255,255,255,.12);

    box-shadow:
        0 15px 35px rgba(0,0,0,.22);
}


.bp-map iframe {

    width: 100%;
    height: 100%;

    border: 0;

    display: block;
}


/* MAP BUTTON */

.bp-map-button {

    position: absolute;

    left: 14px;
    bottom: 14px;

    display: inline-flex;

    align-items: center;
    gap: 8px;

    padding: 11px 16px;

    border-radius: 999px;

    background: #159bd3;

    color: #ffffff;

    font-size: 12px;

    font-weight: 600;

    text-decoration: none;

    box-shadow:
        0 8px 20px rgba(0,0,0,.25);

    transition: .3s ease;
}


.bp-map-button svg {

    width: 15px;
    height: 15px;

    fill: none;

    stroke: currentColor;

    stroke-width: 2;

    stroke-linecap: round;

    stroke-linejoin: round;
}


.bp-map-button:hover {

    background: #ffffff;

    color: #0c104f;

    transform: translateY(-3px);
}


/* =========================================================
   BOTTOM
   ========================================================= */

.bp-footer-bottom {

    position: relative;

    z-index: 2;

    max-width: 1400px;

    margin: auto;

    padding: 20px 0;

    border-top: 1px solid rgba(255,255,255,.12);

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    flex-wrap: wrap;

    color: rgba(255,255,255,.55);

    font-size: 11.5px;
}


.bp-footer-bottom p {

    margin: 0;
}


.bp-footer-bottom div {

    display: flex;

    gap: 10px;

    align-items: center;
}


.bp-footer-bottom a {

    color: rgba(255,255,255,.65);

    text-decoration: none;

    transition: .25s ease;
}


.bp-footer-bottom a:hover {

    color: #159bd3;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .bp-footer-main {

        grid-template-columns:
            1fr 1fr;

        gap: 45px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 650px) {

    .bp-footer {

        padding: 55px 6% 0;
    }


    .bp-footer-main {

        grid-template-columns: 1fr;

        gap: 38px;

        padding-bottom: 40px;
    }


    .bp-footer-logo {

        width: 100px;
        height: 100px;
    }


    .bp-map {

        height: 230px;
    }


    .bp-footer-bottom {

        flex-direction: column;

        justify-content: center;

        text-align: center;

        gap: 12px;
    }

}


/* =========================================================
   FIX — REVEAL SECTIONS VISIBILITY
   ========================================================= */

.reveal {
    opacity: 1;
    visibility: visible;
    transform: none;
}


/* =========================================================
   BEACH PARADISE — ISOLATED GALLERY
   All classes use bp-gallery- to prevent conflicts
   ========================================================= */

.bp-gallery-section {
    position: relative;
    width: 100%;
    background: #ffffff;
    padding: 80px 0 70px;
    overflow: hidden;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.bp-gallery-container {
    width: min(1350px, calc(100% - 80px));
    margin: 0 auto;
}


/* =========================================================
   HEADING
   ========================================================= */

.bp-gallery-heading {
    max-width: 650px;
    margin-bottom: 35px;
}

.bp-gallery-kicker {
    display: flex;
    align-items: center;
    gap: 9px;

    color: #159bd0;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;

    margin-bottom: 10px;
}

.bp-gallery-kicker span {
    width: 28px;
    height: 2px;
    flex-shrink: 0;
    background: #159bd0;
}

.bp-gallery-heading h2 {
    margin: 0;

    color: #0c104f;

    font-size: clamp(38px, 4.3vw, 60px);
    line-height: 1.05;
    letter-spacing: -1.8px;
    font-weight: 700;
}

.bp-gallery-heading h2 span {
    color: #159bd0;
}

.bp-gallery-heading p {
    max-width: 530px;

    margin: 12px 0 0;

    color: #707782;

    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   SLIDER
   ========================================================= */

.bp-gallery-slider {
    position: relative;

    width: 100%;

    overflow: hidden;

    border-radius: 22px;

    background: #071044;

    box-shadow:
        0 20px 50px rgba(12, 16, 79, 0.14);
}


/* =========================================================
   SLIDER TRACK
   ========================================================= */

.bp-gallery-track {
    display: flex;

    width: 100%;

    gap: 0;

    transition:
        transform 0.8s cubic-bezier(.77, 0, .18, 1);

    will-change: transform;
}


/* =========================================================
   SLIDE
   ========================================================= */

.bp-gallery-slide {
    position: relative;

    flex: 0 0 100%;

    width: 100%;
    height: 430px;

    overflow: hidden;
}

.bp-gallery-slide img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 1s cubic-bezier(.22, 1, .36, 1);
}

.bp-gallery-slide.active img {
    transform: scale(1.02);
}


/* =========================================================
   IMAGE GRADIENT
   ========================================================= */

.bp-gallery-slide::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(4, 10, 45, .72),
            rgba(4, 10, 45, .05) 60%
        );

    pointer-events: none;
}


/* =========================================================
   SLIDE INFORMATION
   ========================================================= */

.bp-gallery-slide-overlay {
    position: absolute;

    z-index: 2;

    left: 30px;
    bottom: 27px;

    display: flex;
    align-items: center;

    gap: 14px;

    color: #ffffff;
}

.bp-gallery-slide-overlay > span {
    display: flex;

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

    width: 38px;
    height: 38px;

    flex-shrink: 0;

    border-radius: 50%;

    background: #159bd0;

    font-size: 10px;
    font-weight: 600;
}

.bp-gallery-slide-overlay strong {
    display: block;

    font-size: 18px;
    font-weight: 600;
}

.bp-gallery-slide-overlay small {
    display: block;

    margin-top: 2px;

    color: rgba(255, 255, 255, .7);

    font-size: 10px;
}


/* =========================================================
   ARROWS
   ========================================================= */

.bp-gallery-arrow {
    position: absolute;

    z-index: 5;

    top: 50%;

    transform: translateY(-50%);

    width: 48px;
    height: 48px;

    display: flex;

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

    padding: 0;

    border: 1px solid rgba(255, 255, 255, .35);

    border-radius: 50%;

    background: rgba(7, 16, 68, .45);

    color: #ffffff;

    cursor: pointer;

    backdrop-filter: blur(8px);

    transition:
        background .3s ease,
        border-color .3s ease,
        transform .3s ease;
}

.bp-gallery-prev {
    left: 20px;
}

.bp-gallery-next {
    right: 20px;
}

.bp-gallery-arrow:hover {
    background: #159bd0;

    border-color: #159bd0;

    transform:
        translateY(-50%)
        scale(1.08);
}

.bp-gallery-arrow span {
    font-size: 16px;
    line-height: 1;
}


/* =========================================================
   BOTTOM AREA
   ========================================================= */

.bp-gallery-bottom {
    display: flex;

    align-items: center;
    justify-content: space-between;

    width: 100%;

    margin-top: 22px;
}


/* =========================================================
   COUNTER
   ========================================================= */

.bp-gallery-counter {
    display: flex;

    align-items: center;

    gap: 12px;

    color: #0c104f;

    font-size: 11px;
    font-weight: 600;
}

.bp-gallery-muted {
    color: #a3a7ae;
}

.bp-gallery-counter-line {
    width: 55px;
    height: 1px;

    background: #d9dce1;
}


/* =========================================================
   VIEW MORE BUTTON
   ========================================================= */

.bp-gallery-view-more {
    display: inline-flex;

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

    gap: 12px;

    padding: 11px 17px;

    border-radius: 50px;

    background: #0c104f;

    color: #ffffff;

    text-decoration: none;

    font-family: "Poppins", sans-serif;

    font-size: 10px;
    font-weight: 600;

    transition:
        background .3s ease,
        transform .3s ease,
        box-shadow .3s ease;
}

.bp-gallery-view-more i {
    display: flex;

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

    width: 24px;
    height: 24px;

    border-radius: 50%;

    background: #159bd0;

    font-size: 9px;

    transition:
        transform .3s ease;
}

.bp-gallery-view-more:hover {
    background: #159bd0;

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(21, 155, 208, .20);
}

.bp-gallery-view-more:hover i {
    transform: translateX(3px);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .bp-gallery-section {
        padding: 65px 0 55px;
    }

    .bp-gallery-container {
        width: calc(100% - 50px);
    }

    .bp-gallery-slide {
        height: 360px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 650px) {

    .bp-gallery-section {
        padding: 55px 0 45px;
    }

    .bp-gallery-container {
        width: calc(100% - 30px);
    }

    .bp-gallery-heading {
        margin-bottom: 25px;
    }

    .bp-gallery-heading h2 {
        font-size: 37px;
        letter-spacing: -1px;
    }

    .bp-gallery-heading p {
        font-size: 12px;
        line-height: 1.65;
    }

    .bp-gallery-slider {
        border-radius: 16px;
    }

    .bp-gallery-slide {
        height: 300px;
    }

    .bp-gallery-slide-overlay {
        left: 18px;
        bottom: 18px;

        gap: 10px;
    }

    .bp-gallery-slide-overlay > span {
        width: 32px;
        height: 32px;

        font-size: 9px;
    }

    .bp-gallery-slide-overlay strong {
        font-size: 15px;
    }

    .bp-gallery-slide-overlay small {
        font-size: 9px;
    }

    .bp-gallery-arrow {
        width: 38px;
        height: 38px;
    }

    .bp-gallery-prev {
        left: 12px;
    }

    .bp-gallery-next {
        right: 12px;
    }

    .bp-gallery-bottom {
        margin-top: 17px;
    }

    .bp-gallery-counter {
        gap: 8px;
    }

    .bp-gallery-counter-line {
        width: 35px;
    }

    .bp-gallery-view-more {
        padding: 10px 14px;
        font-size: 9px;
        gap: 8px;
    }

    .bp-gallery-view-more i {
        width: 21px;
        height: 21px;
    }

}