/* Announcement and navigation */
.announcement {
  position: relative;
  z-index: 140;
  color: rgba(255, 255, 255, .86);
  background: var(--blue-deep);
  font-size: .78rem;
}

.announcement-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.announcement-left,
.announcement-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.announcement-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.announcement-item i {
  width: 15px;
  color: var(--orange);
}

.announcement a:hover {
  color: var(--orange);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 130;
  border-bottom: 1px solid rgba(35, 62, 147, .08);
  background: rgba(255, 253, 249, .91);
  backdrop-filter: blur(18px);
  transition: box-shadow .2s ease, background-color .2s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 10px 36px rgba(27, 37, 76, .08);
}

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

.brand {
  width: 90px;
  flex: 0 0 auto;
  padding: 10px;
}

.brand img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 29px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  color: #35405f;
  font-size: .9rem;
  font-weight: 700;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -12px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--orange);
  transform: scaleX(0);
  transition: transform .18s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--blue);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  transform: scaleX(1);
}

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

.header-call {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--blue);
  border: 1px solid var(--blue-line);
  border-radius: 50%;
  background: var(--white);
}

.header-call:hover {
  color: var(--white);
  border-color: var(--blue);
  background: var(--blue);
}

.menu-toggle {
  width: 48px;
  height: 48px;
  display: none;
  place-items: center;
  border: 1px solid var(--blue-line);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
}

.menu-lines {
  width: 21px;
  display: grid;
  gap: 5px;
}

.menu-lines span {
  width: 100%;
  height: 2px;
  display: block;
  background: var(--blue);
  transition: transform .18s ease, opacity .18s ease;
}

