:root{
  --bg:#061424;
  --bg-soft:#0b1f36;
  --panel:rgba(255,255,255,0.08);
  --panel-2:rgba(255,255,255,0.12);
  --line:rgba(255,255,255,0.14);
  --white:#ffffff;
  --text:#dfeeff;
  --muted:#b5cde4;
  --primary:#2bd4e3;
  --primary-2:#7cecff;
  --dark:#03101d;
  --shadow:0 18px 55px rgba(0,0,0,0.35);
  --radius:26px;
}

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

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Outfit',sans-serif;
  background:
    radial-gradient(circle at top left, rgba(43,212,227,0.15), transparent 28%),
    radial-gradient(circle at bottom right, rgba(124,236,255,0.10), transparent 22%),
    linear-gradient(180deg, #05111d 0%, #081a2f 40%, #04111c 100%);
  color:var(--white);
  overflow-x:hidden;
}

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

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

.site-header{
  position:sticky;
  top:0;
  z-index:200;
  background:rgba(3,16,29,0.72);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(255,255,255,0.06);
}

.nav-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 0;
  gap:18px;
}

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

.brand img{
  width:58px;
  height:58px;
  border-radius:16px;
  object-fit:cover;
  box-shadow:var(--shadow);
}

.brand-text span{
  display:block;
  font-size:1.2rem;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.brand-text small{
  display:block;
  color:var(--primary);
  letter-spacing:.35em;
  text-transform:uppercase;
  font-size:.8rem;
}

.site-nav{
  display:flex;
  align-items:center;
  gap:28px;
}

.site-nav a{
  color:var(--text);
  font-weight:500;
}

.site-nav a:hover{
  color:var(--primary-2);
}

.menu-btn{
  display:none;
  border:none;
  background:none;
  color:#fff;
  font-size:1.9rem;
  cursor:pointer;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 24px;
  border-radius:18px;
  font-weight:800;
  transition:.3s ease;
  border:none;
  cursor:pointer;
}

.btn-primary{
  background:linear-gradient(135deg, var(--primary), var(--primary-2));
  color:#062235;
  box-shadow:0 14px 35px rgba(43,212,227,0.28);
}

.btn-primary:hover{
  transform:translateY(-3px);
}

.btn-glass{
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.12);
  color:#fff;
}

.btn-glass:hover{
  background:rgba(255,255,255,0.13);
}

.nav-cta{
  white-space:nowrap;
}

.hero-slider{
  position:relative;
  min-height:92vh;
  overflow:hidden;
}

.hero-slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  visibility:hidden;
  transition:opacity .8s ease, visibility .8s ease;
}

.hero-slide.active{
  opacity:1;
  visibility:visible;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(3,16,29,0.80) 0%, rgba(3,16,29,0.45) 45%, rgba(3,16,29,0.25) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.20) 0%, rgba(0,0,0,0.35) 100%);
}

.hero-content{
  position:relative;
  z-index:2;
  min-height:92vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;
  padding:90px 0 120px;
}

.hero-tag,
.section-label{
  display:inline-block;
  padding:10px 16px;
  border-radius:999px;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.12);
  color:var(--primary-2);
  text-transform:uppercase;
  letter-spacing:.16em;
  font-size:.8rem;
  margin-bottom:18px;
}

.hero-content h1{
  font-size:clamp(2.7rem, 5vw, 5.4rem);
  line-height:1.02;
  max-width:820px;
  margin-bottom:20px;
}

.hero-content p{
  max-width:680px;
  font-size:1.08rem;
  line-height:1.8;
  color:var(--muted);
  margin-bottom:28px;
}

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

.slider-controls{
  position:absolute;
  left:0;
  right:0;
  bottom:34px;
  z-index:5;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:18px;
}

.slider-arrow{
  width:48px;
  height:48px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,0.14);
  background:rgba(255,255,255,0.10);
  color:#fff;
  font-size:1.2rem;
  cursor:pointer;
  backdrop-filter:blur(10px);
}

.slider-dots{
  display:flex;
  gap:10px;
}

.slider-dot{
  width:12px;
  height:12px;
  border-radius:50%;
  background:rgba(255,255,255,0.35);
  border:none;
  cursor:pointer;
}

.slider-dot.active{
  background:var(--primary-2);
}

.info-strip{
  margin-top:-45px;
  position:relative;
  z-index:10;
}

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

.info-box{
  background:rgba(255,255,255,0.09);
  border:1px solid rgba(255,255,255,0.10);
  border-radius:24px;
  padding:24px;
  backdrop-filter:blur(18px);
  box-shadow:var(--shadow);
}

.info-box strong{
  display:block;
  font-size:1.08rem;
  margin-bottom:8px;
}

.info-box span{
  color:var(--muted);
  line-height:1.6;
}

.section{
  padding:100px 0;
}

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

.section-head h2{
  font-size:clamp(2rem, 4vw, 3.2rem);
  margin-bottom:14px;
}

.section-head p{
  color:var(--muted);
  line-height:1.8;
}

.split-section{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:42px;
  align-items:center;
}

.section-copy h2{
  font-size:clamp(2rem, 4vw, 3.3rem);
  margin-bottom:18px;
}

.section-copy p{
  color:var(--muted);
  line-height:1.9;
  margin-bottom:24px;
}

.visual-stack{
  position:relative;
  min-height:480px;
}

.visual-card{
  position:absolute;
  border-radius:28px;
  box-shadow:var(--shadow);
  background-size:cover;
  background-position:center;
}

.large-card{
  inset:0 40px 0 0;
  background-image:url('/assets/images/uploads/pool-1.jpeg');
}

.small-card.one{
  width:230px;
  height:180px;
  right:0;
  top:40px;
  border:6px solid rgba(255,255,255,0.15);
  background-image:url('/assets/images/uploads/pool-2.jpeg');
}

.small-card.two{
  width:230px;
  height:180px;
  right:0;
  bottom:40px;
  border:6px solid rgba(255,255,255,0.15);
  background-image:url('/assets/images/uploads/pool-3.jpeg');
}

.banner-section{
  padding-top:10px;
}

