* {
    margin:0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== CONTACT HERO ===== */
.contact-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #020202;
  overflow: hidden;
  padding: 0 32px;
}

.contact-hero-inner {
  position: relative;
  max-width: 900px;
  z-index: 2;
  text-align: center;
}

/* Label */
.contact-hero .hero-label {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 18px;
}

/* Heading */
.contact-hero h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  color: var(--rich-gold);
  line-height: 1.15;
  margin-bottom: 24px;
}

/* Subtext */
.contact-hero p {
  font-size: 1.05rem;
  color: #bdbdbd;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== HERO GEOMETRY ===== */
.hero-geometry {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

/* Large upright rectangle */
.hero-geometry .geo-rect.large {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 20px;
  border: 2px solid rgba(198,162,74,0.25);
  top: 18%;
  left: 50%;
  transform: translateX(-50%);
}

/* Small rotated rectangle inside */
.hero-geometry .geo-rect.small {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 16px;
  background: rgba(198,162,74,0.08);
  top: calc(18% + 60px);
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
}

.hero-geometry .geo-rect.large {
  animation: hero-drift 40s ease-in-out infinite;
}

.hero-geometry .geo-rect.small {
  animation: hero-drift 32s ease-in-out infinite reverse;
}

@keyframes hero-drift {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-16px);
  }
}

@media (max-width: 768px) {
  .contact-hero {
    min-height: 60vh;
  }

  .hero-geometry .geo-rect.large {
    width: 200px;
    height: 200px;
  }

  .hero-geometry .geo-rect.small {
    width: 110px;
    height: 110px;
  }
}





.contact-section {
  padding: 5.5rem 1.5rem;
  background: radial-gradient(circle at top, #0F0F0F, #000000);
  color: #EDEDED;
}

.contact-wrapper {
  max-width: 1150px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Left Content */
.contact-intro h2 {
  font-size: 2.6rem;
  margin-bottom: 1.1rem;
  color: #C8A84E;
  letter-spacing: 0.5px;
}

.contact-intro p {
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.7rem;
  color: #B5B5B5;
}

.contact-intro ul {
  list-style: none;
  padding: 0;
}

.contact-intro li {
  margin-bottom: 0.7rem;
  color: #E0D29A;
  font-weight: 500;
}

/* Form Card */
.contact-form {
  background: linear-gradient(
    180deg,
    rgba(15, 15, 15, 0.92),
    rgba(0, 0, 0, 0.98)
  );
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid rgba(200, 168, 78, 0.25);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.75);
  position: relative;
}

/* Subtle gold edge glow */
.contact-form::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, #C8A84E, transparent 60%);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  pointer-events: none;
}

/* Inputs */
.form-group {
  position: relative;
  margin-bottom: 2rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 15px 16px;
  border-radius: 12px;
  border: 1px solid rgba(200, 168, 78, 0.25);
  background: #000000;
  color: #F5F5F5;
  font-size: 0.95rem;
  outline: none;
}

.form-group select option {
  background: #000000;
  color: #F5F5F5;
}

/* Floating labels */
.form-group label {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  font-size: 0.8rem;
  color: #B5B5B5;
  pointer-events: none;
  transition: 0.25s ease;
  background: #000000;
  padding: 0 6px;
}

.form-group textarea + label {
  top: 14px;
  transform: none;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group select:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -9px;
  font-size: 0.7rem;
  color: #C8A84E;
}

/* ===== FORM STYLING ===== */

.contact-form label {
  display: block;
  font-size: 0.95rem;
  color: #d8d8d8;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid rgba(198,162,74,0.3);
  background: #0a0a0a;
  color: #ffffff;
  font-size: 16px; /* prevents iOS zoom */
  font-family: 'Inter', sans-serif;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(198,162,74,0.4);
}

@media (max-width: 768px) {

  .contact-form label {
    font-size: 1rem;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 14px 16px;
    font-size: 16px;
  }

}




/* Submit Button */
.submit-btn {
  width: 100%;
  padding: 15px;
  border-radius: 999px;
  border: none;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  background: linear-gradient(135deg, #C8A84E, #9E853A);
  color: #000000;
  letter-spacing: 0.6px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(200, 168, 78, 0.45);
}

/* Mobile */
@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-intro h2 {
    font-size: 2.1rem;
  }
}

/* TriMid emblem watermark */
.contact-form::after {
  content: "";
  position: absolute;
  bottom: 22px;
  right: 22px;
  width: 180px;
  height: 180px;
  background: url("stock/world.png") no-repeat center;
  background-size: contain;
  opacity: 0.08; /* subtle luxury */
  pointer-events: none;
  z-index: 0;
}

.contact-form * {
  position: relative;
  z-index: 1;
  
}










