 
    *{
      margin:0;
      padding:0;
      box-sizing:border-box;
      font-family:'Poetsen One', sans-serif;
    }

    :root{
      --blue:#062b57;
      --blue2:#0b3c7c;
      --blue3:#0d295c;
    }

    /* -------------------------------------------------
       Diagonal stripes background on the whole page
       ------------------------------------------------- */
    body{
      position:relative;
      background:#f9f9f9;
      color:#111;
      overflow-x:hidden;
    }

    body::before{
      content:"";
      position:fixed;
      inset:0;
      z-index:-1;
      background-image:
        repeating-linear-gradient(
          45deg,
          transparent,
          transparent 2px,
          var(--blue) 2px,
          var(--blue) 4px
        );
      opacity:0.07;
    }

    @keyframes slideDownFade {
      0%{transform:translate(-50%,-20px);opacity:0;filter:blur(6px);}
      100%{transform:translate(-50%,0);opacity:1;filter:blur(0);}
    }

    @keyframes fadeUp {
      0%{transform:translateY(30px);opacity:0;filter:blur(6px);}
      100%{transform:translateY(0);opacity:1;filter:blur(0);}
    }

    @keyframes popIn {
      0%{transform:scale(.92) translateY(10px);opacity:0;filter:blur(6px);}
      100%{transform:scale(1) translateY(0);opacity:1;filter:blur(0);}
    }

    nav{
      width:80%;
      margin:1rem auto;
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:1rem 2rem;
      background:#fff;
      border-radius:50px;
      box-shadow:0 4px 25px rgba(0,0,0,.08);
      position:fixed;
      left:50%;
      top:.4rem;
      transform:translateX(-50%);
      z-index:1000;
      transition:all .35s ease;
      opacity:0;
      animation:slideDownFade .8s ease forwards;
    }

    @media(min-width:769px){
      nav.scrolled{width:90%;}
    }
    
    
    

    .logo{
      display:flex;
      align-items:center;
      gap:10px;
      font-family: "Rubik Burned", system-ui;
  font-weight: 400;
  font-style: normal;
      font-size:1.6rem;
      color:var(--blue);
      text-decoration:none;
    }

    .logo i{
      font-size:1.1rem;
      background:var(--blue);
      color:#fff;
      padding:10px;
      border-radius:8px;
    }

    .nav-links{
      display:flex;
      align-items:center;
      gap:2rem;
    }

    .nav-links a{
      text-decoration:none;
      color:#111;
      font-weight:500;
      transition:.3s;
    }

    .nav-links a:hover{color:var(--blue2);}

    .book-call{
      background:var(--blue);
      color:#fff;
      padding:.7rem 1.5rem;
      border-radius:15px;
      font-weight:600;
      text-decoration:none;
      box-shadow:0 4px 10px rgba(0,0,0,.15);
      transition:.3s;
    }

    .book-call:hover{transform:translateY(-3px);}

    .hamburger{
      display:none;
      flex-direction:column;
      gap:5px;
      cursor:pointer;
    }

    .hamburger span{
      width:25px;height:2.5px;background:#111;border-radius:2px;transition:.3s;
    }

    .mobile-menu{
      position:fixed;
      top:-100%;
      left:0;
      width:100%;
      height:100vh;
      background:#fff;
      display:flex;
      flex-direction:column;
      justify-content:center;
      align-items:center;
      gap:2rem;
      z-index:999;
      opacity:0;
      pointer-events:none;
      transition:.5s ease;
    }

    .mobile-menu.active{
      top:0;
      opacity:1;
      pointer-events:auto;
    }

    .mobile-menu a{
      font-size:1.4rem;
      text-decoration:none;
      color:#111;
      font-weight:600;
    }

    /* HERO */
    .hero{
      display:flex;
      flex-direction:column;
      align-items:center;
      text-align:center;
      padding:12rem 1.5rem 6rem;
      background:transparent;
      position:relative;
    }

    .badges{
      display:flex;
      gap:2rem;
      margin-bottom:2rem;
      flex-wrap:wrap;
      justify-content:center;
      color:#555;
      font-size:.9rem;
      opacity:0;
      animation:fadeUp .8s .2s forwards;
    }

    .badge{
      display:flex;
      align-items:center;
      gap:6px;
    }

    .badge i{
      color:var(--blue);
      font-size:1rem;
    }

    @media(max-width:768px){
      .badge:nth-child(3){display:none;}
    }

    .hero h1{
      font-size:4.8rem;
      font-weight:800;
      line-height:1.1;
      margin-bottom:1.2rem;
      max-width:1100px;
      opacity:0;
      animation:fadeUp .9s .35s forwards;
    }

    .scribble{
      font-family:'Akronim', cursive;
      display:inline-block;
      color:var(--blue);
      font-size:1.1em;
    }

    .hero p{
      font-size:1.26rem;
      color:#555;
      max-width:650px;
      margin-bottom:2.5rem;
      opacity:0;
      animation:fadeUp .8s .55s forwards;
    }

    .cta-buttons{
      display:flex;
      gap:1rem;
      flex-wrap:wrap;
      justify-content:center;
    }

    .cta-buttons a{
      display:flex;
      align-items:center;
      justify-content:center;
      gap:.6rem;
      padding:.9rem 1.8rem;
      border-radius:15px;
      font-weight:600;
      text-decoration:none;
      transition:.3s;
      opacity:0;
      animation:popIn .6s .7s forwards;
    }

    .invite{
      background:var(--blue);
      color:#fff;
      box-shadow:0 4px 10px rgba(0,0,0,.15);
    }

    .invite:hover{transform:translateY(-4px);}

    .call{
      background:#fff;
      color:var(--blue);
      border:1px solid var(--blue2);
      box-shadow:0 2px 8px rgba(0,0,0,.05);
    }

    .call:hover{transform:translateY(-4px);}

    @media(max-width:1024px){
      .hero h1{font-size:3.9rem;}
    }
    @media(max-width:768px){
      nav{width:92%;padding:1rem 1.3rem;}
      .nav-links,.book-call{display:none;}
      .hamburger{display:flex;}
      .hero{padding:10rem 1rem 5rem;}
      .hero h1{font-size:2.6rem;}
      .cta-buttons a{width:100%;}
    }
    
    
    
    
    
