/* ── CONTACT PAGE ── */
.contact-page {
  background: #EAE7E3;
}

/* ── HERO ── */
.contact-hero-section {
  padding: 40px 0 60px;
}

.contact-hero-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}

.contact-hero-dots {
  position: absolute;
  top: -10px;
  right: 56px;
  width: 130px;
  height: 90px;
  background-image: radial-gradient(circle, rgba(0,0,0,0.18) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  pointer-events: none;
  z-index: 2;
}

.contact-hero-card {
  background: #ffffff;
  border-radius: 32px;
  padding: 56px 64px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.contact-hero-circle-tl {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(225, 215, 205, 0.55);
  bottom: -100px;
  left: -80px;
  pointer-events: none;
}

.contact-hero-left {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-hero-heading {
  font-size: clamp(2.4rem, 3vw, 3.6rem);
  font-weight: 800;
  color: #1A1A1A;
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin: 0 0 24px;
}

.contact-hero-divider {
  width: 220px;
  height: 6px;
  background: #E07B00;
  border-radius: 3px;
  margin-bottom: 28px;
}

.contact-hero-copy {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: #4B5563;
  max-width: 460px;
  margin: 0 0 32px;
}

.contact-hero-btn {
  display: inline-block;
  background: #4B1F0E;
  color: #ffffff;
  border-radius: 9999px;
  padding: 0.9rem 2.2rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}

.contact-hero-btn:hover {
  background: #3a1709;
  color: #ffffff;
}

/* Hero image collage (3 staggered cards) */
.contact-hero-right {
  position: relative;
  z-index: 1;
}

.contact-hero-collage {
  position: relative;
  width: 100%;
  height: 460px;
}

.chc-card {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  border: 8px solid #ffffff;
  box-shadow:
    0 2px 6px rgba(104, 35, 8, 0.06),
    0 12px 36px rgba(104, 35, 8, 0.10),
    0 32px 72px rgba(15, 23, 42, 0.11);
}

.chc-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: contrast(1.04) saturate(0.90) brightness(1.01);
}

/* Card 1: top-left (largest) */
.chc-card-1 {
  top: 0;
  left: 0;
  width: 68%;
  height: 50%;
  transform: rotate(-2.5deg);
  z-index: 1;
}

/* Card 2: middle (medium) */
.chc-card-2 {
  top: 28%;
  left: 18%;
  width: 60%;
  height: 46%;
  transform: rotate(2deg);
  z-index: 2;
}

/* Card 3: bottom-right (smaller) */
.chc-card-3 {
  bottom: 0;
  right: 0;
  width: 52%;
  height: 40%;
  transform: rotate(-1.5deg);
  z-index: 3;
}

/* ── CONTACT FORM + INFO ── */
.contact-section {
  background: #ffffff;
  padding: 96px 0;
}

.contact-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  align-items: start;
}

/* Form */
.contact-form-wrap {
  position: relative;
}

.cf-field {
  margin-bottom: 32px;
}

.cf-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cf-input,
.cf-select {
  width: 100%;
  border: none;
  border-bottom: 2px solid #E5E7EB;
  outline: none;
  padding: 14px 0;
  font-size: 1rem;
  font-family: "Inter", sans-serif;
  color: #1A1A1A;
  background: transparent;
  transition: border-color 0.2s;
  display: block;
}

.cf-input:focus,
.cf-select:focus {
  border-bottom-color: #D97706;
}

.cf-input::placeholder {
  color: #9CA3AF;
}

.cf-select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  color: #9CA3AF;
}

.cf-select:valid {
  color: #1A1A1A;
}

.cf-textarea {
  width: 100%;
  border: 1.5px solid #E5E7EB;
  border-radius: 14px;
  padding: 16px 18px;
  font-size: 1rem;
  font-family: "Inter", sans-serif;
  color: #1A1A1A;
  background: #FAFAF9;
  outline: none;
  resize: vertical;
  transition: border-color 0.2s;
  min-height: 140px;
  display: block;
  box-sizing: border-box;
}

.cf-textarea:focus {
  border-color: #D97706;
}

.cf-textarea::placeholder {
  color: #9CA3AF;
}

.cf-submit {
  display: inline-block;
  background: #4B1F0E;
  color: #ffffff;
  border: none;
  border-radius: 9999px;
  padding: 0.9rem 2.4rem;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 8px;
}

