/* ============================================================
   MEGAROYAL — CONTACT PAGE  |  TRUE ZERO-MARGIN FULLSCREEN
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Rasa:wght@300;400;500;600&family=Poppins:wght@400;500;600&display=swap');

:root {
  --teal:         #0e759b;
  --teal-dark:    #0a5f80;
  --bg:           #e4e4e4;
  --card-radius:  20px;
  --font-display: "Rasa", Georgia, serif;
  --font-body:    "Poppins", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  background: var(--bg);
  font-family: var(--font-body);
  overflow-x: hidden;
}

/* ── PAGE WRAPPER ───────────────────────────────────────────
   Zero padding so hero and contact sections touch the edges. */
.page-wrapper {
  width: 100%;
  padding: 0;
}

/* ============================================================
   NAVBAR  — transparent, overlaid on top of the hero
   ============================================================ */
.navbar {
  position: absolute;           /* lifts navbar off the flow */
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 14px 32px;
  background: transparent;      /* fully see-through         */
}


.navbar-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  width: 100%;
}

.nav-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 28px;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a.active,
.nav-links a:hover { color: var(--teal); }

.nav-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #555;
  flex-wrap: nowrap;
}
.nav-email,
.nav-phone,
.nav-hours { white-space: nowrap; }

.nav-lang {
  background: #e8e8e8;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 3px 8px;
  font-size: 12px;
  cursor: pointer;
  font-family: var(--font-body);
}
.nav-cta {
  background: var(--teal);
  color: #fff;
  border-radius: 6px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--teal-dark); }


/* ============================================================
   HERO  — TRUE FULL-BLEED, zero border-radius, zero margin
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #fff;
  /* Height driven by the image's natural aspect ratio (A3 landscape ~1:0.707) */
  aspect-ratio: 1414 / 1000;
}

/* Background image fills 100% — use contain so the full
   illustration is always visible without any cropping      */
.hero-image-wrap {
  position: absolute;
  inset: 0;
  background: #fff;
}
.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;          /* show the whole image       */
  object-position: center center;
  display: block;
}

/* Slogan — upper-right corner, overlaid on the image */
.hero-slogan {
  position: absolute;           /* pin it precisely           */
  top: 25%;
  right: 10%;
  z-index: 1;
  width: clamp(220px, 29%, 420px);
  text-align: right;
}
.hero-slogan h1 {
  font-family: var(--font-display);
  font-size: clamp(16px, 2.5vw, 40px);
  font-weight: 400;
  color: #111;
  line-height: 1.3;
  margin: 0;
}


/* ============================================================
   CONTACT SECTION — full width, gap above via margin
   ============================================================ */
.contact-section {
  background: #fff;
  width: 100%;
  padding: 36px 40px 40px;      /* inner breathing room only */
  margin-top: 16px;             /* small gap below the hero  */
  /* NO border-radius on left/right so it's flush to edges   */
  border-radius: 0;
}

/* Header row */
.contact-header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 28px;
}
.contact-heading {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 60px);
  font-weight: 400;
  color: #111;
  margin: 0;
  line-height: 1.05;
}
.header-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.header-logo img {
  height: 56px;
  width: auto;
  object-fit: contain;
}

/* Two-column body */
.contact-body {
  display: grid;
  grid-template-columns: minmax(280px, 36%) 1fr;
  gap: 24px;
  align-items: start;
}

/* Blue contact card */
.contact-card {
  background: var(--teal);
  border-radius: var(--card-radius);
  padding: 26px 30px 32px;
}
.card-title {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.8vw, 26px);
  font-weight: 500;
  color: #000;
  margin: 0 0 20px;
}

address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.info-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.info-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
/* Mail icon fallback via background-image */
.mail-icon .mail-svg {
  display: block;
  width: 26px;
  height: 20px;
  background-image: url(img/image.svg);
  background-size: 100% 100%;
}
.info-row p {
  font-family: var(--font-body);
  font-size: clamp(11px, 1vw, 14px);
  color: #000;
  line-height: 1.6;
  margin: 0;
}
.info-row p a {
  color: inherit;
  text-decoration: none;
}
.info-row p a:hover { text-decoration: underline; }

/* Partner logo grid */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-items: stretch;
}
.partner-cell {
  background: #f5f5f5;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 8px;
  height: 100px;
  min-height: 0;
  transition: box-shadow 0.2s;
}
.partner-cell:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
}
.partner-cell img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.LINKK {
  width: 100%;
  max-width: 140px;
  height: 44px;
  background-image: url(img/images-1-1.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .nav-email,
  .nav-phone,
  .nav-hours { display: none; }

  .contact-body {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .contact-body {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .navbar          { padding: 12px 16px; }
  .navbar-inner    { gap: 14px; }
  .nav-links       { gap: 14px; }
  .nav-links a     { font-size: 12px; }

  .hero            { aspect-ratio: 1414 / 1000; }
  .hero-slogan {
    width: 100%;
    padding: 20px;
    text-align: left;
    background: rgba(255,255,255,.75);
    backdrop-filter: blur(4px);
  }

  .contact-section         { padding: 20px 16px 28px; margin-top: 16px; }
  .contact-header-row      { flex-direction: column; gap: 12px; }
  .header-logo             { align-items: flex-start; }
  .partner-grid            { grid-template-columns: repeat(2, 1fr); }
}