@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700;800;900&family=Barlow:wght@400;500;600;700&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #1a3560;
  --secondary: #f9c930;
  --bg: #fafaf7;
  --text: #1a1a2e;
  --muted: #6b7280;
  --border: rgba(26, 53, 96, 0.12);
  --white: #ffffff;
  --radius: 16px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  line-height: 1.1;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ===== NAVBAR ===== */
.navbar{
position:fixed;
top:0;
left:0;
right:0;
z-index:100;
padding:0 50px;
height:90px;
display:flex;
align-items:center;
justify-content:space-between;
transition:.3s;
}
.navbar.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, .08);
}
.navbar.scrolled .nav-brand-name{
color:var(--primary);
}
.nav-logo{
display:flex;
align-items:center;
gap:14px;
}
.nav-logo img{
height:58px;
width:58px;
object-fit:contain;
}
.nav-brand{
display:flex;
flex-direction:column;
}
.nav-brand-name{
font-family:'Barlow Condensed',sans-serif;
font-weight:900;
font-size:32px;
color:var(--white);
letter-spacing:3px;
line-height:1;
}
.nav-brand-sub{
font-size:11px;
font-weight:700;
letter-spacing:4px;
text-transform:uppercase;
color:var(--secondary);
margin-top:5px;
}


.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--white);
  transition: color .2s;
}

.navbar.scrolled .nav-links a {
  color: var(--text);
}

.nav-links a:hover {
  color: var(--secondary);
}

.nav-book {
  background: var(--secondary);
  color: var(--text) !important;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 700 !important;
  font-size: 13px !important;
  transition: opacity .2s !important;
}

.nav-book:hover {
  opacity: .85;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
}
html.menu-open,
body.menu-open {
  overflow: hidden;
  height: 100%;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: .3s;
}

.navbar.scrolled .nav-hamburger span {
  background: var(--text);
}

.mobile-menu{
display:none;
position:fixed;
top:0;
right:0;
width:65%;
height:100vh;
background:#16345f;
z-index:999;
flex-direction:column;
padding:90px 25px 25px;
box-shadow:-10px 0 30px rgba(0,0,0,.3);
}

.mobile-menu.open{
display:flex;
}

.menu-close{
position:absolute;
top:20px;
right:20px;
width:40px;
height:40px;
border-radius:50%;
border:none;
background:rgba(255,255,255,.15);
color:white;
font-size:28px;
cursor:pointer;
display:flex;
align-items:center;
justify-content:center;
}

.menu-close:hover{
background:rgba(255,255,255,.25);
color:white;
}

.mobile-menu a{
font-family:'Barlow Condensed',sans-serif;
font-size:22px;
font-weight:800;
color:white;
text-transform:capitalize;
padding:25px 0;
border-bottom:1px solid rgba(255,255,255,.15);
display:flex;
justify-content:space-between;
}

.mobile-menu a:not(.nav-book)::after{
content:"→";
color:rgba(255,255,255,.5);
}

.mobile-menu a:hover{
color: #f9c930;
}

.mobile-menu .nav-book{
position:absolute;
bottom:20px;
left:25px;
right:25px;
background:#f5c542;
color:#1a1a1a !important;
justify-content:center;
border-radius:12px;
padding:16px;
}
.menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  z-index: 998;
}

.menu-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

html.menu-open,
body.menu-open {
  overflow: hidden;
  height: 100vh;
}


.nav-hamburger{
display:none;
background:none;
border:none;
cursor:pointer;
}



@media(max-width:900px){

.nav-hamburger{
display:flex;
flex-direction:column;
gap:6px;
}

.nav-hamburger span{
width:26px;
height:2px;
background:white;
}

}
/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg{
position:absolute;
inset:0;
background:url('images/hero.png') center/cover no-repeat;
animation:kenburns 25s ease-in-out infinite;
will-change:transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .2) 50%, rgba(0, 0, 0, .55) 100%);
}

@keyframes kenburns {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
}
.hero-content{
animation:heroFade 1.2s ease;
}

@keyframes heroFade{

from{
opacity:0;
transform:translateY(40px);
}

to{
opacity:1;
transform:translateY(0);
}

}
.hero-badge {
  display: inline-block;
  border: 1.5px solid rgba(255, 255, 255, .5);
  padding: 6px 18px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 28px;
}

.hero-h1 {
  font-size: clamp(52px, 9vw, 110px);
  color: var(--white);
  line-height: 1;
}

.hero-h1 span {
  color: var(--secondary);
  display: block;
}

