* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background: linear-gradient(to right, #e4c9b6, #d7a49a);
  color: #000;
  line-height: 1.5;
}

header {
  padding: 1rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e8b8a5;
  flex-wrap: wrap;
  gap: 1rem;
  background: linear-gradient(to right, #d7a49a, #e4c9b6);
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.logo-area img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

nav a {
  margin: 0 0.9rem;
  text-decoration: none;
  color: #000;
  font-size: 0.9rem;
}

nav a.active {
  border-bottom: 2px solid #000;
  font-weight: 600;
}

nav a.active {
  border-bottom: 2px solid #000;
  font-weight: 600;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 1.5rem;
  padding: 2rem 3rem;
  min-height: calc(100vh - 140px);
  width: 100%;
}

.contact-col {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.banner-card {
  border: 1px solid #000;
  border-radius: 6px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.15);
}

.banner-img {
  width: 100%;
  height: auto;
  display: block;
}

.fb-bar-link {
  text-decoration: none;
  display: block;
}
.fb-bar-link:hover .fb-bar {
  background-color: #242526;
}

.fb-bar {
  background-color: #18191a;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.8rem;
  transition: background 0.2s ease;
}

.fb-logo {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

.fb-name {
  font-size: 0.85rem;
  font-weight: 500;
}

.details-card {
  border: 1px solid #000;
  border-radius: 6px;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.15);
  height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.4rem;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.fb-detail-link {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}
.fb-detail-link:hover {
  opacity: 0.7;
}

.icon-img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.detail-item p {
  font-size: 0.85rem;
}

.form-card {
  border: 1px solid #000;
  border-radius: 6px;
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.15);
}

.form-card h2 {
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
}

.form-card h3 {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
  opacity: 0.8;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  padding: 0.6rem;
  border: 1px solid #000;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.2);
  outline: none;
}

.form-group textarea {
  resize: none;
  height: 80px;
}

.btn-black {
  background-color: #000;
  color: #fff;
  border: none;
  padding: 0.5rem 1.8rem;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.85rem;
  border: 1px solid #000;
  cursor: pointer;
  transition: 0.2s;
  display: inline-block;
}

.btn-black:hover {
  background-color: #222;
}

.map-card {
  border: 1px solid #000;
  border-radius: 6px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.15);
  text-align: center;
  padding-bottom: 1rem;
}

.map-img {
  width: 100%;
  height: 200px;
  display: block;
  margin-bottom: 0.8rem;
}

.map-card h2 {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}

footer {
  padding: 1rem 3rem;
  border-top: 1px solid #e8b8a5;
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 0.5rem;
  background: linear-gradient(to right, #d7a49a, #e4c9b6);
}

@media (max-width: 768px) {
  header {
    padding: 1rem;
    justify-content: center;
    text-align: center;
    gap: 0.6rem;
  }

  nav {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.2rem;
  }

  nav a {
    font-size: 0.7rem;
    margin: 0 0.3rem;
    white-space: nowrap;
  }

  .contact-container {
    grid-template-columns: 1fr;
    padding: 1.2rem;
    gap: 1.2rem;
  }

  .contact-col {
    width: 100%;
  }

  .banner-card,
  .details-card,
  .form-card,
  .map-card {
    width: 100%;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .map-img {
    height: 160px;
  }

  .map-card h2,
  .form-card h2 {
    font-size: 1.2rem;
  }

  footer {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
    padding: 1rem;
  }
}