:root {
  --blue: #06577f;
}

/* GLOBAL */
*, *::before, *::after { box-sizing: border-box; }

/* SECTION */
.rooms-section {
  padding: 6rem 4rem;
  background: transparent;
  text-align: center;
}

/* HEADER BADGE */
.badge-inline {
  display: inline-flex;
  gap: .5rem;
  background: rgba(6,43,87,0.08);
  color: var(--blue);
  font-size: .875rem;
  font-weight: 600;
  padding: .5rem 1rem;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp .8s ease forwards;
}

/* TITLES */
.section-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp .9s ease forwards;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 3rem;
  opacity: 0;
  animation: fadeUp .8s ease forwards;
}

/* GRID */
.cards-container {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: nowrap;
  width: 100%;
}

/* CARD */
.room-card {
  position: relative;
 
  width: 32vw;
  min-width: 280px;
  max-width: 400px;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  transition: .4s cubic-bezier(0.25,0.8,0.25,1);
  opacity: 0;
  animation: popIn .7s ease forwards;
  display: flex;
  flex-direction: column;
}

.room-card:hover { transform: translateY(-12px) scale(1.02); }

/* IMAGE */
.room-image {
  flex: 1;
  position: relative;
}

.room-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: .7s ease;
}

.room-card:hover .room-image img { transform: scale(1.1); }

/* OVERLAY — HIDDEN BY DEFAULT */
.overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85), rgba(0,0,0,.4) 50%, transparent);
  display: none;
}

/* CONTENT */
.room-content {
  padding: 0.5rem 0.75rem !important;
  background: rgba(0,0,0,.75);
  color: white;
  text-align: left;
  margin: 0;
  flex-shrink: 0;
}

.room-title {
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: .5rem;
}

/* FEATURES */
.room-features {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
    padding-left: 0.5rem;   
}

/* FOOTER */
.room-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .5rem;
}

/* BUTTON INSIDE CARD */
.btn-view {
  background: white;
  color: var(--blue);
  padding: .65rem 1.5rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
  font-weight: 600;
}

/* VIEW ALL BUTTON */
.view-all-wrapper {
  margin-top: 3rem;
  text-align: center;
}