.hero-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, .85);
  margin: 20px 0 36px;
  font-weight: 400;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--secondary);
  color: var(--text);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 16px 36px;
  border-radius: 10px;
  transition: opacity .2s;
}

.btn-primary:hover {
  opacity: .85;
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, .7);
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 16px 32px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background .2s, color .2s;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, .1);
}

/* ===== SECTIONS ===== */
section {
  padding: 96px 24px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--primary);
  color: var(--primary);
  background: rgba(26, 53, 96, .05);
  padding: 6px 18px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--text);
  margin-bottom: 12px;
}

.section-sub {
  color: var(--muted);
  max-width: 520px;
  font-size: 15px;
}

.section-accent {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.accent-bar {
  width: 4px;
  height: 20px;
  background: var(--secondary);
  border-radius: 2px;
}

.accent-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--secondary);
}

/* ===== ABOUT ===== */

.about {
  background: #fff;
  padding: 80px 0;
}


.about-grid {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 55px;

  align-items: center;

}




.about-img-wrap {

  position: relative;

}



.about-img {

  width: 100%;

  aspect-ratio: 4/3;

  object-fit: cover;

  border-radius: 22px;

  transition: .5s;

}



.about-img:hover {

  transform: scale(1.03);

}




.about-overlay {

  position: absolute;

  left: 25px;

  bottom: 25px;

  background: rgba(0, 0, 0, .55);

  backdrop-filter: blur(8px);

  padding: 12px 20px;

  border-radius: 30px;

  color: white;

}


.about-overlay span {

  color: #f9c930;

}


.about-overlay p {

  margin: 4px 0 0;

  font-size: 13px;

}




.about-badge {

  position: absolute;

  right: -20px;

  bottom: -20px;

  background: #f9c930;

  color: #111;

  padding: 20px 28px;

  border-radius: 18px;

  text-align: center;

  box-shadow: 0 15px 35px rgba(0, 0, 0, .15);

}



.about-badge-num {

  font-size: 40px;

  font-weight: 900;

}



.about-badge-lbl {

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 1px;

}




.about-text {

  color: var(--muted);

  font-size: 15px;

  line-height: 1.8;

  margin: 18px 0;

}




.about-features {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 16px;

  margin-top: 30px;

}




.about-feat {

  display: flex;

  align-items: center;

  gap: 14px;

  padding: 16px;

  border-radius: 14px;

  background: #faf8f2;

  border: 1px solid #eee;

  transition: .3s;

}



.about-feat:hover {

  transform: translateY(-5px);

  box-shadow: 0 10px 25px rgba(0, 0, 0, .08);

}



.feat-icon {

  font-size: 25px;

}



.about-feat h4 {

  margin: 0;

  font-size: 16.5px;

}



.about-feat p {

  margin: 3px 0 0;

  font-size: 12px;

  color: #777;

}




.about-btn {

  display: inline-block;

  margin-top: 30px;

  background: #071e16;

  color: white;

  padding: 14px 32px;

  border-radius: 30px;

  text-decoration: none;

  font-weight: 600;

  transition: .3s;

}



.about-btn:hover {

  background: #f9c930;

  color: #111;

}





@media(max-width:768px) {

  .about-grid {

    grid-template-columns: 1fr;

  }


  .about-features {

    grid-template-columns: 1fr;

  }

  .about-badge {

    right: 10px;

  }

}

/* ===== VILLA ===== */
.villa {
  background: var(--bg);
}

.villa-grid {
  display: flex;
  flex-direction: column;
  gap: 72px;
  margin-top: 48px;
}

.villa-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.villa-row.reverse {
  direction: rtl;
}

.villa-row.reverse>* {
  direction: ltr;
}

.villa-img-wrap {
  position: relative;
}

.villa-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
}

.villa-img-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--secondary);
  color: var(--text);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.villa-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 8px;
}

.villa-title {
  font-size: clamp(22px, 3vw, 30px);
  margin-bottom: 12px;
}

.villa-desc {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.villa-perks {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.villa-perk {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(249, 201, 48, .08);
  border: 1px solid rgba(249, 201, 48, .25);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
}

.perk-icon {
  color: var(--secondary);
  font-size: 16px;
}

/* ===== GALLERY ===== */

.gallery {
  background: var(--white);
}

/* FILTERS */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: 100px;
  border: 1.5px solid #d4c9a0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: #7a6b3f;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--secondary);
  color: var(--text);
  border-color: var(--secondary);
}

/* GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}

/* ITEMS */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  background: #111;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.gallery-item:hover img {
  transform: scale(1.07);
}

