:root {
  --blue: #27328a;
  --blue-light: #416fa9;
  --blue-deep: #151a56;
  --red: #ed4b4b;
  --ink: #12162f;
  --muted: #5f667e;
  --line: #dfe6f4;
  --bg: #f5f7fb;
  --white: #ffffff;
  --soft-blue: #eef3ff;
  --shadow: 0 24px 70px rgba(20, 31, 76, 0.14);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 12px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover, a:focus { color: var(--blue-light); text-decoration: none; }
button, input, select, textarea { font: inherit; }

[ng-cloak], [data-ng-cloak], [x-ng-cloak], .ng-cloak { display: none !important; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 18px;
  top: -80px;
  z-index: 9999;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--white);
  background: var(--blue);
  transition: top 0.2s ease;
}
.skip-link:focus { top: 18px; color: var(--white); }

.site-container {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(223, 230, 244, 0.9);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  width: min(360px, 64vw);
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.primary-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--ink);
  font-weight: 800;
  white-space: nowrap;
}
.primary-nav a:hover, .primary-nav a:focus-visible { background: var(--soft-blue); color: var(--blue); }
.primary-nav .nav-cta { background: var(--blue); color: var(--white); }
.primary-nav .nav-cta:hover, .primary-nav .nav-cta:focus-visible { background: var(--blue-light); color: var(--white); }

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  padding: 10px;
}
.nav-toggle__line { display: block; height: 2px; margin: 6px 0; background: var(--blue); border-radius: 99px; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 54px;
  background:
    radial-gradient(circle at 12% 15%, rgba(65,111,169,0.18), transparent 36%),
    radial-gradient(circle at 88% 18%, rgba(237,75,75,0.08), transparent 25%),
    linear-gradient(135deg, #ffffff 0%, #edf2ff 54%, #f9fbff 100%);
}
.hero::after {
  content: "";
  position: absolute;
  right: -160px;
  bottom: -260px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(39, 50, 138, 0.075);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 38px;
  align-items: end;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 820px;
  margin-bottom: 18px;
  color: var(--blue-deep);
  font-size: clamp(2.55rem, 5.7vw, 5.25rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}
h2 {
  margin-bottom: 14px;
  color: var(--blue-deep);
  font-size: clamp(2rem, 3.5vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}
h3 { margin-bottom: 10px; color: var(--ink); font-size: 1.22rem; }
p { color: var(--muted); }

.hero-text { max-width: 700px; font-size: 1.15rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-1px); text-decoration: none; }
.button-primary { color: var(--white); background: var(--blue); box-shadow: 0 18px 36px rgba(39, 50, 138, 0.22); }
.button-primary:hover, .button-primary:focus-visible { color: var(--white); background: var(--blue-light); }
.button-secondary { color: var(--blue); background: var(--white); border: 1px solid var(--line); }

.support-card {
  display: grid;
  gap: 8px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.72);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.82);
  box-shadow: var(--shadow);
}
.support-card__label {
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--blue);
  background: var(--soft-blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.support-card strong { color: var(--ink); font-size: 1.3rem; }
.support-card a { font-weight: 800; }

.booking-section, .services-section, .process-section, .faq-section { padding: 78px 0; }
.intro-section, .support-section, .contact-section { padding: 78px 0; background: var(--white); }

.section-heading { max-width: 780px; margin-bottom: 32px; }
.section-heading-center { margin-inline: auto; text-align: center; }
.section-heading p { font-size: 1.04rem; }

.booking-panel {
  padding: clamp(10px, 3vw, 28px);
  border: 1px solid rgba(223,230,244,0.9);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.booking-panel .container {
  width: 100% !important;
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.booking-panel .row { margin-left: 0 !important; margin-right: 0 !important; }
.booking-panel #DEACombinedSearchPanel { width: 100%; }
.booking-panel .divDEACombinedSearchPanel { margin: 0 auto; }
.booking-panel .searchPanelType { margin-bottom: 0; }
.booking-panel input, .booking-panel select, .booking-panel textarea { font-size: 16px; }

.noscript-message {
  margin: 0 0 20px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  color: #7b2600;
  background: #fff4e6;
  border: 1px solid #ffd5a7;
}

.system-note {
  max-width: 900px;
  margin: 18px auto 0;
  color: var(--muted);
  text-align: center;
  font-size: 0.96rem;
}
code {
  padding: 2px 6px;
  border-radius: 7px;
  color: var(--blue-deep);
  background: #e9edfb;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 48px;
  align-items: start;
}
.prose p { font-size: 1.05rem; }
.prose p:last-child { margin-bottom: 0; }

.card-grid { display: grid; gap: 18px; }
.services-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.info-card {
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 18px 42px rgba(20, 31, 76, 0.07);
}
.card-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
  border-radius: 16px;
  color: var(--blue);
  background: var(--soft-blue);
  font-size: 1.35rem;
}
.info-card p { margin-bottom: 0; }

.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.steps li {
  position: relative;
  padding: 30px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 42px rgba(20, 31, 76, 0.07);
}
.steps span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-weight: 900;
}
.steps p { margin-bottom: 0; }

.support-section {
  background:
    linear-gradient(rgba(21,26,86,0.9), rgba(21,26,86,0.94)),
    radial-gradient(circle at 20% 30%, rgba(65,111,169,0.7), transparent 40%);
}
.support-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 40px;
  align-items: center;
}
.support-section h2, .support-section p, .support-section .eyebrow { color: var(--white); }
.support-section p { opacity: 0.88; font-size: 1.06rem; }
.support-list {
  display: grid;
  gap: 14px;
}
.support-list div {
  padding: 20px;
  border-radius: 18px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
}
.support-list strong, .support-list span { display: block; color: var(--white); }
.support-list strong { margin-bottom: 4px; }
.support-list span { opacity: 0.82; }

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}
details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(20, 31, 76, 0.06);
}
summary {
  cursor: pointer;
  padding: 20px 24px;
  color: var(--ink);
  font-weight: 900;
}
details p { padding: 0 24px 22px; margin: 0; }

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  gap: 40px;
  align-items: center;
}
.contact-grid--clean { max-width: 1080px; }
.contact-copy { padding-right: 18px; }
.contact-copy--enhanced p { max-width: 560px; }
.contact-highlights {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}
.contact-highlights div {
  padding-left: 18px;
  border-left: 4px solid rgba(39, 50, 138, 0.16);
}
.contact-highlights strong,
.contact-highlights span { display: block; }
.contact-highlights strong { color: var(--blue-deep); margin-bottom: 4px; }
.contact-card {
  display: grid;
  gap: 14px;
  padding: 32px;
  border-radius: 24px;
  border: 1px solid rgba(39, 50, 138, 0.12);
  background: var(--bg);
}
.contact-card--featured {
  background: linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
  box-shadow: 0 22px 54px rgba(20, 31, 76, 0.10);
}
.contact-card--refined {
  position: relative;
  overflow: hidden;
}
.contact-card--refined::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
}
.contact-card__eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--soft-blue);
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.contact-card address {
  color: var(--muted);
  font-style: normal;
  margin: 0;
}
.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 6px;
}
.contact-method {
  display: block;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.contact-method:hover,
.contact-method:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(39, 50, 138, 0.25);
  box-shadow: 0 12px 28px rgba(20, 31, 76, 0.08);
  text-decoration: none;
}
.contact-method__label {
  display: block;
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
}
.contact-method strong {
  color: var(--blue);
  font-size: 1.06rem;
  word-break: break-word;
}

