.hero-section-2 {
  height: 90vh;
  width: 100%;
  background: url(/assets/images/11.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 1;
  padding: 0 15vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75em;
  transition: background 1s ease;
  position: relative;
  overflow: hidden;
}

.hero-section-2 .design-1 {
  position: absolute;
  clip-path: polygon(0 98%, 80% 87%, 100% 92%, 100% 100%);
  height: 100%;
  width: 100vw;
  background-color: var(--color-brand-orange);
  bottom: -1em;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-section-2 .design-2 {
  position: absolute;
  clip-path: polygon(0 100%, 80% 92%, 100% 95%, 100% 100%);
  height: 100%;
  width: 100vw;
  background-color: var(--color-brand-blue);
  /* bottom: -1em; */
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.hero-section-2 .design-2 {
  position: absolute;
  clip-path: polygon(0 100%, 80% 92%, 100% 95%, 100% 100%);
  height: 100%;
  width: 100vw;
  background-color: var(--color-brand-blue);
  /* bottom: -1em; */
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.hero-section-2.light .design-2 {
  position: absolute;
  clip-path: polygon(0 100%, 80% 92%, 100% 95%, 100% 100%);
  height: 100%;
  width: 100vw;
  background-color: var(--softaz);
  /* bottom: -1em; */
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.hero-section-2::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7); /* adjust opacity as needed */
  z-index: 1;
  pointer-events: none;
  transition: background 300ms ease;
}

.hero-section-2 > * {
  position: relative;
  z-index: 2;
}

.hero-section-2 h1 {
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  width: 60%;
  line-height: 1em;
  margin-bottom: 0.1rem;
  color: #f4f8ff;
}

.hero-section-2 .info {
  width: 60%;
  color: var(--color-brand-orange);
  margin-bottom: 1rem;
}

.hero-slide-content-2 {
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.hero-slide-content-2 .inset {
  color: var(--color-brand-orange);
  font-weight: 900;
  font-size: 0.9rem;
}

.hero-section-2 .hero-fade-out {
  opacity: 0;
  transform: translateY(20px);
}

.hero-section-2 .hero-fade-in {
  opacity: 1;
  transform: translateY(0px);
}

.hero-section-2 .hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.25);
  border: none;
  width: 3em;
  height: 3em;
  border-radius: 50%;
  backdrop-filter: blur(4px);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  font-size: 1.5rem;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: background var(--transition-fast),
    transform var(--transition-fast);
}

.hero-section-2 .hero-prev {
  left: 2vw;
}
.hero-section-2 .hero-next {
  right: 2vw;
}

.hero-section-2 .hero-arrow:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: translateY(-50%) scale(1.05);
}

/* CONTACT PAGE */

.contact-hero {
  height: 50vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("/assets/images/contact-hero.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 0 2em;
}

.contact-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.5em;
}

.contact-hero p {
  font-size: 1.2rem;
  color: var(--color-brand-orange);
}

.contact-section {
  display: flex;
  flex-direction: column;
  padding: 4em 15vw;
  background-color: var(--softaz);
  gap: 3em;
}

.contact-container {
  display: flex;
  gap: 3em;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  gap: 1.5em;
}

.contact-info h2 {
  font-size: 2rem;
  color: var(--my-blue);
}

.contact-info .info-item {
  display: flex;
  align-items: center;
  gap: 1em;
  font-size: 1rem;
  color: var(--color-text-strong);
}

.contact-info .info-item i {
  color: var(--color-brand-orange);
  font-size: 1.2rem;
  min-width: 24px;
  text-align: center;
}

.contact-info .social-icons {
  display: flex;
  gap: 1em;
  margin-top: 1em;
}

.contact-info .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-brand-orange);
  color: white;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  transition: background 0.3s;
}

.contact-info .social-icons a:hover {
  background-color: var(--color-brand-blue);
}

.contact-form {
  flex: 1 1 55%;
  background-color: var(--bg-light-0);
  padding: 2em;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.contact-form h2 {
  font-size: 1.8rem;
  color: var(--my-blue);
  margin-bottom: 1em;
}

.contact-form .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1em;
}