/* OVERLAY */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.72) 0%,
      rgba(0, 0, 0, 0.15) 45%,
      transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px 16px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-tag {
  display: inline-block;
  background: var(--secondary);
  color: var(--text);
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  width: fit-content;
  margin-bottom: 5px;
}

.gallery-caption {
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

/* VIDEO ITEMS */
.video-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  background: #111;
}

.video-item.wide {
  grid-column: span 2;
}

.video-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.video-item:hover video {
  transform: scale(1.07);
}

/* PLAY ICON */
.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  color: #fff;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 5;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  transition: background 0.2s, transform 0.2s;
  pointer-events: none;
}

.video-item:hover .play-icon {
  background: rgba(201, 168, 76, 0.8);
  /* swap for your --secondary color */
  transform: translate(-50%, -50%) scale(1.1);
}

/* VIDEO POPUP */
.video-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.video-lightbox.open {
  display: flex;
}

.video-lightbox video {
  width: 85%;
  max-height: 85vh;
  border-radius: 14px;
}

#videoClose {
  position: absolute;
  top: 22px;
  right: 32px;
  font-size: 40px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.8;
  line-height: 1;
}

#videoClose:hover {
  opacity: 1;
}

/* IMAGE LIGHTBOX */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox.open {
  display: flex;
}

#lightboxImg {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: 12px;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  font-size: 36px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.8;
  line-height: 1;
}

.lightbox-close:hover {
  opacity: 1;
}

/* TABLET */
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item.wide,
  .video-item.wide {
    grid-column: span 2;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .gallery-item.wide,
  .video-item.wide,
  .gallery-item.tall {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* ===== NEARBY ===== */
.nearby {
  background: var(--bg);
}

.nearby-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.nearby-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow .2s;
}

.nearby-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
}

.nearby-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.nearby-card-body {
  padding: 18px 20px;
}

.nearby-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 6px;
}

.nearby-card-title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
  font-family: 'Barlow Condensed', sans-serif;
}

.nearby-card-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* ONLY first card wide */
.nearby-card.wide {
  grid-column: span 2;
}

@media (max-width: 900px) {
  .nearby-grid {
    grid-template-columns: 1fr;
  }

  .nearby-card.wide {
    grid-column: span 1;
  }
}

/* ===== REVIEWS ===== */
.reviews {
  background: var(--white);
}

.reviews-summary {
  display: flex;
  align-items: center;
  gap: 32px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 32px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.reviews-rating-big {
  text-align: center;
}

.rating-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
  color: var(--text);
}

.stars {
  display: flex;
  gap: 3px;
  margin-top: 4px;
}

.star {
  width: 18px;
  height: 18px;
  color: #fbbc04;
}

.star.empty {
  color: #e0e0e0;
}

.rating-count {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  margin-top: 4px;
}

.reviews-divider {
  width: 1px;
  height: 64px;
  background: var(--border);
}

.reviews-bars {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 180px;
}

.bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bar-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  width: 16px;
}

.bar-track {
  flex: 1;
  height: 8px;
  background: #f0f0f0;
  border-radius: 4px;
  max-width: 200px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: #fbbc04;
  border-radius: 4px;
}

.bar-count {
  font-size: 12px;
  color: var(--muted);
  width: 20px;
}

.reviews-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  transition: border-color .2s;
}

.reviews-link:hover {
  border-color: var(--secondary);
  color: var(--secondary);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.review-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow .2s;
}

.review-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, .07);
}

.review-top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.reviewer-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.reviewer-meta {
  font-size: 12px;
  color: var(--muted);
}

.review-google {
  margin-left: auto;
  flex-shrink: 0;
}

.review-text {
  font-size: 13px;
  color: #4b5563;
  line-height: 1.65;
  flex: 1;
}

.review-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

.review-tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: rgba(26, 53, 96, .7);
  background: rgba(26, 53, 96, .05);
  border: 1px solid rgba(26, 53, 96, .1);
  padding: 3px 10px;
  border-radius: 100px;
}

.reviews-more {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.btn-show-more {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--secondary);
  color: var(--text);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 14px 36px;
  border-radius: 10px;
  transition: opacity .2s;
}

.btn-show-more:hover {
  opacity: .85;
}

/* ===== CONTACT ===== */
.contact {
  background: var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 38fr 62fr;
  gap: 32px;
  align-items: start;
  margin-top: 40px;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border-radius: 14px;
  padding: 18px 20px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
  transition: box-shadow .2s;
}

.contact-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, .08);
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(249, 201, 48, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

.contact-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 2px;
}

.contact-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.booking-form {
  background: var(--white);
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 36px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 7px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(249, 201, 48, .15);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #aaa;
}

