:root {
  --color-primary: #711f2c;
  --color-primary-dark: #4d1420;
  --color-secondary: #132b3b;
  --color-secondary-light: #20465e;
  --color-accent: #842735;
  --color-cream: #f7f3ed;
  --color-white: #ffffff;
  --color-text: #26343d;
  --color-muted: #5a6870;
  --color-border: #d8d3cc;
  --shadow-soft: 0 20px 60px rgba(15, 36, 49, 0.14);
  --content-width: 1220px;
  --header-height: 88px;
  --transition: 220ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  background: var(--color-white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
h1,h2,h3, h4, h5 {  margin-top: 0; margin-bottom: 0;}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid #f2c66d;
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  transform: translateY(-140%);
  padding: 12px 18px;
  color: var(--color-white);
  background: var(--color-secondary);
  border-radius: 4px;
  font-weight: 700;
  transition: transform var(--transition);
}

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

.content-shell,
.header-shell,
.navigation-shell {
  width: min(calc(100% - 40px), var(--content-width));
  margin-inline: auto;
}

.section-space {
  padding: 50px 0;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--color-accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}
.eyebrow1 {
  display: inline-block;
  margin-bottom: 12px;
  color: #d6a44a;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}


.section-heading {

  color: var(--color-secondary);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.0rem, 3vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.heading-rule {
  width: 76px;
  height: 3px;
  margin: 28px 0 30px;
  background: var(--color-primary);
}

.site-header {
  position: relative;
  z-index: 1000;
  background: var(--color-white);
  box-shadow: 0 3px 18px rgba(15, 36, 49, 0.08);
}

.header-shell {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: 52px;
  height: 52px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: var(--color-white);
  background: var(--color-primary);
  border-radius: 50% 50% 50% 10%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.brand-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1.2;
}

.brand-name { position:absolute; width:150px; height:auto; top:2px;
}
.brand-name img { width:100%;}
.brand-location {
  margin-top: 4px;
  color: var(--color-muted);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--color-secondary);
  font-weight: 800;
  white-space: nowrap;
}

.header-phone i {
  color: var(--color-primary);
}

.header-phone:hover,
.header-phone:focus-visible {
  color: var(--color-primary);
}

.book-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  color: var(--color-white);
  background: var(--color-primary);
  border: 2px solid var(--color-primary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  transition: color var(--transition), background var(--transition), border-color var(--transition), transform var(--transition);
}

.book-button:hover,
.book-button:focus-visible {
  color: var(--color-white);
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  transform: translateY(-2px);
}

.menu-toggle {
  width: 48px;
  height: 48px;
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  background: var(--color-secondary);
  border: 0;
  cursor: pointer;
  font-size: 1.15rem;
}

.primary-navigation {
  color: var(--color-white);
  background: var(--color-secondary);
}

.navigation-shell {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 54px);
}

.navigation-shell a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 7px 0;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.navigation-shell a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

.navigation-shell a:hover::after,
.navigation-shell a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero-slider {
  position: relative;
  min-height: min(720px, calc(100vh - 146px));
  overflow: hidden;
  background: var(--color-secondary);
}

.slides,
.slide {
  position: absolute;
  inset: 0;
}

.slide {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.03);
  transition: opacity 800ms ease, visibility 800ms ease, transform 6s ease;
}

.slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.slide::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(8, 25, 35, 0.22), transparent 48%, rgba(8, 25, 35, 0.16));
  pointer-events: none;
}

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

.slider-control {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--color-white);
  background: rgba(15, 36, 49, 0.84);
  border: 2px solid rgba(255, 255, 255, 0.76);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  transform: translateY(-50%);
  transition: background var(--transition), transform var(--transition);
}

.slider-control:hover,
.slider-control:focus-visible {
  background: var(--color-primary);
  transform: translateY(-50%) scale(1.06);
}

.slider-control-prev {
  left: 30px;
}

.slider-control-next {
  right: 30px;
}

.slider-position {
  position: absolute;
  right: 38px;
  bottom: 30px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.7);
}

.slider-line {
  width: 44px;
  height: 2px;
  background: var(--color-white);
}

.welcome-section {
  background: var(--color-cream);
}

.welcome-layout {
  display: grid;
  align-items: stretch;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(50px, 7vw, 100px);
}