.cf-submit:hover {
  background: #3a1709;
}

/* Contact info card */
.contact-info-card {
  background: #FAFAF8;
  border-radius: 28px;
  padding: 2.5rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.ci-heading {
  font-size: 1.3rem;
  font-weight: 800;
  color: #1A1A1A;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}

.ci-copy {
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  line-height: 1.72;
  color: #6B7280;
  margin: 0 0 28px;
}

.ci-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}

.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.ci-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(240, 209, 196, 0.40);
  color: #7e4c35;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.ci-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #D97706;
  margin: 0 0 4px;
}

.ci-value {
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  color: #374151;
  line-height: 1.65;
  text-decoration: none;
  display: block;
}

a.ci-value:hover {
  color: #D97706;
}

.ci-image-wrap {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/9;
  margin-top: auto;
}

.ci-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: contrast(1.04) saturate(0.88) brightness(1.01);
}

/* ── MAP + HEADQUARTERS ── */
.contact-map-section {
  background:
    radial-gradient(ellipse 70% 40% at 15% 10%, rgba(255, 238, 210, 0.35), transparent),
    #EAE7E3;
  padding: 96px 0 112px;
}

.contact-map-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-map-embed {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
}

.contact-map-embed iframe {
  width: 100%;
  height: 480px;
  border: 0;
  display: block;
}

.contact-hq-right {
  display: flex;
  flex-direction: column;
}

.contact-hq-heading {
  font-size: clamp(1.8rem, 2.4vw, 2.4rem);
  font-weight: 800;
  color: #1A1A1A;
  letter-spacing: -0.025em;
  margin: 0 0 16px;
}

.contact-hq-copy {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  line-height: 1.72;
  color: #4B5563;
  margin: 0 0 36px;
}

.contact-hq-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-hq-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 1.75rem 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.hq-flag {
  font-size: 1.8rem;
  margin-bottom: 10px;
  display: block;
}

.hq-country {
  font-size: 1rem;
  font-weight: 700;
  color: #1A1A1A;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

.hq-address {
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  line-height: 1.65;
  color: #6B7280;
  margin: 0;
}

/* ── PAGE CTA (same values as about-cta) ── */
.page-cta-section {
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.page-cta-overlay {
  background: rgba(60, 20, 10, 0.72);
  padding: 120px 2rem;
  text-align: center;
  position: relative;
}

.page-cta-deco {
  position: absolute;
  width: 340px;
  height: 340px;
  border: 2px solid rgba(255, 185, 60, 0.18);
  border-radius: 20px;
  transform: rotate(22deg);
  top: 50%;
  left: 50%;
  margin-top: -170px;
  margin-left: -380px;
  pointer-events: none;
}

.page-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.page-cta-heading {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 20px;
}

.page-cta-copy {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.72);
  max-width: 480px;
  margin: 0 auto 36px;
}

.page-cta-btn {
  display: inline-block;
  border: 1.5px solid rgba(255, 255, 255, 0.65);
  color: #ffffff;
  background: transparent;
  border-radius: 9999px;
  padding: 0.9rem 2.8rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.page-cta-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.9);
  color: #ffffff;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .contact-hero-card {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 40px;
  }

  .contact-hero-collage {
    height: 340px;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-map-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-hero-dots {
    display: none;
  }
}

@media (max-width: 768px) {
  .contact-hero-section {
    padding: 24px 0 40px;
  }

  .contact-hero-inner {
    padding: 0 1rem;
  }

  .contact-hero-card {
    padding: 28px 24px;
    border-radius: 20px;
  }

  .contact-hero-heading {
    font-size: clamp(2rem, 7vw, 2.6rem);
  }

  .contact-hero-divider {
    width: 160px;
  }

  .contact-section {
    padding: 56px 0;
  }

  .contact-inner {
    padding: 0 1rem;
  }

  .contact-map-section {
    padding: 56px 0 64px;
  }

  .contact-map-inner {
    padding: 0 1rem;
  }

  .contact-map-embed iframe {
    height: 320px;
  }

  .page-cta-overlay {
    padding: 80px 1.5rem;
  }

  .page-cta-deco {
    display: none;
  }
}
