/* ===========================================================
   Stone Galleria — Form Styling (Luxury Consistent)
   Champagne Gold Accents • Soft Shadows • Clean Readability
=========================================================== */

:root {
  --gold: #f2d8a0;
  --gray-dark: #555;
  --gray-bg: #f6f6f6;
  --gray-border: #e3e3e3;
  --text-dark: #333;
}

/* ---------- Labels ---------- */
.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: 0.3px;
}

.form-check-label {
  font-size: 0.96rem;
  color: var(--gray-dark);
  margin-bottom: 0.4rem;
}

/* ---------- Inputs & Textareas ---------- */
.form-control {
  display: block;
  width: 100%;
  padding: 14px 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-dark);
  background-color: var(--gray-bg);
  border: 1px solid var(--gray-border);
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.form-control::placeholder {
  color: #999;
  opacity: 0.9;
}

.form-control:focus {
  background-color: #fff;
  border-color: var(--gold);
  box-shadow: 0 0 8px rgba(242, 216, 160, 0.4);
  outline: none;
}

/* ---------- Checkbox ---------- */
.form-check-input {
  accent-color: var(--gold);
  transform: scale(1.1);
  cursor: pointer;
}

.form-check {
  margin-bottom: 12px;
}

/* ---------- Submit Button ---------- */
input.form-control.submitb,
.btn-six {
  display: inline-block;
  border: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-size: 1rem;
  padding: 14px 32px;
  color: #fff;
  background: linear-gradient(90deg, var(--gold) 0%, #e2c47a 100%);
  border-radius: 50px;
  transition: all 0.4s ease;
  cursor: pointer;
  min-width: 180px;
}

input.form-control.submitb:hover,
.btn-six:hover {
  background: linear-gradient(90deg, #ffe9b6 0%, var(--gold) 100%);
  box-shadow: 0 0 15px rgba(242, 216, 160, 0.45);
  transform: translateY(-2px);
}

/* Micro Interaction: Button Sweep */
.btn-six {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn-six::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.1) 100%);
  transition: left 0.5s ease;
  z-index: 1;
}

.btn-six:hover::before {
  left: 100%;
}

/* Soft Fade-in Animation */
.form-submit {
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Checkbox alignment refinement */
.form-check-input {
  margin-top: 0.35rem;
  margin-right: 8px;
}


/* ---------- Validation States ---------- */
.text-danger {
  font-size: 0.88rem;
  color: #c0392b;
  margin-top: 0.3rem;
}

/* ---------- Field Group Spacing ---------- */
.form-group,
.form-check {
  margin-bottom: 1rem;
}

/* ---------- Form Container (Luxury Box Feel) ---------- */
.form-submit {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
  padding: 50px 60px;
  border: 1px solid rgba(245, 224, 179, 0.15);
  transition: all 0.3s ease;
}

.form-submit:hover {
  box-shadow: 0 0 40px rgba(242, 216, 160, 0.12);
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .form-submit {
    padding: 30px 24px;
  }
  .form-label {
    font-size: 0.95rem;
  }
  input.form-control.submitb {
    width: 100%;
    font-size: 1rem;
    padding: 14px;
  }
}


/* ===========================================================
   Stone Galleria — Explore Section (Luxury Minimal Refined)
   Balanced Light • Subtle Contrast • Warm Gold Accents
=========================================================== */

.hero-explore {
  width: 100%;
  min-height: 90vh;
  padding: 100px 40px;
  background: radial-gradient(circle at 70% 30%, #f8f7f4 0%, #eae7df 70%, #dfdacd 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #222;
  text-align: center;
  font-family: "Inter", sans-serif;
  position: relative;
  overflow: hidden;
}

/* Ambient light shimmer */
.hero-explore::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
    rgba(242,216,160,0.12),
    rgba(255,255,255,0.4),
    rgba(242,216,160,0.12));
  background-size: 200% 200%;
  animation: softSheen 18s ease-in-out infinite;
  mix-blend-mode: overlay;
  z-index: 0;
  pointer-events: none;
}

/* Section heading */
.hero-explore h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  color: #b08a46;
  font-weight: 500;
  letter-spacing: 0.6px;
  margin-bottom: 60px;
  text-shadow: 0 1px 5px rgba(255,255,255,0.6);
  position: relative;
  z-index: 1;
}

/* Grid Layout */
.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 50px;
  width: 90%;
  max-width: 1200px;
  z-index: 2;
  position: relative;
}

