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

body{
    font-family:'Poppins',sans-serif;
    background:#fff;
    color:#fff;
}

  :root {
    --navy: #007460;
    --blue: #1a4b8c;
    --gold: #fcbd0f;
    --gold-light: #e8c96a;
    --cream: #faf7f2;
    --white: #ffffff;
    --gray: #6b7280;
    --light-gray: #f0eff0;
    --dark: #111827;
    --text: #374151;
	   --qi-green-dark:#0b3d2e;
    --qi-green:#1f7a4d;
    --qi-green-light:#2fae6e;
    --qi-gold:#e3b341;
    --ink:#ffffff;
  }
  
/* HEADER */
header{
    position:fixed; padding:6px 0;
    width:90%; background:rgba(17,84,66,0.9);
    top:0;
    margin:1% 5%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    z-index:1000;
    transition:.4s;
}
.head1{width:90%; margin: 0 auto; float:none; display:flex;
    justify-content:space-between;}

header.scrolled{
    background:rgba(17,84,66,0.9);
    backdrop-filter:blur(10px); padding:5px 0;
}

.map3  { margin-bottom:16%; background: rgba(0, 38, 67, 0.9); clear:both;}

/* LOGO */
.logo {background: #fff; padding: 5px 5px; border-radius:4px;}
.logo img{height:90px;}

/* NAV */
nav ul{
    display:flex;
    list-style:none;
    gap:35px; margin-top:5%;
}

nav ul li a{
    color:#fff; text-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
    text-decoration:none;
    font-size:16px;
    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:#000; background:#fcbd0f;
    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:9999;
}

.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(53,79,82,0.6), rgba(53,79,82,0.3));
}

/* CONTENT */
.hero-content{
    position:absolute;
    top:50%;
    left:8%;
    transform:translateY(-50%);
    max-width:600px;
}

#slideTitle{
    font-family:'Playfair Display',serif;
    font-size:42px;
    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,#f9d504,#fcbd0f);
    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.96rem; 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: 1.1rem; line-height: 1.8; color: var(--text); margin-bottom: 16px; font-weight: 300; }
    .container p a {color:#006A52; text-decoration:none;}
  .section-tag {
    font-size: 0.90rem; 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;
  }

  /* Read More Content */
  .read-more-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.55s ease;
  }

  .read-more-content.active {
    max-height: 500px;
    opacity: 1;
    margin-top: 8px;
  }

  /* Read More Button */
  .read-more-btn {
    margin-top: 12px;  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 28px;
    background: #fcbd0f;
    color: #fff;
    border: none;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 12px 20px rgba(0, 146, 69, 0.12);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
  }

  .read-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(0, 146, 69, 0.28);
  }


  .read-more-btn.active span {
    transform: rotate(45deg);
  }
  
/* ── AMENITIES ── */
.amenities-section{
    font-family:'Poppins',sans-serif;
    background: radial-gradient(1200px 600px at 10% -10%, var(--qi-green-light) 0%, transparent 55%),
                linear-gradient(160deg, var(--qi-green-dark) 0%, var(--qi-green) 60%, var(--qi-green-dark) 100%);
    color: var(--ink);
    padding: 64px 24px;
    position: relative;
    overflow: hidden;
  }
  .amenities-section::after{
    content:"";
    position:absolute;
    width:480px; height:480px;
    right:-160px; bottom:-200px;
    background: radial-gradient(circle, rgba(227,179,65,0.18), transparent 70%);
    border-radius: 50%;
    z-index:0;
  }
  .amenities-inner{
    max-width: 1040px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  .amenities-eyebrow{
    font-family:'Poppins',sans-serif;
    letter-spacing: .16em;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    color: var(--qi-gold);
    margin: 0 0 10px;
  }
  .amenities-title{
    font-size: clamp(28px, 4vw, 38px);
    margin: 0 0 8px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.3px;
  }
  .amenities-sub{
    font-family:'Poppins',sans-serif;
    color: rgba(255,255,255,0.78);
    margin: 0 0 40px;
        font-size: 1.1rem;
    line-height: 1.8;
  }
  .amenities-sub a{
    color: var(--qi-gold);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 1px solid rgba(227,179,65,0.5);
    padding-bottom: 1px;
  }
  .amenities-sub a:hover{ border-color: var(--qi-gold); }

  .amenities-grid{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
  }
  .amenity-card{
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.14);
    backdrop-filter: blur(6px);
    border-radius: 16px;
    padding: 30px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    transition: transform .25s ease, background .25s ease, border-color .25s ease;
  }
  .amenity-card:hover{
    transform: translateY(-6px);
    background: rgba(255,255,255,0.12);
    border-color: rgba(227,179,65,0.5);
  }
  .amenity-icon{
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--qi-gold), #c8922b);
    color: var(--qi-green-dark);
    font-size: 24px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  }
  .amenity-name{
    font-family:'Poppins',sans-serif;
    font-weight: 700;
    font-size: 14px;
    margin: 0;
    color: #fff;
    letter-spacing: 0.2px;
  }

  @media (max-width: 900px){
    .amenities-grid{ grid-template-columns: repeat(3, 1fr); }
  }
  @media (max-width: 560px){
    .amenities-grid{ grid-template-columns: repeat(2, 1fr); }
  }

