*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  font-family:"Montserrat","Noto Sans Khmer",sans-serif;
  background:#03050a;
  color:#fff;
}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}

:root{
  --red:#e5092f;
  --gold:#c9a45c;
  --dark:#03050a;
  --navy:#08111f;
  --card:#0d1422;
  --soft:#aeb8c7;
  --line:rgba(255,255,255,.12);
}

.header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:999;
  padding:16px 7%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  background:rgba(3,5,10,.72);
  backdrop-filter:blur(18px);
  border-bottom:1px solid var(--line);
}

.logo{
  display:flex;
  align-items:center;
  gap:14px;
}
.logo img{
  width:68px;
  height:68px;
  object-fit:contain;
  border-radius:50%;
  background:#fff;
  padding:4px;
  box-shadow:0 0 35px rgba(201,164,92,.25);
}
.logo b{
  font-size:16px;
  letter-spacing:.5px;
}
.logo span{
  display:block;
  font-size:10px;
  letter-spacing:2px;
  color:var(--gold);
}

.nav{
  display:flex;
  gap:32px;
  font-size:12px;
  font-weight:800;
  letter-spacing:1px;
}
.nav a:hover{color:var(--gold)}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,var(--gold),#8f6b2e);
  color:#05070c;
  padding:14px 25px;
  border-radius:999px;
  font-size:13px;
  font-weight:900;
  border:1px solid rgba(255,255,255,.16);
  box-shadow:0 15px 40px rgba(201,164,92,.25);
  transition:.3s;
}
.btn:hover{
  transform:translateY(-3px);
  box-shadow:0 22px 55px rgba(201,164,92,.4);
}
.btn.red{
  background:linear-gradient(135deg,var(--red),#8f1022);
  color:#fff;
}
.btn.outline{
  background:rgba(255,255,255,.06);
  color:#fff;
  box-shadow:none;
}

.hero{
    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;
}

.slider{
    position:relative;
    width:100%;
    height:100%;
}

.slide{
    position:absolute;
    width:100%;
    height:100%;
    opacity:0;
    animation:fade 18s infinite;
}

.slide:nth-child(1){
    animation-delay:0s;
}

.slide:nth-child(2){
    animation-delay:6s;
}

.slide:nth-child(3){
    animation-delay:12s;
}

.slide img{
    width:100%;
    height:100%;
    object-fit:cover;

    filter:
      brightness(70%)
      contrast(110%)
      saturate(115%);

    transform:scale(1.03);
}

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

    background:
      linear-gradient(
        90deg,
        rgba(0,0,0,.82),
        rgba(0,0,0,.38),
        rgba(0,0,0,.18)
      );

    z-index:2;
}

@keyframes fade{

    0%{
        opacity:0;
    }

    5%{
        opacity:1;
    }

    30%{
        opacity:1;
    }

    35%{
        opacity:0;
    }

    100%{
        opacity:0;
    }

}

.hero-content{
    position:absolute;
    top:50%;
    left:7%;
    transform:translateY(-50%);
    z-index:5;
    max-width:750px;
}

.hero h1{
    font-size:88px;
    line-height:.92;
    font-weight:900;
    margin-bottom:25px;
    letter-spacing:-3px;
}

.hero h1 span{
    color:#d4af37;
}

.hero p{
    max-width:650px;
    line-height:1.9;
    font-size:18px;
    color:#d9e0ea;
    margin-bottom:35px;
}

.section{padding:95px 7%}
.title{
  text-align:center;
  max-width:760px;
  margin:0 auto 55px;
}
.title small{
  color:var(--gold);
  font-weight:900;
  letter-spacing:3px;
}
.title h2{
  font-size:44px;
  margin:12px 0;
}
.title p{
  color:var(--soft);
  line-height:1.8;
}