.promo-banner{
  position:relative;
  min-height:420px;
  border-radius:32px;
  overflow:hidden;
  background-image:url('/assets/images/uploads/pool-2.jpeg');
  background-size:cover;
  background-position:center;
  box-shadow:var(--shadow);
}

.promo-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(2,10,18,0.78) 0%, rgba(2,10,18,0.38) 55%, rgba(2,10,18,0.20) 100%);
}

.promo-content{
  position:relative;
  z-index:2;
  max-width:650px;
  padding:70px 50px;
}

.promo-content h2{
  font-size:clamp(2rem, 4vw, 3.2rem);
  margin-bottom:18px;
}

.promo-content p{
  color:var(--muted);
  line-height:1.8;
  margin-bottom:24px;
}

.experience-grid,
.activities-grid{
  display:grid;
  gap:24px;
}

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

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

.experience-card,
.activity-card,
.cta-panel{
  background:rgba(255,255,255,0.07);
  border:1px solid rgba(255,255,255,0.10);
  border-radius:28px;
  padding:30px;
  box-shadow:var(--shadow);
  backdrop-filter:blur(18px);
}

.experience-card:hover,
.activity-card:hover{
  transform:translateY(-8px);
  transition:.3s ease;
}

.exp-icon{
  font-size:2rem;
  margin-bottom:14px;
}

.experience-card h3,
.activity-card h3{
  font-size:1.4rem;
  margin-bottom:14px;
}

.experience-card p,
.activity-card p{
  color:var(--muted);
  line-height:1.8;
}

.section-dark{
  background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
}

.activity-cta{
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.wide-banner{
  border-radius:32px;
  min-height:320px;
  padding:50px;
  background:
    linear-gradient(135deg, rgba(43,212,227,0.18), rgba(124,236,255,0.10)),
    url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?q=80&w=1800&auto=format&fit=crop') center/cover no-repeat;
  box-shadow:var(--shadow);
  display:flex;
  align-items:end;
}

.wide-banner-text{
  max-width:720px;
}

.wide-banner-text h2{
  font-size:clamp(2rem, 4vw, 3rem);
  margin-bottom:14px;
}

.wide-banner-text p{
  color:var(--muted);
  line-height:1.8;
}

.cta-panel{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;
}

.cta-panel h2{
  font-size:clamp(1.8rem, 4vw, 3rem);
  margin:10px 0;
}

.cta-panel p{
  color:var(--muted);
  line-height:1.8;
}

.site-footer{
  border-top:1px solid rgba(255,255,255,0.08);
  background:rgba(0,0,0,0.18);
  padding:55px 0;
}

.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:28px;
}

.site-footer h3,
.site-footer h4{
  margin-bottom:14px;
}

.site-footer p,
.site-footer a{
  display:block;
  color:var(--muted);
  margin-bottom:10px;
}

.site-footer a:hover{
  color:var(--primary-2);
}

.booking-form{
  display:flex;
  flex-direction:column;
  gap:20px;
}

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

.form-group{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.form-group label{
  font-weight:600;
  color:var(--text);
}

.form-group input,
.form-group select,
.form-group textarea{
  width:100%;
  padding:14px 16px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,0.12);
  background:rgba(255,255,255,0.06);
  color:#fff;
  outline:none;
  font-family:'Outfit',sans-serif;
  font-size:1rem;
}

.form-group textarea{
  resize:vertical;
  min-height:120px;
}

.success-box,
.error-box{
  max-width:860px;
  margin:40px auto 0;
  padding:18px 22px;
  border-radius:18px;
  font-weight:600;
}

.success-box{
  background:rgba(24,200,216,0.15);
  border:1px solid rgba(24,200,216,0.4);
  color:#bff9ff;
}

.error-box{
  background:rgba(255,80,80,0.15);
  border:1px solid rgba(255,80,80,0.35);
  color:#ffd3d3;
}

.admin-table-wrap{
  overflow-x:auto;
}

.admin-table{
  width:100%;
  border-collapse:collapse;
}

.admin-table th,
.admin-table td{
  padding:14px;
  border-bottom:1px solid rgba(255,255,255,0.08);
  text-align:left;
  color:#fff;
  vertical-align:top;
}

.admin-table th{
  color:var(--primary-2);
}

.status-badge{
  display:inline-block;
  padding:8px 12px;
  border-radius:999px;
  font-size:.85rem;
  font-weight:700;
  text-transform:capitalize;
}

.status-pending{
  background:rgba(255,193,7,0.18);
  color:#ffe08a;
}

.status-accepted{
  background:rgba(40,167,69,0.18);
  color:#8ff0a4;
}

.status-rejected{
  background:rgba(220,53,69,0.18);
  color:#ff9aa7;
}

.inline-form{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.inline-form select{
  min-width:140px;
}

@media (max-width: 1050px){
  .split-section,
  .experience-grid,
  .activities-grid,
  .footer-grid,
  .info-grid,
  .cta-panel{
    grid-template-columns:1fr;
  }

  .cta-panel{
    display:grid;
  }

  .visual-stack{
    min-height:420px;
  }

  .promo-content{
    padding:46px 30px;
  }
}

@media (max-width: 820px){
  .site-nav{
    position:absolute;
    top:88px;
    right:4%;
    width:260px;
    display:none;
    flex-direction:column;
    padding:18px;
    border-radius:20px;
    background:rgba(3,16,29,0.96);
    border:1px solid rgba(255,255,255,0.10);
  }

  .site-nav.show{
    display:flex;
  }

  .menu-btn{
    display:block;
  }

  .nav-cta{
    display:none;
  }

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

  .hero-content h1{
    font-size:2.5rem;
  }

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

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

  .promo-banner,
  .wide-banner{
    min-height:260px;
  }

  .wide-banner{
    padding:26px;
  }

  .promo-content{
    padding:30px 22px;
  }

  .slider-controls{
    bottom:18px;
  }
}

.booking-hero{
  position:relative;
  min-height:58vh;
  display:flex;
  align-items:center;
  background:
    url('/assets/images/uploads/pool-6.jpeg') center/cover no-repeat;
}

.booking-hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(3,16,29,0.86) 0%, rgba(3,16,29,0.55) 45%, rgba(3,16,29,0.25) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0.35) 100%);
}