/* 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%);
    max-width: 500px;  padding: 26px 30px;
  background: rgba(0, 57, 45, .82);
  border-left: 4px solid #fcbd0f;
  border-radius: 0 8px 8px 0;
    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%;
     
    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 ── */
.promo-section {
  display: flex; 
  gap: 20px;
  max-width: 100%;
  padding: 4% 3%;
}

/* Each card */
.promo-card {
  flex: 1 1 48%;
  display: flex;
  background: #f9f7f3;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.promo-card:hover {
  transform: translateY(-5px);
}

/* Image */

.promo-image {
  width: 260%;
  height: auto;
  object-fit: cover;
}


.promo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Content */
.promo-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.promo-subtitle {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #007460;
  margin-bottom: 8px;
}

.promo-title {
  font-size: 1.6rem;
  margin: 0 0 16px;
  color: #222;
}

.promo-content p {
  font-size: 1rem;
  line-height: 1.5;
  color: #555;
  margin-bottom: 20px;
}

.promo-btn {
  align-self: start;
  padding: 10px 20px;
  border: 1px solid #007460;
  background: transparent;
  color: #007460;
  text-decoration: none;
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.promo-btn:hover {
  background: #007460;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .promo-card {
    flex: 1 1 100%;
    flex-direction: column;
  }

  .promo-image img {
    height: 200px;
  }
}
  
  /* FOOTER */
.footer {
   background:#006A52;
    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 {
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: #fcbd0f;
}

.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: #fcbd0f;
    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:#fcbd0f; 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:#fcbd0f; border:none; color:#fff; font-size: 17px; font-family: 'Poppins', sans-serif; padding:8px 32px; font-weight:normal;  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;
}
/* Form labels use the .visually-hidden utility so they remain available to assistive technology. */

.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;}

/* =====================================================================
   ACCESSIBILITY AND WCAG CONTRAST FIXES
   These rules intentionally retain the existing Quality Inn visual theme.
   ===================================================================== */
html {
  scroll-behavior: smooth;
}

body {
  color: #1f2937;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 5000;
  padding: 10px 16px;
  color: #ffffff;
  background: #073d31;
  text-decoration: none;
  border-radius: 4px;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Strong, visible keyboard focus works consistently on all interactive controls. */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid #111827;
  outline-offset: 3px;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, .92);
}

.hero-content,
.arrow {
  color: #ffffff;
}

/* The content remains in the original position, with a subtle brand-green backing that keeps text readable on every slide image. */
.hero-content {
  padding: 26px 30px;
  background: rgba(0, 57, 45, .82);
  border-left: 4px solid #fcbd0f;
  border-radius: 0 8px 8px 0;
}

.hero-content p {
  opacity: 1;
  color: #ffffff;
}

/* White text on photography receives a consistent dark backing for reliable contrast. */
nav ul li a,
.phone a {
  display: inline-block;
  padding: 3px 6px;
  border-radius: 3px;
 text-shadow: none;
}

.menu-toggle,
.menu-close,
.arrow,
.close-calendar {
  font: inherit;
}

.menu-toggle {
  border: 0;
  padding: 7px;
  background: rgba(0, 57, 45, .88);
  border-radius: 4px;
}

.menu-close {
  border: 0;
  padding: 0 7px;
  color: #ffffff;
  background: transparent;
  line-height: 1;
}

.arrow {
  border: 0;
  color: #ffffff;
  line-height: 1;
  background: rgba(0, 0, 0, .78);
}

/* Gold retains the existing brand look, with dark text for WCAG AA contrast. */
.btn-slide,
.read-more-btn,
input[type="submit"],
#w2b-StoTop {
  color: #1b1b1b;
}

.btn-slide:hover,
.read-more-btn:hover,
input[type="submit"]:hover,
#w2b-StoTop:hover {
  color: #111827;
}

.section-tag {
  color: #805500;
}

.welcome-badge {
  color: #172826;
}

.amenities-sub {
  color: #ffffff;
}

.amenities-sub a {
  color: #fff0b3;
  border-bottom-color: #fff0b3;
}

.footer-links a::before {
  color: #ffe28a;
}

.social-icons a:hover {
  color: #1b1b1b;
}

