*{margin:0;padding:0;box-sizing:border-box;}

body{
    font-family:'Poppins',sans-serif;
    background:#fff;
    color:#fff;
}

  :root {
    --navy: #0a1f3d;
    --blue: #1a4b8c;
    --gold: #c9a84c;
    --gold-light: #e8c96a;
    --cream: #faf7f2;
    --white: #ffffff;
    --gray: #6b7280;
    --light-gray: #f0eff0;
    --dark: #111827;
    --text: #374151;
  }
  
/* HEADER */
header{
    position:fixed;
    width:100%;
    top:0;
    padding:20px 60px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    z-index:1000;
    transition:.4s;
}

header.scrolled{
    background:rgba(0,38,67,0.9);
    backdrop-filter:blur(10px);
}

.map3  { margin-bottom:16%; background: rgba(0, 38, 67, 0.9); clear:both;}

/* LOGO */
.logo img{height:65px;}

/* NAV */
nav ul{
    display:flex;
    list-style:none;
    gap:35px;
}

nav ul li a{
    color:#fff;
    text-decoration:none;
    font-size:15px;
    letter-spacing:1px;
    text-transform:uppercase;
}

/* RIGHT */
.header-right{
    display:flex;
    align-items:center;
    gap:20px;
}

.phone a{
    color:#fff;
    text-decoration:none;
    font-size:17px;
}

/* BUTTON */
.book-btn{
    padding:10px 25px; font-size:17px;
    border-radius:20px;
    color:#fff; background:#0097fb;
    text-decoration:none;
    position:relative;
    overflow:hidden;
}

.book-btn:before{
    content:"";
    position:absolute;
    width:0%;
    height:100%;
    background:linear-gradient(135deg,#d4af37,#f7e7a1);
    left:0;top:0;
    transition:.4s;
    z-index:-1;
}

.book-btn:hover:before{width:100%;}
.book-btn:hover{color:#000; background:#fff;}

/* HAMBURGER */
.menu-toggle{
    display:none;
    flex-direction:column;
    gap:5px;
    cursor:pointer;
}

.menu-toggle span{
    width:25px;
    height:2px;
    background:#fff;
}

/* MOBILE MENU */
.mobile-menu{
    position:fixed;
    top:0;
    right:-100%;
    width:280px;
    height:100%;
    background:rgba(10,15,25,0.98);
    backdrop-filter:blur(12px);
    display:flex;
    flex-direction:column;
    padding:100px 30px;
    gap:25px;
    transition:.4s;
    z-index:1000;
}

.mobile-menu.active{right:0;}

.mobile-menu a{
    color:#fff;
    text-decoration:none;
    font-size:16px;
}

.mobile-book{
    padding:12px;
    text-align:center;
    background:linear-gradient(135deg,#d4af37,#f7e7a1);
    color:#000 !important;
    border-radius:30px;
}

/* CLOSE BUTTON */
.menu-header{
    position:absolute;
    top:20px;
    right:25px;
}

.menu-close{
    font-size:32px;
    cursor:pointer;
}

/* HERO */
.hero{
    height:100vh;
    position:relative;
    overflow:hidden;
}

.slide{
    position:absolute;
    width:100%;
    height:100%;
    background-size:cover;
    background-position:center;
    opacity:0;
    transform:scale(1.1);
    transition:1s;
}

.slide.active{
    opacity:1;
    transform:scale(1);
}

/* OVERLAY */
.overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:linear-gradient(to right, rgba(0,38,67,0.8), rgba(0,38,67,0.4));
}

/* CONTENT */
.hero-content{
    position:absolute;
    top:50%;
    left:8%;
    transform:translateY(-50%);
    max-width:600px;
}

#slideTitle{
    font-family:'Playfair Display',serif;
    font-size:60px;
    margin-bottom:20px;
}

.hero-content p{
    opacity:0.8; font-size:20px;
    margin-bottom:30px;
}

/* CTA */
.cta{display:flex;gap:15px;}

.btn-slide{
    padding:12px 25px;
    background:linear-gradient(135deg,#0097fb,#006786);
    color:#fff;
    text-decoration:none;
    border-radius:30px;
}

.btn-outline{
    padding:12px 25px;
    border:1px solid #fff;
    color:#fff;
    text-decoration:none;
    border-radius:30px;
}

/* ARROWS */
.arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    font-size:28px;
    background:rgba(0,0,0,0.4);
    padding:10px;
    cursor:pointer;
}

.prev{left:20px;}
.next{right:20px;}

/* RESPONSIVE */
@media(max-width:991px){

    header{padding:20px;}

    nav{display:none;}

    .menu-toggle{display:flex;}

    .hero-content{
        left:20px;
        right:20px;
    }

    .hero-content h1{font-size:34px;}
}

/* ── WELCOME ── */
  .welcome-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 64px; align-items: center;
  }
  .welcome-img-wrap { position: relative; }
  .welcome-img {
    width: 100%; aspect-ratio: 4/3;
    object-fit: cover; border-radius: 4px;
    display: block;
  }
  .welcome-badge {
    position: absolute; bottom: -24px; right: -24px;
    background: var(--gold); color: var(--navy);
    width: 120px; height: 120px; border-radius: 50%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    font-weight: 700; text-align: center; line-height: 1.2;
    box-shadow: 0 8px 24px rgba(201,168,76,0.4);
  }
  .welcome-badge .num { font-size: 1.4rem; font-family: 'Playfair Display', serif; }
  .welcome-badge .text { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; }
  .welcome-text p { font-size: 0.98rem; line-height: 1.8; color: var(--text); margin-bottom: 16px; font-weight: 300; }
  .welcome-text p:last-of-type { margin-bottom: 28px; }
  .btn-gold {
    display: inline-block; background: var(--navy); color: var(--white);
    font-size: 0.82rem; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; text-decoration: none;
    padding: 13px 28px; border-radius: 3px; transition: background 0.2s;
  }
  .btn-gold:hover { background: var(--blue); }
  
    /* ── SECTIONS COMMON ── */

  .container { max-width: 1200px; margin: 0 auto; padding: 50px 24px; }
  .container p { font-size: 0.98rem; line-height: 1.8; color: var(--text); margin-bottom: 16px; font-weight: 300; }
  .section-tag {
    font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); font-weight: 600; margin-bottom: 10px;
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--navy); line-height: 1.25; margin-bottom: 16px;
  }
  .section-sub {
    font-size: 1rem; color: var(--gray); line-height: 1.7;
    max-width: 600px; font-weight: 300;
  }
  .divider {
    width: 50px; height: 3px; background: var(--gold);
    margin: 18px 0;
  }