.btn-view-all {
  background: var(--blue);
  color: white;
  padding: .85rem 2.2rem;
  border-radius: 14px;
  font-size: 1.05rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  transition: .3s;
}

.btn-view-all:hover {
  transform: translateY(-6px);
}

/* MOBILE */
@media (max-width: 768px) {
  .rooms-section { padding: 5rem 1rem; }

  .cards-container {
    flex-direction: column;
    gap: 1.5rem;
  }

  .room-card {
    width: 90vw !important;
    height: auto;
    max-width: 500px;
  }

  /* SHOW OVERLAY ONLY ON MOBILE */
  .overlay-gradient {
    display: block;
  }
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes popIn {
  from { opacity: 0; transform: scale(0.9) translateY(10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* ===== SCROLL ANIMATIONS ===== */

.scroll-fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s cubic-bezier(.25,.8,.25,1);
}

.scroll-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}






:root {
  --blue: #06577f;
}

/* SECTION */
.amenities-section {
  padding: 6rem 4rem;
  text-align: center;
  background: transparent;
}

.amenities-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* BADGE */
.amenity-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(6, 43, 87, 0.08);
  color: var(--blue);
  padding: .55rem 1.25rem;
  border-radius: 2rem;
  font-weight: 600;
  margin-bottom: 1.4rem;
  opacity: 0;
  animation: fadeUp .7s ease forwards;
}

/* TITLES */
.amenities-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp .85s ease forwards;
}

.amenities-subtitle {
  max-width: 700px;
  margin: 0 auto 3rem;
  color: #555;
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0;
  animation: fadeUp .85s ease forwards;
}

/* GRID */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* CARDS */
.amenity-card {
  background: white;
  padding: 2rem 1rem;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.07);
  transition: .35s;
  opacity: 0;
  animation: popIn .7s ease forwards;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: initial;
}

.amenity-card:hover {
  transform: translateY(-10px) scale(1.02);
}

.amenity-card i {
  font-size: 2.2rem;
  color: var(--blue);
  margin-bottom: 1rem;
}

.amenity-card p {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: inherit;
}

/* Highlighted p text */
.amenity-card p > .scribble {
  /* your existing scribble style will apply here */
  color: inherit;
}

.amenity-card small {
  font-size: 0.875rem;
  color: #666;
  max-width: 180px;
  line-height: 1.3;
}

/* ODD cards get blue background and white text */
.amenities-grid .amenity-card:nth-child(odd) {
  background-color: var(--blue);
  color: white;
  box-shadow: 0 12px 28px rgba(6, 87, 127, 0.5);
}

.amenities-grid .amenity-card:nth-child(odd) i {
  color: white;
}

.amenities-grid .amenity-card:nth-child(odd) small {
  color: #ddd;
}

/* Make sure scribble spans inside odd cards are white */
.amenities-grid .amenity-card:nth-child(odd) .scribble {
  color: white;
}

/* BOOK NOW BUTTON */
.btn-booknow-wrapper {
  margin-top: 3rem;
  opacity: 0;
  animation: fadeUp 1s ease forwards;
}

.btn-booknow {
  background: var(--blue);
  color: white;
  font-weight: 700;
  padding: 0.85rem 2.25rem;
  border-radius: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  box-shadow: 0 8px 18px rgba(6, 87, 127, 0.35);
  transition: transform 0.3s ease;
}

.btn-booknow:hover {
  transform: translateY(-3px);
}

