:root {
  --brand: #0076A8;
  --brand-light: #6EC1E4;
  --accent: #321D8F;
  --topbar: #F0F0F0;
  --dark: #333;
  --text: #7A7A7A;
  --muted: #54595F;
  --white: #fff;
  --panel: #F0F0F0;
  --wa: #25D366;
  --wa-hover: #036628;
  --font: "Raleway", system-ui, sans-serif;
  --max: 1140px;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--accent); }
h1, h2, h3, h4 {
  color: var(--brand);
  line-height: 1.25;
  margin: 0 0 0.6em;
  font-family: var(--font);
  font-weight: 800;
}
h1 { font-size: 2.1rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.2rem; font-weight: 700; }
p { margin: 0 0 1em; }
.container { width: min(100% - 2rem, var(--max)); margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* Topbar — live #F0F0F0, dark text/icons */
.topbar {
  background: var(--topbar);
  color: var(--muted);
  font-size: 14px;
  padding: 10px 0;
}
.topbar-inner {
  display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem;
  align-items: center; justify-content: flex-end;
}
.topbar a {
  color: var(--muted); font-weight: 600;
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.topbar a:hover { color: var(--accent); }
.topbar-contacts { display: flex; flex-wrap: wrap; gap: 0.5rem 1.25rem; align-items: center; }
.topbar-icon {
  width: 18px; height: 18px; flex-shrink: 0;
  fill: var(--brand-light);
}

/* Header — logo ~33% / nav ~67%, white below gray topbar */
.site-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky; top: 0; z-index: 50;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 12px 0; min-height: 90px;
}
.logo { flex: 0 0 33%; max-width: 33%; }
.logo img { max-width: 100%; width: auto; height: auto; max-height: 70px; }
.site-header nav { flex: 1 1 67%; display: flex; justify-content: flex-end; }
.nav-desktop { display: flex; gap: 0.15rem; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; justify-content: flex-end; }
.nav-desktop a {
  display: block; padding: 0 14px; line-height: 48px;
  color: var(--muted); font-weight: 700; font-size: 14px; text-transform: uppercase;
  letter-spacing: 0.02em;
}
.nav-desktop a:hover,
.nav-desktop a.active { color: var(--accent); }
.nav-toggle {
  display: none; background: var(--accent); color: #fff; border: 0;
  padding: 0.55rem 0.9rem; border-radius: 4px; font-weight: 700; cursor: pointer;
}
.nav-mobile { display: none; list-style: none; margin: 0; padding: 0 0 1rem; }
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block; padding: 0.75rem 0; border-bottom: 1px solid #eee;
  color: var(--muted); font-weight: 700; text-transform: uppercase; font-size: 14px;
}
.nav-mobile a.active { color: var(--accent); }

