/* ============================================================
   THE ROYAL ADVISOR — CONTACT PAGE CSS
   Shared styles are in style.css
   ============================================================ */

/* ===== PAGE HERO ===== */
.page-hero {
  position: relative; padding: 120px 8% 100px;
  background: radial-gradient(ellipse at 70% 40%, #120d00 0%, #080808 65%);
  overflow: hidden; text-align: center;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0; opacity: 0.04;
  background-image:
    linear-gradient(0deg, var(--gold) 1px, transparent 1px),
    linear-gradient(90deg, var(--gold) 1px, transparent 1px);
  background-size: 70px 70px;
}
.page-hero-mono {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  font-family: 'Cormorant Garamond', serif; font-size: 30vw; font-weight: 900;
  color: rgba(184,150,46,0.03); pointer-events: none; line-height: 1; white-space: nowrap;
}
.page-hero-lines {
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,150,46,0.4), transparent);
}
.breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 0.72rem; color: var(--grey); letter-spacing: 1.5px;
  text-transform: uppercase; margin-bottom: 20px;
  position: relative; z-index: 1;
  animation: fadeUp 0.8s ease 0.2s both;
}
.breadcrumb a { color: var(--gold); text-decoration: none; transition: opacity 0.3s; }
.breadcrumb a:hover { opacity: 0.7; }
.breadcrumb i { font-size: 0.55rem; color: var(--grey); }
.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 6rem); font-weight: 700;
  color: var(--white); line-height: 1.05;
  position: relative; z-index: 1;
  animation: fadeUp 0.8s ease 0.4s both;
}
.page-hero-title em { font-style: italic; color: var(--gold); }
.page-hero-sub {
  font-size: 1rem; color: var(--text); line-height: 1.9; font-weight: 300;
  max-width: 580px; margin: 20px auto 0;
  position: relative; z-index: 1;
  animation: fadeUp 0.8s ease 0.6s both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== SECTION DIVIDER ===== */
.sec-divider {
  height: 80px; display: flex; align-items: center; justify-content: center; position: relative;
}
.sec-divider::before {
  content: ''; position: absolute; left: 8%; right: 8%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,150,46,0.2), transparent);
}
.sec-divider-icon {
  background: var(--dark); padding: 0 20px; position: relative; z-index: 1;
  color: rgba(184,150,46,0.35); font-size: 1.1rem;
}

/* ===========================
   QUICK INFO STRIP
   =========================== */
.info-strip {
  background: var(--dark2);
  border-bottom: 1px solid rgba(184,150,46,0.1);
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.info-strip-item {
  padding: 36px 30px; display: flex; align-items: center; gap: 18px;
  border-right: 1px solid rgba(184,150,46,0.08); transition: background 0.3s;
  text-decoration: none;
}
.info-strip-item:last-child { border-right: none; }
.info-strip-item:hover { background: rgba(184,150,46,0.04); }
.info-strip-icon {
  width: 50px; height: 50px; flex-shrink: 0;
  background: var(--gold-faint); border: 1px solid rgba(184,150,46,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; color: var(--gold); transition: all 0.4s;
}
.info-strip-item:hover .info-strip-icon { background: var(--gold); color: var(--dark); }
.info-strip-label { font-size: 0.65rem; color: var(--grey); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 5px; }
.info-strip-value { font-size: 0.9rem; color: var(--white); font-weight: 600; }

/* ===========================
   MAIN CONTACT SECTION
   =========================== */
.contact-main { padding: 100px 8%; background: var(--dark); }
.contact-main-grid {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: start;
}

/* Left column info */
.contact-info-head { margin-bottom: 50px; }
.contact-info-head p { color: var(--text); font-size: 0.92rem; line-height: 1.9; font-weight: 300; margin-top: 16px; }

.contact-detail { display: flex; gap: 18px; margin-bottom: 28px; align-items: flex-start; }
.c-detail-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--gold-faint); border: 1px solid rgba(184,150,46,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.1rem; transition: all 0.4s;
}
.contact-detail:hover .c-detail-icon { background: var(--gold); color: var(--dark); }
.c-detail-label { font-size: 0.65rem; color: var(--grey); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 6px; }
.c-detail-value { color: var(--white); font-size: 0.92rem; line-height: 1.6; }
.c-detail-value a { color: var(--white); text-decoration: none; transition: color 0.3s; }
.c-detail-value a:hover { color: var(--gold); }

/* Social links */
.contact-socials-title { font-size: 0.68rem; color: var(--gold); letter-spacing: 3px; text-transform: uppercase; margin: 40px 0 16px; font-weight: 700; display: flex; align-items: center; gap: 12px; }
.contact-socials-title::before { content: ''; flex: 0 0 28px; height: 1px; background: var(--gold); }
.contact-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.c-social {
  width: 42px; height: 42px; border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--grey); font-size: 0.9rem; text-decoration: none; transition: all 0.3s;
}
.c-social:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); transform: translateY(-3px); }

