/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

/* ================= HERO SECTION ================= */
.contact-hero {
  width: 100%;
  height: 400px; /* 🔥 increased */
  background: url("../images/contact1.png") center/cover no-repeat;
  position: relative;
}

.hero-overlay {
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6); /* darker overlay */
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay h1 {
  color: #ffffff;
  font-size: 70px;
  letter-spacing: 4px;
  font-weight: 300;
}

/* ================= CONTACT SECTION ================= */
.contact-section {
  padding: 80px 60px;
  background: #0e0e0e; /* dark theme */
}

/* ================= CONTAINER ================= */
.contact-container {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

/* ================= FORM ================= */
.contact-form {
  flex: 1;
}

/* SUBTITLE */
.subtitle {
  color: #c6a47e;
  margin-bottom: 10px;
  letter-spacing: 2px;
  font-size: 13px;
}

/* HEADING */
.contact-form h2 {
  font-size: 42px;
  margin-bottom: 30px;
  color: #ffffff;
}

/* FORM ROW */
.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

/* INPUTS */
input, textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  font-size: 14px;
  background: #161616;
  color: #ffffff;
}

input::placeholder,
textarea::placeholder {
  color: #888;
}

textarea {
  height: 150px;
  resize: none;
  margin-top: 10px;
}

/* BUTTON */
button {
  margin-top: 20px;
  padding: 15px 30px;
  background: #c6a47e;
  color: #0e0e0e;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 15px;
  transition: 0.3s;
}

button:hover {
  background: #a88a66;
}

/* ================= IMAGE ================= */
.contact-image {
  flex: 1;
  max-width: 500px;
}

.contact-image img {
  width: 100%;
  height: 540px;/* 🔥 FIXED */
  border-radius: 10px;
}

/* ================= MAP ================= */
.map-section {
  
  padding: 0 60px 60px;
  background: #0e0e0e;
}

.map-section iframe {
  width: 100%;
  height: 400px;
  border-radius: 10px;
  border: none;
}

/* ================= RESPONSIVE ================= */

/* TABLET */
@media (max-width: 900px) {

  .contact-container {
    flex-direction: column;
  }

  .contact-form h2 {
    font-size: 32px;
  }

  .hero-overlay h1 {
    font-size: 45px;
  }

  .contact-section {
    padding: 60px 30px;
  }

  .map-section {
    padding: 0 30px 40px;
  }
}

/* MOBILE */
@media (max-width: 500px) {

  .form-row {
    flex-direction: column;
  }

  .hero-overlay h1 {
    font-size: 32px;
  }

  .contact-section {
    padding: 40px 20px;
  }

  .map-section {
    padding: 0 20px 30px;
  }

  button {
    width: 100%;
  }
}

.map-section {
  position: relative;
  padding: 0 60px 60px;
  background: #0e0e0e;
}

.map-section iframe {
  width: 100%;
  height: 400px;
  border-radius: 10px;
  border: none;
}

/* CARD */
.map-card {
  position: absolute;
  top: 30px;
  left: 30px;
  background: #161616;
  padding: 20px;
  border-radius: 10px;
  color: #fff;
  width: 220px;
  z-index: 10;
}

.map-card img {
  height: 40px;
  margin-bottom: 10px;
}

.map-card h3 {
  margin-bottom: 5px;
}

.map-card p {
  font-size: 14px;
  color: #cfcfcf;
  margin-bottom: 10px;
}

.map-card a {
  color: #c6a47e;
  text-decoration: none;
  font-size: 14px;
}
.map-header {
  text-align: center;
  margin-bottom: 20px;
}

.map-header img {
  height: 50px;
  margin-bottom: 10px;
}

.map-header h3 {
  color: #ffffff;
  margin-bottom: 5px;
}

.map-header p {
  color: #cfcfcf;
  font-size: 14px;
}

.map-section iframe {
  width: 100%;
  height: 400px;
  border-radius: 10px;
  border: none;
}
@media (max-width: 768px) {
  .contact-image img {
    height: 250px;
    margin-left: 10px; /* smaller height for mobile */
  }
}

@media (max-width: 480px) {
  .contact-image img {
    height: 200px;
    margin-left: 10px; /* extra small screens */
  }
}