.menu-toggle[aria-expanded="true"] .menu-lines span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-lines span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-lines span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav-panel {
  position: fixed;
  inset: calc(var(--header-height) + 38px) 0 0;
  z-index: 120;
  padding: 30px 22px 120px;
  visibility: hidden;
  opacity: 0;
  overflow-y: auto;
  background: rgba(255, 253, 249, .995);
  transform: translateY(-15px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.mobile-nav-panel.open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav-links {
  display: grid;
}

.mobile-nav-links a {
  padding: 16px 4px;
  color: var(--blue);
  border-bottom: 1px solid var(--border);
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
}

.mobile-nav-actions {
  display: grid;
  gap: 11px;
  margin-top: 28px;
}

/* Shared inner hero */
.inner-hero {
  position: relative;
  min-height: 610px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(135deg, #fffdf9 0%, #f6f8ff 58%, #edf1ff 100%);
}

.inner-hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  opacity: .5;
  background-image: linear-gradient(rgba(35, 62, 147, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(35, 62, 147, .045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to right, #000 0%, transparent 75%);
}

.inner-hero::after {
  position: absolute;
  top: -150px;
  right: -140px;
  z-index: -1;
  width: 520px;
  height: 520px;
  content: "";
  border: 1px solid rgba(35, 62, 147, .1);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(239, 133, 81, .05), 0 0 0 140px rgba(35, 62, 147, .025);
}

.inner-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(430px, 1.08fr);
  align-items: center;
  gap: clamp(45px, 7vw, 96px);
  padding: 78px 0 105px;
}

.inner-hero-copy {
  position: relative;
  z-index: 3;
  max-width: 760px;
}

.inner-hero h1 {
  margin-bottom: 24px;
  color: var(--blue-deep);
  font-size: clamp(3.4rem, 6vw, 6.5rem);
  font-weight: 800;
  line-height: .98;
}

.inner-hero h1 em {
  color: var(--orange);
  font-family: var(--font-accent);
  font-weight: 600;
}

.inner-hero-copy>p {
  max-width: 670px;
  margin-bottom: 30px;
  font-size: clamp(1rem, 1.3vw, 1.16rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.hero-crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 23px;
  color: var(--muted);
  font-size: .75rem;
  font-weight: 700;
}

.hero-crumbs a {
  color: var(--blue);
}

.hero-crumbs i {
  width: 14px;
}

.inner-hero-media {
  position: relative;
  min-height: 480px;
}

.inner-hero-image {
  position: absolute;
  inset: 0 50px 0 0;
  overflow: hidden;
  border: 9px solid var(--white);
  border-radius: 220px 220px 32px 32px;
  background: #dfe4f3;
  box-shadow: var(--shadow-lg);
}

.inner-hero-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 55%, rgba(14, 27, 72, .65));
}

.inner-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes floatSubtleInner {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.inner-hero-float {
  position: absolute;
  right: 0;
  bottom: 30px;
  z-index: 4;
  max-width: 250px;
  padding: 18px;
  border: 7px solid var(--paper);
  border-radius: 20px;
  background: var(--blue);
  box-shadow: var(--shadow-md);
  animation: floatSubtleInner 5.5s ease-in-out infinite;
  will-change: transform;
}

.inner-hero-float strong,
.inner-hero-float span {
  display: block;
}

.inner-hero-float strong {
  color: var(--white);
  font-size: 1rem;
}

.inner-hero-float span {
  margin-top: 4px;
  color: rgba(255, 255, 255, .65);
  font-size: .72rem;
}

/* Cards, grids and content */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.info-card {
  min-height: 260px;
  padding: 29px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform .22s var(--ease), box-shadow .22s ease, border-color .22s ease;
}

.info-card:hover {
  border-color: rgba(35, 62, 147, .24);
  box-shadow: var(--shadow-md);
  transform: translateY(-7px);
}

.info-card .icon-box {
  margin-bottom: 26px;
}

.info-card h3 {
  margin-bottom: 13px;
  color: var(--blue-deep);
  font-size: 1.35rem;
}

.info-card p {
  margin-bottom: 0;
  font-size: .9rem;
  color: #39425d;
}

.media-split {
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(0, 1.02fr);
  align-items: center;
  gap: clamp(50px, 7vw, 100px);
}

.media-frame {
  position: relative;
  min-height: 570px;
}

.media-frame-main {
  position: absolute;
  inset: 0 70px 50px 0;
  overflow: hidden;
  border-radius: 30px 150px 30px 30px;
  box-shadow: var(--shadow-lg);
}

.media-frame-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-frame-small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 220px;
  height: 245px;
  overflow: hidden;
  border: 8px solid var(--paper);
  border-radius: 105px 24px 24px 24px;
  box-shadow: var(--shadow-md);
}

.media-frame-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 34px;
  padding: 0;
  list-style: none;
}

.content-list.two-col {
  grid-template-columns: 1fr 1fr;
  gap: 13px 18px;
}

.content-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #39425d;
  font-size: .89rem;
  font-weight: 700;
}

.content-list i {
  width: 18px;
  margin-top: 4px;
  color: var(--orange);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-item {
  position: relative;
  padding: 32px 25px;
  text-align: center;
}

.stat-item:not(:last-child)::after {
  position: absolute;
  top: 22%;
  right: 0;
  bottom: 22%;
  width: 1px;
  content: "";
  background: var(--border);
}

.stat-value {
  display: block;
  color: var(--blue);
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4vw, 4.3rem);
  font-weight: 800;
  line-height: 1;
}

.stat-label {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Forms */
.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: #4b5470;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  color: var(--ink);
  border: 1px solid var(--border);
  border-radius: 14px;
  outline: none;
  background: #fbfcff;
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.field input,
.field select {
  height: 54px;
  padding: 0 15px;
}

select,
.field select {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  padding-right: 40px !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23233E93' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  background-size: 18px 18px !important;
  cursor: pointer !important;
}

.field textarea {
  min-height: 115px;
  padding: 14px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  background-color: var(--white);
  box-shadow: 0 0 0 4px rgba(35, 62, 147, .09);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.form-grid .full {
  grid-column: 1 / -1;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: .72rem;
  line-height: 1.55;
}

.form-message {
  display: none;
  grid-column: 1 / -1;
  padding: 12px 14px;
  color: #0d6848;
  border: 1px solid rgba(18, 140, 103, .25);
  border-radius: 12px;
  background: rgba(18, 140, 103, .08);
  font-size: .8rem;
  font-weight: 700;
}

.form-message.show {
  display: block;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
  margin-inline: auto;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 21px 23px;
  border: 0;
  cursor: pointer;
  color: var(--blue-deep);
  background: transparent;
  text-align: left;
  font-weight: 800;
}

.faq-question i {
  width: 19px;
  flex: 0 0 auto;
  color: var(--orange);
  transition: transform .22s ease;
}

.faq-item.open .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .28s var(--ease);
}

.faq-answer>div {
  overflow: hidden;
}

.faq-answer p {
  margin: 0;
  padding: 0 23px 22px;
  font-size: .9rem;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

/* CTA */
.cta-band {
  position: relative;
  overflow: hidden;
  padding: clamp(60px, 7vw, 95px) 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
}

.cta-band::before {
  position: absolute;
  top: -180px;
  right: -90px;
  width: 430px;
  height: 430px;
  content: "";
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(255, 255, 255, .025), 0 0 0 110px rgba(239, 133, 81, .035);
}

.cta-band-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
}

.cta-band-copy {
  max-width: 760px;
}

.cta-band h2 {
  margin-bottom: 13px;
  color: var(--white);
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.cta-band p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .66);
}

.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex: 0 0 auto;
}

/* Footer and global actions */
.footer {
  color: rgba(255, 255, 255, .68);
  background: #09102e;
}

.footer-top {
  padding: 78px 0 52px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr .75fr .9fr 1fr;
  gap: 55px;
}

