/* ═══════════════════════════════════════════
   CONTACT US — page-specific styles
   Prefix: cu-  (avoids collisions)
   ═══════════════════════════════════════════ */

:root {
  --cu-navy: #1A4B89;
  --cu-dk: #0C1E38;
  --cu-amber: #FBA504;
  --cu-amber-bg: #FEF3C7;
  --cu-amber-deep: #92400E;
  --cu-text: #1C1C1C;
  --cu-muted: #6b7280;
  --cu-border: #e5e7eb;
  --cu-soft: #f9fafb;
  --cu-green: #16a34a;
  --cu-serif: 'Cormorant Garamond', Georgia, serif;
  --cu-sans: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ── HERO ── */
.cu-hero {
  position: relative;
  padding: 56px 0 0;
  overflow: visible;
  min-height: 380px;
}
.cu-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1544735716-392fe2489ffa?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center 60%;
  border-radius: 0 0 0 0;
  overflow: hidden;
}
.cu-hero-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,30,56,.92) 0%, rgba(12,30,56,.82) 60%, rgba(12,30,56,.7) 100%);
}
.cu-hero-in {
  position: relative;
  z-index: 1;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 36px;
  text-align: center;
}

/* Breadcrumbs */
.cu-crumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,.35);
  margin-bottom: 16px;
}
.cu-crumbs a {
  color: rgba(255,255,255,.35);
  text-decoration: none;
  transition: color .15s;
}
.cu-crumbs a:hover { color: rgba(255,255,255,.8); }
.cu-sep { color: rgba(255,255,255,.15); }

/* Hero title */
.cu-hero-title {
  font-family: var(--cu-serif);
  font-size: 52px;
  font-weight: 600;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 10px;
}
.cu-hero-title em {
  font-style: italic;
  color: #FCD34D;
}
.cu-hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,.5);
  font-weight: 300;
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

/* Contact cards strip */
.cu-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
  transform: translateY(36px);
  position: relative;
  z-index: 2;
}
.cu-card {
  background: #fff;
  border: 1px solid var(--cu-border);
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
  transition: border-color .18s, box-shadow .18s, transform .2s;
}
.cu-card:hover {
  border-color: var(--cu-amber);
  box-shadow: 0 12px 40px rgba(0,0,0,.14);
  transform: translateY(-3px);
}
.cu-card-ico {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--cu-amber-bg);
  border: 1px solid #fde68a;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.cu-card-ico svg {
  width: 20px;
  height: 20px;
  stroke: var(--cu-amber);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cu-card-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cu-muted);
  margin-bottom: 6px;
}
.cu-card-val {
  font-size: 14px;
  font-weight: 600;
  color: var(--cu-text);
  line-height: 1.45;
}
.cu-card-val a {
  color: var(--cu-navy);
  transition: color .15s;
}
.cu-card-val a:hover { color: var(--cu-amber); }

