/* ---------------------------------------
   FULL-SCREEN SPLIT LAYOUT
----------------------------------------*/
#main {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch; /* ? ensures both sides stay the same height */
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
}

/* ---------------------------------------
   LEFT SIDE: HEADER AREA
----------------------------------------*/
#left-header {
  position: relative;
 background: linear-gradient(135deg, #0a1f44, #153e75);
  color: #fff;
  text-align: center;
  padding: 4rem 2rem;
  flex: 1 1 35%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  overflow-y: auto; /* ? allows scrolling if text is too long */
}

/* ?? SOCIAL MEDIA ICONS (top-right) */
#left-header #social-icons {
  position: absolute;
  top: 20px;
  right: 25px;
  display: flex;
  gap: 12px;
  z-index: 10;
}

#left-header #social-icons .social-icon {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  font-size: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

#left-header #social-icons .social-icon:hover {
  background: #fff;
  color: #e37c0f;
  transform: scale(1.15);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* ?? LOGO & TEXT STYLING */
#header #company-logo {
  display: block;
  width: 250px;
  height: 250px;
  object-fit: contain;
  margin: 0 auto 1.5rem auto;
  background: #fff;
  border-radius: 10%;
  padding: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  filter: brightness(1.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;margin-top: 20px;
}

#header #company-logo:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

/* ?? ABOUT CONTENT STYLING */
#left-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

#left-header p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;      /* smaller text for long content */
  line-height: 1.5;        /* balanced line spacing */
  max-width: 600px;        /* wider text area */
  margin-top: 0.5rem;
  text-align: justify;
}

/* ---------------------------------------
   RIGHT SIDE: BOOKING WIZARD AREA
----------------------------------------*/
#right-content {
  background: #f8f9fa;
  padding: 3rem 2rem;
  flex: 1 1 65%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  overflow-y: auto; 
}

/* ---------------------------------------
   RESPONSIVE: TABLET & MOBILE
----------------------------------------*/
@media (max-width: 1024px) {
  #left-header,
  #right-content {
    flex: 1 1 100%;
    min-height: auto;
  }
}

/* ---------------------------------------
   MOBILE VIEW (up to 768px)
----------------------------------------*/
@media (max-width: 768px) {
  #left-header {
    padding: 3rem 1.5rem;
    justify-content: flex-start;
  }

  #left-header #social-icons {
    top: 15px;
    right: 15px;
    gap: 10px;
  }

  #left-header #social-icons .social-icon {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  #header #company-logo {
    width: 160px;
    height: 160px;
    margin-top: 2rem;
  }

  #left-header h2 {
    font-size: 1.6rem;
  }

  #left-header p {
    font-size: 0.9rem;
    max-width: 90%;
  }

  #right-content {
    padding: 2rem 1.5rem;
  }
}

/* ---------------------------------------
   EXTRA SMALL PHONES (up to 480px)
----------------------------------------*/
@media (max-width: 480px) {
  #left-header {
    padding: 2rem 1rem;
  }

  #header #company-logo {
    width: 130px;
    height: 130px;
    padding: 10px;
    margin-bottom: 1rem;
  }

  #left-header h2 {
    font-size: 1.4rem;
  }

  #left-header p {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  #right-content {
    padding: 1.5rem 1rem;
  }
}

/* ---------------------------------------
   BOOKING WIZARD STEP 2 (DATE & TIME)
----------------------------------------*/
#wizard-frame-2 .frame-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
  width: 105%;
  box-sizing: border-box;
}

#wizard-frame-2 .frame-content > div {
  flex: 1 1 45%;
  min-width: 320px;
  max-width: 500px;
  box-sizing: border-box;
}

#wizard-frame-2 #select-date,
#wizard-frame-2 #select-time,
#wizard-frame-2 #select-timezone {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

#wizard-frame-2 #available-hours {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  width: 103%;
}


