:root {
  --brand-navy: #003f7d;
  --brand-blue: #006eb6;
  --brand-gold: #ffd20a;
  --ink: #102a43;
  --soft-blue: #eef7fc;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
}
html { scroll-behavior: smooth; scroll-padding-top: 140px; }

.site-header {
  z-index: 1030;
  box-shadow: 0 8px 28px rgba(0, 63, 125, .12);
}

.topbar {
  min-height: 42px;
  padding: 6px 0;
  color: #fff;
  background: var(--brand-navy);
  font-size: .84rem;
}

.topbar-message { letter-spacing: .01em; opacity: .9; }
.sparkle { color: var(--brand-gold); font-size: 1rem; }

.topbar-link {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.55);
}
.topbar-link:hover { color: var(--brand-gold); }

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  line-height: 1.05;
  text-decoration: none;
}

.phone-link small { display: block; margin-bottom: 3px; opacity: .72; font-size: .66rem; text-transform: uppercase; letter-spacing: .1em; }
.phone-link strong { font-family: "Montserrat", sans-serif; font-size: .9rem; }
.phone-link:hover { color: var(--brand-gold); }

.phone-icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-gold);
}
.phone-icon svg { width: 14px; fill: var(--brand-navy); }

.navbar { min-height: 92px; padding: 10px 0; background: rgba(255,255,255,.98); }
.navbar-brand { padding: 0; margin-right: 2rem; }
.navbar-brand img { display: block; width: 192px; max-height: 74px; object-fit: contain; }

.navbar-nav { gap: .15rem; }
.nav-link {
  position: relative;
  padding: .7rem .68rem !important;
  color: var(--ink);
  font-size: .91rem;
  font-weight: 600;
}
.nav-link::after {
  content: "";
  position: absolute;
  right: .68rem;
  bottom: .36rem;
  left: .68rem;
  height: 3px;
  border-radius: 3px;
  background: var(--brand-gold);
  transform: scaleX(0);
  transition: transform .2s ease;
}
.nav-link:hover, .nav-link.active { color: var(--brand-navy) !important; }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.btn-book {
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: .7rem 1.25rem;
  border: 2px solid var(--brand-gold);
  border-radius: 7px;
  color: var(--brand-navy);
  background: var(--brand-gold);
  font-family: "Montserrat", sans-serif;
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .045em;
  box-shadow: 0 8px 20px rgba(255,210,10,.25);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn-book:hover { color: #fff; border-color: var(--brand-navy); background: var(--brand-navy); transform: translateY(-2px); box-shadow: 0 10px 22px rgba(0,63,125,.22); }

.navbar-toggler { width: 46px; height: 46px; padding: 10px; border: 1px solid #d8e4ee; border-radius: 7px; box-shadow: none !important; }
.navbar-toggler span { display: block; height: 2px; margin: 5px 0; border-radius: 2px; background: var(--brand-navy); }

.hotel-slider,
.hotel-slider .carousel-item { height: clamp(560px, 74vh, 790px); }

.slider-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.slider-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 25, 49, .9) 0%, rgba(0, 48, 92, .68) 42%, rgba(0, 35, 70, .15) 76%),
    linear-gradient(0deg, rgba(0, 28, 55, .42), transparent 42%);
}

.carousel-caption {
  inset: 0;
  display: flex;
  align-items: center;
  padding: 3rem 0 4rem;
  text-align: left;
}

.carousel-caption .container { width: 100%; }
.caption-content { max-width: 720px; }
.caption-content .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand-gold);
  font-size: .83rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.caption-content .eyebrow::before { content: ""; width: 34px; height: 3px; border-radius: 3px; background: var(--brand-gold); }

.caption-content h1,
.caption-content h2 {
  margin: 1rem 0 1.25rem;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(3rem, 6vw, 5.6rem);
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.05em;
  text-shadow: 0 5px 25px rgba(0,0,0,.22);
}
.caption-content h1 span,
.caption-content h2 span { color: var(--brand-gold); }
.caption-content p { max-width: 610px; margin-bottom: 2rem; color: rgba(255,255,255,.88); font-size: 1.12rem; line-height: 1.7; }

