/* =========================================================
   ROOT / COLORS / GLOBAL VARIABLES
========================================================= */

:root {
  --blue: #185e9b;
  --blue-dark: #0b355d;
  --blue-soft: #eaf4fb;
  --red: #ee3558;
  --gold: #f6c52d;
  --ink: #172231;
  --muted: #667386;
  --line: #dce5ed;
  --bg: #f6f9fc;
  --white: #fff;

  --shadow: 0 18px 50px rgba(20, 47, 77, .12);

  --radius: 22px;
  --radius-sm: 14px;

  --max: 1180px;
}


/* =========================================================
   GLOBAL / RESET
========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}


/* =========================================================
   CONTAINER
========================================================= */

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


/* =========================================================
   TYPOGRAPHY / EYEBROW
========================================================= */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;

  color: var(--blue);
}

.eyebrow::before {
  content: "";

  width: 28px;
  height: 3px;

  border-radius: 999px;
  background: var(--red);
}


/* =========================================================
   GENERAL SECTIONS
========================================================= */

.section {
  padding: 88px 0;
}

.section.soft {
  background: var(--bg);
}

.section.dark {
  background: linear-gradient(
    135deg,
    var(--blue-dark),
    #133f68
  );

  color: #fff;
}


/* =========================================================
   SECTION HEADINGS
========================================================= */

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;

  gap: 32px;
  margin-bottom: 36px;
}

.section-head h2,
.page-hero h1,
.hero h1 {
  margin: 8px 0 0;
  line-height: 1.05;
  letter-spacing: -.035em;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.section-head p {
  max-width: 620px;
  margin: 0;

  color: var(--muted);
}

.dark .section-head p {
  color: #d6e5f2;
}


/* =========================================================
   TOP BAR
========================================================= */

.topbar {
  background: var(--blue-dark);
  color: #fff;

  font-size: .88rem;
}

.topbar .container {
  display: flex;
  justify-content: space-between;

  gap: 20px;
  padding: 9px 0;
}

.topbar a {
  font-weight: 800;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;

  background: rgba(255, 255, 255, .96);

  backdrop-filter: blur(14px);

  border-bottom: 1px solid rgba(220, 229, 237, .8);
}


/* =========================================================
   NAVIGATION
========================================================= */

.nav {
  min-height: 82px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 28px;
}


/* Logo */

.brand {
  display: flex;
  align-items: center;

  gap: 12px;

  min-width: 230px;
}

.brand img {
  width: 210px;
  height: 50px;

  object-fit: contain;
  object-position: left center;
}


/* Navigation Links */

.nav-links {
  display: flex;
  align-items: center;

  gap: 28px;

  font-weight: 750;
  font-size: .94rem;
}

.nav-links a {
  position: relative;
}

.nav-links a:not(.btn):after {
  content: "";

  position: absolute;

  left: 0;
  right: 100%;
  bottom: -7px;

  height: 2px;

  background: var(--red);

  transition: .2s;
}

.nav-links a:not(.btn):hover:after,
.nav-links a.active:not(.btn):after {
  right: 0;
}


/* Navigation Actions */

.nav-actions {
  display: flex;
  align-items: center;

  gap: 10px;
}


/* Language Button */

.lang-link {
  border: 0;
  border-radius: 12px;

  padding: 12px 18px;

  font-weight: 900;
  letter-spacing: .02em;

  color: var(--blue-dark);
  background: #ffc400;

  box-shadow: 0 8px 20px rgba(255, 196, 0, .22);
}


/* Mobile Navigation Button */

.nav-toggle {
  display: none;

  background: none;
  border: 0;

  width: 44px;
  height: 44px;

  padding: 9px;

  cursor: pointer;
}

.nav-toggle span {
  display: block;

  height: 2px;

  background: var(--blue-dark);

  margin: 6px 0;
}


/* =========================================================
   BUTTONS
========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 9px;

  border-radius: 10px;
  border: 1px solid transparent;

  padding: 13px 20px;

  font-weight: 850;

  transition: .2s;

  cursor: pointer;
}


/* Primary Button */

.btn-primary {
  background: var(--red);
  color: #fff;

  /*box-shadow: 0 10px 24px rgba(226, 31, 47, .24);*/
}

.btn-primary:hover {
  transform: translateY(-2px);
}


/* Outline Button */

.btn-outline {
  border-color: #aac3d9;

  color: var(--blue-dark);
  background: #fff;
}


/* White Button */

.btn-white {
  background: #fff;
  color: var(--blue-dark);
}


/* =========================================================
   HOME HERO
========================================================= */

.hero {
  position: relative;

  min-height: 700px;

  display: grid;
  align-items: center;

  overflow: hidden;

  background: #0e2d49;
}


/* Hero Background Image + Overlay */

.hero::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(6, 30, 51, .83) 0%,
      rgba(9, 42, 69, .66) 46%,
      rgba(9, 42, 69, .2) 60%
    ),
    url('images/bann1.png') center / cover no-repeat;
}