/* MOBILE */
@media (max-width: 768px) {
  .amenities-section { padding: 4rem 1.5rem; }

  .amenities-grid {
    grid-template-columns: 1fr;  /* 1 column on mobile */
    gap: 1.4rem;
  }

  .amenity-card {
    padding: 1.6rem 1rem;
    width: 90vw;      /* make cards about 90% viewport width */
    max-width: none;  /* remove max-width */
    margin: 0 auto;
  }

  .btn-booknow {
    font-size: 1.1rem;
    padding: 0.75rem 1.8rem;
  }
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes popIn {
  from { opacity: 0; transform: scale(.92) translateY(12px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}






 :root {
    --blue: #06577f;
  }

  .carousel-section {
    padding: 6rem 2rem 3rem;
    overflow: hidden;
    text-align: center;
    margin: 0 auto;
  }

  .carousel-container {
    margin-bottom: 3rem;
  }

  /* BADGE */
  .carousel-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(6, 43, 87, 0.08);
    color: var(--blue);
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeUp 0.7s ease forwards;
  }

  /* TITLE */
  .carousel-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 0.6rem;
    opacity: 0;
    animation: fadeUp 0.85s ease forwards;
  }

  /* Subtitle */
  .carousel-subtitle {
    max-width: 700px;
    margin: 0 auto 2.8rem;
    font-size: 1.15rem;
    color: #555;
    line-height: 1.5;
    opacity: 0;
    animation: fadeUp 0.85s ease forwards;
  }

  .btn-carousel-wrapper {
    opacity: 0;
    animation: fadeUp 1s ease forwards;
    margin-top: 3rem;
  }

  .btn-carousel {
    background: var(--blue);
    color: white;
    font-weight: 700;
    padding: 0.9rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    box-shadow: 0 8px 18px rgba(6, 87, 127, 0.35);
    transition: transform 0.3s ease;
  }

  .btn-carousel:hover {
    transform: translateY(-3px);
  }

  .carousel-row {
    overflow: hidden;
    margin-bottom: 0.4rem; /* reduced from 2rem */
    position: relative;
  }

  /* White fade overlays on edges */
  .carousel-row::before,
  .carousel-row::after {
    content: "";
    position: absolute;
    top: 0;
    width: 6rem;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }

  .carousel-row::before {
    left: 0;
    background: linear-gradient(to right, white 0%, transparent 100%);
  }

  .carousel-row::after {
    right: 0;
    background: linear-gradient(to left, white 0%, transparent 100%);
  }

  .carousel-track {
    display: flex;
    gap: 0.7rem;
    padding-top: 15px;
    width: max-content;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-name: scroll-left;
    animation-duration: 40s;
  }

  .top-row .carousel-track {
    animation-name: scroll-left;
  }
  .bottom-row .carousel-track {
    animation-name: scroll-right;
  }

  .carousel-card {
    flex: 0 0 auto;
    width: 392px; /* 280 + 40% */
    height: 40vh;
    border-radius: 16px;
    background: rgba(255 255 255 / 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255 255 255 / 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    overflow: hidden;
  }

  .carousel-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
    pointer-events: none;
  }

  .carousel-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 16px 40px rgba(6, 87, 127, 0.4);
    animation-play-state: paused !important;
  }

  .carousel-row:hover .carousel-track {
    animation-play-state: paused;
  }

  @keyframes scroll-left {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-50%);
    }
  }

  @keyframes scroll-right {
    from {
      transform: translateX(-50%);
    }
    to {
      transform: translateX(0);
    }
  }

  /* Responsive */
  @media (max-width: 768px) {
    .carousel-section {
      padding: 3rem 1rem 2rem;
      max-width: 100%;
    }

    .carousel-container {
      margin-bottom: 2rem;
    }

    .carousel-badge {
      font-size: 0.85rem;
      padding: 0.4rem 1.25rem;
    }

    .carousel-title {
      font-size: 2rem;
    }

    .carousel-subtitle {
      font-size: 1rem;
      max-width: 95%;
      margin-bottom: 2rem;
    }

    .btn-carousel {
      font-size: 1rem;
      padding: 0.7rem 2rem;
    }

    .carousel-row {
      margin-bottom: 0.5rem;
    }

    .carousel-track {
      animation-duration: 60s;
    }

    .carousel-card {
      width: 210px; /* 280 - 25% */
      height: 225px; /* 180 + 25% */
      margin: 0 auto;
      border-radius: 14px;
    }

    /* Adjust overlay widths for smaller screens */
    .carousel-row::before,
    .carousel-row::after {
      width: 3rem;
    }
  }

  /* Animation fadeIn Up */
  @keyframes fadeUp {
    0% {
      opacity: 0;
      transform: translateY(15px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .opacity-0 {
    opacity: 0;
  }

  .animate-fadeUp {
    animation-fill-mode: forwards;
    animation-name: fadeUp;
    animation-duration: 0.7s;
  }
  
  
  
  
  
  
  
  
  :root {
  --blue: #06577f;
}

/* SECTION WRAP */
.about-section {
  padding: 6rem 4rem;
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
}

/* BADGE */
.about-badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: rgba(6, 43, 87, 0.08);
  color: var(--blue);
  padding: .6rem 1.4rem;
  border-radius: 2rem;
  font-weight: 600;
  margin-bottom: 1.4rem;
  opacity: 0;
  animation: fadeUp .7s ease forwards;
}

/* TITLES */
.about-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.3;
  opacity: 0;
  animation: fadeUp .85s ease forwards;
}

.about-subtitle {
  max-width: 750px;
  margin: 0 auto 5rem;
  font-size: 1.15rem;
  color: #555;
  line-height: 1.65;
  opacity: 0;
  animation: fadeUp .95s ease forwards;
}

/* ROWS */
.about-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  margin-bottom: 6rem;
}