.form-textarea {
  height: auto;
  resize: none;
  padding: 14px 16px;
}

.form-error {
  font-size: 12px;
  color: #ef4444;
  margin-top: 5px;
}

.form-select {
  cursor: pointer;
}

.btn-submit {
  width: 100%;
  height: 52px;
  background: var(--secondary);
  color: var(--text);
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: opacity .2s;
  cursor: pointer;
  border: none;
}

.btn-submit:hover {
  opacity: .85;
}

.btn-submit:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.spin {
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(0, 0, 0, .25);
  border-top-color: var(--text);
  border-radius: 50%;
  animation: spin .7s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.success-box {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  padding: 48px 24px;
}

.success-box.show {
  display: flex;
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #f0fdf4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.success-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  font-weight: 900;
}

.success-sub {
  font-size: 14px;
  color: var(--muted);
  max-width: 280px;
}

.btn-again {
  padding: 12px 28px;
  background: var(--secondary);
  color: var(--text);
  font-weight: 700;
  font-size: 13px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: opacity .2s;
}

.btn-again:hover {
  opacity: .85;
}

.map-wrap {
  margin-top: 48px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.map-header {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
}

.map-accent {
  width: 4px;
  height: 16px;
  background: var(--secondary);
  border-radius: 2px;
}

.map-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--secondary);
}

.map-addr {
  font-size: 12px;
  color: var(--muted);
}

/* ===== FOOTER ===== */

footer {
  background: #071a35;
  color: white;
}

.footer-cta {
  padding: 55px 9%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.footer-cta span {
  color: #f9c930;
  letter-spacing: 4px;
  font-size: 13px;
  font-weight: 700;
}

.footer-cta h2 {
  font-size: 34px;
  margin: 12px 0 0;
  font-family: 'Barlow Condensed';
}

.footer-cta a {
  background: #ffd447;
  color: #111;
  padding: 20px 38px;
  border-radius: 18px;
  font-weight: 800;
  text-decoration: none;
}

.footer-inner {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.3fr;
  gap: 45px;
  padding: 70px 0 50px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-brand img {
  width: 55px;
}

.footer-brand h3 {
  margin: 0;
  font-size: 24px;
}

.footer-brand p {
  margin: 4px 0;
  letter-spacing: 3px;
  font-size: 11px;
  color: #f9c930;
}

.footer-desc {
  line-height: 1.8;
  color: #c5ccda;
  margin-top: 25px;
}


.footer-col h4 {
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 25px;
}

.footer-col h4:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 2px;
  background: #f9c930;
  margin-right: 10px;
}

.footer-col a {
  display: block;
  color: #c5ccda;
  margin-bottom: 15px;
  text-decoration: none;
  transition: .3s;
}

.footer-col a:visited {
  color: #c5ccda;
}

.footer-col a:hover {
  color: #f9c930;
}

.footer-col a:active,
.footer-col a:focus {
  color: #c5ccda;
  outline: none;
}

.footer-col li {
  list-style: none;
  margin-bottom: 15px;
  color: #c5ccda;
}

.footer-col ul {
  padding: 0;
}

.footer-col p {
  color: #c5ccda;
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .15);
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
  color: #9ca7b8;
}

.footer-bottom a {
  margin-left: 25px;
  color: #9ca7b8;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #f9c930;
}

.footer-bottom a:visited {
  color: #9ca7b8;
}

.footer-cta a:hover {
  background: #f9c930;
}

@media(max-width:900px) {

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-cta {
    flex-direction: column;
    gap: 25px;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
  }

}

/* ===== FLOATING BUTTONS ===== */
.floating {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.fab {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .25);
  transition: transform .2s;
  font-size: 22px;
}

.fab:hover {
  transform: scale(1.1);
}

.fab-phone {
  background: var(--primary);
  color: var(--white);
}

.fab-wa {
  background: #25D366;
  color: var(--white);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .navbar {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .about-grid,
  .villa-row,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .villa-row.reverse {
    direction: ltr;
  }

  .about-badge {
    right: 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item.wide {
    grid-column: span 2;
  }

  .nearby-grid {
    grid-template-columns: 1fr 1fr;
  }

  .nearby-card.wide {
    grid-column: span 2;
  }

  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .reviews-divider {
    display: none;
  }
}

@media (max-width: 600px) {
  section {
    padding: 64px 16px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item.wide {
    grid-column: span 2;
  }

  .nearby-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .nearby-card.wide {
    grid-column: span 1;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .about-features {
    grid-template-columns: 1fr;
  }
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .6s ease, transform .6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}