/* Hero Decorative Glow */

.hero::after {
  content: "";

  position: absolute;

  inset: auto -10% -120px 35%;

  height: 240px;

  background: radial-gradient(
    circle,
    rgba(246, 197, 45, .22),
    transparent 62%
  );

  filter: blur(10px);
}


.hero .container {
  position: relative;
  z-index: 1;

  padding: 90px 0;
}


.hero-copy {
  max-width: 720px;

  color: #fff;
}


.hero .eyebrow {
  color: #cbe6fb;
}


.hero h1 {
  font-size: clamp(3rem, 7vw, 5.9rem);

  max-width: 800px;
}


.hero p {
  font-size: clamp(1.05rem, 2vw, 1.3rem);

  max-width: 700px;

  color: #e2edf6;

  margin: 22px 0 30px;
}


/* Hero Buttons */

.hero-actions {
  display: flex;
  flex-wrap: wrap;

  gap: 12px;
}


/* Hero Badges */

.hero-badges {
  display: flex;
  flex-wrap: wrap;

  gap: 12px;

  margin-top: 32px;
}

.hero-badge {
  display: flex;
  align-items: center;

  gap: 10px;

  padding: 10px 14px;

  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;

  background: rgba(255, 255, 255, .09);

  color: #fff;

  font-weight: 750;
  font-size: .9rem;
}


/* =========================================================
   SHARED GRIDS
========================================================= */

.trust-grid,
.program-grid,
.why-grid,
.footer-grid {
  display: grid;

  gap: 22px;
}


/* =========================================================
   TRUST CARDS
========================================================= */

.trust-grid {
  grid-template-columns: repeat(4, 1fr);

  margin-top: -54px;

  position: relative;
  z-index: 3;
}

.trust-card {
  background: #fff;

  border: 1px solid var(--line);
  border-radius: 18px;

  padding: 24px;

  box-shadow: var(--shadow);
}

.trust-card strong {
  display: block;

  font-size: 1.15rem;

  color: var(--blue-dark);
}

.trust-card span {
  color: var(--muted);

  font-size: .92rem;
}


/* =========================================================
   PROGRAMS
========================================================= */

.program-grid {
  grid-template-columns: repeat(2, 1fr);
}


/* Program Card */

.program-card {
  background: #fff;

  border: 1px solid var(--line);
  border-radius: var(--radius);

  padding: 30px;

  position: relative;

  overflow: hidden;

  box-shadow: 0 12px 30px rgba(25, 52, 80, .07);
}


/* Left Blue Border */

.program-card::before {
  content: "";

  position: absolute;

  left: 0;
  top: 0;
  bottom: 0;

  width: 5px;

  background: var(--blue);
}

.program-card.featured::before {
  background: var(--blue);
}


.program-card h3 {
  font-size: 1.55rem;

  margin: 4px 0 10px;

  color: var(--blue-dark);
}


/* Program Information Pills */

.program-meta {
  display: flex;
  flex-wrap: wrap;

  gap: 10px;

  margin: 14px 0 20px;
}

.pill {
  border-radius: 999px;

  background: var(--blue-soft);

  padding: 7px 11px;

  font-size: .83rem;
  font-weight: 800;

  color: var(--blue-dark);
}


/* =========================================================
   PROGRAM PRICING
========================================================= */

.price-panel {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 10px;

  margin: 20px 0;
}


.price-item {
  padding: 14px;

  background: #f8fbfd;

  border: 1px solid var(--line);
  border-radius: 13px;
}


.price-item small {
  display: block;

  color: var(--muted);

  font-size: .75rem;
  font-weight: 800;

  text-transform: uppercase;
  letter-spacing: .08em;
}


