/* ============================================
   BULAND — CONTACT PAGE STYLES
============================================ */

/* HERO */
.contact-hero {
  min-height: 45vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  padding-top: 70px;
  background: #030006;
}
.contact-hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.02) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,0.02) 1px,transparent 1px);
  background-size: 60px 60px;
}
/* Large centered بلند as focal point */
.contact-hero-wordmark {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(160px, 25vw, 320px);
  font-family: var(--font-display);
  font-weight: 700;
  color: rgba(92,15,107,0.08);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
/* Subtle radial glow */
.contact-hero-glow {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(92,15,107,0.12) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}
.contact-hero-content {
  position: relative; z-index: 2;
  padding: 0 44px 56px;
  opacity: 0; transform: translateY(24px);
  animation: heroReveal 0.8s 0.2s ease forwards;
}
.contact-hero-h {
  font-family: var(--font-display);
  font-size: clamp(36px,5vw,60px);
  font-weight: 500; color: var(--white);
  line-height: 1.05; letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.contact-hero-h em { color: var(--purple-light); font-style: normal; }
.contact-hero-sub {
  font-size: 15px; color: var(--white-60);
  max-width: 480px; line-height: 1.75;
}

/* MAIN LAYOUT */
.contact-main {
  padding: 80px 44px;
  background: var(--black-base);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
}

/* FORM */
.contact-form-wrap {}
.form-title {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 500;
  color: var(--white);
  margin-bottom: 6px;
}
.form-sub { font-size: 14px; color: var(--white-40); margin-bottom: 32px; line-height: 1.65; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 18px; }
.form-group.full { grid-column: 1 / -1; }
.form-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-40);
  margin-bottom: 8px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--black-card);
  border: 0.5px solid rgba(155,48,180,0.15);
  border-radius: 10px;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.2); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: rgba(155,48,180,0.5);
  box-shadow: 0 0 0 3px rgba(92,15,107,0.15);
}
.form-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='rgba(155,48,180,0.6)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; cursor: pointer; }
.form-select option { background: #1A0828; color: var(--white); }
.form-textarea { resize: vertical; min-height: 120px; line-height: 1.6; }

.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--purple-deep);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px; font-weight: 500;
  padding: 14px 32px;
  border-radius: 28px;
  border: none; cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  margin-top: 8px;
  width: 100%;
  justify-content: center;
}
.form-submit:hover {
  background: var(--purple-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(92,15,107,0.4);
}
.form-note { font-size: 11px; color: var(--white-40); margin-top: 10px; text-align: center; line-height: 1.6; }

/* Success state */
.form-success {
  display: none;
  background: rgba(92,15,107,0.15);
  border: 0.5px solid rgba(155,48,180,0.3);
  border-radius: 14px;
  padding: 32px 28px;
  text-align: center;
}
.form-success.show { display: block; }
.form-success-icon { font-size: 40px; margin-bottom: 14px; display: block; }
.form-success-title { font-family: var(--font-display); font-size: 20px; font-weight: 500; color: var(--white); margin-bottom: 8px; }
.form-success-body { font-size: 14px; color: var(--white-40); line-height: 1.7; }

/* CONTACT INFO SIDEBAR */
.contact-info {}
.info-card {
  background: var(--black-card);
  border: 0.5px solid rgba(155,48,180,0.12);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 14px;
}
.info-card-header {
  background: linear-gradient(135deg, #3D0A50, #1A0828);
  padding: 20px 22px;
  position: relative;
  overflow: hidden;
}
.info-card-header-deco {
  position: absolute; right: -10px; top: -20px;
  font-size: 100px; color: rgba(255,255,255,0.04);
  line-height: 1; pointer-events: none;
  font-family: Georgia, serif;
}
.info-card-title {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 500;
  color: var(--white);
  position: relative; z-index: 1;
  margin-bottom: 4px;
}
.info-card-sub { font-size: 12px; color: rgba(255,255,255,0.45); position: relative; z-index: 1; }
.info-card-body { padding: 6px 0; }
.info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  border-bottom: 0.5px solid var(--white-05);
  text-decoration: none;
  transition: background 0.2s ease;
}
.info-item:last-child { border-bottom: none; }
.info-item:hover { background: rgba(92,15,107,0.08); }
.info-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(92,15,107,0.2);
  border: 0.5px solid rgba(155,48,180,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.info-label { font-size: 11px; color: var(--white-40); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 2px; }
.info-value { font-size: 14px; color: var(--white); font-weight: 500; }

/* SOCIALS */
.socials-card {
  background: var(--black-card);
  border: 0.5px solid rgba(155,48,180,0.12);
  border-radius: 16px;
  padding: 22px;
  margin-bottom: 14px;
}
.socials-title { font-family: var(--font-display); font-size: 15px; font-weight: 500; color: var(--white); margin-bottom: 16px; }
.socials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.social-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--black-base);
  border: 0.5px solid rgba(155,48,180,0.1);
  border-radius: 10px;
  padding: 10px 12px;
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.social-item:hover { border-color: rgba(155,48,180,0.35); transform: translateY(-2px); }
.social-item-icon { font-size: 18px; flex-shrink: 0; }
.social-item-name { font-size: 12px; font-weight: 500; color: var(--white); }
.social-item-handle { font-size: 11px; color: var(--white-40); }

/* ENQUIRY TYPES */
.enquiry-types {
  background: var(--black-deep);
  padding: 80px 44px;
}
.eq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 40px;
}
.eq-card {
  background: var(--black-card);
  border: 0.5px solid rgba(155,48,180,0.1);
  border-radius: 14px;
  padding: 24px 22px;
  transition: border-color 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}
.eq-card:hover { border-color: rgba(155,48,180,0.35); transform: translateY(-3px); }
.eq-icon { font-size: 28px; margin-bottom: 14px; display: block; }
.eq-title { font-family: var(--font-display); font-size: 16px; font-weight: 500; color: var(--white); margin-bottom: 8px; }
.eq-desc { font-size: 13px; color: var(--white-40); line-height: 1.65; margin-bottom: 14px; }
.eq-link { font-size: 12px; color: var(--purple-light); text-decoration: none; display: inline-flex; align-items: center; gap: 4px; }
.eq-link:hover { color: var(--white); }

/* ============================================
   RESPONSIVE — CONTACT PAGE
============================================ */

@media (max-width: 768px) {
  .contact-hero-content { padding: 0 20px 44px; }
  .contact-hero-h { font-size: 30px; }
  .contact-hero-sub { font-size: 14px; }
  .contact-hero-wordmark { font-size: 120px; }

  .enquiry-types { padding: 60px 20px; }
  .eq-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .eq-title { font-size: 14px; }
  .eq-desc { font-size: 12px; }

  .contact-main { grid-template-columns: 1fr; gap: 32px; padding: 60px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .form-title { font-size: 22px; }

  .socials-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .contact-hero-h { font-size: 26px; }
  .contact-hero-wordmark { font-size: 90px; }
  .eq-grid { grid-template-columns: 1fr; }
  .socials-grid { grid-template-columns: 1fr; }
  .form-submit { font-size: 13px; padding: 12px 20px; }
  .info-item { gap: 10px; }
  .info-value { font-size: 13px; }
}
