/* ============================================================
   KEMITE GLOBAL GROUP — Contact Page
   style/contact.css
   ============================================================ */
@import url('shared.css');

/* ── PAGE HERO ── */
.page-hero-bg {
  background-image: url('https://kemiteglobalgroup.com/images/galery/g2.jpeg');
}

/* ── CONTACT MAIN SECTION ── */
.contact-main {
  background: var(--dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: start;
}

/* ── CONTACT INFO ── */
.contact-intro {
  font-size: .86rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 36px;
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 32px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(201,168,76,.1);
}

.info-item:first-child {
  border-top: 1px solid rgba(201,168,76,.1);
}

.info-icon {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(201,168,76,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  transition: background .3s;
}

.info-item:hover .info-icon {
  background: rgba(201,168,76,.1);
}

.info-icon .material-icons {
  font-size: 20px;
}

.info-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
}

.info-value {
  font-size: .86rem;
  color: var(--text-light);
  line-height: 1.65;
}

.info-value a {
  color: var(--text-light);
  text-decoration: none;
  transition: color .3s;
}

.info-value a:hover {
  color: var(--gold);
}

.contact-socials {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

/* ── MAP ── */
.contact-map-wrap {
  position: relative;
}

.map-frame {
  width: 100%;
  height: 460px;
  border: 1px solid rgba(201,168,76,.2);
  overflow: hidden;
  position: relative;
}

.map-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 3px solid transparent;
  z-index: 1;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(201,168,76,.15);
}

.map-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--gold);
  color: #0a0a0f;
  font-family: 'Rajdhani', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 9px 18px;
  margin-top: 0;
  position: absolute;
  bottom: 0;
  left: 0;
}

.map-badge .material-icons {
  font-size: 15px;
}

/* ── GOLD DIVIDER ── */
.section-gold-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ── CONTACT FORM SECTION ── */
.contact-form-section {
  background: var(--dark-3);
  position: relative;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}

/* ── CHANNELS ── */
.form-channels {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.channel-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(201,168,76,.1);
}

.channel-item:first-child {
  border-top: 1px solid rgba(201,168,76,.1);
}

.channel-icon {
  width: 42px;
  height: 42px;
  background: rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.channel-icon .material-icons {
  font-size: 18px;
}

.channel-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3px;
}

.channel-value {
  font-size: .84rem;
  color: var(--text-muted);
}

/* ── FORM ── */
.contact-form-wrap {
  background: var(--dark-card);
  border: 1px solid rgba(201,168,76,.14);
  padding: 42px 38px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cf-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.cf-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.cf-field label {
  font-family: 'Rajdhani', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.cf-field input,
.cf-field select,
.cf-field textarea {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,168,76,.2);
  color: var(--text-light);
  font-family: 'Open Sans', sans-serif;
  font-size: .86rem;
  padding: 12px 14px;
  outline: none;
  transition: border-color .3s, background .3s;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,.04);
}

.cf-field input::placeholder,
.cf-field textarea::placeholder {
  color: rgba(136,136,170,.5);
  font-size: .82rem;
}

.cf-field select {
  background-color: rgba(19,19,30,.9);
  cursor: pointer;
}

.cf-field select option {
  background: var(--dark-card);
  color: var(--text-light);
}

.cf-field textarea {
  resize: vertical;
  min-height: 130px;
}

.cf-submit {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
  font-size: .9rem;
  padding: 15px 28px;
}

.cf-submit:disabled {
  opacity: .7;
  cursor: not-allowed;
  transform: none;
}

/* ── SUCCESS MESSAGE ── */
.cf-success {
  display: none;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.35);
  color: var(--gold);
  font-family: 'Rajdhani', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 12px 16px;
}

.cf-success.show {
  display: flex;
}

.cf-success .material-icons {
  font-size: 18px;
}

/* ── RESPONSIVE ── */

/* 1200px */
@media (max-width: 1200px) {
  .contact-grid { gap: 44px; }
  .form-grid { gap: 48px; }
}

/* 992px — tablets */
@media (max-width: 992px) {
  .page-hero { height: 280px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-grid { grid-template-columns: 1fr; gap: 40px; }
  .map-frame { height: 360px; }
  .contact-form-wrap { padding: 32px 28px; }
}

/* 768px — large phones */
@media (max-width: 768px) {
  .page-hero { height: 240px; }
  .contact-grid { gap: 36px; }
  .map-frame { height: 300px; }
  .cf-row-2 { grid-template-columns: 1fr; gap: 14px; }
  .contact-form-wrap { padding: 26px 20px; }
  .form-grid { gap: 32px; }
}

/* 480px — phones */
@media (max-width: 480px) {
  .page-hero { height: 210px; }
  .map-frame { height: 260px; }
  .contact-form-wrap { padding: 22px 14px; }
  .info-icon { width: 40px; height: 40px; }
  .info-icon .material-icons { font-size: 17px; }
  .channel-icon { width: 36px; height: 36px; }
}

/* 360px — very small phones */
@media (max-width: 360px) {
  .map-frame { height: 220px; }
  .contact-form-wrap { padding: 18px 12px; }
}