.price-item strong {
  display: block;

  color: var(--ink);

  font-size: 1.18rem;

  margin-top: 2px;
}


/* Highlighted Price */

.price-item.highlight {
  background: #e9f5ff;

  border-color: #9ed2f5;
}

.price-item.highlight strong {
  color: #0877c9;
}


/* Program Notices */

.notice {
  margin-top: 16px;

  padding: 14px 16px;

  border-radius: 13px;
  border: 1px solid #f3dfa0;

  background: #fff9df;

  color: #5e4b00;

  font-size: .91rem;
}


.program-card ul {
  padding-left: 20px;

  color: var(--muted);
}


.program-card .btn {
  margin-top: 8px;
}


/* =========================================================
   ABOUT / SPLIT SECTION
========================================================= */

.split {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 56px;

  align-items: center;
}


/* =========================================================
   PHOTO STACK
========================================================= */

.photo-stack {
  position: relative;

  min-height: 520px;
}


.photo-stack .main-photo {
  width: 86%;
  height: 460px;

  object-fit: cover;

  border-radius: 28px;

  box-shadow: var(--shadow);
}


.photo-stack .small-photo {
  position: absolute;

  right: 0;
  bottom: 0;

  width: 45%;
  height: 230px;

  object-fit: cover;

  border-radius: 22px;
  border: 7px solid #fff;

  box-shadow: var(--shadow);
}


/* =========================================================
   CHECK LIST
========================================================= */

.check-list {
  list-style: none;

  padding: 0;
  margin: 24px 0 0;

  display: grid;

  gap: 13px;
}


.check-list li {
  display: flex;

  gap: 12px;

  align-items: flex-start;
}


.check-list li::before {
  content: "✓";

  flex: 0 0 26px;

  width: 26px;
  height: 26px;

  border-radius: 50%;

  display: grid;
  place-items: center;

  background: var(--blue-soft);

  color: var(--blue);

  font-weight: 900;
}


/* =========================================================
   CALL TO ACTION
========================================================= */

.cta {
  padding: 72px 0;

  background: linear-gradient(
    120deg,
    var(--blue-dark),
    var(--blue)
  );

  color: #fff;
}


.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 36px;
}


.cta h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);

  margin: 0;

  line-height: 1.05;
}


.cta p {
  color: #d9e8f3;

  max-width: 650px;
}


/* =========================================================
   PAGE HERO
========================================================= */

.page-hero {
  padding: 96px 0 72px;

  background: linear-gradient(
    135deg,
    #edf6fb,
    #fff
  );

  border-bottom: 1px solid var(--line);
}


.page-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);

  max-width: 860px;

  color: var(--blue-dark);
}


.page-hero p {
  max-width: 760px;

  color: var(--muted);

  font-size: 1.1rem;
}


/* =========================================================
   PAGE HERO WITH BACKGROUND IMAGE
========================================================= */

.page-hero-image {
  position: relative;

  min-height: 500px;

  display: grid;
  align-items: center;

  overflow: hidden;

  background-image:
    linear-gradient(
      90deg,
      rgba(7, 39, 68, .92),
      rgba(7, 39, 68, .58) 30%,
      rgba(7, 39, 68, .24)
    ),
    var(--page-hero-image);

  background-size: cover;
  background-position: center;
}


.page-hero-image::after {
  content: "";

  position: absolute;
  inset: 0;

  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0),
    rgba(7, 39, 68, .08)
  );

  pointer-events: none;
}


.page-hero-image .container {
  position: relative;

  z-index: 1;
}


.page-hero-copy {
  max-width: 850px;

  color: #fff;
}


.page-hero-image .eyebrow {
  color: #d8efff;
}


.page-hero-image h1 {
  color: #fff;

  text-shadow: 0 3px 18px rgba(0, 0, 0, .18);
}


.page-hero-image p {
  color: #e8f2fa;

  font-size: 1.13rem;

  max-width: 700px;
}


/* =========================================================
   FEE TABLE
========================================================= */

.fee-table {
  width: 100%;

  border-collapse: separate;
  border-spacing: 0;

  background: #fff;

  border: 1px solid var(--line);
  border-radius: 18px;

  overflow: hidden;

  box-shadow: 0 10px 30px rgba(25, 52, 80, .06);
}


.fee-table th,
.fee-table td {
  padding: 16px 18px;

  border-bottom: 1px solid var(--line);

  text-align: left;
  vertical-align: top;
}


