/* =========================
   CONTACT PAGE (Luxury)
   File: css/contact.css
========================= */

body.contact-page{
  background: #070A10;
  color: #fff;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  overflow-x: hidden;
}

/* Luxury background */
body.contact-page::before{
  content:"";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1200px 600px at 20% 10%, rgba(255, 215, 120, 0.14), transparent 60%),
    radial-gradient(900px 520px at 80% 15%, rgba(120, 170, 255, 0.12), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.88)),
    url("../images/aboutbk.png") center / cover no-repeat;
  transform: translateZ(0);
}

body.contact-page::after{
  content:"";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: rgba(6,8,12,0.55);
  backdrop-filter: blur(2px);
}

/* keep content clickable */
main{ position: relative; z-index: 1; }

/* HERO */
.contact-hero{
  padding: 70px 0 30px;
}

.contact-hero-card{
  max-width: 980px;
  margin: 0 auto;
  padding: 44px 36px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(10,12,18,0.58);
  box-shadow:
    0 30px 90px rgba(0,0,0,0.55),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.contact-hero h1{
  font-family: "DM Serif Display", serif;
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  line-height: 1.06;
  margin: 0 0 12px;
  letter-spacing: 0.2px;
}

.contact-hero p{
  margin: 0;
  max-width: 860px;
  color: rgba(255,255,255,0.78);
  font-size: 1.06rem;
  line-height: 1.55;
}

.contact-hero-actions{
  display: flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.c-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  padding: 12px 16px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.2px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.92);
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}
.c-btn:hover{ transform: translateY(-1px); }

.c-btn.primary{
  border-color: rgba(255,215,120,0.55);
  background: linear-gradient(180deg, rgba(255,215,120,0.22), rgba(255,215,120,0.08));
}

.c-btn.ghost{
  background: rgba(0,0,0,0.18);
}

.c-btn.full{ width: 100%; }

/* Trust pills */
.contact-trust{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.trust-pill{
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  padding: 8px 12px;
  border-radius: 999px;
  color: rgba(255,255,255,0.80);
  font-size: 0.92rem;
}

/* MAIN SECTION */
.contact-section{
  padding: 10px 0 90px;
}

.contact-grid{
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 16px;
  align-items: start;
}

.contact-card{
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(10,12,18,0.58);
  box-shadow:
    0 30px 90px rgba(0,0,0,0.40),
    inset 0 1px 0 rgba(255,255,255,0.08);
  padding: 22px;
}

.contact-card.mini{ padding: 18px; }
.contact-card.mini h3{
  margin: 0 0 10px;
  font-size: 1.05rem;
  letter-spacing: 0.2px;
}
.contact-card.mini.gold{
  border-color: rgba(255,215,120,0.18);
  background: rgba(255,215,120,0.07);
}

.card-head h2{
  margin: 0 0 8px;
  font-family: "DM Serif Display", serif;
  font-size: 2rem;
  letter-spacing: 0.2px;
}
.card-head p{
  margin: 0 0 18px;
  color: rgba(255,255,255,0.74);
  line-height: 1.5;
}

.contact-form .row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field{
  margin-bottom: 12px;
}
.field label{
  display: block;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 6px;
}

.field input,
.field select,
.field textarea{
  width: 100%;
  padding: 13px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.28);
  color: #fff;
  outline: none;
  font-size: 1rem;
}
.field textarea{ resize: vertical; }

.field input::placeholder,
.field textarea::placeholder{
  color: rgba(255,255,255,0.45);
}

.btn-row{
  display: flex;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.92);
  cursor: pointer;
  font-weight: 800;
  text-decoration: none;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}
.btn:hover{ transform: translateY(-1px); }

.btn.primary{
  border-color: rgba(255,215,120,0.55);
  background: linear-gradient(180deg, rgba(255,215,120,0.22), rgba(255,215,120,0.08));
}

.fineprint{
  margin-top: 10px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.35;
}

.thankyou{
  margin-top: 14px;
  border-radius: 18px;
  padding: 16px;
  border: 1px solid rgba(255,215,120,0.18);
  background: rgba(255,215,120,0.07);
  color: rgba(255,255,255,0.92);
  line-height: 1.5;
}

/* RIGHT COLUMN */
.side-stack{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-list{
  display: grid;
  gap: 10px;
}

.info-item{
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  padding: 12px;
}

.info-label{
  font-size: 0.78rem;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
  margin-bottom: 6px;
}

.info-value{
  color: rgba(255,255,255,0.92);
  font-weight: 800;
  text-decoration: none;
}

.muted{
  color: rgba(255,255,255,0.74);
  line-height: 1.55;
  margin: 0;
}

.map-placeholder{
  margin-top: 12px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
}
.map-placeholder img{
  display: block;
  width: 100%;
  height: 160px;
  object-fit: cover;
  opacity: 0.9;
}

.micro{
  margin-top: 10px;
  color: rgba(255,255,255,0.55);
  font-size: 0.86rem;
  line-height: 1.45;
}
.micro code{
  color: rgba(255,255,255,0.86);
  background: rgba(255,255,255,0.06);
  padding: 2px 6px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.10);
}

/* Responsive (won’t affect your main site) */
@media (max-width: 980px){
  .contact-grid{ grid-template-columns: 1fr; }
  .contact-form .row{ grid-template-columns: 1fr; }
  .contact-hero-card{ padding: 28px 18px; }
}