.booking-hero-content{
  position:relative;
  z-index:2;
  padding:110px 0 90px;
}

.booking-hero-content h1{
  font-size:clamp(2.4rem, 5vw, 4.8rem);
  line-height:1.04;
  max-width:760px;
  margin-bottom:18px;
}

.booking-hero-content p{
  max-width:680px;
  color:var(--muted);
  line-height:1.9;
  font-size:1.06rem;
}

.booking-layout{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:28px;
  align-items:start;
}

.booking-panel,
.booking-info-card,
.booking-mini-card{
  background:rgba(255,255,255,0.07);
  border:1px solid rgba(255,255,255,0.10);
  border-radius:30px;
  box-shadow:var(--shadow);
  backdrop-filter:blur(18px);
}

.luxury-form-panel{
  padding:34px;
}

.booking-panel-head{
  margin-bottom:24px;
}

.booking-panel-head h2{
  font-size:clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom:12px;
}

.booking-panel-head p{
  color:var(--muted);
  line-height:1.8;
}

.booking-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:10px;
}

.booking-side{
  display:flex;
  flex-direction:column;
  gap:22px;
}

.booking-info-main{
  padding:30px;
  min-height:220px;
  background:
    linear-gradient(135deg, rgba(43,212,227,0.16), rgba(124,236,255,0.08)),
    rgba(255,255,255,0.08);
}

.booking-info-main h3{
  font-size:1.7rem;
  margin-bottom:14px;
}

.booking-info-main p{
  color:var(--muted);
  line-height:1.85;
}

.booking-mini-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.booking-mini-card{
  padding:22px;
  transition:.3s ease;
}

.booking-mini-card:hover{
  transform:translateY(-6px);
}

.booking-mini-card h4{
  font-size:1.1rem;
  margin-bottom:10px;
}

.booking-mini-card p{
  color:var(--muted);
  line-height:1.75;
}

.booking-cta-strip{
  padding-top:10px;
}

@media (max-width: 1050px){
  .booking-layout{
    grid-template-columns:1fr;
  }
}

@media (max-width: 700px){
  .booking-mini-grid{
    grid-template-columns:1fr;
  }

  .luxury-form-panel{
    padding:22px;
  }

  .booking-hero{
    min-height:46vh;
  }
}

.booking-success-hero{
  min-height:46vh;
  background:
    url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?q=80&w=1800&auto=format&fit=crop') center/cover no-repeat;
}

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

.summary-item{
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.10);
  border-radius:22px;
  padding:20px;
}

.summary-item span{
  display:block;
  color:var(--muted);
  margin-bottom:8px;
  font-size:.95rem;
}

.summary-item strong{
  display:block;
  font-size:1.12rem;
  color:#fff;
}

@media (max-width: 700px){
  .booking-summary-grid{
    grid-template-columns:1fr;
  }
}

.register-hero{
  min-height:46vh;
  background:
    url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?q=80&w=1800&auto=format&fit=crop') center/cover no-repeat;
}

.register-page-body{
  min-height:100vh;
}

.mobile-register-hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  background:
    url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?q=80&w=1800&auto=format&fit=crop') center/cover no-repeat;
}

.mobile-register-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(3,16,29,0.70) 0%, rgba(3,16,29,0.82) 100%);
}

.mobile-register-wrap{
  position:relative;
  z-index:2;
  width:100%;
  padding:28px 0;
}

.mobile-register-card{
  width:min(520px, 100%);
  margin:auto;
  background:rgba(255,255,255,0.10);
  border:1px solid rgba(255,255,255,0.14);
  border-radius:32px;
  backdrop-filter:blur(22px);
  box-shadow:var(--shadow);
  padding:34px 26px;
  text-align:center;
}

.mobile-register-logo{
  width:88px;
  height:88px;
  object-fit:cover;
  border-radius:22px;
  margin:0 auto 18px;
  display:block;
  box-shadow:var(--shadow);
}

.mobile-register-card h1{
  font-size:clamp(2rem, 5vw, 3rem);
  line-height:1.08;
  margin-bottom:12px;
}

.mobile-register-card p{
  color:var(--muted);
  line-height:1.8;
  margin-bottom:22px;
}

.mobile-register-form{
  display:flex;
  flex-direction:column;
  gap:18px;
  text-align:left;
}

.mobile-register-form .form-group input{
  height:58px;
  font-size:1.02rem;
  border-radius:18px;
}

.mobile-register-btn{
  width:100%;
  min-height:58px;
  font-size:1rem;
  margin-top:6px;
}

.mobile-register-note{
  margin-top:16px;
  color:var(--muted);
  font-size:.95rem;
  line-height:1.7;
}

@media (max-width: 640px){
  .mobile-register-wrap{
    padding:18px 0;
  }

  .mobile-register-card{
    padding:24px 18px;
    border-radius:24px;
  }

  .mobile-register-logo{
    width:76px;
    height:76px;
    border-radius:18px;
  }

  .mobile-register-card h1{
    font-size:2rem;
  }

  .mobile-register-card p{
    font-size:.96rem;
  }

  .mobile-register-form .form-group input{
    height:56px;
    font-size:1rem;
  }
}

.welcome-hero{
  position:relative;
  min-height:52vh;
  display:flex;
  align-items:center;
  background:
    url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?q=80&w=1800&auto=format&fit=crop') center/cover no-repeat;
}

.welcome-hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(3,16,29,0.85) 0%, rgba(3,16,29,0.55) 48%, rgba(3,16,29,0.30) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.30) 100%);
}

.welcome-hero-content{
  position:relative;
  z-index:2;
  padding:110px 0 90px;
}

.welcome-hero-content h1{
  font-size:clamp(2.4rem, 5vw, 4.6rem);
  line-height:1.04;
  max-width:820px;
  margin-bottom:16px;
}

.welcome-hero-content p{
  max-width:700px;
  color:var(--muted);
  line-height:1.85;
  font-size:1.05rem;
}

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

.welcome-card{
  position:relative;
  min-height:320px;
  border-radius:30px;
  overflow:hidden;
  box-shadow:var(--shadow);
  border:1px solid rgba(255,255,255,0.10);
  display:block;
  transition:.35s ease;
}

.welcome-card:hover{
  transform:translateY(-8px);
}