.contact-form label {
  font-weight: 600;
  margin-bottom: 0.3em;
  color: var(--my-blue);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 0.8em;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  outline: none;
  transition: border var(--transition-fast);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--color-brand-orange);
}

.contact-form textarea {
  resize: none;
}

.contact-form button {
  margin-top: 0.5em;
}

.contact-map {
  display: flex;
  padding: 5em 10vw;
  gap: 3em;
  align-items: center;
}

.contact-map .section-heading,
.contact-map iframe {
  width: 50%;
}

.contact-map iframe {
  border: none;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  min-height: 25em;
  margin: 2em auto 2em auto;
}

/* Responsive */
@media (max-width: 1024px) {
  .contact-container {
    flex-direction: column;
  }
  .contact-info,
  .contact-form {
    flex: 1 1 100%;
  }
}

.ceo-section {
  background-color: var(--softaz);
  width: 100%;
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 5rem 15vw;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 2.5em;
}

.ceo-section .side {
  width: 50%;
}

.ceo-section .img-side {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.ceo-section .top-images {
  display: flex;
  gap: 1em;
}

.ceo-section .square {
  flex: 1;
  aspect-ratio: 1;
}

.ceo-section .rectangular {
  width: 100%;
  aspect-ratio: 2/1;
}

.ceo-section .img-side .img-tt {
  width: 100%;
  height: 100%;
  border-radius: 0.5em;
  box-shadow: var(--shadow-md);
}

.why-us .icon i {
  font-size: 1.2rem;
  color: white;
}

@media (max-width: 768px) {
  .ceo-section .top-images {
    flex-direction: column;
  }
  .ceo-section .square {
    aspect-ratio: auto;
  }
  .ceo-section .rectangular {
    aspect-ratio: auto;
  }
}

.extended-booking-form {
  background-color: #fff;
  padding: 2em;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  max-width: 800px;
  margin: 0 auto;
}

.extended-booking-form .form-row {
  display: flex;
  gap: 1em;
  margin-bottom: 1em;
}

.extended-booking-form .form-row .form-group {
  flex: 1;
}

.extended-booking-form .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1em;
}

.extended-booking-form .form-group.full-width {
  width: 100%;
}

.extended-booking-form label {
  font-weight: 600;
  margin-bottom: 0.5em;
  color: var(--my-blue);
}

.extended-booking-form input,
.extended-booking-form select,
.extended-booking-form textarea {
  padding: 0.8em;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  outline: none;
  transition: border var(--transition-fast);
  font-size: 1rem;
}

.extended-booking-form input:focus,
.extended-booking-form select:focus,
.extended-booking-form textarea:focus {
  border-color: var(--color-brand-orange);
}

.extended-booking-form textarea {
  resize: vertical;
  min-height: 80px;
}

.extended-booking-form .checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5em;
  margin-bottom: 1em;
}

.extended-booking-form .checkbox-group input[type="checkbox"] {
  width: auto;
  margin: 0;
  flex-shrink: 0;
}

.extended-booking-form .checkbox-group label {
  font-weight: normal;
  margin: 0;
  line-height: 1.4;
}

.extended-booking-form .submit-btn {
  width: 100%;
  padding: 1em;
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 1em;
}

@media (max-width: 768px) {
  .extended-booking-form .form-row {
    flex-direction: column;
  }
}

.service-detail {
  padding: 5rem 15vw;
  display: flex;
  flex-direction: row;
  gap: 1em;
  color: #fff;
}

.service-detail .side {
  width: 50%;
}

.service-detail .img-side {
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-detail .img-side .img-tt {
  width: 100%;
  height: 100%;
  border-radius: 0.5em;
  box-shadow: var(--shadow-md);
}

.how-we-work {
  padding: 5em 10vw;
  background-color: var(--softaz);
}

.work-steps {
  display: flex;
  gap: 2em;
  margin-top: 3em;
}

.step {
  background: white;
  padding: 2em;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: transform 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
}

.step-icon {
  width: 4rem;
  height: 4rem;
  background-color: var(--color-brand-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1em;
  color: white;
  font-size: 1.5rem;
}

.step h3 {
  font-size: 1.25rem;
  color: var(--my-blue);
  margin-bottom: 0.5em;
}

.step p {
  color: var(--color-text-medium);
  line-height: 1.5;
}