.footer-brand {
  width: 210px;
  padding: 12px;
  border-radius: 12px;
  background: var(--white);
  display: flex;
  justify-content: center;
}

.footer-brand img {
  width: 150px;
}

.footer-about {
  max-width: 380px;
  margin: 23px 0;
  color: rgba(255, 255, 255, .57);
  font-size: .87rem;
}

.footer-trust {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.footer-column h3 {
  margin-bottom: 21px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 11px;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, .58);
  font-size: .85rem;
  transition: color .18s ease, transform .18s ease;
}

.footer-links a:hover {
  color: var(--orange);
  transform: translateX(4px);
}

.footer-contact {
  display: grid;
  gap: 12px;
}

.footer-contact a,
.footer-contact div {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: rgba(255, 255, 255, .61);
  font-size: .84rem;
}

.footer-contact i {
  width: 17px;
  margin-top: 4px;
  color: var(--orange);
}

.footer-actions {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, .4);
  font-size: .72rem;
}

.footer-policy {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
}

.footer-policy a:hover {
  color: var(--white);
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 100;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  color: var(--white);
  border: 5px solid rgba(255, 255, 255, .94);
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 16px 40px rgba(18, 140, 103, .32);
  transition: transform .18s ease, box-shadow .18s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 22px 44px rgba(18, 140, 103, .4);
}

.whatsapp-svg-icon {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  fill: currentColor;
}

.floating-whatsapp i,
.floating-whatsapp svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.floating-whatsapp span {
  position: absolute;
  right: 68px;
  width: max-content;
  padding: 9px 12px;
  color: var(--ink);
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  font-size: .74rem;
  font-weight: 700;
  pointer-events: none;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity .18s ease, transform .18s ease;
}

.floating-whatsapp:hover span {
  opacity: 1;
  transform: translateX(0);
}

.mobile-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 110;
  display: none;
  grid-template-columns: 1fr 1fr;
  padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 -12px 34px rgba(20, 30, 75, .11);
  backdrop-filter: blur(16px);
}

.mobile-bar a {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .86rem;
  font-weight: 800;
}

.mobile-call {
  color: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 999px 0 0 999px;
}

.mobile-wa {
  color: var(--white);
  border: 1px solid var(--green);
  border-radius: 0 999px 999px 0;
  background: var(--green);
}

/* Booking modal */
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 22px;
  visibility: hidden;
  opacity: 0;
  transition: opacity .2s ease, visibility .2s ease;
}

.booking-modal.open {
  visibility: visible;
  opacity: 1;
}

.booking-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 12, 37, .72);
  backdrop-filter: blur(8px);
}

.booking-modal-panel {
  position: relative;
  width: min(720px, 100%);
  max-height: min(850px, calc(100vh - 44px));
  overflow-y: auto;
  padding: clamp(26px, 5vw, 46px);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 28px;
  background: var(--paper);
  box-shadow: var(--shadow-lg);
  transform: translateY(20px) scale(.98);
  transition: transform .24s var(--ease);
}

.booking-modal.open .booking-modal-panel {
  transform: translateY(0) scale(1);
}

.booking-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
}

.booking-modal h2 {
  margin-bottom: 8px;
  color: var(--blue-deep);
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.booking-modal-intro {
  margin-bottom: 26px;
  font-size: .9rem;
}

/* Tabs and filters */
.filter-row,
.tab-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.filter-btn,
.tab-btn {
  min-height: 43px;
  padding: 10px 16px;
  color: var(--blue);
  border: 1px solid var(--blue-line);
  border-radius: 999px;
  background: var(--white);
  cursor: pointer;
  font-size: .78rem;
  font-weight: 800;
  transition: color .18s ease, background-color .18s ease, border-color .18s ease;
}

.filter-btn:hover,
.filter-btn.active,
.tab-btn:hover,
.tab-btn.active {
  color: var(--white);
  border-color: var(--blue);
  background: var(--blue);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

/* Social icons & developer credit */
.social-icons {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
}

.social-icons a {
  color: rgba(255, 255, 255, .75);
  font-size: 1.5rem;
  transition: color .2s ease, transform .2s ease;
  display: inline-flex;
}

.social-icons a:hover {
  color: var(--orange);
  transform: translateY(-3px);
}

.footer-credit {
  margin: 0;
  color: rgba(255, 255, 255, .65);
  font-size: .78rem;
}

.footer-credit a {
  color: #ffffff;
  font-weight: 700;
  transition: color .18s ease;
}

.footer-credit a:hover {
  color: var(--orange);
  text-decoration: underline;
}

@media (prefers-reduced-motion: reduce) {

  .inner-hero-float,
  .whatsapp-svg-icon {
    animation: none !important;
  }
}