/* Hero Section */
.hero {
  display: flex;
  /* align-items: center; */
  justify-content: center;
  padding: 5rem 50px;
  position: relative;
}

.hero-left {
  flex: 1;
  /* max-width: 600px; */
  z-index: 2;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end; /* Moves content to the right (cross-axis) */
  justify-content: flex-start; /* Moves content to the top (main axis) */
  margin-right: -8rem;
  margin-top: 5rem;
}

.hero-left h1 {
  font-size: 150px;
  line-height: 1;
  color: #ff4a00;
  font-weight: 500;
  z-index: 3;
  position: relative;
  margin: 0;
  margin-right: -1.5rem;
}

.hero-left h1 span {
  display: block;
}

.hero-left p {
  font-size: 1.8rem;
  line-height: 2.2rem;
  color: #111;
  font-weight: 400;
  margin-right: 4rem;
}

.hero-left p span {
  display: block;
  margin-left: 3rem;
}

.hero-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.hero-right img {
  width: 90%;
  height: auto;
  object-fit: cover;
  display: block;
}

.scroll-indicator {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: #111;
}

.scroll-indicator .arrow {
  font-size: 1.2rem;
}

/* Booking Section */
.booking-section {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 4rem;
  padding: 5rem 2rem;
  border-right: 1px solid #ff4a00;
}

.booking-image img {
  width: 100%;
  max-width: 500px;
  object-fit: cover;
  display: block;
}

.booking-text {
  max-width: 600px;
  padding-right: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.booking-text h2 {
  font-size: 2.8rem;
  color: #ff4a00;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.booking-text p {
  font-size: 1rem;
  color: #111;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.booking-text ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.booking-text ul li {
  margin-bottom: 0.6rem;
  font-size: 1rem;
}

.booking-text .italic {
  font-style: italic;
  font-weight: 400;
}

.booking-link {
  margin-top: 1rem;
  color: #ff4a00;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  justify-content: flex-end;
}

.booking-link span {
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

.booking-link:hover span {
  transform: translateX(4px);
}

/* Services Section */
.services-section {
  padding: 5rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 8rem;
}

.services-heading {
  font-family: "Georgia", serif;
  color: #333;
  font-size: 0.9rem;
  margin-bottom: 3rem;
}

.service-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.service-number {
  color: #ff4a00;
  font-family: "Georgia", serif;
  font-size: 1rem;
  font-weight: 500;
  flex-shrink: 0;
  width: 40px;
}

.service-content h3 {
  font-family: "Georgia", serif;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.6rem;
}

.service-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
}

hr {
  border: none;
  border-top: 1px solid #eee;
}

/* Portfolio Section */
.portfolio-section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.portfolio-title {
  font-size: 2.8rem;
  color: #ff4a00;
  font-family: "Georgia", serif;
  font-weight: 500;
  margin-bottom: 2rem;
}

.portfolio-container {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
  position: relative;
}

.portfolio-left {
  flex: 1;
}

.portfolio-left img {
  width: 100%;
  max-width: 550px;
  height: auto;
  object-fit: cover;
  display: block;
}

.portfolio-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}

strong {
  font-weight: 700;
}

.portfolio-text {
  margin-bottom: 2rem;
  max-width: 520px;
}

.portfolio-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: #111;
  margin-bottom: 1rem;
}

.portfolio-images {
  position: relative;
  width: fit-content;
  margin-bottom: 2rem;
}

.portfolio-images .top-image {
  width: 320px;
  height: auto;
  display: block;
  margin-left: 75px;
}