.site-footer {
  padding: 34px 0 18px;
  color: rgba(255,255,255,0.86);
  border-top: 0;
  background:
    linear-gradient(rgba(10,18,67,0.98), rgba(12,19,71,0.98)),
    radial-gradient(circle at 15% 25%, rgba(65,111,169,0.26), transparent 35%);
}
.site-footer p { max-width: 480px; margin: 0; color: rgba(255,255,255,0.72); }
.footer-shell {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 42px;
}
.footer-brand {
  display: grid;
  gap: 12px;
}
.footer-logo {
  width: min(280px, 70vw);
  height: auto;
  filter: brightness(0) invert(1);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}
.site-footer a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--white);
  font-weight: 800;
}
.site-footer a:hover, .site-footer a:focus {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.70);
  font-size: 0.94rem;
}

@media (max-width: 1100px) {
  .hero-grid, .support-grid, .split-grid, .contact-grid { grid-template-columns: 1fr; }
  .support-card { max-width: 500px; }
  .services-grid, .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  .header-inner { min-height: 74px; }
  .brand img { width: min(300px, 70vw); }
  .nav-toggle { display: inline-block; }
  .primary-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow);
  }
  .primary-nav.is-open { display: flex; }
  .primary-nav a { justify-content: center; }
  .hero { padding: 66px 0 42px; }
  .booking-section, .intro-section, .services-section, .process-section, .support-section, .faq-section, .contact-section { padding: 58px 0; }
  .services-grid, .steps { grid-template-columns: 1fr; }
  .footer-shell { align-items: flex-start; flex-direction: column; }
  .footer-links { justify-content: flex-start; }
  .info-card { min-height: auto; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 560px) {
  .site-container { width: min(100% - 22px, 1180px); }
  h1 { font-size: clamp(2.35rem, 13vw, 3.4rem); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .support-card, .info-card, .steps li, .contact-card { padding: 22px; }
  .booking-panel { padding: 8px; border-radius: 18px; }
  .booking-panel .searchPanelType { margin-left: 0 !important; }
}