/* ── MAIN GRID ── */
.cu-page {
  max-width: 1380px;
  margin: 0 auto;
  padding: 80px 36px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* ── CONTACT FORM ── */
.cu-form-card {
  background: #fff;
  border: 1px solid var(--cu-border);
  border-radius: 18px;
  padding: 36px;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
}
.cu-form-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--cu-amber);
  margin-bottom: 6px;
  display: block;
}
.cu-form-title {
  font-family: var(--cu-serif);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 6px;
}
.cu-form-title em {
  font-style: italic;
  color: var(--cu-amber);
}
.cu-form-sub {
  font-size: 14px;
  color: var(--cu-muted);
  font-weight: 300;
  margin-bottom: 28px;
  line-height: 1.6;
}
.cu-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.cu-form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.cu-form-group.cu-full { grid-column: span 2; }
.cu-form-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cu-muted);
}
.cu-form-input {
  border: 1.5px solid var(--cu-border);
  border-radius: 9px;
  padding: 11px 14px;
  font-family: var(--cu-sans);
  font-size: 14px;
  color: var(--cu-text);
  outline: none;
  transition: border-color .15s;
  background: #fff;
  width: 100%;
  resize: vertical;
}
.cu-form-input:focus { border-color: var(--cu-navy); }
.cu-form-input::placeholder { color: #c4c9d1; }
select.cu-form-input {
  display: block !important;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236b7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
/* Hide any Nice Select replacements inside our form */
.cu-form-card .nice-select { display: none !important; }
textarea.cu-form-input { min-height: 120px; }

.cu-form-submit {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--cu-amber);
  color: #fff;
  padding: 13px 28px;
  border-radius: 9px;
  font-size: 15px;
  font-weight: 700;
  transition: background .15s;
  margin-top: 6px;
  width: 100%;
  justify-content: center;
  border: none;
  cursor: pointer;
  font-family: var(--cu-sans);
}
.cu-form-submit:hover { background: #e29400; }
.cu-form-submit svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cu-form-submit .fa-spinner { margin-left: 8px; }

/* Form success state */
.cu-form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  gap: 12px;
}
.cu-form-success.cu-show { display: flex; }
.cu-success-ico {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #dcfce7;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cu-success-title {
  font-family: var(--cu-serif);
  font-size: 24px;
  font-weight: 600;
}
.cu-success-title em {
  font-style: italic;
  color: var(--cu-amber);
}
.cu-success-desc {
  font-size: 14px;
  color: var(--cu-muted);
  max-width: 320px;
}

/* Validation error */
.cu-form-card .form-mess {
  margin-top: 10px;
  font-size: 13px;
}
.cu-form-card .form-mess.text-danger { color: #dc2626; }
.cu-form-card .form-mess.text-success { color: var(--cu-green); }

/* Quick contact buttons */
.cu-quick-btns {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.cu-qb {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 600;
  transition: all .15s;
  text-decoration: none;
}
.cu-qb svg { width: 14px; height: 14px; flex-shrink: 0; }
.cu-qb-wa { background: #dcfce7; color: #16a34a; border: 1px solid #bbf7d0; }
.cu-qb-wa:hover { background: #bbf7d0; color: #16a34a; }
.cu-qb-call { background: #eff6ff; color: var(--cu-navy); border: 1px solid #bfdbfe; }
.cu-qb-call:hover { background: #dbeafe; color: var(--cu-navy); }
.cu-qb-mail { background: var(--cu-amber-bg); color: var(--cu-amber-deep); border: 1px solid #fde68a; }
.cu-qb-mail:hover { background: #fde68a; color: var(--cu-amber-deep); }

/* ── MAP + BRANCHES ── */
.cu-right-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cu-map-frame {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--cu-border);
  height: 320px;
}
.cu-map-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Branch offices */
.cu-branches-title {
  font-family: var(--cu-serif);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
}
.cu-branches-title em {
  font-style: italic;
  color: var(--cu-amber);
}
.cu-branches {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.cu-branch {
  border: 1px solid var(--cu-border);
  border-radius: 14px;
  padding: 18px;
  background: #fff;
  transition: border-color .18s, box-shadow .18s;
  position: relative;
  overflow: hidden;
}
.cu-branch:hover {
  border-color: #d1d5db;
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
}
.cu-branch-flag {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 24px;
  line-height: 1;
}
.cu-branch-country {
  font-size: 15px;
  font-weight: 700;
  color: var(--cu-text);
  margin-bottom: 10px;
}
.cu-branch-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12.5px;
  color: var(--cu-muted);
  line-height: 1.5;
  margin-bottom: 7px;
}
.cu-branch-row:last-child { margin-bottom: 0; }
.cu-branch-row svg {
  width: 12px;
  height: 12px;
  stroke: var(--cu-amber);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 2px;
}
.cu-branch-row a {
  color: var(--cu-navy);
  font-weight: 500;
  transition: color .15s;
}
.cu-branch-row a:hover { color: var(--cu-amber); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .cu-page { grid-template-columns: 1fr; }
  .cu-strip { grid-template-columns: 1fr; max-width: 400px; }
  .cu-hero { min-height: auto; }
}
@media (max-width: 600px) {
  .cu-hero-title { font-size: 38px; }
  .cu-hero-in { padding: 0 20px; }
  .cu-hero { padding: 40px 0 0; }
  .cu-hero-sub { font-size: 14px; margin-bottom: 24px; }
  .cu-branches { grid-template-columns: 1fr; }
  .cu-form-row { grid-template-columns: 1fr; }
  .cu-form-group.cu-full { grid-column: span 1; }
  .cu-quick-btns { flex-direction: column; }
  .cu-page { padding: 48px 20px 56px; gap: 32px; }
  .cu-form-card { padding: 24px 18px; }
  .cu-form-title { font-size: 24px; }
}