.welcome-card-bg{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  transform:scale(1.02);
}

.booking-bg{
  background-image:url('https://images.unsplash.com/photo-1566073771259-6a8506099945?q=80&w=1200&auto=format&fit=crop');
}

.menu-bg{
  background-image:url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?q=80&w=1200&auto=format&fit=crop');
}

.activities-bg{
  background-image:url('https://images.unsplash.com/photo-1517649763962-0c623066013b?q=80&w=1200&auto=format&fit=crop');
}

.chalets-bg{
  background-image:url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?q=80&w=1200&auto=format&fit=crop');
}

.welcome-card-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(3,16,29,0.18) 0%, rgba(3,16,29,0.75) 100%);
}

.welcome-card-content{
  position:relative;
  z-index:2;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:end;
  padding:28px;
}

.welcome-card-content h3{
  font-size:1.8rem;
  margin-bottom:12px;
}

.welcome-card-content p{
  color:#e3efff;
  line-height:1.8;
  max-width:90%;
}

.welcome-bottom-cta{
  padding-top:10px;
}

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

@media (max-width: 640px){
  .welcome-card{
    min-height:260px;
  }

  .welcome-card-content{
    padding:22px;
  }

  .welcome-card-content h3{
    font-size:1.5rem;
  }
}

.whatsapp-bg{
  background-image:url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?q=80&w=1200&auto=format&fit=crop');
}

.admin-bg{
  background-image:url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?q=80&w=1200&auto=format&fit=crop');
}

.resort-bg{
  background-image:url('/assets/images/uploads/pool-5.jpeg');
}

.btn-danger{
  background:linear-gradient(135deg, #ff5f6d, #ff7b88);
  color:#fff;
  box-shadow:0 14px 35px rgba(255,95,109,0.22);
}

.btn-danger:hover{
  transform:translateY(-3px);
}

.dashboard-topbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  margin-bottom:28px;
  flex-wrap:wrap;
}

.dashboard-top-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.dashboard-section-bar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  margin-bottom:20px;
  flex-wrap:wrap;
}

.dashboard-tools{
  display:flex;
  gap:14px;
  align-items:center;
  flex-wrap:wrap;
}

.search-form{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}

.search-form input{
  min-width:260px;
  padding:13px 15px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,0.12);
  background:rgba(255,255,255,0.06);
  color:#fff;
  outline:none;
}

.action-stack{
  display:flex;
  flex-direction:column;
  gap:8px;
  min-width:180px;
}

.btn-call{
  background:linear-gradient(135deg, #4f8cff, #78a8ff);
  color:#fff;
  box-shadow:0 14px 35px rgba(79,140,255,0.24);
}

.btn-whatsapp{
  background:linear-gradient(135deg, #18b96b, #29d17c);
  color:#fff;
  box-shadow:0 14px 35px rgba(24,185,107,0.22);
}

.btn-confirm{
  background:linear-gradient(135deg, #7c5cff, #9b86ff);
  color:#fff;
  box-shadow:0 14px 35px rgba(124,92,255,0.22);
}

.btn-call:hover,
.btn-whatsapp:hover,
.btn-confirm:hover{
  transform:translateY(-3px);
}

@media (max-width: 900px){
  .dashboard-section-bar,
  .dashboard-tools,
  .search-form{
    width:100%;
  }

  .search-form input{
    min-width:100%;
  }

  .action-stack{
    min-width:150px;
  }
}

.admin-section{
  padding-top:70px;
}

.admin-card-block{
  padding:22px;
}

.btn-sm{
  padding:10px 16px;
  border-radius:14px;
  font-size:.92rem;
  font-weight:700;
}

.btn-xs{
  padding:8px 12px;
  border-radius:12px;
  font-size:.82rem;
  font-weight:700;
  min-height:auto;
  line-height:1.2;
}

.btn-soft{
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.12);
  color:#fff;
  box-shadow:none;
}

.btn-soft:hover{
  transform:translateY(-2px);
  background:rgba(255,255,255,0.12);
}

.admin-mobile-list{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.admin-item-card{
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:22px;
  padding:16px;
}

.admin-item-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:12px;
  margin-bottom:14px;
}

.admin-subline{
  color:var(--muted);
  margin-top:4px;
  font-size:.95rem;
}

.mini-date{
  color:var(--muted);
  font-size:.82rem;
  white-space:nowrap;
}

.admin-meta-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
  margin-bottom:14px;
}

.admin-meta-grid div{
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.06);
  border-radius:16px;
  padding:12px;
}

.admin-meta-grid span{
  display:block;
  color:var(--muted);
  font-size:.82rem;
  margin-bottom:5px;
}

.admin-meta-grid strong{
  display:block;
  color:#fff;
  font-size:.95rem;
}

.admin-note-line{
  color:var(--text);
  margin-bottom:12px;
  font-size:.92rem;
}

.admin-note-line span{
  color:var(--muted);
}

.admin-note-box{
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.06);
  border-radius:16px;
  padding:12px;
  color:var(--muted);
  line-height:1.7;
  margin-bottom:14px;
  font-size:.92rem;
}

.compact-actions{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:12px;
}

.compact-status-form{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  align-items:center;
}

.compact-status-form select{
  min-width:140px;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,0.12);
  background:rgba(255,255,255,0.06);
  color:#fff;
}

.inline-delete-form{
  margin:0;
}

.admin-empty-state{
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:18px;
  padding:18px;
  color:var(--muted);
}