.portfolio-images .bottom-image {
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 180px;
  height: auto;
  z-index: 2;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.portfolio-link {
  align-self: flex-end;
  font-size: 0.95rem;
  font-weight: 500;
  color: #ff4a00;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 3rem;
}

.portfolio-link span {
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.portfolio-link:hover span {
  transform: translateX(4px);
}

/* Testimonial Section */
.testimonial-section {
  display: flex;
  gap: 4rem;
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-left {
  flex: 1;
}

.testimonial-left h2 {
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 100;
  color: #111;
  margin-bottom: 1rem;
}

.testimonial-left .highlight {
  color: #ff4a00;
  font-weight: 500;
}

.testimonial-left p {
  font-size: 1.1rem;
  color: #111;
  margin-bottom: 2rem;
}

.testimonial-cta {
  border: 1px solid #ff4a00;
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  color: #ff4a00;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.95rem;
}

.testimonial-cta span {
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

.testimonial-cta:hover span {
  transform: translateX(4px);
}

.testimonial-right {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.testimonial-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  border-top: 1px solid #eee;
  padding-top: 2rem;
}

.testimonial-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
}

.testimonial-content h3 {
  font-size: 1.3rem;
  font-weight: 500;
  font-family: "Georgia", serif;
  color: #111;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.testimonial-content .quote-mark {
  color: #ff4a00;
  font-size: 2rem;
  vertical-align: middle;
  margin-right: 0.5rem;
}

.testimonial-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 1rem;
}

.testimonial-meta {
  font-size: 0.9rem;
  color: #555;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.separator {
  color: #aaa;
}

/* Why Section */
.why-section {
  padding: 5rem 50px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.why-top {
  display: flex;
  align-items: flex-start;
  /* gap: 2rem; */
  margin-bottom: 4rem;
  position: relative;
}

.why-image-left img {
  width: 250px;
  height: auto;
  object-fit: cover;
  display: block;
}

.why-image-left {
  margin-right: -1000rem;
  margin-left: 5rem;
  position: relative;
  flex: 1;
}

.why-text {
  flex: 1;
  padding-top: 1rem;
}

.why-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: #111;
  max-width: 800px;
}

.why-image-right {
  position: relative;
}

.why-image-right::before {
  content: "";
  position: absolute;
  left: -8rem;
  height: 120px;
  width: 1px;
  background-color: #ff4a00;
}

.why-image-right img {
  height: auto;
  object-fit: cover;
  display: block;
}

.why-title {
  font-size: 6.2rem;
  color: #ff4a00;
  font-family: "Georgia", serif;
  font-weight: 500;
  line-height: 1.1;
  z-index: 2;
  position: relative;
  margin-top: 10rem;
}

.why-section-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: relative;
}

/* CTA Section */
.cta-section {
  display: flex;
  gap: 4rem;
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.cta-left {
  flex: 1;
}

.cta-left h2 {
  font-size: 4.2rem;
  line-height: 1.1;
  color: #ff4a00;
  font-family: "Georgia", serif;
  font-weight: 500;
  margin-bottom: 2rem;
}

.cta-left p {
  font-size: 1rem;
  line-height: 1.8;
  color: #111;
  margin-bottom: 1rem;
  max-width: 520px;
}

.cta-button {
  border: 1px solid #ff4a00;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  color: #ff4a00;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
}

.cta-button span {
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

.cta-button:hover span {
  transform: translateX(4px);
}

.cta-note {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #555;
  font-style: italic;
}

.cta-right {
  flex: 1;
}

.cta-right img {
  width: 100%;
  max-width: 500px;
  object-fit: cover;
  display: block;
}

/* About Section */
.about-section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.about-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
  margin-bottom: 3rem;
  position: relative;
}

.about-top h2 {
  font-size: 3rem;
  font-family: "Georgia", serif;
  font-weight: 500;
  color: #ff4a00;
  white-space: nowrap;
}

.about-content {
  max-width: 580px;
  border-right: 1px solid #ff4a00;
  padding-right: 2rem;
  position: relative;
}

.about-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #111;
  margin-bottom: 1rem;
}

.about-quote {
  font-style: italic;
  color: #111;
  margin-bottom: 1.5rem;
}

.about-link {
  color: #ff4a00;
  font-weight: 500;
  text-decoration: none;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.about-link span {
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

.about-link:hover span {
  transform: translateX(4px);
}

.about-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.about-gallery img {
  width: 200px;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}
