/* ============================================================
   CONTACT.CSS — Vihormedia Contact page
   ============================================================ */

/* ── HERO ── */
.ct-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.ct-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.ct-hero:hover .ct-hero-bg { transform: scale(1); }

.ct-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(20,20,16,0.88) 0%,
    rgba(20,20,16,0.58) 55%,
    rgba(20,20,16,0.22) 100%
  );
}

.ct-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.ct-hero-content {
  max-width: 720px;
}

.ct-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,242,235,0.65);
  margin-bottom: 1.75rem;
}
.ct-hero-tag .hero-tag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--olive-light);
  flex-shrink: 0;
}

.ct-hero h1 {
  color: var(--cream);
  font-size: clamp(2.6rem, 6.5vw, 5.6rem);
  line-height: 1.08;
  margin-bottom: 1.75rem;
}
.ct-hero h1 em { color: rgba(245,242,235,0.7); font-style: italic; }

.ct-hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  color: rgba(245,242,235,0.6);
  max-width: 500px;
  line-height: 1.75;
  margin-bottom: 2.25rem;
}

.ct-hero-scroll {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,242,235,0.55);
  border: 1px solid rgba(245,242,235,0.2);
  padding: 0.6rem 1.2rem;
  border-radius: 100px;
  transition: color 0.25s, border-color 0.25s;
}
.ct-hero-scroll:hover {
  color: rgba(245,242,235,0.9);
  border-color: rgba(245,242,235,0.5);
}
.ct-hero-scroll svg { width: 16px; height: 16px; }

/* ── INFO STRIP ── */
.ct-info {
  background: var(--cream-2);
  border-bottom: 1px solid var(--olive-border);
  padding: 3rem 0;
}

.ct-info-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .ct-info-inner { grid-template-columns: repeat(4, 1fr); }
}

.ct-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--cream);
  border: 1px solid var(--olive-border);
  border-radius: 10px;
  transition: box-shadow 0.22s, transform 0.22s;
}
.ct-info-card:hover {
  box-shadow: 0 8px 28px rgba(74,82,64,0.1);
  transform: translateY(-2px);
}

.ct-info-icon {
  width: 42px; height: 42px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--olive-dim);
  border-radius: 10px;
  color: var(--olive);
}
.ct-info-icon svg { width: 22px; height: 22px; }

.ct-info-body { display: flex; flex-direction: column; gap: 0.2rem; }

.ct-info-label {
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 0.15rem;
}

.ct-info-value {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--charcoal);
  display: block;
  line-height: 1.5;
  transition: color 0.2s;
}
a.ct-info-value:hover { color: var(--olive); }

.ct-info-sub {
  font-size: 0.78rem;
  color: var(--muted);
  display: block;
}

/* ── MAIN SECTION ── */
.ct-main {
  padding: 6rem 0 7rem;
}

.ct-main-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media (min-width: 960px) {
  .ct-main-inner {
    grid-template-columns: 1fr 1.35fr;
    gap: 6rem;
    align-items: start;
  }
}

/* LEFT */
.ct-left h2 { margin-bottom: 1.25rem; }
.ct-left > p { font-size: 1.05rem; line-height: 1.8; margin-bottom: 2.5rem; }

/* What happens next */
.ct-expect {
  margin-bottom: 2.5rem;
  padding: 1.75rem;
  background: var(--cream-2);
  border: 1px solid var(--olive-border);
  border-radius: 12px;
}

.ct-expect-title {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.ct-expect-title::before {
  content: '';
  width: 18px; height: 1px;
  background: var(--olive);
}

.ct-expect-item {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0.75rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--olive-border);
}
.ct-expect-item:last-child { border-bottom: none; padding-bottom: 0; }

.ct-expect-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: var(--olive-light);
  padding-top: 0.15rem;
  letter-spacing: 0.04em;
}

.ct-expect-item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal);
  font-family: var(--font-body);
  margin-bottom: 0.25rem;
}
.ct-expect-item p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* Social icons */
.ct-socials {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.ct-social-link {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--cream-2);
  border: 1px solid var(--olive-border);
  transition: background 0.2s, transform 0.2s;
  overflow: hidden;
  padding: 6px;
}
.ct-social-link:hover {
  background: var(--cream-3);
  transform: translateY(-2px);
}
.ct-social-link img {
  width: 100%; height: 100%;
  object-fit: contain;
}

/* RIGHT — form */
.ct-form-wrap .contact-form {
  /* extend base styles from style.css */
  border-radius: 16px;
}

.ct-form-note {
  font-size: 0.78rem;
  color: var(--muted-2);
  text-align: center;
  margin-top: 1rem;
  line-height: 1.6;
}

/* ── LOCATION ── */
.ct-location {
  background: var(--cream-2);
  border-top: 1px solid var(--olive-border);
  padding: 6rem 0;
}

.ct-location-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
}
@media (min-width: 900px) {
  .ct-location-inner {
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: center;
  }
}

.ct-location-text h3 {
  margin: 1rem 0 1.25rem;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}
.ct-location-text > p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.ct-location-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ct-location-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--muted);
}
.ct-location-item svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--olive); }
.ct-location-item a { color: var(--muted); transition: color 0.2s; }
.ct-location-item a:hover { color: var(--olive); }

/* Map embed */
.ct-map-embed {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--olive-border);
  box-shadow: 0 16px 48px rgba(30,30,26,0.12);
  height: 380px;
}
.ct-map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  /* Slight desaturation to match cream palette */
  filter: saturate(0.65) contrast(0.95);
}

.ct-map-pin-label {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--charcoal);
  background: rgba(245,242,235,0.92);
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  backdrop-filter: blur(6px);
  border: 1px solid var(--olive-border);
  white-space: nowrap;
}
.ct-map-pin-label svg { width: 14px; height: 14px; }

/* ── FOOTER DARK (inherited from about.css pattern) ── */
footer.footer-dark {
  background: #000 !important;
}
footer.footer-dark .footer-copy { color: rgba(255,255,255,0.35); }
footer.footer-dark .footer-desc { color: rgba(255,255,255,0.45); }
footer.footer-dark .footer-col ul li a { color: rgba(255,255,255,0.5); }
footer.footer-dark .footer-col ul li a:hover { color: rgba(255,255,255,0.85); }
footer.footer-dark .footer-col ul li { color: rgba(255,255,255,0.45); }

.footer-heading-white { color: #ffffff !important; }

/* ── MOBILE ── */
@media (max-width: 600px) {
  .ct-hero { min-height: 82vh; }
  .ct-hero h1 { font-size: clamp(2.2rem, 9vw, 3.5rem); }

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

  .ct-map-embed { height: 260px; }

  .ct-location-inner { gap: 2.5rem; }
}