/* --- Card --- */
.hero-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(176,138,70,0.25);
  border-radius: 16px;
  text-decoration: none;
  color: #333;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(14px) saturate(130%);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
}

.hero-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 40px rgba(176,138,70,0.18);
}

/* --- Image --- */
.hero-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: brightness(95%) contrast(105%);
  transition: transform 1.2s ease, filter 0.6s ease;
}

.hero-card:hover img {
  transform: scale(1.05);
  filter: brightness(100%) contrast(110%);
}

/* --- Card Body --- */
.hero-card .card-body {
  padding: 30px;
  text-align: left;
}

.hero-card small {
  font-size: 0.8rem;
  color: #b08a46;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
}

.hero-card h3 {
  font-size: 1.7rem;
  font-weight: 500;
  color: #222;
  margin-top: 10px;
  font-family: "Playfair Display", serif;
}

/* --- Footer Arrow --- */
.card-footer {
  display: flex;
  justify-content: flex-end;
  padding: 20px 30px;
  background: rgba(255,255,255,0.4);
  border-top: 1px solid rgba(176,138,70,0.25);
}

.card-footer span {
  font-size: 1.4rem;
  border: 1px solid rgba(176,138,70,0.4);
  padding: 5px 12px;
  border-radius: 8px;
  color: #b08a46;
  background-color: rgba(255,255,255,0.6);
  transition: all 0.3s ease;
}

.hero-card:hover .card-footer span {
  background-color: #b08a46;
  color: #fff;
  transform: translateX(4px);
  box-shadow: 0 0 10px rgba(176,138,70,0.4);
}

/* --- Animation --- */
@keyframes softSheen {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .hero-explore {
    padding: 60px 20px;
  }
  .hero-explore h2 {
    font-size: 1.9rem;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}



/* ===========================================================
   Stone Galleria — Contact Signature (Luxury Final Build)
   Obsidian Base • Champagne Light • Motion Refinement
=========================================================== */

:root {
  --champagne-gold: #f2d8a0;
  --text-light: #eaeaea;
  --text-muted: #c6c6c6;
  --bg-dark: #0e0e0e;
  --glass-dark: rgba(25, 25, 25, 0.6);
}

/* ---------- Section Base ---------- */
.contact-signature {
  position: relative;
  height: 100vh;
  color: var(--text-light);
  background: radial-gradient(circle at top right, #1a1a1a 0%, var(--bg-dark) 85%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  will-change: transform, opacity;
}

/* Ambient Sheen Motion */
.contact-signature::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
    rgba(245,224,179,0.08),
    rgba(255,255,255,0.02),
    rgba(245,224,179,0.08));
  background-size: 200% 200%;
  animation: softSheen 18s ease-in-out infinite;
  mix-blend-mode: overlay;
  z-index: 0;
  pointer-events: none;
}

/* Cinematic Vignette */
.contact-signature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 25% 75%, rgba(245, 224, 179, 0.04), rgba(0,0,0,0.65) 80%);
  z-index: 1;
}

/* Background Map */
.contact-signature .bg-image {
  position: absolute;
  inset: 0;
  background: url('/assets/images/world-map-light.webp') center/cover no-repeat;
  filter: brightness(55%) contrast(110%) saturate(90%) blur(1px);
  opacity: 0.45;
  z-index: 1;
}

/* ---------- Inner Glass Panel ---------- */
.contact-inner {
  position: relative;
  z-index: 2;
  width: 88%;
  max-width: 1300px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 100px;
  background: var(--glass-dark);
  border: 1px solid rgba(245, 224, 179, 0.15);
  border-radius: 22px;
  padding: 70px 80px;
  backdrop-filter: blur(20px) saturate(110%);
  box-shadow:
    0 0 60px rgba(245, 224, 179, 0.05),
    inset 0 0 30px rgba(255, 255, 255, 0.02),
    inset 0 0 80px rgba(245, 224, 179, 0.03);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1.2s ease forwards;
  will-change: transform, opacity;
}

/* ---------- Left Column ---------- */
.left h2 {
  font-family: "Playfair Display", serif;
  color: var(--champagne-gold);
  font-size: 2.4rem;
  margin-bottom: 1rem;
  letter-spacing: 0.6px;
  text-shadow: 0 1px 10px rgba(0,0,0,0.6);
}

.intro {
  color: #c8c8c8;
  max-width: 540px;
  line-height: 1.55;
  font-size: 1.02rem;
  margin-bottom: 2.4rem;
  font-weight: 300;
}

/* ---------- Factory Grid ---------- */
.units-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 42px;
}

