/* Contact Specific Styles */
.contact-hero {
  display: flex;
  margin: 5rem 0 4rem;
  gap: 4rem;
}

.contact-hero-content {
  flex: 1.2;
}

.contact-hero-content h1 {
  font-size: 2.8rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.contact-hero-content p {
  color: var(--gray-text);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 500px;
}

.contact-hero-image {
  flex: 0.8;
  height: 350px;
  border-radius: 12px;
  overflow: hidden;
}

.contact-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-body {
  display: flex;
  gap: 3rem;
  margin-bottom: 6rem;
}

.contact-form-container {
  flex: 2;
  background: white;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.03);
  border: 1px solid var(--border-color);
}

.contact-form-container h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.form-row {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--primary-green);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.form-group input, 
.form-group select, 
.form-group textarea {
  padding: 1rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  background: transparent;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-green);
}

.form-group select {
  appearance: none;
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" fill="%235f6e63" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat right 1rem center;
  background-size: 20px;
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-sidebar {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-card {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: 0 5px 20px rgba(0,0,0,0.02);
}

.sidebar-card-dark {
  background: var(--dark-green);
  color: white;
  border: none;
}

.sidebar-card h3 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.sidebar-card-dark h3 {
  color: white;
}

.sidebar-card p {
  color: var(--gray-text);
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.sidebar-card .map-img {
  width: 100%;
  height: 180px;
  border-radius: 8px;
  object-fit: cover;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.contact-item svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.social-circle-btns {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-circle-btns a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.social-circle-btns a:hover {
  background: var(--primary-green);
}

.social-circle-btns a svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

@media (max-width: 992px) {
  .contact-hero {
    flex-direction: column;
    margin: 3rem 0;
    gap: 2rem;
  }
  .contact-hero-image {
    height: 300px;
    width: 100%;
  }
  .contact-body {
    flex-direction: column;
    gap: 3rem;
  }
  .form-row {
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .contact-form-container {
    padding: 2rem;
  }
  .contact-form-container h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  .sidebar-card {
    padding: 1.5rem;
  }
  .sidebar-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
  .sidebar-card p {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }
  .sidebar-card .map-img {
    height: 120px;
  }
}

@media (max-width: 768px) {
  .contact-hero-content h1 {
    font-size: 2.2rem;
  }
}