.about-row.reverse .about-image {
  order: 2;
}
.about-row.reverse .about-content {
  order: 1;
}

/* IMAGES */
.about-image {
  height: 80vh;
  overflow: hidden;
  border-radius: 20px;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

/* CONTENT */
.about-content {
  text-align: left;
}

.about-content h3 {
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.about-content p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #444;
  margin-bottom: 1.8rem;
}

/* BUTTON */
.about-btn {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  background: var(--blue);
  color: white;
  font-weight: 700;
  padding: .9rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(6,87,127,0.35);
  transition: .3s ease;
}

.about-btn:hover {
  transform: translateY(-4px);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-row {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .about-section{
         padding: 3rem 1rem 2rem;
      max-width: 100%;
    
  }

  .about-row.reverse .about-image,
  .about-row.reverse .about-content {
    order: unset;
  }

  .about-content {
    text-align: center;
  }

  .about-image {
    height: 60vh;
  }
}

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(15px); }
  to   { opacity: 1; transform: translateY(0); }
}

.opacity-0 { opacity: 0; }
.animate-fadeUp {
  animation-fill-mode: forwards;
  animation-name: fadeUp;
  animation-duration: .7s;
}









:root {
  --blue: #06577f;
}

/* CTA SECTION */
.cta-section {
  height: 70vh;
  background: url("hotel-images/hotelcompound4.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 4rem;
  position: relative;
}

/* Overlay for readability */
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
}

/* CONTENT */
.cta-content {
  position: relative;
  text-align: center;
  color: white;
  max-width: 700px;
}

/* BADGE */
.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: .6rem 1.4rem;
  border-radius: 2rem;
  font-weight: 600;
  font-size: .95rem;
  margin-bottom: 1.4rem;
}

/* TITLE */
.cta-title {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 1rem;
}

/* SUBTITLE */
.cta-subtitle {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  opacity: .9;
}

/* BUTTON */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  background: var(--blue);
  color: white;
  font-weight: 700;
  padding: 1rem 2.4rem;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(6,87,127,0.45);
  transition: .3s;
}

.cta-btn:hover {
  transform: translateY(-5px);
}

/* MOBILE */
@media (max-width: 768px) {
  .cta-section {
    height: 70vh;
    padding: 3rem 1rem 2rem;
    max-width: 100%;
    background: url("hotel-images/hotelcompound4.jpg") center/cover no-repeat;
  }

  .cta-title {
    font-size: 2rem;
  }

  .cta-subtitle {
    font-size: 1rem;
  }
}


/* Animation */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(15px); }
  to   { opacity: 1; transform: translateY(0); }
}

.opacity-0 { opacity: 0; }
.animate-fadeUp {
  animation: fadeUp .8s ease forwards;
}



/* ================= FOOTER ================= */
:root {
  --blue: #06577f;
}

.footer-section {
  background: var(--blue);
  color: #fff;
  padding: 5rem 2rem 1rem;
}

.footer-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 4rem;
}

.footer-about h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-about p {
  opacity: 0.85;
  line-height: 1.7;
  font-weight: 500;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-col a {
  display: block;
  color: #fff;
  opacity: 0.75;
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
  transition: 0.3s;
}

.footer-col a:hover {
  opacity: 1;
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin-top: 3rem;
  padding-top: 1.5rem;
  text-align: center;
  opacity: 0.7;
  font-size: 0.9rem;
}

/* MOBILE */
@media (max-width: 768px) {
  .footer-section {
    padding: 3rem 1rem 2rem;
    max-width: 100%;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .footer-links {
    grid-template-columns: 1fr;
  }
}

  