.btn-call{
  background:linear-gradient(135deg, #4f8cff, #78a8ff);
  color:#fff;
  box-shadow:none;
}

.btn-whatsapp{
  background:linear-gradient(135deg, #18b96b, #29d17c);
  color:#fff;
  box-shadow:none;
}

.btn-confirm{
  background:linear-gradient(135deg, #7c5cff, #9b86ff);
  color:#fff;
  box-shadow:none;
}

.btn-danger{
  background:linear-gradient(135deg, #ff5f6d, #ff7b88);
  color:#fff;
  box-shadow:none;
}

.dashboard-topbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
  margin-bottom:22px;
  flex-wrap:wrap;
}

.dashboard-top-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.dashboard-section-bar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  margin-bottom:18px;
  flex-wrap:wrap;
}

.dashboard-tools{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
}

.search-form{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  align-items:center;
}

.search-form input{
  min-width:240px;
  padding:11px 13px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,0.12);
  background:rgba(255,255,255,0.06);
  color:#fff;
  outline:none;
  font-size:.92rem;
}

@media (max-width: 900px){
  .dashboard-section-bar,
  .dashboard-tools,
  .search-form{
    width:100%;
  }

  .search-form input{
    min-width:100%;
  }
}

@media (max-width: 640px){
  .admin-section{
    padding-top:42px;
  }

  .admin-card-block{
    padding:16px;
    border-radius:22px;
  }

  .admin-item-card{
    padding:14px;
    border-radius:18px;
  }

  .admin-item-head{
    flex-direction:column;
    align-items:flex-start;
  }

  .mini-date{
    white-space:normal;
  }

  .admin-meta-grid{
    grid-template-columns:1fr;
  }

  .compact-actions,
  .compact-status-form{
    flex-direction:column;
    align-items:stretch;
  }

  .compact-actions .btn,
  .compact-status-form .btn,
  .compact-status-form select{
    width:100%;
    justify-content:center;
  }

  .btn-sm{
    width:100%;
    justify-content:center;
  }

  .dashboard-top-actions{
    width:100%;
  }

  .dashboard-top-actions .btn{
    width:100%;
    justify-content:center;
  }
}

/* Stronger form styling for booking/register pages */
.form-group input,
.form-group select,
.form-group textarea{
  -webkit-appearance:none;
  appearance:none;
  background-color:rgba(255,255,255,0.07);
  color:#ffffff;
}

.form-group select{
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'><path d='M5 7.5L10 12.5L15 7.5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat:no-repeat;
  background-position:right 14px center;
  background-size:18px;
  padding-right:44px;
}

.form-group input[type="date"]{
  color:#ffffff;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator{
  filter:invert(1);
  opacity:.85;
  cursor:pointer;
}

.form-group select option{
  background:#142a43;
  color:#ffffff;
}

/* Booking page side cards cleaner on smaller screens */
.booking-side{
  min-width:0;
}

.booking-mini-card,
.booking-info-main{
  overflow:hidden;
}

.dashboard-tabs{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:18px;
}

.dashboard-tab{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 16px;
  border-radius:14px;
  font-weight:700;
  color:#fff;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.10);
  transition:.25s ease;
}

.dashboard-tab:hover{
  background:rgba(255,255,255,0.10);
}

.dashboard-tab.active{
  background:linear-gradient(135deg, var(--primary), var(--primary-2));
  color:#062235;
  border-color:transparent;
}

@media (max-width: 640px){
  .dashboard-tabs{
    display:grid;
    grid-template-columns:1fr 1fr;
  }

  .dashboard-tab{
    width:100%;
  }
}

.deposit-box{
  margin-top:22px;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.10);
  border-radius:24px;
  padding:22px;
}

.deposit-box h3{
  margin-bottom:10px;
  font-size:1.2rem;
}

.deposit-box p{
  color:var(--muted);
  line-height:1.8;
  margin-bottom:8px;
}

.deposit-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:16px;
}

.pool-gallery-section{
  padding-top:30px;
}

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

.pool-gallery-item{
  min-height:260px;
  border-radius:28px;
  background-size:cover;
  background-position:center;
  box-shadow:var(--shadow);
  border:1px solid rgba(255,255,255,0.08);
}

.pool-gallery-item.large{
  grid-column:span 2;
  min-height:360px;
}

.pool-gallery-item.wide{
  grid-column:span 2;
}

@media (max-width: 900px){
  .pool-gallery-grid{
    grid-template-columns:1fr 1fr;
  }

  .pool-gallery-item.large,
  .pool-gallery-item.wide{
    grid-column:span 2;
  }
}

@media (max-width: 640px){
  .pool-gallery-grid{
    grid-template-columns:1fr;
  }

  .pool-gallery-item,
  .pool-gallery-item.large,
  .pool-gallery-item.wide{
    grid-column:span 1;
    min-height:220px;
  }
}

.pool-gallery-section{
  padding-top:30px;
}

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

.pool-gallery-item{
  min-height:260px;
  border-radius:28px;
  background-size:cover;
  background-position:center;
  box-shadow:var(--shadow);
  border:1px solid rgba(255,255,255,0.08);
}

.pool-gallery-item.large{
  grid-column:span 2;
  min-height:360px;
}

.pool-gallery-item.wide{
  grid-column:span 2;
}

@media (max-width: 900px){
  .pool-gallery-grid{
    grid-template-columns:1fr 1fr;
  }

  .pool-gallery-item.large,
  .pool-gallery-item.wide{
    grid-column:span 2;
  }
}

@media (max-width: 640px){
  .pool-gallery-grid{
    grid-template-columns:1fr;
  }

  .pool-gallery-item,
  .pool-gallery-item.large,
  .pool-gallery-item.wide{
    grid-column:span 1;
    min-height:220px;
  }
}

/* ===== CLEAN FINAL OVERRIDES ===== */

.booking-hero{
  position:relative;
  min-height:58vh;
  display:flex;
  align-items:center;
  background:url('/assets/images/uploads/pool-6.jpeg') center/cover no-repeat;
}

.booking-hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(3,16,29,0.86) 0%, rgba(3,16,29,0.55) 45%, rgba(3,16,29,0.25) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0.35) 100%);
}

.booking-hero-content{
  position:relative;
  z-index:2;
  padding:110px 0 90px;
}

.booking-hero-content h1{
  font-size:clamp(2.4rem, 5vw, 4.8rem);
  line-height:1.04;
  max-width:760px;
  margin-bottom:18px;
}

.booking-hero-content p{
  max-width:680px;
  color:var(--muted);
  line-height:1.9;
  font-size:1.06rem;
}

.booking-layout{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:28px;
  align-items:start;
}

.booking-panel,
.booking-info-card,
.booking-mini-card{
  background:rgba(255,255,255,0.07);
  border:1px solid rgba(255,255,255,0.10);
  border-radius:30px;
  box-shadow:var(--shadow);
  backdrop-filter:blur(18px);
}

