/* ════════════════════════════════════════════════════
   CONTACT PAGE STYLES  —  bob- namespace
   Append to pages.css
════════════════════════════════════════════════════ */

/* ══════════════════════════════════
   HERO BANNER
══════════════════════════════════ */
.bob-contact-hero {
  padding-top: calc(var(--nav-height) + var(--space-4xl));
  padding-bottom: 44px;
  background:
    linear-gradient(180deg,
      rgba(0, 0, 0, 0.80) 0%,
      rgba(20, 12, 0, 0.92) 100%);
  border-bottom: 1px solid rgba(251, 191, 36, 0.12);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Radial glow */
.bob-contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 90% at 50% 110%,
    rgba(251, 191, 36, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

/* Gold separator */
.bob-contact-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.6;
}

/* ══════════════════════════════════
   CONTACT SECTION BACKGROUND
══════════════════════════════════ */
.bob-contact-section {
  background: var(--color-bg-secondary);
  padding-bottom: 96px;
}

/* ══════════════════════════════════
   GRID LAYOUT
══════════════════════════════════ */
.bob-contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 52px;
  align-items: start;
}

/* ══════════════════════════════════
   FORM CARD
══════════════════════════════════ */
.bob-form-card {
  background: rgba(20, 12, 0, 0.65);
  border: 1px solid rgba(251, 191, 36, 0.18);
  border-radius: 20px;
  padding: 48px 44px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(251, 191, 36, 0.1);
}

/* Gold shimmer top edge */
.bob-form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.65;
}

/* Corner atmosphere glow */
.bob-form-card::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.05) 0%, transparent 65%);
  pointer-events: none;
}

/* ── Form title ── */
.bob-form-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.4px;
  margin-bottom: var(--space-xl);
  position: relative;
  z-index: 1;
}

.bob-form-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  margin-top: 10px;
}

/* ── Form groups ── */
.bob-form-group {
  margin-bottom: 20px;
  position: relative;
}

/* Side-by-side row for two fields */
.bob-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.bob-form-label {
  display: block;
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  opacity: 0.9;
}

.bob-form-required {
  color: var(--gold);
  opacity: 0.6;
  margin-left: 2px;
}

/* ── Inputs, selects, textarea ── */
.bob-form-input,
.bob-form-select,
.bob-form-textarea {
  width: 100%;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.40);
  border: 1px solid rgba(251, 191, 36, 0.22);
  border-radius: 10px;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: 0.3px;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition:
    border-color 0.28s ease,
    background   0.28s ease,
    box-shadow   0.28s ease;
}

.bob-form-input::placeholder,
.bob-form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.22);
  font-weight: 300;
}

.bob-form-input:hover:not(:focus),
.bob-form-select:hover:not(:focus),
.bob-form-textarea:hover:not(:focus) {
  border-color: rgba(251, 191, 36, 0.42);
}

.bob-form-input:focus,
.bob-form-select:focus,
.bob-form-textarea:focus {
  border-color: var(--gold);
  background: rgba(251, 191, 36, 0.05);
  box-shadow:
    0 0 0 3px rgba(251, 191, 36, 0.1),
    0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Custom select arrow */
.bob-form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='%23fbbf24' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.bob-form-select option {
  background: #1a0f00;
  color: #fff;
}

/* Date picker icon tint */
.bob-form-input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.65) sepia(1) saturate(3) hue-rotate(5deg);
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.bob-form-input[type="date"]::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
}

.bob-form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.7;
}

/* ── Submit button ── */
.bob-form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 36px;
  margin-top: 8px;
  background: linear-gradient(135deg, var(--gold), #c8860a);
  color: #000;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(251, 191, 36, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.bob-form-submit svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke: #000;
}

/* Shimmer sweep */
.bob-form-submit::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}

.bob-form-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(251, 191, 36, 0.50);
  filter: brightness(1.06);
}

.bob-form-submit:hover::after {
  left: 130%;
}

.bob-form-submit:active {
  transform: translateY(-1px);
}

/* ── Form feedback message ── */
.bob-form-message {
  display: none;
  padding: 14px 20px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  margin-top: 14px;
  text-align: center;
}

.bob-form-message.success {
  display: block;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #86efac;
}

.bob-form-message.error {
  display: block;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #fca5a5;
}

/* ══════════════════════════════════
   CONTACT INFO PANEL
══════════════════════════════════ */
.bob-contact-info {
  display: flex;
  flex-direction: column;
}

.bob-contact-info-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.4px;
  line-height: 1.15;
  margin-bottom: 10px;
}

.bob-contact-info-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  margin-top: 12px;
}

.bob-contact-info-desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.85;
  font-weight: 300;
  margin-top: 18px;
  margin-bottom: 32px;
  max-width: 460px;
}

/* ── Detail cards ── */
.bob-contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.bob-contact-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  background: rgba(20, 12, 0, 0.60);
  border: 1px solid rgba(251, 191, 36, 0.15);
  border-radius: 14px;
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.28s ease,
    background   0.28s ease,
    transform    0.28s ease,
    box-shadow   0.28s ease;
}

/* Left reveal bar on hover */
.bob-contact-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.28s ease;
}

.bob-contact-item:hover {
  border-color: rgba(251, 191, 36, 0.38);
  background: rgba(251, 191, 36, 0.04);
  transform: translateX(5px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

.bob-contact-item:hover::before {
  opacity: 1;
}

/* Icon box */
.bob-contact-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.28);
  border-radius: 10px;
  transition: background 0.28s ease, box-shadow 0.28s ease;
}

.bob-contact-item:hover .bob-contact-icon {
  background: rgba(251, 191, 36, 0.18);
  box-shadow: 0 0 18px rgba(251, 191, 36, 0.22);
}

.bob-contact-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
}

/* Item text */
.bob-contact-item-text h4 {
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
  line-height: 1;
}

.bob-contact-item-text p,
.bob-contact-item-text a {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.2s ease;
}

.bob-contact-item-text a:hover {
  color: var(--gold);
}

/* ── Map ── */
.bob-contact-map {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(251, 191, 36, 0.18);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
  position: relative;
}

.bob-contact-map::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  z-index: 1;
  opacity: 0.55;
}

.bob-contact-map iframe {
  display: block;
  width: 100%;
  height: 250px;
  border: none;
  filter: grayscale(0.25) brightness(0.82) contrast(1.05) saturate(0.9);
  transition: filter 0.5s ease;
}

.bob-contact-map:hover iframe {
  filter: grayscale(0) brightness(0.92) contrast(1.05);
}



/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1024px) {
  .bob-contact-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .bob-form-card {
    padding: 40px 36px;
  }
}

@media (max-width: 768px) {
  .bob-form-card {
    padding: 32px 22px;
    border-radius: 16px;
  }

  .bob-form-row {
    grid-template-columns: 1fr;
  }

  .bob-contact-map iframe {
    height: 210px;
  }

  .bob-contact-info-desc {
    margin-bottom: 24px;
  }
}

@media (max-width: 480px) {
  .bob-form-card {
    padding: 26px 18px;
  }

  .bob-contact-item {
    padding: 14px 16px;
    gap: 14px;
  }

  .bob-contact-icon {
    width: 40px;
    height: 40px;
  }

  .bob-contact-icon svg {
    width: 17px;
    height: 17px;
  }
}