:root {
  --bg: #f3eee8;
  --text: #1f1f1f;
  --subtext: #6a6a6a;
  --gold: #c7a17a;
  --white: #ffffff;
  --radius: 20px;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: var(--bg);
  color: var(--text);
}

/* HEADER */
header {
  width: 100%;
  padding: 25px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(14px);
  z-index: 10;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

header h2 {
  font-size: 24px;
  color: var(--gold);
  font-weight: 600;
}

header a {
  margin-left: 20px;
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
}

/* HERO SECTION */
.contact-hero {
  margin-top: 130px;
  text-align: center;
  padding: 40px 20px;
}

.contact-hero h1 {
  font-size: 50px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1px;
}

.contact-hero p {
  font-size: 18px;
  color: var(--subtext);
  max-width: 600px;
  margin: 10px auto;
}

/* CONTACT LAYOUT */
.contact-container {
  max-width: 1100px;
  margin: 60px auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
}

/* LEFT PANEL IMAGE */
.contact-image {
  width: 100%;
  min-height: 480px;
  background: url("https://images.unsplash.com/photo-1515377905703-c4788e51af15?auto=format&fit=crop&w=900&q=80")
    center/cover no-repeat;
  border-radius: var(--radius);
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contact-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(199, 161, 122, 0.15);
  border-radius: var(--radius);
}

/* FORM CARD */
.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  animation: fadeUp 0.7s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-form h3 {
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 600;
  color: var(--text);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  border-radius: var(--radius);
  border: 1.5px solid #ddd;
  margin: 12px 0;
  font-size: 16px;
  transition: 0.3s ease;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  outline: none;
  box-shadow: 0 0 8px rgba(199, 161, 122, 0.35);
}

textarea {
  height: 150px;
  resize: none;
}

.contact-btn {
  width: 100%;
  padding: 16px;
  border: none;
  background: var(--gold);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s ease;
  margin-top: 10px;
}

.contact-btn:hover {
  background: #b89063;
  transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .contact-image {
    height: 350px;
  }
}
