.page-hero{
  position:relative;
  padding:140px 6vw 80px;
  overflow:hidden;
}
.ph-bg{
  position:absolute;inset:0;
  background-image:url('https://images.unsplash.com/photo-1605745341112-85968b19335b?w=1800&q=80');
  background-size:cover;background-position:center 40%;
  filter:brightness(.15) saturate(.4);
  transform:scale(1.04);transition:transform 8s ease-out;
}
.ph-bg.r{transform:scale(1)}
.ph-grad{position:absolute;inset:0;background:linear-gradient(to top,var(--navy) 0%,rgba(10,18,32,.6) 60%,rgba(10,18,32,.3) 100%)}
.ph-grad2{position:absolute;inset:0;background:linear-gradient(to right,var(--navy) 0%,transparent 60%)}
.ph-bar{position:absolute;top:0;left:0;width:4px;height:100%;background:linear-gradient(to bottom,var(--red),var(--gold))}
.ph-content{position:relative;z-index:2;max-width:700px}
.ph-eyebrow{display:inline-flex;align-items:center;gap:10px;font-family:var(--f-mono);font-size:10px;letter-spacing:.26em;text-transform:uppercase;color:#fff;margin-bottom:1.25rem}
.ph-eyebrow::before{content:'';display:block;width:22px;height:1px;background:var(--red)}
.ph-title{font-family:var(--f-disp);font-size:clamp(3rem,7vw,6.5rem);font-weight:700;line-height:.95;color:#ffffff;margin-bottom:1.25rem}
.ph-title em{font-style:italic;color:var(--gold)}
.ph-sub{font-size:1rem;font-weight:300;line-height:1.85;color:rgba(240,244,248,.6);max-width:480px}

/* ── STATUS TICKER ── */
.status-bar{
  background:var(--navy-m);
  border-bottom:1px solid var(--faint);
  padding:.6rem 4vw;
  display:flex;align-items:center;gap:2rem;flex-wrap:wrap;
}
.status-live{display:flex;align-items:center;gap:8px;font-family:var(--f-mono);font-size:10px;letter-spacing:.16em;text-transform:uppercase;color:rgba(240,244,248,.4)}
.status-dot{width:8px;height:8px;border-radius:50%;background:#22c864;box-shadow:0 0 0 0 rgba(34,200,100,.4);animation:ripple 2s ease-in-out infinite}
@keyframes ripple{0%{box-shadow:0 0 0 0 rgba(34,200,100,.4)}70%{box-shadow:0 0 0 8px rgba(34,200,100,0)}100%{box-shadow:0 0 0 0 rgba(34,200,100,0)}}
.status-live strong{color:#22c864}
.status-items{display:flex;gap:2rem;flex-wrap:wrap}
.status-item{font-family:var(--f-mono);font-size:10px;letter-spacing:.12em;text-transform:uppercase;color:rgba(240,244,248,.3)}
.status-item span{color:rgba(240,244,248,.6)}

/* ── MAIN CONTACT SECTION ── */
.contact-main{
  display:grid;
  grid-template-columns:1fr 1fr;
  min-height:calc(100vh - 62px);
}

/* LEFT — info panel */
.contact-info{
  background:var(--navy-m);
  padding:5rem 5vw 5rem 6vw;
  position:relative;
  overflow:hidden;
  border-right:1px solid var(--faint);
}
.contact-info::before{
  content:'';position:absolute;inset:0;
  background-image:url('https://images.unsplash.com/photo-1533073526757-2c8ca1df9f1c?w=1000&q=80');
  background-size:cover;background-position:center;
  opacity:.04;pointer-events:none;
}
/* diagonal accent stripe */
.contact-info::after{
  content:'';position:absolute;top:0;right:-40px;
  width:80px;height:100%;
  background:linear-gradient(to bottom right,transparent 49%,var(--faint) 50%);
  pointer-events:none;
}
.ci-label{display:inline-flex;align-items:center;gap:10px;font-family:var(--f-mono);font-size:10px;letter-spacing:.26em;text-transform:uppercase;color:var(--red);margin-bottom:1rem}
.ci-label::before{content:'';display:block;width:20px;height:1px;background:var(--red)}
.ci-title{font-family:var(--f-disp);font-size:clamp(2rem,3.5vw,3.2rem);font-weight:700;line-height:1.05;color:var(--white);margin-bottom:1.5rem}
.ci-title em{font-style:italic;color:var(--gold)}
.ci-intro{font-size:.9rem;font-weight:300;line-height:1.9;color:var(--fog);max-width:400px;margin-bottom:3rem}

/* contact detail blocks */
.ci-details{display:flex;flex-direction:column;gap:0}
.ci-detail{
  display:flex;gap:1.25rem;align-items:flex-start;
  padding:1.25rem 0;
  border-bottom:1px solid var(--faint);
  transition:background .2s;
}
.ci-detail:first-child{border-top:1px solid var(--faint)}
.ci-icon{
  flex-shrink:0;width:40px;height:40px;
  background:rgba(137,5,5,.12);
  border:1px solid rgba(137,5,5,.2);
  display:flex;align-items:center;justify-content:center;
  transition:background .2s,border-color .2s;
}
.ci-detail:hover .ci-icon{background:rgba(137,5,5,.2);border-color:var(--red)}
.ci-icon svg{width:17px;height:17px;stroke:var(--red);fill:none;stroke-width:1.75;stroke-linecap:round;stroke-linejoin:round}
.ci-text h4{font-size:.82rem;font-weight:600;letter-spacing:.08em;text-transform:uppercase;color:rgba(240,244,248,.35);margin-bottom:.3rem}
.ci-text p,.ci-text a{font-size:.9rem;font-weight:400;color:var(--smoke);text-decoration:none;line-height:1.6}
.ci-text a:hover{color:var(--gold)}
.ci-text .ci-sub{font-size:.78rem;font-weight:300;color:var(--fog);margin-top:.15rem}

/* office cards */
.ci-offices{display:grid;grid-template-columns:1fr 1fr;gap:1px;background:var(--faint);margin-top:3rem}
.ci-office{background:var(--navy-m);padding:1.25rem 1.25rem;transition:background .2s}
.ci-office:hover{background:var(--navy-l)}
.co-city{font-family:var(--f-disp);font-size:1.15rem;font-weight:600;color:var(--white);margin-bottom:.25rem}
.co-addr{font-size:.78rem;font-weight:300;color:var(--fog);line-height:1.65}
.co-tag{display:inline-block;font-family:var(--f-mono);font-size:8px;letter-spacing:.14em;text-transform:uppercase;padding:2px 7px;background:rgba(137,5,5,.15);color:var(--red);border:1px solid rgba(137,5,5,.2);margin-top:.5rem}

/* RIGHT — form panel */
.contact-form-wrap{
  background:var(--white);
  padding:5rem 5vw 5rem 5vw;
  display:flex;flex-direction:column;justify-content:center;
}
.cf-label{display:inline-flex;align-items:center;gap:10px;font-family:var(--f-mono);font-size:10px;letter-spacing:.26em;text-transform:uppercase;color:var(--red);margin-bottom:.75rem}
.cf-label::before{content:'';display:block;width:20px;height:1px;background:var(--red)}
.cf-title{font-family:var(--f-disp);font-size:clamp(1.8rem,3vw,2.8rem);font-weight:700;line-height:1.05;color:var(--navy);margin-bottom:.6rem}
.cf-sub{font-size:.85rem;font-weight:300;color:#6b8099;line-height:1.75;margin-bottom:2.5rem;max-width:460px}

/* enquiry type selector */
.enq-types{display:flex;flex-wrap:wrap;gap:.5rem;margin-bottom:2rem}
.enq-type{
  display:inline-flex;align-items:center;gap:6px;
  padding:.4rem 1rem;
  background:transparent;
  border:1px solid #c8d8e8;
  font-family:var(--f-body);font-size:12px;font-weight:600;
  letter-spacing:.04em;text-transform:uppercase;
  color:#6b8099;cursor:pointer;border-radius:2px;
  transition:all .2s;
  pointer-events:auto!important;opacity:1!important;
}
.enq-type:hover{border-color:var(--red);color:var(--red)}
.enq-type.sel{background:var(--red);border-color:var(--red);color:#fff}

/* form fields */
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:1.25rem}
.form-group{display:flex;flex-direction:column;gap:.4rem}
.form-group.full{grid-column:1/-1}
.form-group label{font-size:.72rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:#4a6580}
.form-group input,
.form-group select,
.form-group textarea{
  background:#f4f7fb;
  border:1px solid #dde8f0;
  padding:.75rem 1rem;
  font-family:var(--f-body);font-size:.9rem;font-weight:400;color:var(--navy);
  outline:none;transition:border-color .2s,box-shadow .2s;
  border-radius:2px;
  appearance:none;-webkit-appearance:none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{border-color:var(--red);box-shadow:0 0 0 3px rgba(137,5,5,.08)}
.form-group input::placeholder,
.form-group textarea::placeholder{color:#aabccc}
.form-group textarea{resize:vertical;min-height:120px}
.form-group select{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234a6580' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 1rem center}

/* file upload zone */
.upload-zone{
  grid-column:1/-1;
  border:1.5px dashed #dde8f0;
  padding:1.5rem;
  display:flex;align-items:center;gap:1rem;
  cursor:pointer;transition:border-color .2s,background .2s;
  border-radius:2px;
}
.upload-zone:hover{border-color:var(--red);background:rgba(137,5,5,.02)}
.uz-icon{width:36px;height:36px;background:#f4f7fb;border:1px solid #dde8f0;display:flex;align-items:center;justify-content:center;flex-shrink:0;border-radius:2px}
.uz-icon svg{width:16px;height:16px;stroke:#4a6580;fill:none;stroke-width:1.75;stroke-linecap:round;stroke-linejoin:round}
.uz-text p{font-size:.82rem;font-weight:500;color:#4a6580}
.uz-text span{font-size:.72rem;color:#aabccc}

/* submit row */
.form-submit-row{display:flex;align-items:center;justify-content:space-between;gap:1rem;flex-wrap:wrap;margin-top:.5rem}
.form-note{font-size:.72rem;color:#8baabb;line-height:1.5;max-width:260px}
.btn-submit{
  display:inline-flex;align-items:center;gap:8px;
  padding:.9rem 2.25rem;
  background:var(--red);color:#fff;
  font-family:var(--f-body);font-size:.875rem;font-weight:700;
  letter-spacing:.06em;text-transform:uppercase;
  border:none;cursor:pointer;border-radius:2px;
  transition:background .2s,transform .2s;
  pointer-events:auto!important;opacity:1!important;
}
.btn-submit:hover{background:var(--red-l);transform:translateY(-2px)}
.btn-submit svg{transition:transform .2s}
.btn-submit:hover svg{transform:translateX(4px)}

/* SUCCESS STATE */
.form-success{
  display:none;flex-direction:column;align-items:center;justify-content:center;
  text-align:center;padding:3rem;gap:1.25rem;
}
.success-icon{width:64px;height:64px;background:rgba(34,200,100,.1);border:1px solid rgba(34,200,100,.25);border-radius:50%;display:flex;align-items:center;justify-content:center}
.success-icon svg{width:28px;height:28px;stroke:#22c864;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.success-title{font-family:var(--f-disp);font-size:2rem;font-weight:700;color:var(--navy)}
.success-sub{font-size:.9rem;color:#6b8099;line-height:1.7;max-width:360px}

/* response time badge */
.response-badge{
  display:inline-flex;align-items:center;gap:8px;
  background:rgba(201,168,76,.08);
  border:1px solid rgba(201,168,76,.2);
  padding:.5rem 1rem;border-radius:2px;
  font-family:var(--f-mono);font-size:10px;letter-spacing:.14em;
  text-transform:uppercase;color:var(--fog);
  margin-top:2.5rem;align-self:flex-start;
}
.response-badge::before{content:'';width:6px;height:6px;border-radius:50%;background:var(--gold);box-shadow:0 0 6px 2px rgba(201,168,76,.25)}

/* ── MAP / BOTTOM STRIP ── */
.bottom-strip{
  display:grid;grid-template-columns:1fr 1fr;
  border-top:1px solid var(--faint);
}
.map-panel{background:#0c1928;min-height:320px;position:relative;overflow:hidden}
.map-panel iframe{width:100%;height:100%;border:none;filter:invert(.9) hue-rotate(180deg) saturate(.5) brightness(.8);opacity:.8}
.map-overlay{position:absolute;inset:0;pointer-events:none;background:linear-gradient(to right,rgba(10,18,32,.4) 0%,transparent 40%)}
.social-panel{background:var(--navy-m);padding:3.5rem 4vw;display:flex;flex-direction:column;justify-content:center}
.sp-label{font-family:var(--f-mono);font-size:10px;letter-spacing:.26em;text-transform:uppercase;color:var(--fog);margin-bottom:1.5rem}
.sp-title{font-family:var(--f-disp);font-size:1.8rem;font-weight:700;color:var(--white);margin-bottom:.5rem}
.sp-title em{font-style:italic;color:var(--gold)}
.sp-sub{font-size:.85rem;font-weight:300;color:var(--fog);line-height:1.75;margin-bottom:2rem}
.social-links{display:flex;flex-direction:column;gap:.6rem}
.social-link{
  display:flex;align-items:center;gap:1rem;
  padding:.9rem 1.25rem;
  background:var(--faint);
  border:1px solid rgba(240,244,248,.06);
  text-decoration:none;
  transition:background .2s,border-color .2s;
}
.social-link:hover{background:rgba(137,5,5,.12);border-color:rgba(137,5,5,.2)}
.sl-icon{width:36px;height:36px;background:rgba(137,5,5,.15);display:flex;align-items:center;justify-content:center;flex-shrink:0}
.sl-icon svg{width:17px;height:17px;stroke:var(--red);fill:none;stroke-width:1.75;stroke-linecap:round;stroke-linejoin:round}
.sl-info h5{font-size:.82rem;font-weight:600;color:var(--white)}
.sl-info span{font-family:var(--f-mono);font-size:.72rem;color:var(--fog)}
.sl-arr{margin-left:auto;color:rgba(240,244,248,.2);font-size:14px;transition:color .2s,transform .2s}
.social-link:hover .sl-arr{color:var(--red);transform:translateX(4px)}

/* emergency row */
.emergency-row{
  background:var(--red);
  padding:2rem 6vw;
  display:flex;align-items:center;justify-content:space-between;
  gap:2rem;flex-wrap:wrap;
}
.er-text h4{font-family:var(--f-disp);font-size:1.5rem;font-weight:700;color:#fff}
.er-text p{font-size:.85rem;font-weight:300;color:rgba(255,255,255,.75);margin-top:.25rem}
.er-num{font-family:var(--f-disp);font-size:2rem;font-weight:700;color:#fff;text-decoration:none;display:flex;align-items:center;gap:.75rem;white-space:nowrap}
.er-num:hover{color:rgba(255,255,255,.85)}
.er-num-icon{width:44px;height:44px;background:rgba(255,255,255,.15);display:flex;align-items:center;justify-content:center;flex-shrink:0}
.er-num-icon svg{width:20px;height:20px;stroke:#fff;fill:none;stroke-width:1.75;stroke-linecap:round;stroke-linejoin:round}
