/* ============================================================
   KONTAK PAGE — Luxury Logistics Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@300;400;500&display=swap');

/* ── CSS Variables ── */
:root {
  --navy-dark:    #0a1628;
  --navy-medium:  #112240;
  --gold:         #c9a84c;
  --gold-bright:  #e8c97a;
  --gold-pale:    #f5e9c8;
  --off-white:    #f8f6f0;
  --white:        #ffffff;
  --muted-blue:   #8a9ab5;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;

  --container-max: 1100px;
  --section-py:    6rem;
}

/* ══════════════════════════════════════════
   PAGE HERO
══════════════════════════════════════════ */
.page-hero {
  position: relative;
  height: 420px;
  padding-top: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-image: inherit;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.page-hero.loaded::before {
  transform: scale(1);
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,22,40,0.65) 0%, rgba(10,22,40,0.45) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 1.5rem;
}

.page-hero-content .eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.5);
  padding: 5px 16px;
  border-radius: 2px;
  margin-bottom: 1.2rem;
}

.page-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
}

.breadcrumbs a          { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.breadcrumbs a:hover    { color: var(--gold); }
.breadcrumbs .sep       { color: var(--gold); }
.breadcrumbs .current   { color: var(--gold); }

/* ══════════════════════════════════════════
   CONTACT SECTION
══════════════════════════════════════════ */
.contact-section {
  background-color: var(--off-white);
  padding: var(--section-py) 0;
}

.contact-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Contact Layout ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

@media (max-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ── Left: Info ── */
.contact-info__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.contact-info__divider {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 2rem;
}

/* Info items */
.contact-info__items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}

.contact-info__item:last-child {
  border-bottom: none;
}

.contact-info__icon {
  width: 38px;
  height: 38px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info__icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
}

.contact-info__text {
  flex: 1;
}

.contact-info__text h4 {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.25rem;
}

.contact-info__text p,
.contact-info__text a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: #5a6a80;
  margin: 0;
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-info__text a:hover {
  color: var(--gold);
}

/* ── Right: Logo panel ── */
.contact-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 2px;
  padding: 3rem 2rem;
  position: relative;
}

/* corner accents */
.contact-logo::before,
.contact-logo::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: var(--gold);
  border-style: solid;
  opacity: 0.4;
}

.contact-logo::before {
  top: 12px;
  left: 12px;
  border-width: 1px 0 0 1px;
}

.contact-logo::after {
  bottom: 12px;
  right: 12px;
  border-width: 0 1px 1px 0;
}

.contact-logo img {
  max-width: 260px;
  width: 100%;
  height: auto;
  display: block;
}

/* ══════════════════════════════════════════
   MAP SECTION
══════════════════════════════════════════ */
.map-section {
  background-color: var(--navy-dark);
  padding: var(--section-py) 0;
}

.map-section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.map-section-title .label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.map-section-title h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.map-section-title .divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.map-section-title .divider::before,
.map-section-title .divider::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}

.map-section-title .divider-diamond {
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* Map frame */
.map-wrapper {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}

.map-frame {
  position: relative;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}

/* corner gold accents */
.map-frame::before,
.map-frame::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  border-color: var(--gold);
  border-style: solid;
  z-index: 2;
  pointer-events: none;
}

.map-frame::before {
  top: -1px;
  left: -1px;
  border-width: 2px 0 0 2px;
}

.map-frame::after {
  bottom: -1px;
  right: -1px;
  border-width: 0 2px 2px 0;
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 480px;
  border: none;
  filter: grayscale(20%) contrast(1.05);
}

@media (max-width: 768px) {
  .map-frame iframe {
    height: 320px;
  }
}