*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Georgia", "Times New Roman", serif;
  color: #222;
  height: 100vh;
  display: flex;
}

/* Split layout */
.split {
  height: 100vh;
}

.left {
  width: 40%;
  background: #ffffff;
  display: flex;
  align-items: center;       /* Vertical center */
  justify-content: center;   /* Horizontal center */
  flex-direction: column;    /* Ensures proper stacking */
}

.right {
  width: 60%;
  background: url("Untitled design-2.png") center center / cover no-repeat;
  position: relative;
}

/* Left content */
.inner {
  width: 70%;
  margin: 0 auto;   /* Ensure true centering */
}

.logo {
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;   /* image above text */
  align-items: center;      /* center horizontally */
  justify-content: center;  /* center vertically inside logo block */
  text-align: center;
}

.logo-icon {
  width: 180px;              /* adjust size as needed */
  height: auto;
  margin-bottom: 10px;
}

.logo-text {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
}

h1 {
  font-size: 42px;
  text-align: center;
  margin-bottom: 18px;
}

.lead {
  font-size: 13px;
  line-height: 1.7;
  text-align: center;
  color: #777;
  margin-bottom: 35px;
}

/* Phone + address */
.contact-box {
  margin: 0 0 26px;
  font-size: 13px;
  line-height: 1.7;
}

.contact-line {
  margin-bottom: 4px;
}

.contact-address {
  margin-top: 4px;
}

/* Email form */
.subscribe label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 6px;
}

.field-wrap {
  display: flex;
  border-bottom: 1px solid #ddd;
  padding-bottom: 6px;
}

.field-wrap input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 13px;
  padding: 4px 0;
}

.field-wrap button {
  border: none;
  background: none;
  cursor: pointer;
  color: #c33;
  font-size: 14px;
}

/* send icon with spacing and underline */
.send-btn {
  margin-left: 12px;
  padding-bottom: 3px;
  border-bottom: 1px solid #c33;
}

/* Map directly under the form */
.map-wrapper {
  margin-top: 18px;
}

.map-wrapper iframe {
  width: 100%;
  height: 230px;
  border: 0;
}

/* Social icons slightly lower */
.social {
  margin-top: 35px;
  text-align: center;
}

.social a {
  display: inline-block;
  margin: 0 10px;
  font-size: 13px;
  text-decoration: none;
  color: #222;
}

/* Overlay on right image */
.image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.05);
}

/* Responsive */
@media (max-width: 900px) {
  body {
    flex-direction: column;
  }
  .left,
  .right {
    width: 100%;
    height: auto;
  }
  .inner {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