.unit {
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 0.6rem;
}

.unit h3 {
  color: #f4f1eb;
  font-size: 1.5rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.unit p {
  color: #b8b8b8;
  font-size: 0.92rem;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.unit:hover h4 {
  color: var(--champagne-gold);
}

.unit:hover p {
  color: #dedede;
}

/* Active state */
.unit.active {
  transform: translateY(-2px);
  border-color: rgba(245, 224, 179, 0.25);
}

/* Embedded Map */
.map-embed {
  display: none;
  margin-top: 0.9rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(245, 224, 179, 0.1);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(245, 224, 179, 0.08);
  position: relative;
  will-change: transform, opacity;
}

.map-embed::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.25));
  pointer-events: none;
}

.map-embed iframe {
  width: 100%;
  height: 160px;
  border: none;
  border-radius: 10px;
  filter: brightness(97%) contrast(105%) saturate(105%);
  transition: all 0.3s ease;
}

.unit.active .map-embed {
  display: block;
  animation: fadeInUp 0.6s ease forwards;
}

/* Hover Arrow Cue */
.unit h4::after {
  content: "→";
  opacity: 0;
  margin-left: 6px;
  color: var(--champagne-gold);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.unit:hover h4::after {
  opacity: 1;
  transform: translateX(4px);
}

/* ---------- Right Column ---------- */
.right h2 {
  font-family: "Playfair Display", serif;
  color: var(--champagne-gold);
  font-size: 1.9rem;
  margin-bottom: 0.8rem;
  letter-spacing: 0.6px;
  text-shadow: 0 1px 10px rgba(0,0,0,0.6);
}

.subline {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2.2rem;
  line-height: 1.5;
}

.contact-block p {
  margin: 0.8rem 0;
}

.contact-block a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 400;
  transition: all 0.3s ease;
}

.contact-block a:hover {
  color: var(--champagne-gold);
  text-shadow: 0 0 10px rgba(245,224,179,0.3);
}

/* ---------- Refined Social Links ---------- */
.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 30px;
  margin-top: 3rem;
  justify-content: flex-start;
}

.socials a {
  color: var(--champagne-gold);
  text-decoration: none;
  font-size: 0.92rem;
  letter-spacing: 0.3px;
  position: relative;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.socials a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--champagne-gold);
  opacity: 0.6;
  transition: width 0.3s ease;
}

.socials a:hover {
  color: #fff;
  text-shadow: 0 0 10px rgba(245, 224, 179, 0.4);
}

.socials a:hover::after {
  width: 100%;
  opacity: 1;
}

/* ---------- Expand/Collapse Rotating Cross Icon ---------- */
.unit::before {
  content: "+";
  position: absolute;
  right: 0;
  top: 6px;
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--champagne-gold);
  opacity: 0.7;
  transform: rotate(0deg);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.3s ease;
}

.unit:hover::before {
  opacity: 1;
}

/* When active: rotate + into × (cross) */
.unit.active::before {
  content: "×";
  opacity: 1;
  transform: rotate(180deg) scale(1.05);
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes softSheen {
  0% { background-position: 0% 50%; transform: skewX(0deg); }
  50% { background-position: 100% 50%; transform: skewX(3deg); }
  100% { background-position: 0% 50%; transform: skewX(0deg); }
}

/* ---------- Accessibility ---------- */
@media (prefers-reduced-motion: reduce) {
  .contact-signature::before,
  .contact-inner {
    animation: none;
  }
}

/* ---------- Map Link (Shareable Button) ---------- */
.map-link {
  display: inline-block;
  margin-top: 0.6rem;
  font-size: 0.85rem;
  color: var(--champagne-gold);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
}

.unit.active .map-link {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  animation: fadeInUp 0.5s ease forwards;
}

.map-link:hover {
  color: #fff;
  text-shadow: 0 0 6px rgba(245, 224, 179, 0.5);
}


/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .contact-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 50px 40px;
    gap: 60px;
  }
  .units-grid {
    grid-template-columns: 1fr;
  }
  .socials {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .contact-inner { padding: 40px 24px; }
  .left h1 { font-size: 2rem; }
}

.contact-map-section {
  padding: 64px 0;
  background: #fafafa;
}

.contact-map-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.contact-map-frame {
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: 14px;
  overflow: hidden;
  background: #eaeaea;
  box-shadow:
    0 12px 30px rgba(0,0,0,0.08),
    0 2px 6px rgba(0,0,0,0.04);
}

.contact-map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