/* ── AMENITIES ── */
  .amenities-bg { background: var(--navy); }
  .amenities-bg .section-title, .amenities-bg .section-tag { color: var(--white); }
  .amenities-bg .section-tag { color: var(--gold-light); }
  .amenities-bg .section-sub { color: rgba(255,255,255,0.7); }
  .amenities-header { margin-bottom: 48px; }
  .amenities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .amenity-item {
    text-align: center; padding: 32px 20px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 6px;
    transition: border-color 0.3s, background 0.3s;
  }
  .amenity-item:hover { border-color: var(--gold); background: rgba(201,168,76,0.08); }
  .amenity-icon {
    width: 56px; height: 56px; border-radius: 50%;
    background: rgba(201,168,76,0.15);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px; font-size: 1.5rem;
  }
  .amenity-name { font-size: 0.88rem; font-weight: 500; color: var(--white); letter-spacing: 0.02em; }

/* attraction */


.attraction-slider {
    position: relative; 
    height: 100vh;
    overflow: hidden;
}

.slide-attraction {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide-attraction.active {
    opacity: 1;
}

.attraction-content {
    position: absolute; 
    top: 50%;
    right: 6%;
    transform: translateY(-50%);
    color: #1c355e;
    max-width: 500px;
    z-index: 2;
}

.attraction-t1{
    font-size: 41px;
    color: #fff;
    margin-bottom: 20px;
}

.attraction-content p {
    color: #fff;   font-size: 17px;
    line-height: 1.8;
}

.attraction-slider::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
     background: linear-gradient(
        to left,
        rgba(0, 38, 67,0.80) 30%,
        rgba(0, 38, 67,0.66) 50%,
        rgba(0, 38, 67,0.6) 70%,
        rgba(0, 38, 67,0) 100%
    );
    z-index: 1;
}
.slide-attraction-title {
    position: absolute;
    bottom: 10%;
    left: 3%;
    color: #fff;
    font-size: 32px;
    background: rgba(0,0,0,0.7);
    padding: 8px 15px;
    
}