.welcome-visual {
  position: relative;
  min-height: 660px;
  background-image: linear-gradient(rgba(15, 36, 49, 0.08), rgba(15, 36, 49, 0.2)), url("https://webbox.imgix.net/images/kmcldkwwfporlyai/4e19e49c-843b-4947-8542-5264fcbc2e4b.jpeg?auto=format%2Ccompress&crop=entropy&fit=crop&h=600&w=1600");
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow-soft);
}

.welcome-visual::before {
  position: absolute;
  top: 28px;
  right: 28px;
  bottom: 28px;
  left: 28px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.62);
  pointer-events: none;
}

.video-button {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  color: var(--color-white);
  background: rgba(15, 36, 49, 0.94);
  transition: background var(--transition), transform var(--transition);
}

.video-button:hover,
.video-button:focus-visible {
  color: var(--color-white);
  background: var(--color-primary);
  transform: translateY(-3px);
}

.video-icon {
  width: 48px;
  height: 48px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 2px solid var(--color-white);
  border-radius: 50%;
}

.video-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.video-small {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.video-large {
  margin-top: 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.welcome-content {
  align-self: center;
}

.welcome-content > p {
  margin: 0;
  color: var(--color-muted);
  font-size: 1.06rem;
}

.welcome-detail {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 26px 0;
  border-top: 1px solid var(--color-border);
}

.welcome-detail:last-of-type {
  border-bottom: 1px solid var(--color-border);
}

.detail-number {
  color: var(--color-primary);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.detail-heading {
  margin-bottom: 7px;
  color: var(--color-secondary);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.25;
}

.welcome-detail p {
  margin: 0;
  color: var(--color-muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  color: var(--color-primary-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.text-link i {
  transition: transform var(--transition);
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--color-secondary);
}

.text-link:hover i,
.text-link:focus-visible i {
  transform: translateX(5px);
}

.amenities-section {
  position: relative;
  color: var(--color-white);
  background: var(--color-secondary);
  overflow: hidden;
}

.amenities-section::before,
.amenities-section::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.amenities-section::before {
  top: -180px;
  left: -120px;
  width: 440px;
  height: 440px;
}

.amenities-section::after {
  right: -160px;
  bottom: -230px;
  width: 540px;
  height: 540px;
}

.section-intro {
  position: relative;
  z-index: 1;
}

.centered-intro {
  text-align: center;
}

.centered-intro .section-heading {
  margin-inline: auto;
}

.light-heading {
  color: var(--color-white);
}

.light-rule {
  margin-inline: auto;
  background: #d6a44a;
}

.amenities-list {
  position: relative;
  z-index: 1;
  display: grid;
  margin-top: 68px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.amenity-item {
  min-height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 22px;
  padding: 28px;
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.amenity-item:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.amenity-item i {
  color: #d6a44a;
  font-size: 2.45rem;
}

.amenity-item span {
  max-width: 210px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.35;
}

.rooms-section {
  background: var(--color-white);
}

.split-intro {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  gap: 70px;
  margin-bottom: 25px;
}

.split-intro p {
  margin: 0;
  color: var(--color-muted);
  font-size: 1.04rem;
}

.room-list {
  border-top: 1px solid var(--color-border);
}

.room-row {
  display: grid;
  align-items: stretch;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  border-bottom: 1px solid var(--color-border);
}

.room-row-reverse .room-image {
  order: 2;
}

.room-row-reverse .room-content {
  order: 1;
}

.room-image {
  min-height: 510px;
  overflow: hidden;
}

.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.room-row:hover .room-image img {
  transform: scale(1.035);
}

.room-content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: clamp(38px, 6vw, 82px);
  background: var(--color-cream);
}

.room-number {
  margin-bottom: 18px;
  color: var(--color-primary);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.room-name {
  color: var(--color-secondary);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
}

.room-content > p {
  margin: 20px 0 24px;
  color: var(--color-muted);
}

.room-features {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.room-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  color: var(--color-secondary);
  border-bottom: 1px solid var(--color-border);
  font-weight: 700;
}

.room-features i {
  width: 20px;
  color: var(--color-primary);
  text-align: center;
}

.attractions-section {
  background: #f2eee8;
}

.attractions-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(290px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(60px, 8vw, 120px);
}

.attractions-intro {
  position: sticky;
  top: 35px;
}

.attractions-intro p {
  margin: 28px 0 34px;
  color: var(--color-muted);
}

.attraction-list {
  border-top: 1px solid #c9c1b7;
}

.attraction-row {
  display: grid;
  align-items: center;
  grid-template-columns: 50px minmax(0, 1fr) 56px;
  gap: 22px;
  padding: 36px 0;
  border-bottom: 1px solid #c9c1b7;
}
.attraction-img { width:35%; float:right; margin:10px 10px;}
.attraction-img img {width:100%;}
.attraction-number {
  color: var(--color-primary);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  font-weight: 700;
}

.attraction-name {
  color: var(--color-secondary);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2.0vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.attraction-row p {
  margin: 9px 0 0;
  color: var(--color-muted);
}

.attraction-icon {
  color: var(--color-primary);
  font-size: 1.8rem;
  text-align: right;
}

.booking-banner {
  padding: 70px 0;
  color: var(--color-white);
  background: var(--color-primary);
}

.booking-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.light-eyebrow {
  color: #ffe1a8;
}

.booking-heading {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.7rem);
  font-weight: 700;
  line-height: 1.1;
}

.book-button-light {
  color: var(--color-secondary);
  background: var(--color-white);
  border-color: var(--color-white);
  white-space: nowrap;
}

.book-button-light:hover,
.book-button-light:focus-visible {
  color: var(--color-white);
  background: var(--color-secondary);
  border-color: var(--color-secondary);
}

.site-footer {
  color: rgba(255, 255, 255, 0.88);
  background: #0e2230;
}

.footer-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(250px, 0.85fr) minmax(240px, 0.7fr);
  gap: clamp(45px, 7vw, 90px);
  padding-top: 85px;
  padding-bottom: 75px;
}

.footer-brand {
  color: var(--color-white);
}

.footer-brand .brand-name,
.footer-brand .brand-location {
  color: var(--color-white);
}

.footer-brand .brand-location {
  opacity: 0.72;
}

.footer-brand-mark {
  background: var(--color-primary);
}

.footer-brand-area p,
.footer-social-area p {
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-title, .footer-title a {
  margin-bottom:15px;
  color: var(--color-white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 700;
}

.footer-contact address,
.footer-phone {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin: 0 0 20px;
  font-style: normal;
}

.footer-contact i {
  width: 20px;
  margin-top: 6px;
  color: var(--color-accent);
  text-align: center;
}

.footer-contact a:hover,
.footer-contact a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: #ffdc9a;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 25px;
}

.social-links a {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  transition: color var(--transition), background var(--transition), border-color var(--transition), transform var(--transition);
}

.social-links a:hover,
.social-links a:focus-visible {
  color: var(--color-secondary);
  background: var(--color-accent);
  border-color: var(--color-accent);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--color-white);
  font-weight: 700;
}

@media (max-width: 1050px) {
  .header-phone span {
    display: none;
  }

  .welcome-layout {
    gap: 55px;
  }

  .room-row {
    grid-template-columns: 1fr 1fr;
  }

  .footer-layout {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .footer-social-area {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 76px;
  }

  .section-space {
    padding: 80px 0;
  }

  .content-shell,
  .header-shell,
  .navigation-shell {
    width: min(calc(100% - 30px), var(--content-width));
  }

  .brand-mark {
    width: 46px;
    height: 46px;
  }

  .book-button-header {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .primary-navigation {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 350ms ease, opacity 250ms ease, visibility 250ms ease;
  }

  .primary-navigation.is-open {
    max-height: 430px;
    opacity: 1;
    visibility: visible;
  }

  .navigation-shell {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 14px 0 20px;
  }

  .navigation-shell a {
    width: 100%;
    min-height: 48px;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .navigation-shell a::after {
    display: none;
  }

  .hero-slider {
    min-height: 560px;
  }

  .welcome-layout,
  .split-intro,
  .attractions-layout {
    grid-template-columns: 1fr;
  }

  .welcome-visual {
    min-height: 520px;
  }

  .split-intro {
    gap: 24px;
    margin-bottom: 50px;
  }

  .amenities-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .amenity-item:nth-child(2) {
    border-right: 1px solid rgba(255, 255, 255, 0.18);
  }

  .amenity-item:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .room-row,
  .room-row-reverse {
    grid-template-columns: 1fr;
  }

  .room-row-reverse .room-image,
  .room-row-reverse .room-content {
    order: initial;
  }

  .room-image {
    min-height: 430px;
  }

  .attractions-intro {
    position: static;
  }

  .booking-banner-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 15px;
  }

  .section-space {
    padding: 65px 0;
  }

  .brand-location {
    display: none;
  }

  .header-actions {
    gap: 9px;
  }

  .header-phone {
    width: 46px;
    height: 46px;
    justify-content: center;
    color: var(--color-white);
    background: var(--color-primary);
  }

  .header-phone i {
    color: var(--color-white);
  }

  .hero-slider {
    min-height: 430px;
  }

  .slider-control {
    top: auto;
    bottom: 20px;
    width: 50px;
    height: 50px;
    transform: none;
  }

  .slider-control:hover,
  .slider-control:focus-visible {
    transform: scale(1.05);
  }

  .slider-control-prev {
    left: 18px;
  }

  .slider-control-next {
    right: 18px;
  }

  .slider-position {
    right: 50%;
    bottom: 35px;
    transform: translateX(50%);
  }

  .welcome-visual {
    min-height: 430px;
  }

  .welcome-visual::before {
    top: 16px;
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

  .video-button {
    right: 16px;
    bottom: 16px;
    left: 16px;
    padding: 14px 16px;
  }

  .video-icon {
    width: 42px;
    height: 42px;
  }

  .welcome-detail {
    grid-template-columns: 40px 1fr;
  }

  .amenities-list {
    grid-template-columns: 1fr;
  }

  .amenity-item,
  .amenity-item:nth-child(2),
  .amenity-item:last-child {
    min-height: 150px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-right: 1px solid rgba(255, 255, 255, 0.18);
  }

  .amenity-item:first-child {
    border-top: 0;
  }

  .room-image {
    min-height: 310px;
  }

  .room-content {
    padding: 34px 24px 42px;
  }

  .attraction-row {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 14px;
  }

  .attraction-icon {
    display: none;
  }

  .booking-banner {
    padding: 55px 0;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    gap: 45px;
    padding-top: 65px;
    padding-bottom: 55px;
  }

  .footer-social-area {
    grid-column: auto;
  }

  .footer-bottom-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-top: 18px;
    padding-bottom: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

.hide {display:none !important;}

.ft { margin:5px 0;}

.amenitypg {
      width:40%; float:left; 
      margin: 10px 10px;
      padding: 4px; 
      
    }
  
    .amenitypg ul {
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 15px 30px;
    }
    .amenitypg li {
    color: var(--color-muted);
    font-size: 1.06rem; padding:8px 0;
      display: flex;
      align-items: center; text-align:left;
    }
    .amenitypg li i {
      color: var(--color-muted);
      margin-right: 10px;
      font-size: 21px;
      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: 20px;  color: var(--color-muted);
    font-size: 1.06rem; margin-left:30px; }
.col1 ul li {list-style:circle; line-height:36px;}
.col1 ul li a {color: var(--color-muted); text-decoration:none; list-style:none;}	

.fq{text-align:left; text-decoration: none; color:#132b3b; font-weight:bold;  font-size:21px;  line-height:34px; margin-top:6px; list-style:none; }
.fqa{color: var(--color-muted);font-size: 1.06rem; font-weight:normal; line-height:28px; text-align:left; }
.fqa a{color:#711f2c;     font-size: 1.06rem; text-decoration:none;}

.feature-box { font-family:"Manrope", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    gap: 60px;

    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-title {
    font-size: 32px;     color: var(--color-secondary);
    font-family: Georgia, "Times New Roman", serif;
    margin-bottom: 10px;
}

.text-side p {
           color: var(--color-muted);
    font-size: 1.06rem;
    margin-bottom: 20px;     line-height: 1.8;
}

.title2, .title2 a {
    font-size: 36px;
    font-weight: normal;
    margin-bottom: 20px;
    color: #002D72;

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

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

    .img-side img {
        height: 250px;
    }
}
}
/* ==============================
   MODERN DIRECTIONS SECTION
================================ */

.direction-content {
 
    max-width: 720px;
	float:left;
    padding: 50px 45px;
  
}





/* 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;
    }
}