/* ============================================================
   CONTACT PAGE — LUXURY MATCHING HOMEPAGE THEME
============================================================ */

/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Source Sans 3', sans-serif;
}

h1,h2{
  font-family:'Abril Fatface', serif;
  letter-spacing:1px;
}

body{
  background:var(--light);
  color:var(--dark-gray);
  line-height:1.8;
}

/* ============================================================
   HERO
============================================================ */

.contact-hero{
  min-height:70vh;
  background:url("../img/contact/contact-hero.jpg") center/cover no-repeat fixed;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  text-align:center;
  overflow:hidden;
}

.contact-hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    to bottom,
    rgba(0,0,0,.75),
    rgba(0,0,0,.55)
  );
}

.contact-hero-content{
  position:relative;
  color:var(--light);
  max-width:800px;
  padding:0 20px;
}

.contact-hero-content h1{
  font-family:'Abril Fatface', serif;
  font-size:68px;
  letter-spacing:2px;
  color:var(--muted);
  margin-bottom:18px;
}

.contact-hero-content h1::after{
  content:"";
  width:90px;
  height:3px;
  background:var(--gold);
  display:block;
  margin:25px auto 0;
}

.contact-hero-content p{
  font-size:20px;
  letter-spacing:2px;
  color:var(--muted);
}
/* ================= HERO TEXT ANIMATION ================= */

.contact-hero-content h1,
.contact-hero-content p{
  opacity:0;
  transform:translateY(40px);
}

/* Heading animation */
.contact-hero-content h1{
  animation: fadeUp 1.2s ease forwards;
}

/* Paragraph delay */
.contact-hero-content p{
  animation: fadeUp 1.2s ease forwards;
  animation-delay:.25s;
}

/* Reuse same animation as project page */
@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(40px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* ============================================================
   PREMIUM CONTACT INFO STRIP
============================================================ */

.premium-info{
  max-width:1000px;
  margin:-40px auto 110px;
  padding:0 20px;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:35px;
}

.info-row{
  display:flex;
  align-items:center;
  gap:22px;
  background:rgba(255,255,255,0.85);
  backdrop-filter:blur(10px);
  padding:28px 34px;
  border-left:4px solid var(--gold);
  box-shadow:0 20px 60px rgba(0,0,0,0.15);
  position:relative;
  overflow:hidden;
  transition:.4s ease;
}

.info-row:hover{
  transform:translateY(-6px);
}

.info-row::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    120deg,
    transparent,
    rgba(211,191,158,0.25),
    transparent
  );
  transform:translateX(-100%);
  transition:.6s ease;
}

.info-row:hover::after{
  transform:translateX(100%);
}

.info-icon{
  font-size:34px;
}

.info-row h4{
  font-size:13px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:var(--gold);
}

.info-row p{
  font-size:18px;
  font-weight:500;
  color:var(--dark);
}

/* ============================================================
   FORM + MAP STACKED
============================================================ */

.contact-main{
  max-width:900px;
  margin:auto;
  padding:0px 0px;
  display:flex;
  flex-direction:column;
  gap:90px;
}

/* FORM */

.form-box{
  background:var(--dark-gray);
  padding:70px;
  border-radius:26px;
  box-shadow:0 30px 90px rgba(0,0,0,0.12);
}

.form-box h2{
  font-size:42px;
  margin-bottom:40px;
  color:var(--gold);
}

.form-box h2::after{
  content:"";
  width:80px;
  height:3px;
  background:var(--gold);
  display:block;
  margin-top:18px;
}

form{
  display:grid;
  gap:20px;
}

input,
select,
textarea{
  width:100%;
  padding:16px 18px;
  border-radius:10px;
  border:1px solid #ddd;
  background:#f7f5f1;
  font-size:15px;
}

input:focus,
select:focus,
textarea:focus{
  outline:none;
  background:#fff;
  border-color:var(--gold);
  box-shadow:0 0 0 3px rgba(211,191,158,.35);
}

/* BUTTON */

form button{
  margin-top:10px;
  background:var(--gold);
  color:var(--dark);
  padding:16px;
  border:none;
  border-radius:40px;
  font-size:14px;
  letter-spacing:2px;
  font-weight:600;
  cursor:pointer;
  transition:.35s ease;
}

form button:hover{
  background:var(--hover-gold);
  color:#fff;
  transform:translateY(-3px);
}
/* ============================================================
   FULL WIDTH MAP SECTION
============================================================ */

.full-map-section {
  width: 100%;
  margin-top: 80px;
}

.full-map-section .map-placeholder {
  width: 100%;
  height: 500px;
  overflow: hidden;
  position: relative;
  background: #111;
}

/* Image */
.full-map-section .map-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75);
  transition: transform 0.6s ease;
}

.full-map-section .map-placeholder:hover img {
  transform: scale(1.05);
}

/* Overlay */
.full-map-section .map-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.55)
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Button */
.full-map-section .map-overlay button {
  padding: 16px 36px;
  border-radius: 40px;
  border: none;
  background: var(--gold);
  color: #000;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(201,164,106,0.45);
  transition: 0.35s ease;
}

.full-map-section .map-overlay button:hover {
  background: #e0b85d;
  transform: translateY(-2px) scale(1.05);
}

/* Iframe */
.full-map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Responsive */
@media(max-width: 768px){
  .full-map-section .map-placeholder{
    height: 350px;
  }
}
/* ============================================================
   WHY CONTACT
============================================================ */

.why-contact{
  background:var(--muted);
  padding:120px 20px;
  text-align:center;
}

.why-contact h2{
  font-size:44px;
  margin-bottom:60px;
  color:var(--dark);
}

.why-grid{
  max-width:1000px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:35px;
}

.why-card{
  padding:55px 35px;
  border-radius:22px;
  background:var(--light);
  box-shadow:0 20px 50px rgba(0,0,0,0.12);
  transition:.45s ease;
}

.why-card:hover{
  transform:translateY(-10px);
}

.why-icon{
  font-size:42px;
  color:var(--gold);
  margin-bottom:18px;
}

.why-card h4{
  font-size:14px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:var(--dark);
}

/* ============================================================
   RESPONSIVE
============================================================ */

@media(max-width:900px){

.hero-content h1{
  font-size:48px;
}

.form-box{
  padding:50px 30px;
}

}

@media(max-width:600px){

.hero-content h1{
  font-size:36px;
}

.hero-content p{
  font-size:14px;
}

.premium-info{
  grid-template-columns:1fr;
}

.form-box{
  padding:36px 24px;
}

.form-box h2{
  font-size:30px;
}

.map-box iframe{
  height:320px;
}

.why-contact h2{
  font-size:32px;
}

}