.luxury-form-panel{
  padding:34px;
}

.booking-panel-head{
  margin-bottom:24px;
}

.booking-panel-head h2{
  font-size:clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom:12px;
}

.booking-panel-head p{
  color:var(--muted);
  line-height:1.8;
}

.booking-side{
  display:flex;
  flex-direction:column;
  gap:22px;
  min-width:0;
}

.booking-info-main{
  padding:30px;
  min-height:220px;
  background:
    linear-gradient(135deg, rgba(43,212,227,0.16), rgba(124,236,255,0.08)),
    rgba(255,255,255,0.08);
}

.booking-info-main h3{
  font-size:1.7rem;
  margin-bottom:14px;
}

.booking-info-main p{
  color:var(--muted);
  line-height:1.85;
}

.booking-mini-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.booking-mini-card{
  padding:22px;
  transition:.3s ease;
  overflow:hidden;
}

.booking-mini-card:hover{
  transform:translateY(-6px);
}

.booking-mini-card h4{
  font-size:1.1rem;
  margin-bottom:10px;
}

.booking-mini-card p{
  color:var(--muted);
  line-height:1.75;
}

.booking-form{
  display:flex;
  flex-direction:column;
  gap:20px;
}

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

.form-group{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.form-group label{
  font-weight:600;
  color:var(--text);
}

.form-group input,
.form-group select,
.form-group textarea{
  width:100%;
  padding:14px 16px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,0.12);
  background:rgba(255,255,255,0.06);
  color:#fff;
  outline:none;
  font-family:'Outfit',sans-serif;
  font-size:1rem;
  -webkit-appearance:none;
  appearance:none;
  background-color:rgba(255,255,255,0.07);
}

.form-group textarea{
  resize:vertical;
  min-height:120px;
}

.form-group select{
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'><path d='M5 7.5L10 12.5L15 7.5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat:no-repeat;
  background-position:right 14px center;
  background-size:18px;
  padding-right:44px;
}

.form-group input[type="date"]{
  color:#ffffff;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator{
  filter:invert(1);
  opacity:.85;
  cursor:pointer;
}

.form-group select option{
  background:#142a43;
  color:#ffffff;
}

.booking-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:10px;
}

.deposit-box{
  margin-top:22px;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.10);
  border-radius:24px;
  padding:22px;
}

.deposit-box h3{
  margin-bottom:10px;
  font-size:1.2rem;
}

.deposit-box p{
  color:var(--muted);
  line-height:1.8;
  margin-bottom:8px;
}

.deposit-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:16px;
}

.booking-success-hero{
  min-height:46vh;
  background:url('/assets/images/uploads/pool-4.jpeg') center/cover no-repeat;
}

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

.summary-item{
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.10);
  border-radius:22px;
  padding:20px;
}

.summary-item span{
  display:block;
  color:var(--muted);
  margin-bottom:8px;
  font-size:.95rem;
}

.summary-item strong{
  display:block;
  font-size:1.12rem;
  color:#fff;
}

.pool-gallery-section{
  padding-top:30px;
}

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

.pool-gallery-item{
  min-height:260px;
  border-radius:28px;
  background-size:cover;
  background-position:center;
  box-shadow:var(--shadow);
  border:1px solid rgba(255,255,255,0.08);
}

.pool-gallery-item.large{
  grid-column:span 2;
  min-height:360px;
}

.pool-gallery-item.wide{
  grid-column:span 2;
}

@media (max-width: 1050px){
  .booking-layout{
    grid-template-columns:1fr;
  }
}

@media (max-width: 900px){
  .pool-gallery-grid{
    grid-template-columns:1fr 1fr;
  }

  .pool-gallery-item.large,
  .pool-gallery-item.wide{
    grid-column:span 2;
  }
}

@media (max-width: 700px){
  .booking-mini-grid,
  .booking-summary-grid,
  .form-grid{
    grid-template-columns:1fr;
  }

  .luxury-form-panel{
    padding:22px;
  }

  .booking-hero{
    min-height:46vh;
  }
}

@media (max-width: 640px){
  .booking-actions,
  .deposit-actions{
    flex-direction:column;
  }

  .booking-actions .btn,
  .deposit-actions .btn{
    width:100%;
    justify-content:center;
  }

  .pool-gallery-grid{
    grid-template-columns:1fr;
  }

  .pool-gallery-item,
  .pool-gallery-item.large,
  .pool-gallery-item.wide{
    grid-column:span 1;
    min-height:220px;
  }
}

.room-gallery-section{
  padding-top:10px;
}

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

.booking-room-item{
  min-height:250px;
  border-radius:24px;
  background-size:cover;
  background-position:center;
  box-shadow:var(--shadow);
  border:1px solid rgba(255,255,255,0.08);
}

.booking-room-item.large{
  grid-column:span 2;
  min-height:340px;
}

.booking-room-item.wide{
  grid-column:span 2;
}

@media (max-width: 900px){
  .booking-room-gallery{
    grid-template-columns:1fr 1fr;
  }

  .booking-room-item.large,
  .booking-room-item.wide{
    grid-column:span 2;
  }
}

@media (max-width: 640px){
  .booking-room-gallery{
    grid-template-columns:1fr;
  }

  .booking-room-item,
  .booking-room-item.large,
  .booking-room-item.wide{
    grid-column:span 1;
    min-height:220px;
  }
}

/* ===== MOBILE CLEANUP FIXES ===== */

/* Make mobile nav open cleanly above everything */
@media (max-width: 820px){
  .site-header{
    z-index:9999;
  }

  .site-nav{
    position:fixed !important;
    top:92px !important;
    left:4% !important;
    right:4% !important;
    width:auto !important;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:8px;
    padding:16px;
    border-radius:22px;
    background:rgba(3,16,29,0.98);
    border:1px solid rgba(255,255,255,0.12);
    box-shadow:0 20px 60px rgba(0,0,0,0.45);
    z-index:10000;
  }

  .site-nav.show{
    display:flex !important;
  }

  .site-nav a{
    padding:13px 14px;
    border-radius:14px;
    background:rgba(255,255,255,0.06);
    color:#fff;
    width:100%;
  }

  .menu-btn{
    display:block !important;
    z-index:10001;
  }
}