.fee-table th {
  background: #f3f8fc;

  color: var(--blue-dark);

  font-size: .83rem;

  text-transform: uppercase;
  letter-spacing: .08em;
}


.fee-table tr:last-child td {
  border-bottom: 0;
}


.fee-table strong {
  font-size: 1.04rem;
}


/* =========================================================
   GALLERY TABS
========================================================= */

.gallery-tabs {
  display: flex;
  flex-wrap: wrap;

  gap: 10px;

  margin-bottom: 28px;
}


.gallery-tab {
  border: 1px solid var(--line);
  border-radius: 999px;

  background: #fff;

  padding: 10px 16px;

  font-weight: 800;

  cursor: pointer;
}


.gallery-tab.active {
  background: var(--blue-dark);

  border-color: var(--blue-dark);

  color: #fff;
}


/* =========================================================
   PHOTO GALLERY
========================================================= */

.gallery-grid {
  columns: 4 250px;

  column-gap: 16px;
}


.gallery-item {
  break-inside: avoid;

  margin: 0 0 16px;

  position: relative;

  border-radius: 18px;

  overflow: hidden;

  background: #eee;

  box-shadow: 0 9px 24px rgba(21, 48, 74, .08);

  cursor: pointer;
}


.gallery-item img {
  width: 100%;
  height: auto;

  transition: .25s;
}


.gallery-item:hover img {
  transform: scale(1.025);
}


.gallery-item.hidden {
  display: none;
}


/* =========================================================
   VIDEO GALLERY
========================================================= */

.video-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 20px;
}


.video-card {
  background: #fff;

  border: 1px solid var(--line);
  border-radius: 18px;

  padding: 12px;

  box-shadow: 0 10px 28px rgba(21, 48, 74, .08);
}


.video-card video {
  width: 100%;

  aspect-ratio: 9 / 16;

  object-fit: cover;

  border-radius: 12px;

  background: #111;
}


.video-placeholder {
  aspect-ratio: 9 / 16;

  border-radius: 12px;

  background: linear-gradient(
    145deg,
    #eaf2f8,
    #d9e8f3
  );

  display: grid;
  place-items: center;

  color: var(--blue-dark);

  font-weight: 800;
  text-align: center;

  padding: 20px;
}


.video-card h3 {
  margin: 12px 6px 2px;
}


.video-card p {
  margin: 0 6px 7px;

  color: var(--muted);

  font-size: .9rem;
}


/* =========================================================
   LIGHTBOX
========================================================= */

.lightbox {
  position: fixed;

  inset: 0;

  background: rgba(5, 16, 27, .91);

  display: none;
  align-items: center;
  justify-content: center;

  padding: 30px;

  z-index: 100;
}


.lightbox.open {
  display: flex;
}


.lightbox img {
  max-width: min(95vw, 1000px);
  max-height: 92vh;

  border-radius: 14px;
}


.lightbox button {
  position: absolute;

  top: 18px;
  right: 22px;

  background: #fff;

  border: 0;
  border-radius: 50%;

  width: 44px;
  height: 44px;

  font-size: 1.5rem;

  cursor: pointer;
}


/* =========================================================
   CONTACT PAGE
========================================================= */

.contact-grid {
  display: grid;

  grid-template-columns: .9fr 1.1fr;

  gap: 48px;

  align-items: start;
}


.contact-card,
.form-card {
  background: #fff;

  border: 1px solid var(--line);
  border-radius: var(--radius);

  padding: 30px;

  box-shadow: 0 10px 30px rgba(25, 52, 80, .06);
}


.contact-row {
  padding: 16px 0;

  border-bottom: 1px solid var(--line);
}


.contact-row:last-child {
  border-bottom: 0;
}


.contact-row small {
  display: block;

  color: var(--muted);

  text-transform: uppercase;
  letter-spacing: .08em;

  font-weight: 800;
}


.contact-row strong {
  font-size: 1.08rem;
}


/* =========================================================
   CONTACT FORM
========================================================= */

.form-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 16px;
}


.field {
  display: grid;

  gap: 7px;
}


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


.field label {
  font-weight: 800;

  font-size: .9rem;
}


.field input,
.field textarea,
.field select {
  width: 100%;

  border: 1px solid #cfdbe5;
  border-radius: 12px;

  padding: 13px 14px;

  background: #fff;

  color: var(--ink);
}


