/* Container to hold the split layout */
.contact-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  padding-top: 7rem;
}

/* --- Left Side (Content & Form) --- */
.content-side {
  background-color: #000000;
  color: #ffffff;
  padding: 80px 100px;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2; /* Ensures text stays above if layers overlap */
  position: relative;
}

.main-title {
  font-weight: 800;
  text-transform: uppercase;
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.sub-text {
  color: #888888;
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 450px;
  margin-bottom: 60px;
}

.form-title {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.25rem;
  margin-bottom: 25px;
}

/* --- Custom Form Styling --- */
.custom-input {
  background-color: #111111;
  border: 1px solid #111111;
  color: #ffffff;
  border-radius: 12px;
  padding: 15px 20px;
  margin-bottom: 20px;
  font-size: 1rem;
}

.custom-input::placeholder {
  color: #666666;
}

.custom-input:focus {
  background-color: #1a1a1a;
  border-color: #333333;
  color: #ffffff;
  box-shadow: none;
}

textarea.custom-input {
  min-height: 150px;
  resize: none;
}

.btn-submit {
  background-color: #ffffff;
  color: #000000;
  font-weight: 700;
  border-radius: 12px;
  padding: 15px;
  width: 100%;
  border: none;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background-color: #e6e6e6;
  transform: translateY(-2px);
}

/*  */
.img-side {
  height: 100%;
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: 10px;
}

.img-side img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120%;
  object-fit: cover;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
  .content-side {
    padding: 60px 30px;
  }
  .contact-wrapper {
    flex-direction: column;
  }

  .image-side {
    min-height: 400px;
    order: 2;

    /* Disable parallax on mobile/tablets for better performance and layout */
    background-attachment: scroll;
    background-position: center center;
  }

  .content-side {
    order: 1;
  }
}

/* --- Section Styling --- */
.info-section {
  background-color: #000000;
  color: #ffffff;
  padding: 100px 0; /* Generous top/bottom spacing */
  border-top: 1px solid #111; /* Optional: subtle separator from previous section */
}

/* Small Uppercase Headers (e.g., FOLLOW ME) */
.info-header {
  color: #888888; /* Muted Grey */
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 25px;
}

/* Main White Text */
.info-content {
  font-size: 15px;
  font-weight: 400; /* Bold */
  color: #ffffff;
  line-height: 1.8;
  margin-bottom: 0;
}

.info-content a{
  text-decoration: none;
  color: #ffffff;
}

/* Links (Instagram, Email, etc.) */
.info-link {
  color: #ffffff;
  text-decoration: none;
  display: block; /* Makes them stack nicely */
  margin-bottom: 10px;
  transition: opacity 0.2s ease;
}

.info-link:hover {
  opacity: 0.7;
  color: #ffffff;
}

/* Specific Layout for Phone Numbers to align "UAE" and Number */
.phone-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 400;
}

.country-code {
  width: 50px; /* Fixed width to ensure numbers align vertically */
  display: inline-block;
  font-weight: 700;
}

/* Responsive Spacing */
@media (max-width: 991px) {
  .info-col {
    margin-bottom: 50px; /* Adds space between stacked columns on tablet/mobile */
  }
}