.ada a,
.footer a:hover,
.footer a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Prevent white text over the white mobile attraction card background. */
@media (max-width: 768px) {
  .attraction-content {
    background: rgba(4, 58, 46, .92);
  }

  .attraction-t1,
  .attraction-content p {
    color: #ffffff;
  }

  .promo-section {
    flex-wrap: wrap;
  }

  .check1 {
    width: calc(50% - 24px);
    margin-bottom: 12px;
  }

  .imenu {
    width: min(94%, 640px);
  }
}

.close-calendar {
  cursor: pointer;
  border: 0;
  background: transparent;
}

.cookie-consent {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2000;
  padding: 10px 70px;
  color: #ffffff;
  background: #000000;
  text-align: left;
}

.cookie-consent a {
  color: #aee6b6;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-consent button {
  margin-left: 20px;
  padding: 5px 10px;
  color: #ffffff;
  background: #0a5c35;
  border: 1px solid #ffffff;
  cursor: pointer;
}

.cookie-consent[hidden] {
  display: none !important;
}

@media (max-width: 576px) {
  .cookie-consent {
    padding: 14px 18px;
  }

  .cookie-consent button {
    margin: 10px 0 0;
  }

  .check1 {
    width: calc(100% - 24px);
  }
}
.amenitypg {
      width:40%; float:left; 
      margin: 0px 10px 0 60px;
      padding: 10px 20px; 
      
    }
  
    .amenitypg ul {
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 15px 30px;
    }
    .amenitypg li {
      font-size: 17px;
      color: #333; padding:8px 0;
      display: flex;
      align-items: center; text-align:left;
    }
    .amenitypg li i {
       color: #333;
      margin-right: 10px;
      font-size: 18px;
      min-width: 20px;
      text-align: center;
    }
.amenitypg-list li {
  position: relative;
  padding-left: 8px;
  margin-bottom: 10px;
}

.amenitypg-list li::before {
  content: "";
  position: absolute;
  left: 0;
   color: #333; /* Blue checkmark */
  font-size: 17px;
}
.col1 {  width:40%; float:left; text-align:left; padding:10px 20px;  font-size: 17px;  color: #333; margin-left:30px; }
.col1 ul li {list-style:circle; line-height:36px;}
.col1 ul li a {color: #333; text-decoration:none; list-style:none;}	

.feature-box {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    gap: 60px;
    background: white;
    margin-bottom: 15px;
}

.feature-box.reverse {
    flex-direction: row-reverse;
}

.img-side img {
    width: 100%;
    max-width: 550px;
    height: 320px;
    object-fit: cover;
    border-radius: 12px;
}

.text-side {
    max-width: 620px;
}

.text-side h3 {
    font-size: 28px; 
    margin-bottom: 10px;
}

.text-side p {
        font-size: 0.98rem; color:#374151;
    margin-bottom: 20px;     line-height: 1.8;
}

.title2, .title2 a {
    font-size: 28px;
    font-weight: bold; font-family: 'Playfair Display', serif;
    margin-top: 30px;
color: #333;}

/* ----- MOBILE RESPONSIVE ----- */

@media (max-width: 768px) {
    .feature-box,
    .feature-box.reverse {
        flex-direction: column;
        text-align: center;
    }

    .img-side img {
        height: 250px;
    }
}

.top20 { margin-top:5%;}

.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;}

html {
    scroll-behavior: smooth;
  }

  #scrollTopBtn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    border: none;
    outline: none;
    background: #009245;
    color: #fff;
    font-size: 22px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    z-index: 9999;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
  }

  #scrollTopBtn:hover {
    background: #333;
    transform: translateY(-4px);
  }

  @media (max-width: 767px) {
    #scrollTopBtn {
      width: 45px;
      height: 45px;
      font-size: 20px;
      bottom: 20px;
      right: 20px;
    }
  }
 .direction-content {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
    padding: 50px 45px;
    background: #ffffff;
    border: 1px solid #e8edf3;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(15, 35, 55, 0.10);
    overflow: hidden;
}

/* Decorative background */
.direction-content::before {
    content: "";
    position: absolute;
    top: -90px;
    right: -90px;
    width: 220px;
    height: 220px;
    background: rgba(2, 52, 130, 0.06);
    border-radius: 50%;
}

.direction-content::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 220px;
    height: 220px;
    background: rgba(2, 52, 130, 0.04);
    border-radius: 50%;
}



/* Header */
.direction-header {
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}

.direction-label {
    display: inline-block;
    margin-bottom: 8px;
    color: #023482;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.direction-header p {
    max-width: 570px;
    margin: 0;
    color: #6d7886;
    font-size: 15px;
    line-height: 1.7;
}