.luxury-strip{
  width:86%;
  margin:-55px auto 0;
  position:relative;
  z-index:10;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  background:#fff;
  color:#07101c;
  border-radius:26px;
  overflow:hidden;
  box-shadow:0 30px 90px rgba(0,0,0,.35);
}
.luxury-strip div{
  padding:28px;
  border-right:1px solid #eee;
}
.luxury-strip div:last-child{border-right:none}
.luxury-strip b{display:block;margin-bottom:7px}
.luxury-strip span{color:#667085;font-size:13px}

.services{
  background:linear-gradient(180deg,#03050a,#08111f);
}
.grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
}
.service-card{
  background:linear-gradient(180deg,#121b2b,#09111e);
  border:1px solid var(--line);
  border-radius:30px;
  overflow:hidden;
  transition:.35s;
}
.service-card:hover{
  transform:translateY(-12px);
  border-color:rgba(201,164,92,.55);
  box-shadow:0 35px 75px rgba(0,0,0,.45);
}
.service-card img{
  width:100%;
  height:235px;
  object-fit:cover;
}
.service-body{
  padding:28px;
}
.service-body small{
  color:var(--gold);
  font-weight:900;
}
.service-body h3{
  font-size:22px;
  margin:10px 0;
}
.service-body p{
  color:var(--soft);
  line-height:1.75;
  font-size:14px;
}

.about{
  background:#f5f7fa;
  color:#07101c;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:58px;
  align-items:center;
}
.about img{
  border-radius:34px;
  box-shadow:0 35px 80px rgba(7,16,28,.2);
}
.about h2{
  font-size:44px;
  margin-bottom:20px;
}
.about p{
  color:#536070;
  line-height:1.9;
  margin-bottom:24px;
}
.check{
  margin-top:14px;
  font-weight:800;
}
.check span{
  color:var(--gold);
  margin-right:8px;
}

.packages{
  background:#08111f;
}
.price-card{
  background:#fff;
  color:#07101c;
  border-radius:30px;
  padding:36px;
}
.price-card.featured{
  background:linear-gradient(160deg,#121b2b,#03050a);
  color:#fff;
  border:1px solid rgba(201,164,92,.5);
  transform:scale(1.03);
}
.price-card h3{font-size:24px}
.price{
  font-size:46px;
  font-weight:900;
  color:var(--gold);
  margin:20px 0;
}
.price-card ul{
  list-style:none;
  margin:24px 0;
}
.price-card li{
  padding:11px 0;
  border-bottom:1px solid rgba(0,0,0,.08);
  color:#667085;
}
.price-card.featured li{
  color:#d7dee8;
  border-bottom:1px solid rgba(255,255,255,.12);
}

.gallery{
  background:#03050a;
}
.gallery-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:18px;
}
.gallery-grid img{
  width:100%;
  height:260px;
  object-fit:cover;
  border-radius:26px;
  border:1px solid var(--line);
}
.gallery-grid img:first-child{
  height:540px;
  grid-row:span 2;
}

.booking{
  background:
    linear-gradient(90deg,rgba(3,5,10,.96),rgba(8,17,31,.85)),
    url("https://images.unsplash.com/photo-1542362567-b07e54358753?auto=format&fit=crop&w=1800&q=90");
  background-size:cover;
  background-position:center;
  display:grid;
  grid-template-columns:1fr 430px;
  gap:55px;
  align-items:center;
}
.booking h2{
  font-size:48px;
  margin-bottom:20px;
}
.booking p{
  color:#dbe3ef;
  line-height:1.8;
}
.form{
  background:rgba(255,255,255,.08);
  border:1px solid var(--line);
  border-radius:30px;
  padding:32px;
  backdrop-filter:blur(14px);
}
.form input,.form select,.form textarea{
  width:100%;
  margin-bottom:13px;
  padding:15px;
  border-radius:14px;
  border:1px solid var(--line);
  background:#050914;
  color:#fff;
}
.form textarea{height:95px}

.footer{
  background:#010309;
  padding:55px 7% 22px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1.1fr;
  gap:36px;
}
.footer img{
  width:88px;
  background:#fff;
  border-radius:50%;
  padding:4px;
  margin-bottom:15px;
}
.footer h4{margin-bottom:16px;color:var(--gold)}
.footer p,.footer li{
  color:var(--soft);
  font-size:13px;
  line-height:1.9;
  list-style:none;
}
.copy{
  margin-top:35px;
  padding-top:18px;
  border-top:1px solid var(--line);
  text-align:center;
  color:#6e7b8c;
  font-size:12px;
}

.float{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:999;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.float a{
  width:54px;
  height:54px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:23px;
  box-shadow:0 15px 40px rgba(0,0,0,.35);
}
.whatsapp{background:#25d366}
.telegram{background:#229ed9}
/*.call{background:var(--red)}*/

@media(max-width:1050px){
  .nav{display:none}
  .hero h1{font-size:54px}
  .hero-card{display:none}
  .luxury-strip{grid-template-columns:repeat(2,1fr)}
  .grid{grid-template-columns:repeat(2,1fr)}
  .about,.booking{grid-template-columns:1fr}
  .gallery-grid{grid-template-columns:1fr 1fr}
  .gallery-grid img:first-child{height:300px;grid-row:auto}
  .footer-grid{grid-template-columns:1fr 1fr}
}

@media(max-width:650px){
  .header{padding:12px 5%}
  .logo img{width:56px;height:56px}
  .logo b{font-size:13px}
  .hero-content{left:5%;right:5%}
  .hero h1{font-size:40px}
  .hero p{font-size:15px}
  .section{padding:70px 5%}
  .title h2,.about h2,.booking h2{font-size:32px}
  .luxury-strip{grid-template-columns:1fr;width:90%}
  .grid,.gallery-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
}