.field textarea {
  min-height: 150px;

  resize: vertical;
}


.form-note {
  font-size: .84rem;

  color: var(--muted);
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
  background: #081f35;

  color: #fff;

  padding: 66px 0 22px;
}


.footer-grid {
  grid-template-columns: 1.4fr .8fr .8fr;

  align-items: start;
}


.footer-brand img {
  width: 230px;

  filter: brightness(1.2);
}


.footer-brand p {
  color: #bcd0df;

  max-width: 480px;
}


.footer-title {
  font-weight: 900;

  margin-bottom: 12px;
}


.footer-links {
  display: grid;

  gap: 8px;

  color: #c7d8e5;
}


.footer-bottom {
  margin-top: 44px;

  padding-top: 22px;

  border-top: 1px solid rgba(255, 255, 255, .12);

  display: flex;
  justify-content: space-between;

  gap: 20px;

  color: #9fb8ca;

  font-size: .87rem;
}


/* =========================================================
   SOCIAL MEDIA ICONS
========================================================= */

.socials {
  display: flex;

  gap: 10px;

  margin-top: 16px;
}


.socials a {
  width: 40px;
  height: 40px;

  border-radius: 50%;

  border: 1px solid rgba(255, 255, 255, .2);

  display: grid;
  place-items: center;

  background: rgba(255, 255, 255, .06);

  transition: .2s;
}


.socials a:hover {
  background: #fff;

  transform: translateY(-2px);
}


.socials a svg {
  width: 19px;
  height: 19px;

  fill: #fff;
}


.socials a:hover svg {
  fill: var(--blue-dark);
}


/* =========================================================
   RESPONSIVE — TABLET
   980px AND BELOW
========================================================= */

@media (max-width: 980px) {

  /* Navigation */

  .nav-links {
    position: fixed;

    left: 16px;
    right: 16px;
    top: 98px;

    display: none;
    flex-direction: column;
    align-items: stretch;

    background: #fff;

    padding: 20px;

    border-radius: 18px;
    border: 1px solid var(--line);

    box-shadow: var(--shadow);
  }


  .nav-links.open {
    display: flex;
  }


  .nav-toggle {
    display: block;
  }


  .nav-actions .btn {
    display: none;
  }


  /* Trust Cards */

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }


  /* Split / Contact */

  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }


  /* Video Gallery */

  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }


  /* Footer */

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }


  .footer-brand {
    grid-column: 1 / -1;
  }

}


/* =========================================================
   RESPONSIVE — MOBILE
   700px AND BELOW
========================================================= */

@media (max-width: 700px) {

  /* Top Bar */

  .topbar .container {
    justify-content: center;

    text-align: center;

    flex-wrap: wrap;

    gap: 4px;
  }


  .topbar span {
    width: 100%;
  }


  /* Navigation */

  .nav {
    min-height: 72px;
  }


  .brand {
    min-width: auto;
  }


  .brand img {
    width: 165px;
    height: 42px;
  }


  /* Hero */

  .hero {
    min-height: 620px;
  }


  .hero .container {
    padding: 70px 0 90px;
  }


  .hero h1 {
    font-size: clamp(2.65rem, 13vw, 4.5rem);
  }


  /* Trust Cards */

  .trust-grid {
    grid-template-columns: 1fr;

    margin-top: -34px;
  }


  /* General Sections */

  .section {
    padding: 64px 0;
  }


  .section-head {
    display: block;
  }


  .section-head p {
    margin-top: 14px;
  }


  /* Programs */

  .program-grid {
    grid-template-columns: 1fr;
  }


  .price-panel {
    grid-template-columns: 1fr 1fr;
  }


  /* Photos */

  .photo-stack {
    min-height: auto;
  }


  .photo-stack .main-photo {
    width: 100%;
    height: 360px;
  }


  .photo-stack .small-photo {
    display: none;
  }


  /* CTA */

  .cta-inner {
    display: block;
  }


  .cta .btn {
    margin-top: 16px;
  }


  /* Fee Table */

  .fee-table {
    display: block;

    overflow-x: auto;

    white-space: nowrap;
  }


  /* Gallery */

  .gallery-grid {
    columns: 2 145px;
  }


  /* Video */

  .video-grid {
    grid-template-columns: 1fr;
  }


  /* Contact Form */

  .form-grid {
    grid-template-columns: 1fr;
  }


  .field.full {
    grid-column: auto;
  }


  /* Footer */

  .footer-grid {
    grid-template-columns: 1fr;
  }


  .footer-brand {
    grid-column: auto;
  }


  .footer-bottom {
    display: block;
  }

}