/* MOBILE */
@media(max-width: 768px) {
   .attraction-content {
        padding: 30px 20px;
        background: rgba(255,255,255,0.85);
    }

    .attraction-t1 {
        font-size: 25px;
    }

   .slide-attraction-title { display:none;     
    }
}


  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    .rooms-grid { grid-template-columns: 1fr 1fr; }
    .amenities-grid { grid-template-columns: repeat(2, 1fr); }
    .things-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 768px) {
    nav { display: none; }
    .hamburger { display: flex; }
    .welcome-grid, .location-grid { grid-template-columns: 1fr; }
    .welcome-badge { right: 12px; }
    .reasons-grid, .reviews-grid { grid-template-columns: 1fr; }
    .specials-grid { grid-template-columns: 1fr; }
    .special-card { grid-template-columns: 1fr; }
    .special-img { width: 100%; height: 180px; }
    .hero-content { padding: 0 28px; }
    .booking-inner { flex-direction: column; }
    .booking-field { min-width: 100%; }
    section { padding: 56px 0; }
    .things-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .rooms-grid { grid-template-columns: 1fr; }
    .rewards-inner { gap: 24px; }
  }
  
    /* ── ROOMS ── */
  .rooms-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; flex-wrap: wrap; gap: 20px; }
  .rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .room-card {
    border: 1px solid #e5e7eb; border-radius: 6px;
    overflow: hidden; transition: box-shadow 0.3s;
  }
  .room-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.1); }
  .room-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
  .room-body { padding: 22px 20px; }
  .room-type { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 6px; }
  .room-name { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--navy); margin-bottom: 12px; }
  .room-features { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
  .room-features li {
    font-size: 0.75rem; color: var(--gray); font-weight: 400;
    background: var(--light-gray); padding: 4px 10px; border-radius: 2px;
  }
  .room-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid #e5e7eb; }
  .room-price { font-size: 0.78rem; color: var(--gray); }
  .room-price strong { font-size: 1.3rem; color: var(--navy); font-weight: 700; }
  .btn-sm {
    font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--blue); text-decoration: none;
    border: 1.5px solid var(--blue); padding: 8px 16px; border-radius: 3px;
    transition: background 0.2s, color 0.2s;
  }
  .btn-sm:hover { background: var(--blue); color: var(--white); }
  
  /* FOOTER */
.footer {
   background: linear-gradient(
        rgba(0, 38, 67, 0.9),
        rgba(0, 38, 67, 0.9)
    ),
    url('../images/maountain.webp') center/cover no-repeat;
    color: #fff;
    padding: 60px 0;
    color: #fff;
    padding: 60px 20px 20px;
    position: relative;
}



/* GRID LAYOUT */
.footer-container {
    position: relative;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 40% 20% 40%;
    gap: 30px;
}

.ftitle, .ftitle a {
    margin-bottom: 15px; color:#fff; text-decoration:none;
    font-size: 23px; font-weight:lighter; font-family:'Playfair Display', serif;
}

.footer p,
.footer p a, .footer a {
font-size: 16px;
    font-weight: normal;
    line-height:28px;
   color: #fff;
    margin-bottom: 8px;
    text-decoration: none;
    
}

/* Quick Links */
.footer-links a {
    display: block; text-decoration:none; color: #fff; 
    margin-bottom: 8px;
    transition: 0.3s;
}

.footer-links a::before {
    content: "→ ";
    color: #4da6ff;
}

.footer-links a:hover {
    color: #fff; text-decoration:none;
    transform: translateX(5px);
}

/* Social */
.social-icons {
    margin-top: 10px;
}

.social-icons a {
    display: inline-block;
    margin: 5px 8px 0 0;
    width: 36px; 
    height: 36px;   color: #fff;
    line-height: 36px;
    text-align: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #4da6ff;
    transform: translateY(-3px);
}

/* Logo */
.footer-logo img {
    max-width: 170px;
    margin-top: 15px;
    transition: 0.3s;
}

.footer-logo img:hover {
    transform: scale(1.05);
}

/* Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    margin-top: 40px;
    padding-top: 15px;
    text-align: center;
    font-size: 13px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}	

.vid { float:none; width:98%;  margin:0 auto;  position: relative;    height: 0;
    padding-bottom:70%;  }
 
.vid iframe {
    width: 100% !important; height:100% !important;
	position: absolute;
   top: 0;
    left: 0;
  }
  
  .vid img { width:100%;}
  
  .ada { width:100%; margin:0 auto; padding:12px 0; text-align:center; color:#fff; background:#505050; font-size:19px;}
.ada a { color:#fff; text-decoration:none;}

#w2b-StoTop{display: block;position: fixed;top:90%;padding: 10px; color:#fff; font-size:17px; right:0; margin-right:20px; text-decoration:none; cursor:pointer; background:#006786; letter-spacing:0.01em;}
#w2b-StoTop a{color:#fff; text-decoration:none; font-size:14px;}

.reserve { color:#333; text-align:center; margin:0 auto; font-size:21px;  text-transform:uppercase;  float:left;   line-height:35px; font-weight:normal; padding:4px 10px;}
#reserve {margin:0 auto; font-family: 'Poppins', sans-serif; width:100%; padding:12px 0; position: absolute;   z-index: 1000;    bottom: 10px;}
.imenu { width:78%; margin:0 auto;     background-color: rgba(255, 255, 255, 0.9); padding:18px 14px;}
.check1{ margin:0px 12px; float:left; width:10%; }
#submit{float:left; margin-top:5px; }
.message1{ font-size:13px; background:#fff;
width:98%; padding:10px 8px;
border: 1px double #cecece;
overflow:hidden;
margin:0 auto;
color:#444; font-family: 'Poppins', sans-serif; border-radius:10px;
}
.message{font-size:13px; border-radius:10px;
width:100%; padding:9px;
border: 1px double #cecece;
overflow:hidden; background:#fff;
margin:0 auto;
color:#444; font-family: 'Poppins', sans-serif;
}
input[type="submit"]
.palace-button, input[type="submit"], input#searchsubmit {
background-color:#0097fb; border:none; color:#fff; font-size: 16px; font-family: 'Poppins', sans-serif; padding:8px 32px; font-weight:bold;  border-radius:6px; letter-spacing:1px;}
::-webkit-input-placeholder {
   color: #333333;
}

:-moz-placeholder { /* Firefox 18- */
   color: #333333;  
}

::-moz-placeholder {  /* Firefox 19+ */
   color: #333333;  
}

:-ms-input-placeholder {  
   color: #333333;  
}
.map1{ font-size:12px;
padding:10px;  font-family: 'Poppins', sans-serif;
width:50%;
margin-right:15px; background:#fff;
border: 1px double #929292;
color:#444;
float:left; border-radius: 20px;
}
label { display:none;}

.amenity {
      width:40%; float:left; 
      margin: 10px 10px 0 20px;
      padding: 20px; 
      
    }
  
    .amenity ul {
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 15px 30px;
    }
    .amenity li {
      font-size: 16px;
      color: #111010; padding:8px 0;
      display: flex;
      align-items: center; text-align:left;
    }
    .amenity li i {
       color: #111010;
      margin-right: 10px;
      font-size: 18px;
      min-width: 20px;
      text-align: center;
    }
.amenity-list li {
  position: relative;
  padding-left: 8px;
  margin-bottom: 10px;
}

.amenity-list li::before {
  content: "";
  position: absolute;
  left: 0;
   color: #111010; /* Blue checkmark */
  font-size: 16px;
}
.col1 { font-size:0.98rem;      color: var(--text); width:40%; float:left; margin:0px 10px 0 20px; text-align:left;      padding: 20px; }
.col1 ul li {list-style:circle; line-height:32px;}
.col1 ul li a {    color: var(--text);text-decoration:none; list-style:none;}	

.attractions2 {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 15px;
}

.attractions2-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.attraction2-card {
  background: #ffffff;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.attraction2-img img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.attraction2-content {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.attraction2-content h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.attraction2-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

/* Desktop 2-Column Layout */
@media (min-width: 768px) {
  .attractions2-grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
  }
}
.top22 { margin-top:7%;}
.map2  { padding-top:6%; background: rgba(0, 38, 67, 0.9);}

.fq{text-align:left; text-decoration: none; color:#031C1A; font-weight:normal;  font-size:21px;  line-height:34px; margin-top:6px; list-style:none;}
.fqa{font-size:16px; color:#424242; font-weight:normal; line-height:28px; text-align:left;}
.fqa a{font-size:16px; color:#1A6B9A; text-decoration:none;}