/* Remove slider dots/arrows on mobile because they overlap the cards */
@media (max-width: 700px){
  .slider-controls{
    display:none !important;
  }

  .info-strip{
    margin-top:0 !important;
    padding-top:24px;
  }

  .hero-slider{
    min-height:86vh;
  }

  .hero-content{
    min-height:86vh;
    padding-bottom:60px;
  }
}

/* Reduce large vertical spacing after removing repeated sections */
@media (max-width: 700px){
  .section{
    padding:70px 0;
  }

  .section-head{
    margin-bottom:28px;
  }
}

/* ===== SHOW HERO SLIDER CONTROLS ON MOBILE CLEANLY ===== */
@media (max-width: 700px){
  .slider-controls{
    display:flex !important;
    bottom:18px !important;
    gap:12px !important;
  }

  .slider-arrow{
    width:38px !important;
    height:38px !important;
    font-size:1rem !important;
    background:rgba(255,255,255,0.14) !important;
    backdrop-filter:blur(12px);
  }

  .slider-dot{
    width:9px !important;
    height:9px !important;
  }

  .hero-content{
    padding-bottom:100px !important;
  }

  .info-strip{
    margin-top:0 !important;
    padding-top:28px !important;
  }
}

.footer-credit{
  grid-column:1 / -1;
  margin-top:24px;
  padding-top:20px;
  border-top:1px solid rgba(255,255,255,0.08);
  color:var(--muted);
  font-size:.92rem;
  text-align:center;
}

.footer-credit a{
  display:inline;
  color:var(--primary-2);
  font-weight:700;
}

.footer-credit a:hover{
  color:#fff;
}

@media (max-width: 640px){
  .footer-credit{
    text-align:left;
    font-size:.9rem;
  }
}

/* ===== FINAL FORCE SHOW SLIDER BUTTONS ON MOBILE ===== */
@media (max-width: 700px){
  .hero-slider .slider-controls{
    display:flex !important;
    position:absolute !important;
    left:50% !important;
    right:auto !important;
    bottom:18px !important;
    transform:translateX(-50%) !important;
    z-index:50 !important;
    align-items:center !important;
    justify-content:center !important;
    gap:12px !important;
    width:auto !important;
    pointer-events:auto !important;
  }

  .hero-slider .slider-arrow{
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    width:40px !important;
    height:40px !important;
    border-radius:50% !important;
    font-size:1rem !important;
    color:#fff !important;
    background:rgba(255,255,255,0.16) !important;
    border:1px solid rgba(255,255,255,0.20) !important;
    backdrop-filter:blur(14px) !important;
    box-shadow:0 10px 28px rgba(0,0,0,0.25) !important;
  }

  .hero-slider .slider-dots{
    display:flex !important;
    gap:8px !important;
    align-items:center !important;
  }

  .hero-slider .slider-dot{
    display:block !important;
    width:9px !important;
    height:9px !important;
    min-width:9px !important;
    min-height:9px !important;
    padding:0 !important;
    border-radius:50% !important;
    background:rgba(255,255,255,0.42) !important;
    border:0 !important;
  }

  .hero-slider .slider-dot.active{
    background:var(--primary-2) !important;
  }

  .hero-content{
    padding-bottom:110px !important;
  }
}

/* ===== BEAUTIFUL FOOTER UPGRADE ===== */
.site-footer{
  position:relative;
  overflow:hidden;
  padding:70px 0 34px !important;
  border-top:1px solid rgba(255,255,255,0.10) !important;
  background:
    radial-gradient(circle at top left, rgba(43,212,227,0.16), transparent 28%),
    radial-gradient(circle at bottom right, rgba(124,236,255,0.12), transparent 28%),
    linear-gradient(180deg, rgba(6,20,36,0.98), rgba(3,12,22,1)) !important;
}

.site-footer:before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, transparent, rgba(255,255,255,0.04), transparent);
  pointer-events:none;
}

.site-footer .footer-grid{
  position:relative;
  z-index:2;
  background:rgba(255,255,255,0.045);
  border:1px solid rgba(255,255,255,0.10);
  border-radius:30px;
  padding:34px;
  box-shadow:0 24px 70px rgba(0,0,0,0.32);
  backdrop-filter:blur(18px);
}

.site-footer h3{
  font-size:1.55rem;
  margin-bottom:14px;
  color:#fff;
}

.site-footer h4{
  color:var(--primary-2);
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:.86rem;
  margin-bottom:16px;
}

.site-footer p{
  color:var(--muted);
  line-height:1.85;
  max-width:520px;
}

.site-footer a{
  display:flex;
  align-items:center;
  gap:9px;
  width:max-content;
  color:var(--muted);
  margin-bottom:12px;
  padding:8px 12px;
  border-radius:14px;
  transition:.25s ease;
}

.site-footer a:hover{
  color:#062235;
  background:linear-gradient(135deg, var(--primary), var(--primary-2));
  transform:translateX(4px);
}

.footer-credit{
  grid-column:1 / -1;
  margin-top:26px !important;
  padding-top:22px !important;
  border-top:1px solid rgba(255,255,255,0.10) !important;
  color:var(--muted);
  font-size:.92rem;
  text-align:center;
}

.footer-credit a{
  display:inline-flex !important;
  padding:0 !important;
  margin:0 !important;
  color:var(--primary-2) !important;
  font-weight:800;
  border-radius:0 !important;
  background:none !important;
}

.footer-credit a:hover{
  color:#fff !important;
  transform:none !important;
}

@media (max-width: 760px){
  .site-footer{
    padding:52px 0 26px !important;
  }

  .site-footer .footer-grid{
    padding:24px 20px;
    border-radius:24px;
  }

  .site-footer a{
    width:100%;
    justify-content:flex-start;
    background:rgba(255,255,255,0.04);
  }

  .footer-credit{
    text-align:left;
  }
}

/* Use real Encore pool photo for Encore Moments banner */
.wide-banner{
  background:
    linear-gradient(135deg, rgba(43,212,227,0.18), rgba(124,236,255,0.10)),
    url('/assets/images/uploads/pool-7.jpeg') center/cover no-repeat !important;
}