.btn-explore { border-width: 2px; border-radius: 7px; font-weight: 700; }
.btn-explore:hover { color: var(--brand-navy); background: #fff; }

.slider-control { width: 8%; opacity: 1; }
.control-circle {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 50%;
  background: rgba(0,63,125,.62);
  backdrop-filter: blur(8px);
  transition: background .2s ease, transform .2s ease;
}
.control-circle svg { width: 25px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.slider-control:hover .control-circle { background: var(--brand-gold); transform: scale(1.08); }
.slider-control:hover svg { stroke: var(--brand-navy); }

.carousel-indicators { bottom: 20px; gap: 7px; margin-bottom: 0; }
.carousel-indicators [data-bs-target] { width: 9px; height: 9px; margin: 0; border: 2px solid #fff; border-radius: 50%; background: transparent; opacity: .8; }
.carousel-indicators .active { width: 28px; border-color: var(--brand-gold); border-radius: 10px; background: var(--brand-gold); opacity: 1; }

.reservation-wrap {
  position: relative;
  z-index: 10;
  margin-top: -42px;
  padding-bottom: 46px;
}

.reservation-box {
  padding: 24px 26px 26px;
  border-top: 5px solid var(--brand-gold);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 20px 55px rgba(0, 49, 93, .18);
}

.booking-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.booking-heading small { display: block; margin-bottom: 2px; color: var(--brand-blue); font-size: .7rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.booking-heading h2 { margin: 0; color: var(--brand-navy); font-family: "Montserrat", sans-serif; font-size: 1.28rem; font-weight: 800; }
.booking-icon { display: grid; width: 44px; height: 44px; flex: 0 0 44px; place-items: center; border-radius: 9px; background: var(--soft-blue); }
.booking-icon svg { width: 22px; fill: none; stroke: var(--brand-blue); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.booking-form {
  display: grid;
  grid-template-columns: 1.3fr 1.3fr .9fr .9fr .85fr 1.08fr;
  gap: 12px;
  align-items: end;
}

.booking-field label { display: block; margin: 0 0 7px 2px; color: #52697d; font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.booking-field .form-control,
.booking-field .form-select {
  min-height: 52px;
  border: 1px solid #dbe6ee;
  border-radius: 7px;
  color: var(--ink);
  background-color: #f8fbfd;
  font-size: .91rem;
  font-weight: 600;
  box-shadow: none;
}
.booking-field .form-control:focus,
.booking-field .form-select:focus { border-color: var(--brand-blue); background-color: #fff; box-shadow: 0 0 0 3px rgba(0,110,182,.12); }

.booking-submit { display: inline-flex; width: 100%; min-height: 52px; gap: 8px; }
.booking-submit svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 2.3; stroke-linecap: round; stroke-linejoin: round; transition: transform .2s ease; }
.booking-submit:hover svg { transform: translateX(3px); }

.welcome-section {
  position: relative;
  overflow: hidden;
  padding: 90px 0 105px;
  background: #fff;
}
.welcome-section::before {
  content: "";
  position: absolute;
  top: 30px;
  left: -130px;
  width: 310px;
  height: 310px;
  border-radius: 50%;
  background: rgba(0,110,182,.055);
}

.section-kicker { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 14px; color: var(--brand-blue); font-size: .76rem; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.section-kicker::before { content: ""; width: 32px; height: 3px; border-radius: 3px; background: var(--brand-gold); }
.welcome-content h1 { max-width: 650px; margin: 0 0 22px; color: var(--brand-navy); font-family: "Montserrat", sans-serif; font-size:38px; font-weight: 800; line-height: 1.08; letter-spacing: -.045em; }
.welcome-content1 h1 { max-width:100%; margin: 0 0 22px; color: var(--brand-navy); font-family: "Montserrat", sans-serif; font-size:38px; font-weight: 800; line-height: 1.08; letter-spacing: -.045em; }
.welcome-content h1 span { color: var(--brand-blue); }
.welcome-content > p { color: #5b7184; font-size: 1rem; line-height: 1.75; }
.welcome-content .welcome-lead { margin-bottom: 12px; color: #2e4b63; font-size: 1.13rem; font-weight: 600; line-height: 1.65; }

.feature-grid { margin-top: 25px; }
.feature-card { display: flex; gap: 13px; padding: 17px; border: 1px solid #e1ebf2; border-radius: 10px; background: #fbfdff; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.feature-card:hover { border-color: rgba(0,110,182,.28); transform: translateY(-3px); box-shadow: 0 12px 28px rgba(0,63,125,.09); }
.feature-icon { display: grid; width: 39px; height: 39px; flex: 0 0 39px; place-items: center; border-radius: 9px; color: var(--brand-navy); background: var(--brand-gold); }
.feature-icon svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.feature-card span { margin: 1px 0 4px; color: var(--brand-navy); font-family: "Montserrat", sans-serif; font-size: .9rem; font-weight: 800; }
.feature-card p { margin: 0; color: #6b7f90; font-size: .8rem; line-height: 1.45; }
.welcome-link { display: inline-flex; align-items: center; gap: 9px; margin-top: 28px; color: var(--brand-navy); font-family: "Montserrat", sans-serif; font-size: .87rem; font-weight: 800; text-decoration: none; text-transform: uppercase; letter-spacing: .04em; }
.welcome-link span { display: grid; width: 29px; height: 29px; place-items: center; border-radius: 50%; color: var(--brand-navy); background: var(--brand-gold); transition: transform .2s ease; }
.welcome-link:hover { color: var(--brand-blue); }
.welcome-link:hover span { transform: translateX(4px); }

.welcome-visual { position: relative; max-width: 575px; margin-left: auto; padding: 0 34px 34px 0; }
.image-frame { position: relative; z-index: 2; overflow: hidden; min-height: 560px; border-radius: 130px 12px 130px 12px; box-shadow: 0 28px 65px rgba(0,54,104,.2); }
.image-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,54,104,.28), transparent 45%); }
.image-frame img { width: 100%; height: 100%; min-height: 560px; object-fit: cover; transition: transform .6s ease; }
.image-frame:hover img { transform: scale(1.035); }
.experience-badge { position: absolute; z-index: 3; right: 0; bottom: 0; display: flex; width: 180px; height: 180px; flex-direction: column; align-items: center; justify-content: center; border: 8px solid #fff; border-radius: 50%; color: #fff; background: var(--brand-navy); text-align: center; box-shadow: 0 15px 35px rgba(0,47,91,.2); }
.experience-badge::before { content: ""; position: absolute; inset: 8px; border: 1px solid rgba(255,210,10,.65); border-radius: 50%; }
.experience-badge strong { position: relative; color: var(--brand-gold); font-family: "Montserrat", sans-serif; font-size: 1.65rem; line-height: 1; }
.experience-badge span { position: relative; margin-top: 7px; font-size: .7rem; font-weight: 700; line-height: 1.35; letter-spacing: .08em; text-transform: uppercase; }
.visual-dots { position: absolute; z-index: 1; top: -28px; right: 0; width: 110px; height: 110px; opacity: .55; background-image: radial-gradient(var(--brand-gold) 2px, transparent 2px); background-size: 13px 13px; }

.ada-section {
  position: relative;
  padding: 58px 0;
  background: var(--soft-blue);
}
.ada-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  overflow: hidden;
  padding: 32px 34px;
  border-left: 6px solid var(--brand-gold);
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(115deg, var(--brand-navy) 0%, #005b9e 100%);
  box-shadow: 0 18px 45px rgba(0,63,125,.18);
}
.ada-card::after { content: ""; position: absolute; top: -95px; right: 22%; width: 230px; height: 230px; border: 38px solid rgba(255,255,255,.045); border-radius: 50%; pointer-events: none; }
.ada-icon { position: relative; z-index: 1; display: grid; width: 76px; height: 76px; place-items: center; border: 2px solid rgba(255,255,255,.45); border-radius: 50%; color: var(--brand-navy); background: var(--brand-gold); font-size: 2.3rem; box-shadow: 0 9px 24px rgba(0,0,0,.16); }
.ada-content { position: relative; z-index: 1; max-width: 710px; }
.ada-kicker { display: block; margin-bottom: 4px; color: var(--brand-gold); font-size: .69rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.ada-content h2 { margin: 0 0 8px; color: #fff; font-family: "Montserrat", sans-serif; font-size: 1.55rem; font-weight: 800; }
.ada-content p { margin: 0; color: rgba(255,255,255,.87); font-size: .95rem; line-height: 1.65; }
.ada-content p a { color: var(--brand-gold); font-weight: 800; text-underline-offset: 3px; }
.ada-content p a:hover { color: #fff; }
.ada-call-btn { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 11px; min-height: 56px; padding: 9px 17px; border: 2px solid #fff; border-radius: 8px; color: var(--brand-navy); background: #fff; font-family: "Montserrat", sans-serif; font-size: .83rem; font-weight: 800; white-space: nowrap; }
.ada-call-btn i { color: var(--brand-blue); font-size: 1rem; }
.ada-call-btn small { display: block; margin-bottom: 2px; color: #6a7d8d; font-family: "DM Sans", sans-serif; font-size: .61rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.ada-call-btn:hover { color: var(--brand-navy); border-color: var(--brand-gold); background: var(--brand-gold); transform: translateY(-2px); }
.ada-call-btn:hover small, .ada-call-btn:hover i { color: var(--brand-navy); }

.attractions-section { position: relative; overflow: hidden; padding: 96px 0 110px; background: #fff; }
.attractions-section::after { content: ""; position: absolute; right: -160px; bottom: -170px; width: 380px; height: 380px; border: 70px solid rgba(0,110,182,.045); border-radius: 50%; pointer-events: none; }
.attractions-heading { margin-bottom: 38px; }
.attractions-heading h2 { margin: 0 0 14px; color: var(--brand-navy); font-family: "Montserrat", sans-serif; font-size:36px; font-weight: 800; line-height: 1; letter-spacing: -.05em; }
.attractions-heading h2 span { color: var(--brand-blue); }
.attractions-lead { max-width: 650px; margin: 0; color: #334f66; font-size: 1.18rem; font-weight: 600; }
.attractions-intro { margin: 0; padding-left: 24px; border-left: 3px solid var(--brand-gold); color: #687d8e; font-size: .91rem; line-height: 1.72; }
.attraction-grid { position: relative; z-index: 1; }
.attraction-card { position: relative; overflow: hidden; min-height: 270px; border-radius: 13px; background: var(--brand-navy); box-shadow: 0 15px 35px rgba(0,54,104,.13); }
.attraction-featured { min-height: 564px; }
.attraction-card > img { width: 100%; height: 100%; min-height: inherit; object-fit: cover; transition: transform .65s ease; }
.attraction-card:hover > img { transform: scale(1.055); }
.attraction-shade { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,31,61,.94) 0%, rgba(0,50,94,.25) 58%, rgba(0,0,0,.04) 100%); transition: background .3s ease; }
.attraction-card:hover .attraction-shade { background: linear-gradient(0deg, rgba(0,45,84,.96) 0%, rgba(0,63,125,.28) 65%, rgba(0,0,0,.03) 100%); }
.attraction-card-content { position: absolute; right: 0; bottom: 0; left: 0; display: flex; align-items: flex-end; gap: 17px; padding: 30px; color: #fff; }
.attraction-card-content.compact { align-items: center; gap: 12px; padding: 20px; }
.attraction-icon { display: grid; width: 52px; height: 52px; flex: 0 0 52px; place-items: center; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; color: var(--brand-navy); background: var(--brand-gold); font-size: 1.15rem; box-shadow: 0 8px 20px rgba(0,0,0,.18); }
.compact .attraction-icon { width: 42px; height: 42px; flex-basis: 42px; font-size: .94rem; }
.attraction-card-content small { display: block; margin-bottom: 4px; color: var(--brand-gold); font-size: .65rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.attraction-card-content span { margin: 0; color: #fff; font-family: "Montserrat", sans-serif; font-size: 1.52rem; font-weight: 800; line-height: 1.1; }
.attraction-card-content.compact span { font-size: .99rem; }
.attraction-card-content p { max-width: 430px; margin: 8px 0 0; color: rgba(255,255,255,.82); font-size: .86rem; line-height: 1.55; }

.video-faq-section { position: relative; padding: 100px 0 110px; background: linear-gradient(120deg, #f4f9fc 0%, #fff 58%, #f8fbfd 100%); }
.video-column > h2, .faq-column > h2 { margin: 0 0 17px; color: var(--brand-navy); font-family: "Montserrat", sans-serif; font-size:36px; font-weight: 800; line-height: 1.08; letter-spacing: -.045em; }
.video-column > h2 span, .faq-column > h2 span { color: var(--brand-blue); }
.video-column > p, .faq-column > p { margin-bottom: 28px; color: #617789; line-height: 1.7; }
.hotel-video { position: relative; overflow: hidden; padding: 8px; border-radius: 15px; background: #fff; box-shadow: 0 22px 50px rgba(0,54,104,.17); }
.hotel-video .ratio { overflow: hidden; border-radius: 10px; background: var(--brand-navy); }
.hotel-video iframe { border: 0; }
.video-corner-icon { position: absolute; right: 20px; bottom: 20px; display: grid; width: 46px; height: 46px; place-items: center; border: 4px solid #fff; border-radius: 50%; color: var(--brand-navy); background: var(--brand-gold); pointer-events: none; }
.video-highlights { margin-top: 16px; }
.video-highlight { display: flex; align-items: center; gap: 10px; height: 100%; padding: 13px; border: 1px solid #e0eaf1; border-radius: 9px; background: #fff; color: var(--brand-navy); font-size: .73rem; font-weight: 800; line-height: 1.35; text-transform: uppercase; letter-spacing: .04em; }
.video-highlight i { display: grid; width: 34px; height: 34px; flex: 0 0 34px; place-items: center; border-radius: 7px; color: var(--brand-navy); background: var(--brand-gold); font-size: .9rem; }

.hotel-accordion { display: grid; gap: 12px; margin-top: 4px; }
.hotel-accordion .accordion-item { overflow: hidden; border: 1px solid #dce7ee; border-radius: 10px !important; background: #fff; box-shadow: 0 6px 20px rgba(0,63,125,.045); }
.hotel-accordion .accordion-button { gap: 13px; padding: 18px 20px; color: var(--brand-navy); background: #fff; font-family: "DM Sans", sans-serif; font-size: .94rem; font-weight: 800; box-shadow: none; }
.hotel-accordion .accordion-button i { display: grid; width: 34px; height: 34px; flex: 0 0 34px; place-items: center; border-radius: 7px; color: var(--brand-navy); background: var(--brand-gold); font-size: .85rem; }
.hotel-accordion .accordion-button:not(.collapsed) { color: #fff; background: var(--brand-navy); }
.hotel-accordion .accordion-button:not(.collapsed) i { color: var(--brand-navy); background: var(--brand-gold); }
.hotel-accordion .accordion-button::after { width: 18px; height: 18px; background-size: 18px; }
.hotel-accordion .accordion-button:not(.collapsed)::after { filter: brightness(0) invert(1); }
.hotel-accordion .accordion-body { padding: 18px 22px 21px 67px; color: #657b8d; font-size: .89rem; line-height: 1.7; }
.hotel-accordion .accordion-body a { color: var(--brand-blue); font-weight: 800; }

.site-footer { position: relative; color: rgba(255,255,255,.76); background: #002f5e; }
.footer-main { position: relative; overflow: hidden; padding: 78px 0 66px; }
.footer-main::before { content: ""; position: absolute; top: -180px; right: -130px; width: 430px; height: 430px; border: 72px solid rgba(255,255,255,.025); border-radius: 50%; }
.footer-main::after { content: ""; position: absolute; bottom: -120px; left: -100px; width: 290px; height: 290px; border: 50px solid rgba(255,210,10,.025); border-radius: 50%; }
.footer-main .container { position: relative; z-index: 1; }
.footer-logo { display: inline-block; margin-bottom: 22px; padding: 10px 12px; border-radius: 8px; background: #fff; }
.footer-logo img { display: block; width: 185px; }
.footer-brand p { max-width: 350px; margin-bottom: 24px; font-size: .9rem; line-height: 1.75; }
.footer-social { display: flex; gap: 9px; }
.footer-social a { display: grid; width: 40px; height: 40px; place-items: center; border: 1px solid rgba(255,255,255,.25); border-radius: 7px; color: #fff; text-decoration: none; transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease; }
.footer-social a:hover { color: var(--brand-navy); border-color: var(--brand-gold); background: var(--brand-gold); transform: translateY(-3px); }
.footer-column h3 { position: relative; margin: 5px 0 25px; padding-bottom: 13px; color: #fff; font-family: "Montserrat", sans-serif; font-size: 1rem; font-weight: 800; }
.footer-column h3::after { content: ""; position: absolute; bottom: 0; left: 0; width: 33px; height: 3px; border-radius: 3px; background: var(--brand-gold); }
.footer-links, .footer-contact ul { margin: 0; padding: 0; list-style: none; }
.footer-links { display: grid; gap: 13px; }
.footer-links a { display: inline-flex; align-items: center; gap: 7px; color: rgba(255,255,255,.7); font-size: .87rem; text-decoration: none; transition: color .2s ease, transform .2s ease; }
.footer-links a i { color: var(--brand-gold); font-size: .68rem; }
.footer-links a:hover { color: #fff; transform: translateX(4px); }
.footer-contact ul { display: grid; gap: 19px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 12px; }
.contact-icon { display: grid; width: 39px; height: 39px; flex: 0 0 39px; place-items: center; border: 1px solid rgba(255,210,10,.35); border-radius: 8px; color: var(--brand-gold); background: rgba(255,255,255,.06); }
.footer-contact strong, .footer-contact span, .footer-contact a { display: block; }
.footer-contact strong { margin-bottom: 3px; color: #fff; font-size: .82rem; }
.footer-contact span, .footer-contact a { color: rgba(255,255,255,.68); font-size: .82rem; line-height: 1.5; text-decoration: none; }
.footer-contact a:hover { color: var(--brand-gold); }
.footer-bottom { position: relative; z-index: 2; padding: 20px 0; border-top: 1px solid rgba(255,255,255,.1); background: #00264c; font-size: .76rem; }
.footer-legal { display: flex; align-items: center; gap: 10px; }
.footer-legal a { color: rgba(255,255,255,.7); text-decoration: none; }
.footer-legal a:hover { color: var(--brand-gold); }
.footer-legal span { opacity: .25; }
.back-to-top { position: fixed; z-index: 1025; right: 24px; bottom: 24px; display: grid; width: 47px; height: 47px; place-items: center; border: 3px solid #fff; border-radius: 50%; color: var(--brand-navy); background: var(--brand-gold); text-decoration: none; box-shadow: 0 9px 24px rgba(0,48,93,.23); transition: color .2s ease, background .2s ease, transform .2s ease; }
.back-to-top:hover { color: #fff; background: var(--brand-navy); transform: translateY(-4px); }

@media (max-width: 1199.98px) {
  .navbar-brand img { width: 165px; }
  .nav-link { padding-inline: .48rem !important; font-size: .84rem; }
  .booking-form { grid-template-columns: repeat(6, 1fr); }
  .booking-field .form-control, .booking-field .form-select { font-size: .82rem; padding-inline: .65rem; }
}

@media (max-width: 991.98px) {
  .navbar { min-height: 82px; }
  .navbar-brand img { width: 160px; max-height: 62px; }
  .navbar-collapse { margin: 10px -12px -10px; padding: 18px 20px 24px; border-top: 1px solid #e8eef3; background: #fff; }
  .navbar-nav { align-items: stretch !important; }
  .nav-link { padding: .78rem .2rem !important; border-bottom: 1px solid #edf2f6; font-size:16px; }
  .nav-link::after { right: auto; bottom: -1px; left: 0; width: 36px; }
  .hotel-slider, .hotel-slider .carousel-item { height: 650px; }
  .slider-control { width: 11%; align-items: flex-end; padding-bottom: 22px; }
  .control-circle { width: 42px; height: 42px; }
  .reservation-wrap { margin-top: 0; padding: 24px 0 38px; background: var(--soft-blue); }
  .booking-form { grid-template-columns: repeat(2, 1fr); }
  .booking-submit { margin-top: 2px; }
  .welcome-section { padding: 70px 0 80px; }
  .welcome-visual { margin: 0 auto; }
  .ada-card { grid-template-columns: auto 1fr; }
  .ada-call-btn { grid-column: 2; justify-self: start; }
  .attractions-section { padding: 75px 0 85px; }
  .attractions-intro { padding-left: 0; border-left: 0; }
  .video-faq-section { padding: 76px 0 85px; }
  .footer-main { padding: 65px 0 58px; }
}

@media (max-width: 575.98px) {
  .topbar .container { justify-content: center !important; }
  .phone-link strong { font-size: .82rem; }
  .navbar-brand img { width: 142px; }
  .navbar { min-height: 76px; }
  .hotel-slider, .hotel-slider .carousel-item { height: 610px; }
  .slider-overlay { background: linear-gradient(90deg, rgba(2,25,49,.9), rgba(0,48,92,.55)); }
  .carousel-caption { padding: 3rem 0 5.5rem; }
  .caption-content h1, .caption-content h2 { font-size: clamp(2.55rem, 13vw, 4rem); }
  .caption-content p { font-size: 1rem; line-height: 1.55; }
  .slider-control { display: none; }
  .carousel-indicators { bottom: 26px; }
  .reservation-box { padding: 20px 18px 22px; border-radius: 10px; }
  .booking-heading { margin-bottom: 18px; }
  .booking-form { grid-template-columns: 1fr; gap: 14px; }
  .booking-field label { margin-bottom: 5px; }
  .booking-field .form-control, .booking-field .form-select, .booking-submit { min-height: 50px; }
  .welcome-section { padding: 55px 0 65px; }
  .image-frame, .image-frame img { min-height: 410px; }
  .image-frame { border-radius: 75px 10px 75px 10px; }
  .welcome-visual { padding: 0 16px 28px 0; }
  .experience-badge { width: 135px; height: 135px; border-width: 6px; }
  .experience-badge strong { font-size: 1.3rem; }
  .experience-badge span { font-size: .58rem; }
  .welcome-content h2 { font-size: 2.25rem; }
  .ada-section { padding: 38px 0; }
  .ada-card { grid-template-columns: 1fr; gap: 17px; padding: 26px 22px; text-align: center; border-top: 5px solid var(--brand-gold); border-left: 0; }
  .ada-icon { width: 66px; height: 66px; margin: 0 auto; font-size: 2rem; }
  .ada-call-btn { grid-column: 1; justify-self: stretch; justify-content: center; }
  .attractions-section { padding: 58px 0 65px; }
  .attractions-heading { margin-bottom: 27px; }
  .attractions-heading h2 { font-size: 2.6rem; }
  .attractions-lead { font-size: 1.05rem; }
  .attraction-featured, .attraction-card { min-height: 350px; }
  .attraction-card-content { padding: 22px; }
  .attraction-card-content p { font-size: .8rem; }
  .video-faq-section { padding: 58px 0 68px; }
  .video-column > h2, .faq-column > h2 { font-size: 2.25rem; }
  .hotel-accordion .accordion-button { padding: 15px; font-size: .87rem; }
  .hotel-accordion .accordion-body { padding: 16px 18px 19px; }
  .footer-main { padding: 52px 0 46px; }
  .footer-logo img { width: 165px; }
  .footer-column h3 { margin-bottom: 18px; }
  .footer-bottom { text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; }
  .back-to-top { right: 15px; bottom: 15px; width: 43px; height: 43px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
.amenities-section {
    --microtel-navy: #003b71;
    --microtel-blue: #0755a5;
    --microtel-yellow: #ffcc00;
    --microtel-yellow-dark: #d9a900;
    --microtel-text: #172b3a;
    --microtel-muted: #526472;
    --microtel-border: #d8e4ef;

    background:
        radial-gradient(
            circle at top left,
            rgba(255, 204, 0, 0.16),
            transparent 32%
        ),
        linear-gradient(180deg, #f8fbff 0%, #edf5fb 100%);
}

/* Section heading */

.section-label {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 1rem;
    border: 1px solid #e5b700;
    border-radius: 50rem;
    color: var(--microtel-navy);
    background-color: #ffdf5a;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.section-label i {
    color: var(--microtel-navy);
}

.section-heading h2 {
    color: var(--microtel-navy);
}

.section-heading h2::after {
    display: block;
    width: 75px;
    height: 4px;
    margin: 0.85rem auto 0;
    border-radius: 10px;
    background-color: var(--microtel-yellow);
    content: "";
}

.section-intro {
    max-width: 680px;
    color: var(--microtel-muted);
    font-size: 1.05rem;
    line-height: 1.75;
}

/* Amenity cards */

.amenity-panel {
    position: relative;
    overflow: hidden;
    padding: 2rem;
    border: 1px solid var(--microtel-border);
    border-top: 5px solid var(--microtel-yellow);
    border-radius: 1.25rem;
    background-color: #ffffff;
    box-shadow: 0 15px 45px rgba(0, 59, 113, 0.1);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.amenity-panel:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 55px rgba(0, 59, 113, 0.17);
}

/* Card heading */

.amenity-panel-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.75rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--microtel-border);
}

.heading-icon {
    display: inline-flex;
    flex: 0 0 58px;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border: 3px solid var(--microtel-yellow);
    border-radius: 16px;
    color: #ffffff;
    background: linear-gradient(
        135deg,
        var(--microtel-navy),
        var(--microtel-blue)
    );
    font-size: 1.5rem;
    box-shadow: 0 8px 20px rgba(0, 59, 113, 0.25);
}

.amenity-panel-header h3 {
    margin: 0 0 0.25rem;
    color: var(--microtel-navy);
    font-size: 1.4rem;
    font-weight: 800;
}

.amenity-panel-header p {
    margin: 0;
    color: var(--microtel-muted);
    font-size: 0.95rem;
}

/* Amenities list */

.amenity-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.amenity-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    min-height: 62px;
    padding: 0.85rem;
    border: 1px solid #dce7f0;
    border-left: 4px solid transparent;
    border-radius: 0.8rem;
    color: var(--microtel-text);
    background-color: #f8fbff;
    line-height: 1.45;
    transition:
        border-color 0.2s ease,
        background-color 0.2s ease,
        transform 0.2s ease;
}

.amenity-list li:hover {
    transform: translateX(3px);
    border-color: #9cbcd7;
    border-left-color: var(--microtel-yellow);
    background-color: #fffbea;
}

.amenity-list li > i {
    flex: 0 0 22px;
    margin-top: 0.2rem;
    color: var(--microtel-blue);
    font-size: 1rem;
    text-align: center;
}

.amenity-list li:hover > i {
    color: var(--microtel-navy);
}

.amenity-list li span {
    font-size: 0.94rem;
    font-weight: 600;
}

/* Accessible amenities card */

.accessible-panel {
    border-top-color: var(--microtel-blue);
}

.accessible-panel .heading-icon {
    border-color: var(--microtel-yellow);
    color: var(--microtel-navy);
    background: linear-gradient(
        135deg,
        #ffdf5a,
        var(--microtel-yellow)
    );
}

.accessible-panel .amenity-list li > i {
    color: var(--microtel-navy);
}

.accessible-panel .amenity-list li:hover {
    border-color: #9cbcd7;
    border-left-color: var(--microtel-yellow);
    background-color: #fffbea;
}

/* Responsive layout */

@media (max-width: 575.98px) {
    .amenity-panel {
        padding: 1.25rem;
        border-radius: 1rem;
    }

    .amenity-list {
        grid-template-columns: 1fr;
    }

    .amenity-panel-header {
        align-items: flex-start;
    }
}

/* Accessibility */

@media (prefers-reduced-motion: reduce) {
    .amenity-panel,
    .amenity-list li {
        transition: none;
    }

    .amenity-panel:hover,
    .amenity-list li:hover {
        transform: none;
    }
}

.directions-section {
    --microtel-navy: #003b71;
    --microtel-blue: #0755a5;
    --microtel-yellow: #ffcc00;
    --microtel-yellow-light: #ffe36b;
    --directions-text: #172b3a;
    --directions-muted: #526472;

    background:
        radial-gradient(
            circle at top left,
            rgba(255, 204, 0, 0.18),
            transparent 30%
        ),
        linear-gradient(180deg, #f8fbff 0%, #eaf3f9 100%);
}

.directions-card {
    position: relative;
    overflow: hidden;
    padding: 2.5rem;
    border: 1px solid #d6e3ed;
    border-top: 6px solid var(--microtel-yellow);
    border-radius: 1.5rem;
    background-color: #ffffff;
    box-shadow: 0 18px 50px rgba(0, 59, 113, 0.14);
}

/* Heading */

.directions-heading {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.directions-icon {
    display: inline-flex;
    flex: 0 0 64px;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border: 3px solid var(--microtel-yellow);
    border-radius: 18px;
    color: #ffffff;
    background: linear-gradient(
        135deg,
        var(--microtel-navy),
        var(--microtel-blue)
    );
    font-size: 1.6rem;
    box-shadow: 0 10px 24px rgba(0, 59, 113, 0.22);
}

.directions-label {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--microtel-blue);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.directions-heading h2 {
    margin-bottom: 0.55rem;
    color: var(--microtel-navy);
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 800;
}

.directions-heading p {
    max-width: 400px;
    margin: 0;
    color: var(--directions-muted);
    line-height: 1.65;
}

/* Form */

.directions-form {
    position: relative;
    z-index: 2;
    padding: 1.5rem;
    border-radius: 1.1rem;
    background-color: #f3f8fc;
}

.directions-form .form-label {
    margin-bottom: 0.5rem;
    color: var(--microtel-navy);
    font-size: 0.88rem;
    font-weight: 700;
}

.direction-input-group {
    position: relative;
}

.direction-input-group > i {
    position: absolute;
    top: 50%;
    left: 1rem;
    z-index: 2;
    color: var(--microtel-blue);
    font-size: 1rem;
    transform: translateY(-50%);
    pointer-events: none;
}

.direction-input-group .form-control {
    min-height: 54px;
    padding: 0.75rem 1rem 0.75rem 2.8rem;
    border: 2px solid #b9cbd9;
    border-radius: 0.8rem;
    color: var(--directions-text);
    background-color: #ffffff;
    font-size: 0.95rem;
    box-shadow: none;
    text-overflow: ellipsis;
}

.direction-input-group .form-control::placeholder {
    color: #667784;
    opacity: 1;
}

.direction-input-group .form-control:focus {
    border-color: var(--microtel-blue);
    box-shadow: 0 0 0 0.22rem rgba(7, 85, 165, 0.18);
}

.direction-input-group .form-control[readonly] {
    color: #314555;
    background-color: #ffffff;
    cursor: default;
}

/* Button */

.directions-button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.75rem 1rem;
    border: 2px solid var(--microtel-navy);
    border-radius: 0.8rem;
    color: #ffffff;
    background: linear-gradient(
        135deg,
        var(--microtel-navy),
        var(--microtel-blue)
    );
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(0, 59, 113, 0.22);
    transition:
        color 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.directions-button:hover {
    border-color: #d4aa00;
    color: var(--microtel-navy);
    background: var(--microtel-yellow);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 59, 113, 0.25);
}

.directions-button:focus-visible {
    outline: 3px solid var(--microtel-yellow);
    outline-offset: 3px;
}

.directions-button:active {
    transform: translateY(0);
}

/* Decorative route */

.route-decoration {
    position: absolute;
    right: -35px;
    bottom: -55px;
    width: 180px;
    height: 180px;
    color: rgba(0, 59, 113, 0.06);
    font-size: 6rem;
    transform: rotate(-12deg);
}

.route-decoration span {
    position: absolute;
    top: 30px;
    left: 20px;
    width: 110px;
    height: 80px;
    border-top: 8px dotted rgba(255, 204, 0, 0.4);
    border-radius: 50%;
}

.route-decoration i {
    position: absolute;
    right: 30px;
    bottom: 25px;
}

/* Responsive */

@media (max-width: 991.98px) {
    .directions-card {
        padding: 2rem;
    }

    .directions-heading {
        max-width: 650px;
    }
}

@media (max-width: 767.98px) {
    .directions-card {
        padding: 1.4rem;
        border-radius: 1.1rem;
    }

    .directions-heading {
        display: block;
        text-align: center;
    }

    .directions-icon {
        margin: 0 auto 1rem;
    }

    .directions-heading p {
        margin-right: auto;
        margin-left: auto;
    }

    .directions-form {
        padding: 1rem;
    }

    .directions-button {
        margin-top: 0.25rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .directions-button {
        transition: none;
    }

    .directions-button:hover {
        transform: none;
    }
}
.hotel-gallery {
    --gallery-navy: #003b71;
    --gallery-blue: #0755a5;
    --gallery-yellow: #ffcc00;
    --gallery-text: #172b3a;
    --gallery-muted: #526472;

    background:
        radial-gradient(
            circle at top right,
            rgba(255, 204, 0, 0.18),
            transparent 30%
        ),
        linear-gradient(180deg, #ffffff 0%, #edf5fb 100%);
}

/* Heading */

.gallery-heading {
    max-width: 700px;
}

.gallery-label {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 1rem;
    border: 1px solid #d9ad00;
    border-radius: 50rem;
    color: var(--gallery-navy);
    background-color: #ffdf5a;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.gallery-heading h2 {
    color: var(--gallery-navy);
}

.gallery-heading h2::after {
    display: block;
    width: 75px;
    height: 4px;
    margin: 0.85rem auto 0;
    border-radius: 10px;
    background-color: var(--gallery-yellow);
    content: "";
}

.gallery-heading p {
    color: var(--gallery-muted);
    font-size: 1.05rem;
    line-height: 1.75;
}

/* Gallery tiles */

.gallery-item {
    position: relative;
    display: block;
    width: 100%;
    height: 300px;
    overflow: hidden;
    padding: 0;
    border: 0;
    border-radius: 1.2rem;
    background-color: var(--gallery-navy);
    box-shadow: 0 15px 35px rgba(0, 59, 113, 0.15);
    cursor: pointer;
}

.gallery-item::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    border: 0 solid var(--gallery-yellow);
    border-radius: inherit;
    content: "";
    transition: border-width 0.25s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 1.4rem;
    color: #ffffff;
    background: linear-gradient(
        180deg,
        transparent 30%,
        rgba(0, 35, 68, 0.92) 100%
    );
}

.gallery-caption {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.gallery-caption strong {
    color: #ffffff;
    font-size: 1.1rem;
}

.gallery-caption small {
    margin-top: 0.2rem;
    color: #ffffff;
    opacity: 0.9;
}

.gallery-zoom {
    display: inline-flex;
    flex: 0 0 46px;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    color: var(--gallery-navy);
    background-color: var(--gallery-yellow);
    font-size: 1rem;
    transition: transform 0.25s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover::before {
    border-width: 4px;
}

.gallery-item:hover .gallery-zoom {
    transform: scale(1.1);
}

.gallery-item:focus-visible {
    outline: 4px solid var(--gallery-yellow);
    outline-offset: 4px;
}

/* Lightbox */

.gallery-lightbox .modal-content {
    border: 0;
    color: #ffffff;
    background-color: rgba(0, 25, 49, 0.98);
}

.gallery-lightbox .modal-header {
    min-height: 75px;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.lightbox-count {
    color: #ffffff;
    font-weight: 700;
}

.lightbox-count i {
    color: var(--gallery-yellow);
}

.lightbox-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 2px solid rgba(255, 255, 255, 0.75);
    border-radius: 50%;
    color: #ffffff;
    background-color: transparent;
    font-size: 1.4rem;
    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        transform 0.2s ease;
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
    color: var(--gallery-navy);
    background-color: var(--gallery-yellow);
    transform: rotate(90deg);
}

.gallery-lightbox .modal-body {
    position: relative;
    display: flex;
    min-height: calc(100vh - 75px);
    align-items: center;
    justify-content: center;
    padding: 2rem 7rem;
}

.lightbox-figure {
    width: 100%;
    max-width: 1200px;
    margin: 0;
    text-align: center;
}

.lightbox-image-wrapper {
    position: relative;
    display: flex;
    min-height: 300px;
    align-items: center;
    justify-content: center;
}

#lightboxImage {
    display: block;
    max-width: 100%;
    max-height: calc(100vh - 190px);
    border: 4px solid #ffffff;
    border-radius: 0.8rem;
    object-fit: contain;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

#lightboxCaption {
    margin-top: 1rem;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
}

.lightbox-loader {
    position: absolute;
    z-index: 1;
    color: var(--gallery-yellow);
}

.lightbox-control {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    color: #ffffff;
    background-color: var(--gallery-blue);
    font-size: 1.3rem;
    transform: translateY(-50%);
    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        transform 0.2s ease;
}

.lightbox-previous {
    left: 1.5rem;
}

.lightbox-next {
    right: 1.5rem;
}

.lightbox-control:hover,
.lightbox-control:focus-visible {
    color: var(--gallery-navy);
    background-color: var(--gallery-yellow);
    transform: translateY(-50%) scale(1.08);
}

/* Responsive */

@media (max-width: 767.98px) {
    .gallery-item {
        height: 250px;
    }

    .gallery-lightbox .modal-body {
        align-items: center;
        padding: 1rem;
        padding-bottom: 90px;
    }

    #lightboxImage {
        max-height: calc(100vh - 230px);
    }

    .lightbox-control {
        top: auto;
        bottom: 1.25rem;
        width: 52px;
        height: 52px;
        transform: none;
    }

    .lightbox-previous {
        left: calc(50% - 68px);
    }

    .lightbox-next {
        right: calc(50% - 68px);
    }

    .lightbox-control:hover,
    .lightbox-control:focus-visible {
        transform: scale(1.06);
    }
}

@media (prefers-reduced-motion: reduce) {
    .gallery-item img,
    .gallery-item::before,
    .gallery-zoom,
    .lightbox-close,
    .lightbox-control {
        transition: none;
    }
}
    .contact-section {
      background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    }
    .icon-box {
      width: 60px;
      height: 60px;
      background: #0d6efd;
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      flex-shrink: 0;
      transition: all 0.3s ease;
    }
    .contact-card:hover .icon-box {
      background: #0b5ed7;
      transform: scale(1.1);
    }
	.sitemap-section {
      background-color: #f8f9fa;
    }
    .sitemap-card {
      border: 1px solid rgba(0, 0, 0, 0.08);
      border-radius: 12px;
      transition: all 0.3s ease;
      background: #ffffff;
      text-decoration: none;
      color: inherit;
    }
    .sitemap-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08) !important;
      border-color: #0d6efd;
    }
    .sitemap-icon-wrapper {
      width: 55px;
      height: 55px;
      background: rgba(13, 110, 253, 0.1);
      color: #0d6efd;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      transition: all 0.3s ease;
    }
    .sitemap-card:hover .sitemap-icon-wrapper {
      background: #0d6efd;
      color: #ffffff;
    }
    .arrow-icon {
      opacity: 0;
      transform: translateX(-5px);
      transition: all 0.3s ease;
    }
    .sitemap-card:hover .arrow-icon {
      opacity: 1;
      transform: translateX(0);
    }
	.faq-section {
      background-color: #f8f9fa;
    }
    .faq-accordion .accordion-item {
      border: none;
      border-radius: 12px !important;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
    }
    .faq-accordion .accordion-item:hover {
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    }
    .faq-accordion .accordion-button {
      font-weight: 600;
      color: #2b303a;
      background-color: #ffffff;
      padding: 1.25rem 1.5rem;
      border: none;
      box-shadow: none !important;
    }
    .faq-accordion .accordion-button:not(.collapsed) {
      background-color: #ffffff;
      color: #0d6efd;
    }
    .faq-icon-wrapper {
      width: 40px;
      height: 40px;
      background-color: rgba(13, 110, 253, 0.1);
      color: #0d6efd;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      flex-shrink: 0;
      transition: all 0.3s ease;
    }
    .faq-accordion .accordion-button:not(.collapsed) .faq-icon-wrapper {
      background-color: #0d6efd;
      color: #ffffff;
    }
    /* Custom accordion arrow indicator */
    .faq-accordion .accordion-button::after {
      background-size: 1rem;
      transition: transform 0.3s ease;
    }
    .faq-body-text {
      color: #6c757d;
      line-height: 1.7;
    }
	.txt {color:#000000; text-decoration:none;}
	.txt a{color:#000000; text-decoration:none;}
	.txt a:hover{color: #036; text-decoration:none;}
#more {display: none;}