/* Form */
.direction-form {
    position: relative;
    z-index: 1;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 9px;
    color: #263446;
    font-size: 14px;
    font-weight: 600;
}


/* Input */
.input-wrapper {
    position: relative;
}

.input-wrapper > i {
    position: absolute;
    top: 50%;
    left: 18px;
    z-index: 2;
    color: #023482;
    font-size: 17px;
    transform: translateY(-50%);
}

.input-wrapper input {
    width: 100%;
    height: 58px;
    padding: 0 20px 0 50px;
    color: #263446;
    background: #f7f9fc;
    border: 1px solid #e1e7ee;
    border-radius: 13px;
    outline: none;
    font-family: inherit;
    font-size: 15px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.input-wrapper input::placeholder {
    color: #9aa5b1;
}

.input-wrapper input:hover {
    border-color: #b8c5d4;
}

.input-wrapper input:focus {
    background: #ffffff;
    border-color: #023482;
    box-shadow: 0 0 0 4px rgba(2, 52, 130, 0.08);
}


/* Button */
.direction-btn {
    width: 100%;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 8px;
    padding: 0 25px;
    color: #ffffff;
    background: #023482;
    border: 0;
    border-radius: 13px;
    cursor: pointer;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.direction-btn i {
    font-size: 15px;
    transition: transform 0.3s ease;
}

.direction-btn:hover {
    background: #172334;
    box-shadow: 0 12px 28px rgba(2, 52, 130, 0.22);
    transform: translateY(-2px);
}

.direction-btn:hover i {
    transform: translateX(5px);
}

.direction-btn:active {
    transform: translateY(0);
}


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

@media (max-width: 767px) {

    .direction-content {
        padding: 35px 25px;
        border-radius: 20px;
    }


    .direction-header h2 {
        font-size: 26px;
    }

    .direction-header p {
        font-size: 14px;
    }

    .input-wrapper input,
    .direction-btn {
        height: 54px;
    }
}

@media (max-width: 480px) {

    .direction-content {
        padding: 30px 20px;
    }

     .direction-label {
        font-size: 11px;
        letter-spacing: 1.5px;
    }
} 

.top { margin-top:8%;}

/* ==============================
   gallery
================================ */
    .media-container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 30px 20px 60px;
    }

    .gallery-layout {
      display: grid;
      grid-template-columns: fr 1fr;
      gap: 28px;
    }

    .photo-with-caption {
      position: relative;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 6px 20px rgba(0,0,0,0.12);
      cursor: pointer;
      transition: all 0.35s ease;
      aspect-ratio: 4 / 3;
    }

    .photo-with-caption:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 30px rgba(0,0,0,0.18);
    }

    .photo-with-caption img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
      display: block;
    }

    .photo-with-caption:hover img {
      transform: scale(1.06);
    }

    .caption-bar {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(0,0,0,0.65);
      color: white;
      padding: 14px 16px;
      font-size: 1.05rem;
      font-weight: 500;
      text-align: center;
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
    }

    .small-photos {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    /* LIGHTBOX */
    .lightbox {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.92);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      padding: 20px;
    }

    .lightbox.active {
      display: flex;
    }

    .lightbox-content {
      position: relative;
      max-width: 92vw;
      max-height: 88vh;
      text-align: center;
    }

    .lightbox img {
      max-width: 100%;
      max-height: 80vh;
      border-radius: 8px;
      box-shadow: 0 0 40px rgba(0,0,0,0.7);
    }

    .close-btn {
      position: absolute;
      top: 20px;
      right: 30px;
      font-size: 48px;
      color: white;
      cursor: pointer;
      background: rgba(0,0,0,0.4);
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s;
    }

    .close-btn:hover {
      background: #c0392b;
    }

    .nav-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      font-size: 28px;
      color: rgba(255,255,255,0.8);
      cursor: pointer;
      padding: 8px 12px;
      background: rgba(0,0,0,0.35);
      border-radius: 50%;
      width: 44px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.25s;
    }

    .nav-arrow:hover {
      background: rgba(255,255,255,0.18);
    }

    .prev { left: 20px; }
    .next { right: 20px; }

    .lightbox-footer {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      color: white;
      font-size: 1.1rem;
      background: rgba(0,0,0,0.6);
      padding: 8px 20px;
      border-radius: 30px;
      display: flex;
      align-items: center;
      gap: 25px;
    }

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

    @media (max-width: 600px) {
      h1 { font-size: 2rem; }
      .small-photos { grid-template-columns: 1fr; }
      .caption-bar { font-size: 0.95rem; padding: 12px 14px; }
      .nav-arrow { font-size: 24px; width: 40px; height: 40px; }
      .prev { left: 12px; }
      .next { right: 12px; }
    }