/* Kids playground gallery */
.playground-gallery-section{
  padding-top:30px;
}

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

.playground-gallery-item{
  min-height:280px;
  border-radius:28px;
  background-size:cover;
  background-position:center;
  box-shadow:var(--shadow);
  border:1px solid rgba(255,255,255,0.08);
}

.playground-gallery-item.large{
  grid-column:span 2;
  min-height:380px;
}

@media (max-width: 900px){
  .playground-gallery-grid{
    grid-template-columns:1fr 1fr;
  }

  .playground-gallery-item.large{
    grid-column:span 2;
  }
}

@media (max-width: 640px){
  .playground-gallery-grid{
    grid-template-columns:1fr;
  }

  .playground-gallery-item,
  .playground-gallery-item.large{
    grid-column:span 1;
    min-height:230px;
  }
}

/* Remove the two overlapping small images in About section */
.small-card.one,
.small-card.two{
  display:none !important;
}

/* Make the main About image cleaner after removing overlays */
.visual-stack{
  min-height:430px;
}

.large-card{
  inset:0 !important;
  border-radius:34px;
}

/* ===== CLICKABLE CARDS + GALLERY PAGE ===== */
.info-link-card{
  display:block;
  cursor:pointer;
  transition:.3s ease;
}

.info-link-card:hover{
  transform:translateY(-6px);
  border-color:rgba(43,212,227,0.35);
}

.gallery-page-hero{
  position:relative;
  min-height:55vh;
  display:flex;
  align-items:center;
  background:center/cover no-repeat;
}

.gallery-page-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(3,16,29,0.86) 0%, rgba(3,16,29,0.55) 45%, rgba(3,16,29,0.30) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.14) 0%, rgba(0,0,0,0.38) 100%);
}

.gallery-page-content{
  position:relative;
  z-index:2;
  padding:110px 0 90px;
}

.gallery-page-content h1{
  font-size:clamp(2.5rem, 5vw, 5rem);
  line-height:1.04;
  max-width:820px;
  margin-bottom:18px;
}

.gallery-page-content p{
  color:var(--muted);
  max-width:720px;
  font-size:1.08rem;
  line-height:1.85;
}

.gallery-tabs{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:28px;
}

.gallery-tabs a{
  padding:11px 16px;
  border-radius:999px;
  background:rgba(255,255,255,0.07);
  border:1px solid rgba(255,255,255,0.12);
  color:#fff;
  font-weight:700;
}

.gallery-tabs a.active,
.gallery-tabs a:hover{
  background:linear-gradient(135deg, var(--primary), var(--primary-2));
  color:#062235;
}

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

.dynamic-gallery-item{
  min-height:280px;
  border-radius:28px;
  background-size:cover;
  background-position:center;
  box-shadow:var(--shadow);
  border:1px solid rgba(255,255,255,0.10);
}

.dynamic-gallery-item.large{
  grid-column:span 2;
  min-height:390px;
}

.gallery-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:28px;
}

@media (max-width: 900px){
  .dynamic-gallery-grid{
    grid-template-columns:1fr 1fr;
  }

  .dynamic-gallery-item.large{
    grid-column:span 2;
  }
}

@media (max-width: 640px){
  .gallery-page-hero{
    min-height:46vh;
  }

  .gallery-page-content{
    padding:100px 0 70px;
  }

  .gallery-tabs{
    display:grid;
    grid-template-columns:1fr 1fr;
  }

  .gallery-tabs a{
    text-align:center;
  }

  .dynamic-gallery-grid{
    grid-template-columns:1fr;
  }

  .dynamic-gallery-item,
  .dynamic-gallery-item.large{
    grid-column:span 1;
    min-height:240px;
  }

  .gallery-actions .btn{
    width:100%;
  }
}

/* FORCE HIDE REMOVED ENCORE MOMENTS SECTION */
.gallery-banner,
.wide-banner,
.wide-banner-text{
  display:none !important;
  height:0 !important;
  min-height:0 !important;
  padding:0 !important;
  margin:0 !important;
  overflow:hidden !important;
}

/* Footer restore safety */
.site-footer{
  display:block !important;
  height:auto !important;
  min-height:auto !important;
  overflow:visible !important;
}

.site-footer .footer-grid{
  display:grid !important;
}

/* ===== FORCE FOOTER VISIBLE ===== */
.site-footer{
  display:block !important;
  visibility:visible !important;
  opacity:1 !important;
  height:auto !important;
  min-height:auto !important;
  overflow:visible !important;
  position:relative !important;
  z-index:5 !important;
}

.site-footer .footer-grid{
  display:grid !important;
  visibility:visible !important;
  opacity:1 !important;
}

.site-footer *{
  visibility:visible !important;
}

/* ===== CONTACT PAGE ===== */
.contact-hero{
  background:url('/assets/images/uploads/pool-2.jpeg') center/cover no-repeat !important;
}

.contact-layout{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}

.contact-card{
  background:rgba(255,255,255,0.07);
  border:1px solid rgba(255,255,255,0.10);
  border-radius:30px;
  padding:32px;
  box-shadow:var(--shadow);
  backdrop-filter:blur(18px);
}

.contact-card h2{
  font-size:clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom:14px;
}

.contact-card p{
  color:var(--muted);
  line-height:1.8;
  margin-bottom:18px;
}

.contact-actions{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.payment-number{
  font-size:1.6rem;
  font-weight:900;
  color:var(--primary-2);
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.10);
  padding:16px;
  border-radius:18px;
  margin:16px 0;
}

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

  .contact-card{
    padding:24px 20px;
    border-radius:24px;
  }

  .contact-actions .btn{
    width:100%;
  }
}

/* ===== FIVE MAIN CARDS + EVENTS GALLERY UPDATE ===== */
.info-grid-five{
  grid-template-columns:repeat(5,1fr) !important;
}

@media (max-width: 1100px){
  .info-grid-five{
    grid-template-columns:repeat(3,1fr) !important;
  }
}

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

.gallery-tabs{
  align-items:center;
}

@media (max-width: 640px){
  .gallery-tabs{
    grid-template-columns:1fr 1fr !important;
  }

  .gallery-tabs a:last-child{
    grid-column:1 / -1;
  }
}