/* Buttons */
.btn {
  display: inline-block; padding: 12px 28px; border-radius: 3px;
  font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 0.03em;
  background: var(--accent); color: #fff !important; border: 0; cursor: pointer;
  transition: background 0.2s;
}
.btn:hover { background: var(--brand); color: #fff !important; }
.btn-sm { padding: 10px 20px; font-size: 15px; font-weight: 500; letter-spacing: 0; }
.btn-outline {
  background: transparent; border: 2px solid #fff; color: #fff !important;
}
.btn-outline:hover { background: #fff; color: var(--brand) !important; }
.btn-light { background: #fff; color: var(--brand) !important; }
.btn-light:hover { background: var(--accent); color: #fff !important; }
.btn-wa { background: var(--wa); }
.btn-wa:hover { background: var(--wa-hover); }

/* Hero slider — Smart Slider base 1920×560 */
.hero {
  position: relative;
  aspect-ratio: 1920 / 560;
  height: auto;
  min-height: 0;
  overflow: hidden;
  background: #1a3a4a;
}
.hero-slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity 0.8s ease;
  background-size: cover; background-position: center;
  display: block;
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 3; width: 44px; height: 44px; padding: 0;
  border: 0; border-radius: 50%;
  background: rgba(0, 0, 0, 0.28);
  color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.hero-arrow svg { width: 28px; height: 28px; display: block; }
.hero-arrow:hover { background: rgba(0, 0, 0, 0.45); }
.hero-arrow--prev { left: 12px; }
.hero-arrow--next { right: 12px; }
.hero-dots {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; gap: 8px;
}
.hero-dots button {
  width: 10px; height: 10px; border-radius: 50%; border: 0; background: rgba(255,255,255,0.45);
  cursor: pointer; padding: 0;
}
.hero-dots button.active { background: #fff; }

/* Sections */
.section { padding: 50px 0; }
.section-blue { background: var(--brand); color: #fff; }
.section-blue-title { padding: 50px 0 0; }
.section-blue-cards { padding: 50px 0; color: #013D56; }
.diff-heading {
  text-align: center;
  color: #fff;
  font-weight: 800;
  margin: 0;
}
.section-gray { background: var(--panel); }
.section-city {
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #fff;
  padding: 200px 0;
}
.section-city::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(1, 54, 77, 0.5);
  z-index: 1;
}
.city-inner { position: relative; z-index: 2; }
.section-city h4 {
  color: #fff;
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 0.35em;
  line-height: 1.25;
}
.welcome-grid {
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 2rem; align-items: center;
}
.hotel-intro {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center;
}
.hotel-intro p { text-align: justify; font-weight: 600; font-size: 15px; color: var(--text); }
.hotel-intro strong { color: var(--brand); }
.section-slider { padding: 0 0 50px; }
.page-slider {
  position: relative;
  height: 400px;
  overflow: hidden;
  background: #1a3a4a;
}
.page-slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity 0.5s ease;
  background-size: cover; background-position: center;
}
.page-slide.active { opacity: 1; z-index: 1; }
.welcome-grid .lead { text-align: justify; font-weight: 600; font-size: 15px; color: var(--text); }
.welcome-grid strong { color: var(--brand); }
.welcome-img { margin: 0 auto; max-width: 84%; }

/* Differentials — Unlimited Elements icon image content box */
.diff-wrap { max-width: 1100px; }
.diff-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px;
}
.diff-card { background: transparent; }
.uc_content_box_area {
  overflow: hidden;
  position: relative;
  text-align: center;
  background: #fff;
  border-bottom: 3px solid #0177A8;
}
.uc_thumb { margin: 0 0 -80px; }
.uc_thumb img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  vertical-align: middle;
}
.uc_details {
  padding: 12px 20px 30px;
  position: relative;
  text-align: center;
  top: 80px;
  width: 100%;
  background: #fff;
  color: #013D56;
  font-weight: 400;
  line-height: 1.5em;
  transition: all 0.3s ease 0s;
}
.uc_details-icon,
.uc_details a.uc_details-icon {
  display: block;
  text-align: center;
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 100px;
  font-size: 30px;
  color: #321D8F;
  background: #fff;
  position: relative;
  z-index: 1;
  top: -80px;
  margin: 0 auto -80px;
}
.uc_details-icon svg,
.uc_details a.uc_details-icon svg {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: middle;
  fill: #321D8F;
}
.uc_title {
  color: #013D56;
  font-family: var(--font);
  font-size: 17px;
  font-weight: 700;
  margin: 0;
  line-height: 1.35;
}
.uc_details a { color: #013D56; }
.uc_details a.uc_details-icon { color: #321D8F; }
.uc_btn,
.uc_details a.uc_btn {
  display: inline-block;
  padding: 10px 20px;
  margin-top: 40px;
  position: relative;
  top: 10px;
  background: var(--muted);
  color: #fff !important;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
  transition: all 0.3s ease-in-out 0s;
}
.uc_btn:hover,
.uc_details a.uc_btn:hover { background: #424242; color: #fff !important; }
.uc_content_box_area:hover .uc_details { top: 0; }
.uc_content_box_area:hover .uc_btn { top: 0; }

/* CTA cards home */
.section-cta { margin: 8% 0; padding: 0; }
.cta-pair {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.cta-card {
  background: #F0F0F0;
  padding: 40px 20px 30px;
  text-align: center;
}
.cta-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 1rem;
  color: var(--brand-light);
}
.cta-icon svg { width: 50px; height: 50px; display: block; fill: currentColor; }
.cta-card h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: #0076A8;
  margin-bottom: 1rem;
}

/* Page title bar — live Elementor single template */
.page-hero {
  background-color: #F0F0F0 !important;
  background-image: none !important;
  color: var(--accent);
  padding: 15px 0 15px 0;
  text-align: left;
}
.page-hero.has-bg,
.page-hero[style*="background"] {
  background-image: none !important;
  background-color: #F0F0F0 !important;
}
.page-hero .container {
  padding-left: 30px;
}
.page-hero h1 {
  color: #321D8F;
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  text-align: left;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
}

/* Content */
.content-block { max-width: 900px; margin: 0 auto; }
.content-block p, .prose p { text-align: justify; font-weight: 600; font-size: 15px; color: var(--text); }
.prose strong { color: var(--brand); }
.prose > p img, .content-img {
  max-width: 100%;
  width: auto;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Gallery — Unite Gallery tilesgrid */
.gallery {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 1.5rem;
}
.gallery a, .gallery figure {
  margin: 0; overflow: hidden; background: #F0F0F0; display: block;
}
.gallery img {
  width: 100% !important;
  height: 250px !important;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.gallery a:hover img { transform: scale(1.04); }
.gallery-wide img { height: 250px !important; }
.gallery-rooms {
  grid-template-columns: repeat(4, 1fr);
}
.gallery-rooms img { height: 500px !important; }
.gallery-3 {
  grid-template-columns: repeat(3, 1fr);
}
.gallery-3 img { height: 500px !important; }
.gallery-section { margin: 2rem 0; }
.gallery-section h3 { margin-bottom: 0.75rem; }

/* Map */
.map-wrap { margin-top: 1.5rem; border-radius: 4px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.1); }
.map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; }
.map-wrap--contact { margin-top: 1rem; }
.map-wrap--contact iframe { height: 380px; }

/* Contact — 2-col 50/50, gray only on icon list */
.contact-kicker {
  font-family: var(--font);
  font-weight: 800;
  color: #0076A8;
  margin-bottom: 1.25rem;
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 1.5rem;
}
.contact-col h3 {
  margin-top: 0;
  color: #0076A8;
  font-family: var(--font);
  font-weight: 800;
}
.contact-list { list-style: none; margin: 0; padding: 0; }
.contact-list li { margin: 0; }
.contact-list--box {
  background: #F0F0F0;
  padding: 40px 25px;
}
.contact-list--box li:not(:last-child) { padding-bottom: 12.5px; }
.contact-list--box li:not(:first-child) { margin-top: 12.5px; }
.contact-list--box a,
.contact-addr {
  display: inline-flex; align-items: center; gap: 0.55rem;
  color: var(--muted);
  font-weight: 400;
  font-size: 1.2em;
}
.contact-list--box a:hover { color: var(--accent); }
.contact-list--addr { margin-bottom: 1rem; }
.contact-icon {
  width: 1.5em; height: 1.5em; flex-shrink: 0;
  fill: var(--brand-light);
}

/* Footer — Elementor 20% / 20% / 33% / 33% */
.site-footer {
  background: #fff; padding: 0; color: var(--text);
}
.footer-grid {
  display: grid;
  grid-template-columns: 20% 20% 33% 27%;
  gap: 0;
  align-items: start;
  padding: 30px 0;
}
.footer-logo img {
  width: 100%;
  max-width: 228px;
  height: auto;
}
.footer-spacer { min-height: 1px; }
.site-footer h4 {
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.site-footer p { margin: 0; color: var(--text); font-weight: 400; }
.footer-contact { list-style: none; margin: 0; padding: 0; }
.footer-contact li { margin: 0.35rem 0; }
.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text);
  font-weight: 400;
}
.footer-contact a:hover { color: var(--accent); }
.footer-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  fill: currentColor;
}
.footer-bottom {
  background: var(--accent);
  color: #fff;
  text-align: center;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: -0.45px;
  line-height: 1.6;
}
.footer-bottom a { color: #f3f3f3; text-decoration: none; }
.footer-bottom a:hover { text-decoration: underline; }

/* Floating WhatsApp */
.float-wa {
  position: fixed; right: 25px; bottom: 10px; z-index: 9999;
  width: 65px; height: 65px; border-radius: 50%;
  background: var(--wa); color: #fff !important;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  transition: background 0.2s;
}
.float-wa:hover { background: var(--wa-hover); color: #fff !important; }
.float-wa svg { width: 32px; height: 32px; fill: currentColor; }

@media (max-width: 1024px) {
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery, .gallery-wide, .gallery-rooms, .gallery-3 { grid-template-columns: repeat(2, 1fr); }
  .gallery-rooms img, .gallery-3 img { height: 360px !important; }
  .section-city { background-attachment: scroll; }
  .logo { flex-basis: 40%; max-width: 40%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-spacer { display: none; }
}
@media (max-width: 700px) {
  .hero { aspect-ratio: 320 / 93; }
  .hero-arrow { display: none; }
}
@media (max-width: 767px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: inline-block; }
  .logo { flex: 1 1 auto; max-width: none; }
  .logo img { max-width: 160px; max-height: 48px; }
  .site-header nav { display: none; }
  .welcome-grid, .hotel-intro, .cta-pair, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .gallery, .gallery-wide { grid-template-columns: 1fr; }
  .gallery-rooms, .gallery-3 { grid-template-columns: repeat(2, 1fr); }
  .page-slider { height: 240px; }
  .page-hero .container { padding-left: 1rem; }
  .page-hero h1 { font-size: 1.6rem; }
  .topbar-inner { justify-content: center; }
  .topbar-contacts { justify-content: center; }
  .section-city { padding: 100px 0; background-attachment: scroll; }
  .section-city h4 { font-size: 26px; }
}
