/* CSS for section section:Contact */
#contact-section {
  padding: 80px 0;
  background-color: #fff;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

.contact-text {
  flex: 1;
  max-width: 540px;
  padding-top: 40px;
}

.breadcrumb {
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 600;
}

.headline {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 400;
  margin-bottom: 30px;
}

.headline .bold {
  font-weight: 700;
}

.description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--primary-black);
}

.contact-form-wrapper {
  flex: 1;
  background-color: var(--bg-light);
  padding: 40px;
  max-width: 660px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-row.full-width {
  width: 100%;
}

.input-group {
  flex: 1;
  background: #fff;
  display: flex;
  align-items: center;
  padding: 0 15px;
  height: 50px;
  border: 1px solid transparent; /* Placeholder for focus state */
}

.textarea-group {
  height: auto;
  align-items: flex-start;
  padding-top: 15px;
}

.input-icon {
  width: 24px;
  display: flex;
  justify-content: center;
  margin-right: 10px;
}

.input-group input,
.input-group textarea,
.input-group select {
  border: none;
  outline: none;
  width: 100%;
  font-family: var(--font-main);
  font-size: 14px;
  color: var(--primary-black);
  background: transparent;
}

.input-group textarea {
  resize: vertical;
  min-height: 100px;
}

.select-wrapper {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
}

.select-wrapper select {
  appearance: none;
  cursor: pointer;
}

.dropdown-arrow {
  position: absolute;
  right: 0;
  pointer-events: none;
}

.form-actions {
  margin-top: 10px;
}

.form-actions .btn {
  width: 100%;
  max-width: 215px;
  border-radius: 0;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
}

@media (max-width: 992px) {
  .contact-container {
    flex-direction: column;
  }
  .contact-text, .contact-form-wrapper {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
  }
}

/* CSS for section section:Partners */
#partners {
  width: 100%;
  overflow: hidden;
  padding: 60px 0;
  background-color: #fff;
}

.partners-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

.partners-track {
  display: flex;
  gap: 20px;
  /* Simulating the negative margin/overflow from design */
  transform: translateX(-5%); 
}

.partners-track img {
  height: 120px;
  width: 250px;
  object-fit: contain;
  /* Grayscale filter based on typical partner logo strips, though not explicitly in JSON style, 
     the images in JSON seem to have transforms. Keeping as is. */
}

@media (max-width: 768px) {
  .partners-track {
    flex-wrap: wrap;
    justify-content: center;
    transform: none;
  }
  .partners-track img {
    width: 45%;
    height: auto;
  }
}

/* CSS for section section:Map */
#map-section {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 500px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  left: 0;
  right: 0;
}

.map-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.map-container iframe {
  width: 100% !important;
  max-width: 100% !important;
  height: 100% !important;
  border: 0;
  display: block;
  margin: 0;
  padding: 0;
}

.map-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-card {
  position: absolute;
  top: 30px;
  left: 30px;
  background: #fff;
  padding: 0;
  display: flex;
  box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.25);
  max-width: 400px;
}

.map-card-content {
  padding: 20px;
  flex: 1;
}

.map-card-content h3 {
  margin: 0 0 5px 0;
  font-size: 18px;
  color: #2d2d2d;
}

.map-card-content p {
  margin: 0 0 10px 0;
  font-size: 14px;
  color: #2d2d2d;
}

.view-larger {
  font-size: 12px;
  color: var(--accent-blue);
}

.map-card-directions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-left: 1px solid #eee;
}

.map-card-directions span {
  font-size: 12px;
  color: var(--accent-blue);
  margin-top: 4px;
}

.map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%); /* Adjust to point at center */
  width: 34px;
}

.map-zoom {
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
}

.zoom-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.map-action {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 600px) {
  .map-card {
    top: 10px;
    left: 10px;
    right: 10px;
    max-width: none;
  }
}

/* Footer CSS has been moved to style.css for global use */