/* =========================================================
   RESPONSIVE — SMALL MOBILE
   430px AND BELOW
========================================================= */

@media (max-width: 430px) {

  .price-panel {
    grid-template-columns: 1fr;
  }


  .gallery-grid {
    columns: 2 120px;
  }


  .container {
    width: min(
      calc(100% - 22px),
      var(--max)
    );
  }

}


/* =========================================================
   CONTACT PAGE — INFORMATION-FIRST LAYOUT
========================================================= */

.contact-info-grid {
  display: grid;

  grid-template-columns: 1.25fr .75fr;

  gap: 28px;

  align-items: stretch;
}


.contact-card-large {
  padding: 38px;
}


.contact-card-large h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);

  line-height: 1.08;

  margin: 10px 0 14px;

  color: var(--blue-dark);
}


.contact-card-large > p {
  color: var(--muted);

  max-width: 760px;
}


/* Contact Details */

.contact-detail-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 14px;

  margin-top: 26px;
}


.contact-detail {
  padding: 18px;

  border-radius: 15px;
  border: 1px solid var(--line);

  background: #f4f9fd;
}


.contact-detail small {
  display: block;

  font-weight: 850;

  text-transform: uppercase;
  letter-spacing: .08em;

  color: var(--blue);

  margin-bottom: 5px;
}


.contact-detail strong {
  display: block;

  font-size: 1.04rem;

  color: var(--blue-dark);
}


.contact-detail span {
  display: block;

  margin-top: 5px;

  color: var(--muted);

  font-size: .9rem;
}


/* Contact Buttons */

.contact-actions {
  display: flex;
  flex-wrap: wrap;

  gap: 12px;

  margin-top: 24px;
}


/* =========================================================
   CONTACT PHOTO CARD
========================================================= */

.contact-photo-card {
  position: relative;

  min-height: 100%;

  border-radius: var(--radius);

  overflow: hidden;

  box-shadow: var(--shadow);

  background: var(--blue-dark);
}


.contact-photo-card img {
  width: 100%;
  height: 100%;

  min-height: 520px;

  object-fit: cover;
}


.contact-photo-card::after {
  content: "";

  position: absolute;

  inset: 45% 0 0;

  background: linear-gradient(
    transparent,
    rgba(5, 27, 47, .92)
  );
}


.contact-photo-copy {
  position: absolute;

  z-index: 2;

  left: 26px;
  right: 26px;
  bottom: 26px;

  color: #fff;

  display: grid;

  gap: 5px;
}


.contact-photo-copy strong {
  font-size: 1.35rem;
}


.contact-photo-copy span {
  color: #dbeaf5;
}


/* =========================================================
   GOOGLE MAP
========================================================= */

.map-wrap {
  overflow: hidden;

  border-radius: 22px;
  border: 1px solid var(--line);

  box-shadow: 0 12px 32px rgba(25, 52, 80, .08);
}


.map-wrap iframe {
  display: block;

  width: 100%;
  height: 460px;

  border: 0;
}


/* =========================================================
   CONTACT PAGE RESPONSIVE — TABLET
========================================================= */

@media (max-width: 980px) {

  .contact-info-grid {
    grid-template-columns: 1fr;
  }


  .contact-photo-card img {
    min-height: 430px;
  }


  .page-hero-image {
    min-height: 430px;
  }

}


/* =========================================================
   CONTACT PAGE RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 700px) {

  /* Language Button */

  .lang-link {
    padding: 10px 13px;

    font-size: .78rem;
  }


  .nav-actions {
    margin-left: auto;
  }


  /* Contact Details */

  .contact-detail-grid {
    grid-template-columns: 1fr;
  }


  .contact-card-large {
    padding: 25px;
  }


  /* Contact Photo */

  .contact-photo-card img {
    min-height: 380px;
  }


  /* Page Hero */

  .page-hero-image {
    min-height: 400px;

    padding: 72px 0 58px;

    background-position: center;
  }


  /* Map */

  .map-wrap iframe {
    height: 380px;
  }

}