@charset "utf-8";
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;border:0;outline:none;
    line-height: 1.6;
}

        header {
            background:#fff;
            position:fixed;
            top:0; left:0; right:0;
            z-index:1000;
            box-shadow:0 4px 20px rgba(0,0,0,0.08);
        }
        .container { max-width:1400px; margin:0 auto; padding:0 20px; }

        .header-row {
            display:flex;
            align-items:center;
            justify-content:space-between;
             }

        .logo img { height:65px; width:auto; }

        /* Desktop Menu - ONLY ONE CLEAN MENU */
        .nav-menu {
            display:flex;
            gap:37px;
            list-style:none;
        }
        .nav-menu a {
            text-decoration:none;
            color:#222;
            font-weight:600;
            font-size:16.5px;
            transition:all .3s;
            position:relative;
        }
        .nav-menu a:hover { color:#ff6600; }
        .nav-menu a::after {
            content:''; position:absolute; bottom:-8px; left:50%;
            width:0; height:3px; background:#ff6600;
            transition:all .3s; transform:translateX(-50%);
        }
        .nav-menu a:hover::after { width:100%; }

        /* ACTIVE HOME TAB */
        .nav-menu a.active {
            color:#ff6600;
            font-weight:700;
        }
        .nav-menu a.active::after {
            width:100%;
        }

        .phone {
            display:flex;
            align-items:center;
            gap:11px;
            font-weight:600;
            font-size:16px;
            color:#00aaff; /* Blue for phone text to match your image */
        }
        .phone i { color:#ff6600; font-size:22px; } /* Orange icon */
        .phone a { color:inherit; text-decoration:none; }

        .mobile-toggle { display:none; font-size:27px; color:#006666; cursor:pointer; }

        /* Mobile Menu - HIDDEN ON DESKTOP */
        .mobile-menu { display:none; } /* Ensure no repetition on desktop */

        /* =================== MOBILE =================== */
        @media (max-width: 992px) {
            .header-row { min-height:72px; padding:6px 0; }
            .logo img { height:52px; }
            .nav-menu { display:none; }

            .phone {
                position:absolute;
                left:30%;
                transform:translateX(-50%);
                font-size:17px;
            }
            .phone i { display:none;}

            .mobile-toggle { display:block; }

            .mobile-menu {
                display:block;
                position:absolute;
                top:100%; left:0; right:0;
                background:#fff;
                max-height:0;
                overflow:hidden;
                transition:max-height .35s ease;
                box-shadow:0 10px 20px rgba(0,0,0,0.12);
            }
            .mobile-menu.active { max-height:500px; }
            .mobile-menu a {
                display:block;
                padding:11px 20px;
                font-size:18px;
                font-weight:600;
                color:#222;
                text-align:center;
                text-decoration:none;
                border-bottom:1px solid #eee;
            }
            .mobile-menu a:hover,
            .mobile-menu a.active { background:#fff8f5; color:#ff6600; font-weight:700; }
        }

        @media (max-width: 480px) {
            .logo img { height:48px; }
            .phone { font-size:16px; transform: translate(10px); }
        }

/*Slideshow*/
    .hotel-slider {
      position: relative;
      width: 100%;
      height: 650px;
      overflow: hidden;
    }

    .slide {
      position: absolute;
      width: 100%;
      height: 100%;
      opacity: 0;
      transform: scale(1.08);
      transition: opacity 1s ease-in-out, transform 1.5s ease-in-out;
    }

    .slide.active {
      opacity: 1;
      transform: scale(1);
      z-index: 1;
    }

    .slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .slide::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.45);
      z-index: 1;
    }

    .slide-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      color: #fff;
      z-index: 2;
      width: 90%;
      animation: fadeUp 1s ease;
    }

    .slide-content h2 {
      font-size: 48px;
      font-weight: 700;
      margin-bottom: 25px;
      text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    }

    .book-btn {
      display: inline-block;
      background: #c28a2c;
      color: #fff;
      padding: 14px 36px;
      font-size: 18px;
      font-weight: bold;
      text-decoration: none;
      border-radius: 50px;
      transition: 0.3s ease;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    }

    .book-btn:hover {
      background: #fff;
      color: #222;
      transform: translateY(-3px);
    }

    .prev,
    .next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 3;
      background: rgba(255, 255, 255, 0.3);
      color: #fff;
      border: none;
      font-size: 35px;
      width: 55px;
      height: 55px;
      border-radius: 50%;
      cursor: pointer;
      transition: 0.3s ease;
    }

    .prev:hover,
    .next:hover {
      background: #c28a2c;
    }

    .prev {
      left: 25px;
    }

    .next {
      right: 25px;
    }

    .dots {
      position: absolute;
      bottom: 25px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 3;
      display: flex;
      gap: 10px;
    }

    .dot {
      width: 13px;
      height: 13px;
      background: rgba(255, 255, 255, 0.6);
      border-radius: 50%;
      cursor: pointer;
      transition: 0.3s ease;
    }

    .dot.active {
      background: #c28a2c;
      width: 30px;
      border-radius: 20px;
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translate(-50%, -40%);
      }
      to {
        opacity: 1;
        transform: translate(-50%, -50%);
      }
    }

    @media (max-width: 992px) {
      .hotel-slider {
        height: 520px;
      }

      .slide-content h2 {
        font-size: 38px;
      }
    }

    @media (max-width: 768px) {
      .hotel-slider {
        height: 430px;
      }

      .slide-content h2 {
        font-size: 30px;
        margin-bottom: 20px;
      }

      .book-btn {
        padding: 12px 28px;
        font-size: 16px;
      }

      .prev,
      .next {
        width: 45px;
        height: 45px;
        font-size: 28px;
      }

      .prev {
        left: 12px;
      }

      .next {
        right: 12px;
      }
    }

    @media (max-width: 480px) {
      .hotel-slider {
        height: 360px;
      }

      .slide-content h2 {
        font-size: 24px;
      }

      .book-btn {
        padding: 10px 24px;
        font-size: 15px;
      }
    }