/* WhatsApp box */
.wa-box {
  margin-top: 36px; background: linear-gradient(135deg, #0a1a0a, #051005);
  border: 1px solid rgba(37,211,102,0.2); padding: 24px 22px;
  display: flex; align-items: center; gap: 18px; transition: all 0.4s;
  text-decoration: none;
}
.wa-box:hover { border-color: rgba(37,211,102,0.5); transform: translateX(6px); }
.wa-box-icon {
  width: 48px; height: 48px; flex-shrink: 0; border-radius: 50%; background: #25d366;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.4rem;
  animation: waPulse 2.5s ease-in-out infinite;
}
@keyframes waPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
  50%      { box-shadow: 0 0 0 8px rgba(37,211,102,0); }
}
.wa-box-text span { display: block; font-size: 0.65rem; color: #25d366; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 4px; }
.wa-box-text p { font-size: 0.9rem; color: var(--white); font-weight: 600; }

/* ===========================
   CONTACT FORM CARD
   =========================== */
.form-card {
  background: var(--dark2); border: 1px solid rgba(184,150,46,0.1);
  padding: 50px 44px; position: relative; overflow: hidden;
}
.form-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.form-card-title {
  font-family: 'Cormorant Garamond', serif; font-size: 1.8rem;
  color: var(--white); font-weight: 700; margin-bottom: 8px;
}
.form-card-title em { color: var(--gold); font-style: italic; }
.form-card-sub { font-size: 0.84rem; color: var(--grey); margin-bottom: 36px; line-height: 1.7; }

/* Service selector tabs */
.service-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.svc-pill {
  padding: 7px 16px; border: 1px solid rgba(184,150,46,0.25);
  font-size: 0.68rem; color: var(--grey); letter-spacing: 1px; text-transform: uppercase;
  cursor: pointer; transition: all 0.3s; font-family: 'Raleway', sans-serif;
  background: none;
}
.svc-pill:hover, .svc-pill.active { background: var(--gold-faint); border-color: var(--gold); color: var(--gold); }

/* Form fields */
.cf { display: flex; flex-direction: column; gap: 16px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cf-group { position: relative; }
.cf-group label {
  display: block; font-size: 0.65rem; color: var(--gold);
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px;
}
.cf-group input,
.cf-group textarea,
.cf-group select {
  width: 100%; background: var(--dark3); border: 1px solid rgba(255,255,255,0.07);
  color: var(--white); padding: 14px 18px;
  font-family: 'Raleway', sans-serif; font-size: 0.88rem;
  outline: none; transition: all 0.3s;
  -webkit-appearance: none; resize: none;
}
.cf-group select option { background: var(--dark3); }
.cf-group input::placeholder,
.cf-group textarea::placeholder { color: rgba(255,255,255,0.2); }
.cf-group input:focus,
.cf-group textarea:focus,
.cf-group select:focus {
  border-color: rgba(184,150,46,0.6);
  background: var(--dark2);
  box-shadow: 0 0 0 3px rgba(184,150,46,0.06);
}
.cf-group textarea { height: 130px; }

/* Checkbox */
.cf-check { display: flex; align-items: flex-start; gap: 12px; }
.cf-check input[type="checkbox"] { width: 16px; height: 16px; flex-shrink: 0; accent-color: var(--gold); margin-top: 2px; cursor: pointer; }
.cf-check label { font-size: 0.8rem; color: var(--grey); line-height: 1.6; cursor: pointer; }
.cf-check label a { color: var(--gold); text-decoration: none; }
.cf-check label a:hover { text-decoration: underline; }

/* Submit */
.cf-submit {
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.cf-note { font-size: 0.75rem; color: var(--grey); display: flex; align-items: center; gap: 6px; }
.cf-note i { color: var(--gold); }

/* ===========================
   MAP SECTION
   =========================== */
.map-sec { padding: 0 8% 100px; background: var(--dark); }
.map-sec-header { margin-bottom: 40px; display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 20px; }
.map-frame {
  width: 100%; height: 420px; border: 1px solid rgba(184,150,46,0.15);
  background: var(--dark2); position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.map-placeholder {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(184,150,46,0.05) 0%, transparent 60%),
    linear-gradient(135deg, #0a0a0a 0%, #0f0d00 50%, #0a0a0a 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
}
.map-grid-lines {
  position: absolute; inset: 0; opacity: 0.04;
  background-image:
    linear-gradient(var(--gold) 1px, transparent 1px),
    linear-gradient(90deg, var(--gold) 1px, transparent 1px);
  background-size: 50px 50px;
}
.map-pin { font-size: 4rem; color: var(--gold); animation: pinBounce 2s ease-in-out infinite; position: relative; z-index: 1; }
@keyframes pinBounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.map-pin-pulse {
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(184,150,46,0.08); border: 1px solid rgba(184,150,46,0.2);
  display: flex; align-items: center; justify-content: center;
  animation: pulsRing 2s ease-in-out infinite; position: absolute; z-index: 0;
}
@keyframes pulsRing {
  0%  { transform: scale(1);   opacity: 1; }
  100%{ transform: scale(2.2); opacity: 0; }
}
.map-address {
  position: relative; z-index: 1; text-align: center;
  font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--white);
}
.map-address small { display: block; font-size: 0.7rem; color: var(--grey); letter-spacing: 2px; text-transform: uppercase; margin-top: 6px; font-family: 'Raleway', sans-serif; }
.map-badges {
  position: absolute; top: 24px; right: 24px; display: flex; flex-direction: column; gap: 10px;
}
.map-badge {
  background: var(--dark); border: 1px solid rgba(184,150,46,0.2);
  padding: 10px 16px; font-size: 0.72rem; color: var(--text);
  display: flex; align-items: center; gap: 8px;
}
.map-badge i { color: var(--gold); }

/* ===========================
   OFFICE HOURS SECTION
   =========================== */
.hours-sec { padding: 100px 8%; background: var(--dark2); }
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.hours-table { margin-top: 40px; }
.hours-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s;
}
.hours-row:hover { padding-left: 10px; }
.hours-row:last-child { border-bottom: none; }
.hours-day { font-size: 0.85rem; color: var(--text); font-weight: 500; display: flex; align-items: center; gap: 12px; }
.hours-day i { color: var(--gold); font-size: 0.7rem; }
.hours-time { font-size: 0.85rem; color: var(--gold); font-weight: 600; letter-spacing: 0.5px; }
.hours-status {
  font-size: 0.6rem; letter-spacing: 2px; text-transform: uppercase;
  padding: 3px 10px; border-radius: 2px;
}
.hours-status.open  { background: rgba(37,211,102,0.1); color: #25d366; border: 1px solid rgba(37,211,102,0.2); }
.hours-status.closed { background: rgba(255,255,255,0.04); color: var(--grey); border: 1px solid rgba(255,255,255,0.08); }

/* Hours visual */
.hours-visual {
  background: linear-gradient(135deg, #100c00, #080808);
  border: 1px solid rgba(184,150,46,0.12);
  padding: 50px 40px; position: relative; overflow: hidden;
}
.hours-visual::before {
  content: '♛'; font-size: 12rem; position: absolute;
  right: -20px; bottom: -30px; color: rgba(184,150,46,0.04);
  line-height: 1; pointer-events: none;
}
.hours-visual-item {
  display: flex; align-items: center; gap: 16px; margin-bottom: 28px; padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.hours-visual-item:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.hv-icon {
  width: 50px; height: 50px; flex-shrink: 0;
  background: var(--gold-faint); border: 1px solid rgba(184,150,46,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.1rem;
}
.hv-label { font-size: 0.65rem; color: var(--grey); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 5px; }
.hv-value { font-size: 0.95rem; color: var(--white); font-weight: 600; }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1100px) {
  .info-strip { grid-template-columns: repeat(2, 1fr); }
  .info-strip-item:nth-child(2) { border-right: none; }
  .hours-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .contact-main-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .page-hero { padding: 80px 5% 60px; }
  .contact-main { padding: 70px 5%; }
  .map-sec { padding: 0 5% 70px; }
  .hours-sec { padding: 70px 5%; }
  .info-strip { grid-template-columns: 1fr 1fr; }
  .cf-row { grid-template-columns: 1fr; }
  .form-card { padding: 34px 24px; }
  .map-frame { height: 300px; }
  .cf-submit { flex-direction: column; align-items: flex-start; }
  .map-badges { display: none; }
}
@media (max-width: 480px) {
  .info-strip { grid-template-columns: 1fr; }
  .info-strip-item { border-right: none; border-bottom: 1px solid rgba(184,150,46,0.08); }
  .service-tabs { gap: 6px; }
}