/*===========================================================Welcome===========================================================================*/


        .welcome-section {
            min-height: 100vh;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .welcome-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"><animate attributeName="r" values="100;120;100" dur="3s" repeatCount="indefinite"/><animate attributeName="cy" values="200;180;200" dur="3s" repeatCount="indefinite"/></circle><circle cx="800" cy="600" r="80" fill="url(%23a)"><animate attributeName="r" values="80;100;80" dur="4s" repeatCount="indefinite"/><animate attributeName="cy" values="600;580;600" dur="4s" repeatCount="indefinite"/></circle></svg>') no-repeat center/cover;
            animation: float 20s ease-in-out infinite;
            z-index: 1;
        }

        .welcome-container {
            max-width: 1200px;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .welcome-content h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            color:#004986;
            margin-bottom: 20px;
            line-height: 1.2;
            opacity: 0;
            transform: translateY(50px);
            animation: slideInUp 1s ease-out 0.3s forwards;
        }

        .highlight {
            background: linear-gradient(45deg, #FFD700, #FFA500);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
        }

        .welcome-content .subtitle {
            font-size: clamp(1.1rem, 2.5vw, 1.5rem);
            color:#004986;
            margin-bottom: 25px;
            font-weight: 400;
            opacity: 0;
            transform: translateY(30px);
            animation: slideInUp 1s ease-out 0.6s forwards;
        }

        .welcome-content p {
            font-size: clamp(1rem, 2vw, 1.1rem);
      
            margin-bottom: 30px;
            line-height: 1.7;
            opacity: 0;
            transform: translateY(30px);
            animation: slideInUp 1s ease-out 0.9s forwards;
        }
        .welcome-image {
            position: relative;
            opacity: 0;
            transform: scale(0.8) translateX(50px);
            animation: slideInRight 1s ease-out 0.5s forwards;
        }

        .welcome-image img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
            border: 8px solid #FFBE00;
        }

         /* Animations */
        @keyframes slideInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInRight {
            to {
                opacity: 1;
                transform: scale(1) translateX(0);
            }
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        @keyframes floatIcon {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .welcome-container {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .welcome-content h1 {
                margin-bottom: 15px;
            }

            .welcome-image {
                transform: scale(0.9) translateY(30px);
                animation: slideInUp 1s ease-out 0.5s forwards;
            }

            .floating-icons {
                display: none;
            }

            .welcome-section {
                min-height: 90vh;
                padding: 40px 20px;
            }
        }

        @media (max-width: 480px) {
            .welcome-content h1 {
                font-size: 2.2rem;
            }

               .welcome-image img {
                height: 350px;
            }
        }
/*===================== COMPACT BOOKING BAR ===================== */
.booking-bar {
  margin-top: -60px;
  position: relative;
  z-index: 20;
}

.booking-form {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 15px;
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.form-group {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  flex: 1;
  min-width: 140px;
}

.form-group label {
  margin-bottom: 5px;
  font-weight: 600;
  color: #003c71;
}

.form-group input,
.form-group select {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.booking-btn {
  height: 42px;
  padding: 0 20px;
  white-space: nowrap;
}

/* Mobile */
@media (max-width: 768px) {
  .booking-form {
    flex-direction: column;
    align-items: stretch;
  }

  .booking-btn {
    width: 100%;
  }
}












/* Footer Container */
.footer {
    background-color: #363636; /* Dark Forest Green */
    color: #e5e7e1; /* Off-white / Cream */
    padding: 60px 20px 20px 20px;
    position: relative;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 2fr 1fr;

}

/* Brand Section */
.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.logo-circle {
    width: 45px;
    height: 45px;
    border: 2px solid #e5e7e1;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
}

.logo-area h1 {
    font-family: 'Times New Roman', serif;
    font-weight: 400;
    font-size: 28px;
    margin-bottom: 2px; color:white;
}

.subtitle {
    font-size: 11px;
    letter-spacing: 2px;
    opacity: 0.8;
}

.description {
    max-width: 400px;
    font-size: 15px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #e5e7e1;
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: 0.3s ease;
}

.social-icons a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Typography for Headings & Links */

.footer-section h3 {

    letter-spacing: 2px;
    margin-bottom: 25px;
    color: #fdfdfd;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a, address a {
    color: #e5e7e1;
    text-decoration: none;
    font-size: 15px;
    transition: opacity 0.3s;
}

.footer-links a:hover, address a:hover {
    opacity: 0.7;
}

address {
    font-style: normal;
    font-size: 15px;
    line-height: 1.8; margin-left:-15px;
}

/* Bottom Bar */
.footer-divider {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 40px auto 20px;
    max-width: 1200px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    opacity: 0.7;
}

.footer-bottom a {
    color: #e5e7e1;
    text-decoration: none;
}

/* Back to Top Button */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    z-index: 1000;
}

#backToTop:hover {
    background-color: #e5e7e1;
    color: #2d3621;
}

/* Responsiveness */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .logo-area {
        justify-content: center;
    }
    
    .description {
        margin: 0 auto 30px;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}
/* Targeted styles for the Navigate section */
.footer-links.two-columns {
    display: block; /* Ensure it's block for column-count to work */
    column-count: 2;
    list-style: circle;
	/*    column-gap: 20px;
    max-width:350px;  Limits width so columns don't drift too far apart */
}

.footer-links.two-columns li {
    margin-bottom: 12px;
    break-inside: avoid; /* Prevents a link from splitting between columns */
}

/* Optional: Center the columns on mobile if you kept the text-align: center */
@media (max-width: 768px) {
    .footer-links.two-columns {
        margin: 0 auto;
        display: inline-block;
        text-align: left; /* Keeps text aligned left within the centered block */
    }
}
	
 .amenities-container {
            max-width: 1000px;
            margin: 50px auto;
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }

        .amenities-header {
            background:#f5f4f2;
            color: #003c71;
            text-align: center;
            position: relative;
        }

        .amenities-header h2 {
            font-size: 2.5rem;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .amenities-header p {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        .amenities-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 0;
        }

        .amenity-item {
            display: flex;
            align-items: center;
            padding: 30px;
            border-bottom: 1px solid #f1f5f9;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .amenity-item:nth-child(even) {
            background: #f8fafc;
        }

        .amenity-item:hover {
            background: linear-gradient(90deg, #eff6ff, #dbeafe);
            transform: translateX(10px);
            box-shadow: 5px 0 20px rgba(37, 99, 235, 0.15);
        }

        .amenity-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            margin-right: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: bold;
            color: white;
            flex-shrink: 0;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .pool { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
        .pets { background: linear-gradient(135deg, #f59e0b, #d97706); }
        .accessible { background: linear-gradient(135deg, #10b981, #059669); }
        .kids { background: linear-gradient(135deg, #ec4899, #be185d); }
        .wifi { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
        .calls { background: linear-gradient(135deg, #f97316, #ea580c); }

        .amenity-content h3 {
            font-size: 1.3rem;
            margin-bottom: 8px;
            color: #1e293b;
            font-weight: 600;
        }

        .amenity-content p {
            color: #64748b;
            line-height: 1.5;
            font-size: 0.95rem;
        }

        .amenity-check {
            margin-left: auto;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: #10b981;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.1rem;
            flex-shrink: 0;
            box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .amenities-header {
                padding: 30px 20px;
            }
            
            .amenities-header h2 {
                font-size: 2rem;
            }
            
            .amenity-item {
                padding: 25px 20px;
                flex-direction: column;
                text-align: center;
            }
            
            .amenity-icon {
                margin-right: 0;
                margin-bottom: 15px;
                width: 80px;
                height: 80px;
                font-size: 2rem;
            }
            
            .amenity-check {
                margin-left: 0;
                margin-top: 15px;
            }
        }

        @media (max-width: 480px) {
            body {
                padding: 20px 10px;
            }
            
            .amenity-item {
                padding: 20px 15px;
            }
        }

        /* Loading Animation */
        .amenity-item {
            opacity: 0;
            transform: translateY(30px);
        }

        .amenity-item:nth-child(1) { animation: slideUp 0.6s 0.1s forwards; }
        .amenity-item:nth-child(2) { animation: slideUp 0.6s 0.2s forwards; }
        .amenity-item:nth-child(3) { animation: slideUp 0.6s 0.3s forwards; }
        .amenity-item:nth-child(4) { animation: slideUp 0.6s 0.4s forwards; }
        .amenity-item:nth-child(5) { animation: slideUp 0.6s 0.5s forwards; }
        .amenity-item:nth-child(6) { animation: slideUp 0.6s 0.6s forwards; }

        @keyframes slideUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
		
/* Accessibility Info Bar */
.accessibility-bar {
 
  padding: 20px 0;
  text-align: center;
  font-size:17px;

}

.accessibility-bar p {
  margin: 0;
  color: #333;
}

.accessibility-bar a {
  color: #003c71;
  font-weight: 700;
  font-size:20px; /* Bigger phone text */
  text-decoration: none;
  margin-left: 5px;
}

.accessibility-bar a i {
  margin-right: 6px;
  font-size: 16px;
}

.accessibility-bar a:hover {
  color: #fdb913;
}






/* ================= SNOWY OWL HOMEPAGE SECTIONS ================= */

.soi-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}

.soi-small-title {
  display: inline-block;
  color: #c28a2c;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.soi-welcome-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #f8fbff 0%, #ffffff 55%, #fff8ec 100%);
  overflow: hidden;
}

.soi-welcome-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 55px;
  align-items: center;
}

.soi-welcome-content h1,
.soi-section-heading h2,
.soi-cta-box h2 {
  color: #003c71;
  line-height: 1.15;
  margin-bottom: 18px;
}

.soi-welcome-content h1 {
  font-size: clamp(34px, 5vw, 58px);
}

.soi-lead {
  font-size: 18px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 18px;
}

.soi-more-content {
  display: none;
  animation: soiFadeUp 0.45s ease;
}

.soi-more-content.show {
  display: block;
}

.soi-more-content p {
  color: #444;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.soi-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.soi-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 26px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.soi-btn-primary {
  background: #c28a2c;
  color: #fff;
  box-shadow: 0 10px 25px rgba(194, 138, 44, 0.25);
}

.soi-btn-primary:hover {
  background: #003c71;
  transform: translateY(-3px);
}

.soi-btn-outline {
  border: 2px solid #003c71;
  color: #003c71;
  background: transparent;
}

.soi-btn-outline:hover {
  background: #003c71;
  color: #fff;
  transform: translateY(-3px);
}

.soi-welcome-image {
  position: relative;
}

.soi-welcome-image img {
  width: 100%;
  height: 470px;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.18);
  border: 8px solid #fff;
}

.soi-image-badge {
  position: absolute;
  left: -20px;
  bottom: 28px;
  background: #003c71;
  color: #fff;
  padding: 18px 24px;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0, 60, 113, 0.25);
}

.soi-image-badge strong {
  display: block;
  font-size: 34px;
  line-height: 1;
  color: #ffbe00;
}

.soi-image-badge span {
  display: block;
  font-size: 13px;
  font-weight: 600;
}

.soi-rooms-section {
  padding: 90px 0;
  background: #fff;
}

.soi-section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 42px;
}

.soi-section-heading h2 {
  font-size: clamp(30px, 4vw, 44px);
}

.soi-section-heading p {
  color: #555;
  font-size: 17px;
  line-height: 1.7;
}

.soi-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.soi-room-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.soi-room-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.13);
}

.soi-room-card img {
  width: 100%;
  height: 235px;
  object-fit: cover;
}

.soi-card-body {
  padding: 24px;
}

.soi-card-body h3 {
  color: #003c71;
  font-size: 22px;
  margin-bottom: 10px;
}

.soi-card-body p {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.soi-card-body a,
.soi-experience-card a {
  color: #c28a2c;
  font-weight: 700;
  text-decoration: none;
}

.soi-card-body a:hover,
.soi-experience-card a:hover {
  color: #003c71;
}

.soi-experience-section {
  padding: 90px 0;
  background: linear-gradient(rgba(0, 60, 113, 0.92), rgba(0, 60, 113, 0.92)),
              url("../hotel-data/sitting-room.jpg") center/cover no-repeat;
}

.soi-section-heading.light h2,
.soi-section-heading.light p {
  color: #fff;
}

.soi-experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.soi-experience-card {
  background: rgba(255, 255, 255, 0.96);
  padding: 28px 22px;
  border-radius: 22px;
  text-align: center;
  transition: 0.3s ease;
}

.soi-experience-card:hover {
  transform: translateY(-8px);
  background: #fff8ec;
}

.soi-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #ffbe00;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.soi-experience-card h3 {
  color: #003c71;
  font-size: 20px;
  margin-bottom: 12px;
}

.soi-experience-card p {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.soi-booking-cta {
  padding: 70px 0;
  background: #fff8ec;
}

.soi-cta-box {
  background: #fff;
  border-radius: 26px;
  padding: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  border-left: 8px solid #c28a2c;
}

.soi-cta-box p {
  color: #555;
  max-width: 720px;
  line-height: 1.7;
}

@keyframes soiFadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 992px) {
  .soi-welcome-grid,
  .soi-card-grid {
    grid-template-columns: 1fr;
  }

  .soi-experience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .soi-welcome-image img {
    height: 420px;
  }

  .soi-cta-box {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .soi-welcome-section,
  .soi-rooms-section,
  .soi-experience-section {
    padding: 60px 0;
  }

  .soi-welcome-content h1 {
    font-size: 32px;
  }

  .soi-lead {
    font-size: 16px;
  }

  .soi-welcome-image img {
    height: 310px;
    border-radius: 18px;
  }

  .soi-image-badge {
    left: 14px;
    bottom: 14px;
    padding: 14px 18px;
  }

  .soi-card-grid,
  .soi-experience-grid {
    grid-template-columns: 1fr;
  }

  .soi-room-card img {
    height: 210px;
  }

  .soi-cta-box {
    padding: 28px 20px;
  }

  .soi-btn {
    width: 100%;
  }
}
.cgs {color:#FF6600; text-decoration:none;}
.cgs a{color:#FF6600; text-decoration:none;}
.cgs a:hover{color:#000; text-decoration:none;}
/* Reset */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* Section */
.room-section{
    width:100%;
    background:#f8f9fa;
}

/* Container */
.room-container{
    max-width:100%;
    margin:auto;
    overflow:hidden;
}

/* Image */
.room-container img{
    width:100%;
    height:auto;
    display:block;
    object-fit:cover;
    transition:0.4s ease;
}

/* Hover Effect */
.room-container:hover img{
    transform:scale(1.03);
}

/* Responsive */
@media (max-width:768px){

    .room-section{
        padding:60px 0px 20px 0px;
    }

    .room-container{
        border-radius:0px;
    }
}
/* Amenities Section */
.amenities-section {
    padding: 80px 20px;
    background: #f8f9fa;
    font-family: Arial, sans-serif;
}

.container {
    max-width: 1366px;
    margin: auto;
}

.amenities-content {
    background: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.amenities-content h1 {
    font-size: 42px;
    color: #222;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.amenities-content h1::after {
    content: "";
    width: 80px;
    height: 4px;
    background: #0d6efd;
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 5px;
}

.amenities-content p {
    font-size: 17px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 25px;
}

/* Responsive */
@media (max-width: 768px) {

    .amenities-content {
        padding: 30px 20px;
    }

    .amenities-content h1 {
        font-size: 32px;
    }

    .amenities-content p {
        font-size: 16px;
    }
}
/* Amenities Section */
.amenities-section {
   padding:10px 20px 60px 20px;
    background: #f8f9fa;
    font-family: Arial, sans-serif;
}

.container {
    max-width:1366px;
    margin: auto;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 38px;
    color: #222;
    margin-bottom: 10px;
}

.section-title p {
    color: #666;
    font-size: 16px;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.amenity-box {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.amenity-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.10);
}

.amenity-box i {
    font-size: 42px;
    color: #0d6efd;
    margin-bottom: 18px;
}

.amenity-box h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #222;
}

.amenity-box p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.accessibility-note {
    margin-top: 40px;
    background: #fff;
    padding: 20px;
    border-left: 4px solid #0d6efd;
    border-radius: 8px;
    color: #555;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title h2 {
        font-size: 30px;
    }

    .amenity-box {
        padding: 25px 20px;
    }
}

/* Attractions Section */
.attractions-section {
    padding:10px 20px 60px 20px;
    background: #f8f9fa;
    font-family: Arial, sans-serif;
}

.container {
    max-width:1366px;
    margin: auto;
}

.section-title {
    text-align: center;
    margin-bottom: 55px;
}

.section-title h2 {
    font-size: 42px;
    color: #222;
    margin-bottom: 12px;
}

.section-title p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.attraction-card {
    background: #fff;
    border-radius: 15px;
    padding: 35px 30px;
    box-shadow: 0 5px 18px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-align: left;
}

.attraction-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.10);
}

.icon-box {
    width: 75px;
    height: 75px;
    background: #0d6efd;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 25px;
}

.content h3 {
    font-size: 24px;
    color: #222;
    margin-bottom: 15px;
}

.content p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {

    .section-title h2 {
        font-size: 32px;
    }

    .attraction-card {
        padding: 25px 20px;
    }

    .content h3 {
        font-size: 22px;
    }
}
/* Driving Directions Section */
.driving-directions {
    background: #d9d9d9;
    padding:10px 20px 30px 20px;
    font-family: Arial, sans-serif;
}


.driving-directions h2 {
    font-size:30px;
    color: #1f2937;
    margin-bottom: 25px;
    font-weight: 500;
}

.direction-form {
    display: flex;
    gap: 25px;
    align-items: center;
}

.direction-form input {
    flex: 1;
    height: 62px;
    border: 2px solid #7c7c7c;
    border-radius: 18px;
    padding: 0 20px;
    font-size: 20px;
    outline: none;
    background: #fff;
    color: #222;
}

.direction-form input::placeholder {
    color: #555;
}

.direction-form button {
    min-width: 320px;
    height: 62px;
    border: none;
    border-radius: 6px;
    background: #6b7280;
    color: #fff;
    font-size: 22px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s ease;
}

.direction-form button:hover {
    background: #4b5563;
}

/* Responsive */
@media (max-width: 991px) {

    .direction-form {
        flex-direction: column;
    }

    .direction-form button,
    .direction-form input {
        width: 100%;
    }

    .driving-directions h2 {
        font-size: 36px;
    }
}

@media (max-width: 576px) {

    .driving-directions {
        padding: 40px 15px;
    }

    .driving-directions h2 {
        font-size: 30px;
    }

    .direction-form input,
    .direction-form button {
        height: 55px;
        font-size: 16px;
    }
}
<!-- CSS -->
/* Contact Section */
.contact-section {
  padding:10px 20px 60px 20px;
    background: #f8f9fa;
    font-family: Arial, sans-serif;
}
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 42px;
    color: #222;
    margin-bottom: 10px;
}

.section-title p {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
}

.contact-card {
    background: #fff;
    padding: 45px;
    border-radius: 15px;
    box-shadow: 0 5px 18px rgba(0,0,0,0.05);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid #eee;
}

.contact-item:last-child {
    border-bottom: none;
}

.icon-box {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: #0d6efd;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.contact-text h4 {
    font-size: 24px;
    color: #222;
    margin-bottom: 10px;
}

.contact-text p {
    margin: 0;
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

.contact-text a {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 600;
}

.contact-text a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {

    .section-title h2 {
        font-size: 32px;
    }

    .contact-card {
        padding: 30px 20px;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .contact-text h4 {
        font-size: 22px;
    }
}
<!-- CSS -->
/* Sitemap Section */
.sitemap-section {
     padding:10px 20px 60px 20px;
    background: #f8f9fa;
    font-family: Arial, sans-serif;
}


.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.section-heading h2 {
    font-size: 42px;
    color: #222;
    margin-bottom: 12px;
}

.section-heading p {
    color: #666;
    font-size: 16px;
}

.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.sitemap-box a {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #ffffff;
    padding: 22px 25px;
    border-radius: 14px;
    text-decoration: none;
    color: #222;
    font-size: 18px;
    font-weight: 500;
    box-shadow: 0 5px 18px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.sitemap-box a:hover {
    background: #0d6efd;
    color: #fff;
    transform: translateY(-5px);
}

.sitemap-box a i {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: #e9f2ff;
    color: #0d6efd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: 0.3s ease;
}

.sitemap-box a:hover i {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {

    .section-heading h2 {
        font-size: 32px;
    }

    .sitemap-box a {
        font-size: 16px;
        padding: 18px 20px;
    }
}

<!-- CSS -->
/* FAQ Section */
.faq-section {
   padding:80px 20px 60px 20px;
    background: #f8f9fa;
    font-family: Arial, sans-serif;
}


.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h1 {
    font-size: 42px;
    color: #222;
    margin-bottom: 10px;
}

.section-title p {
    color: #666;
    font-size: 16px;
}

.faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 18px rgba(0,0,0,0.05);
}

.faq-question {
    width: 100%;
    background: #fff;
    border: none;
    outline: none;
    padding: 22px 25px;
    font-size: 18px;
    font-weight: 600;
    color: #222;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    cursor: pointer;
    transition: 0.3s ease;
    text-align: left;
}

.faq-question:hover {
    background: #f1f5ff;
}

.faq-question i {
    color: #0d6efd;
    margin-right: 10px;
}

.faq-icon {
    margin-left: auto;
}

.faq-answer {
    display: none;
    padding: 0 25px 25px;
}

.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

/* Active FAQ */
.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-icon i {
    transform: rotate(45deg);
}

/* Responsive */
@media (max-width: 768px) {

    .section-title h2 {
        font-size: 32px;
    }

    .faq-question {
        font-size: 16px;
        padding: 18px 20px;
    }

    .faq-answer {
        padding: 0 20px 20px;
    }
}
<!-- CSS -->
/* Gallery Section */
.gallery-section {
    padding:80px 20px;
    background: #f8f9fa;
    font-family: Arial, sans-serif;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h1 {
    font-size: 42px;
    color: #222;
    margin-bottom: 12px;
}

.section-title p {
    color: #666;
    font-size: 16px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.92);
    text-align: center;
}

.lightbox-image {
    max-width: 85%;
    max-height: 80vh;
    border-radius: 10px;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.7);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Buttons */
.close-btn,
.prev-btn,
.next-btn {
    position: absolute;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    user-select: none;
    transition: 0.3s;
}

.close-btn {
    top: 20px;
    right: 35px;
    font-size: 50px;
}

.prev-btn {
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
}

.next-btn {
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
}

.close-btn:hover,
.prev-btn:hover,
.next-btn:hover {
    color: #0d6efd;
}

/* Responsive */
@media (max-width: 768px) {

    .section-title h2 {
        font-size: 32px;
    }

    .gallery-item img {
        height: 220px;
    }

    .lightbox-image {
        max-width: 95%;
    }

    .prev-btn,
    .next-btn {
        font-size: 30px;
    }

    .close-btn {
        font-size: 40px;
    }
}
