* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Playfair Display', serif;
    overflow-x: hidden;
          height: 100%;


}

/* Header */
.header-container {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;  height: 77px;
  text-align: left;
  font-size: 20px;
  color: #a5a3a2;
  padding-top: 20px;
}

.header-container a {
  color: #a5a3a2;
  text-decoration: none;
}

.header-scrolled {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: background-color 0.1s ease, box-shadow 0.1s ease;
  padding-top: 0;
}


.nav-left {
  position: absolute;
  top: calc(50% - 33.5px);
  left: calc(50% - 677px);
  width: 588px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 22px 12px;
  gap: 90px;
  border-bottom: 3px solid #e5e3e2;
  box-sizing: border-box;
}

.nav-right {
  position: absolute;
  top: calc(50% - 33.5px);
  left: calc(50% + 82px);
  width: 588px;
  height: 72px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 22px 12px;
  gap: 90px;
  border-bottom: 3px solid #e5e3e2;
  box-sizing: border-box;
}

.logo {
  position: absolute;
  left: 50%;
  top: 60%;
  transform: translate(-50%, -50%);
  height: 87px;
  width: 120.5px;
  object-fit: cover;
}


.nav-item {
  position: relative;
  text-transform: uppercase;
  cursor: pointer;
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: gold;
  transition: width 0.3s ease;
}

.nav-item:hover::after {
  width: 100%;
}

.mobile-header {
  display: none;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
}

.logo-mobile {
  width: 100px;
  height: auto;

}

.hamburger {
  font-size: 38px;
  font-weight: 400;
  cursor: pointer;
  color: #444;
  
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: absolute;
  top: 77px; 
  left: 0;
  background-color: white;
  z-index: 9;
}

.mobile-menu.show {
  margin-top: 30px;
  display: flex;
}

@media (max-width: 768px) {
  .nav-left,
  .nav-right,
  .logo {
    display: none;
  }

  .mobile-header {
    display: flex;
  }

  .header-container {
    height: auto;
    padding-top: 0;
    flex-direction: column;
  }

  .nav-item {
    font-size: 18px;
  }
}

/* Footer */

.footer {
  width: 100%;
  background-color: #fff;
  font-family: 'Poppins', sans-serif;
  padding: 50px 100px;
  box-sizing: border-box;
  color: #131313;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-left {
  max-width: 400px;
}

.phone-link {
  color: inherit;
  text-decoration: none;
  font-weight: 500;
}

.phone-link:hover {
  text-decoration: underline;
}


.footer-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  margin-bottom: 20px;
}

.footer-text {
  font-size: 16px;
  margin-bottom: 20px;
}

.footer-icons {
  display: flex;
  gap: 20px;
}

.footer-icons img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.footer-right {
  min-width: 200px;
}

.footer-nav-title {
  font-size: 20px;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
  font-weight: 300;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-weight: 600;
}

.footer-links img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.footer-divider {
  margin: 40px 0 20px 0;
  border: none;
  border-top: 2px solid #ccc;
}

.footer-credit {
  text-align: center;
  font-size: 15px;
  font-weight: 300;
}

.icon-link img {
  width: 20px;
  height: 20px;
  transition: filter 0.3s ease;
}

.icon-link:hover img,
.icon-link:active img {
  filter: brightness(0) saturate(100%) invert(64%) sepia(55%) saturate(650%) hue-rotate(3deg) brightness(100%) contrast(92%);
}

.footer-links li {
  padding: 10px 0;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.nav-link img {
  width: 16px;
  height: 16px;
  transition: filter 0.3s ease;
}

.nav-link:hover img,
.nav-link:active img {
  filter: brightness(0) saturate(100%) invert(64%) sepia(55%) saturate(650%) hue-rotate(3deg) brightness(100%) contrast(92%);
}

.nav-link:hover span {
  color: goldenrod;
}

.footer-credit {
  text-align: center;
  font-size: 15px;
  font-weight: 300;
  color: #000;
}

.credit-link {
  position: relative;
  text-decoration: none;
  color: inherit;
  font-weight: 400;
}

.credit-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: gold;
  transition: width 0.3s ease;
}

.credit-link:hover::after {
  width: 100%;
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 20px;
  }

  .footer-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .footer-title {
    font-size: 28px;
    margin: 0;
  }

  .icon-link img {
    width: 27px;
    height: 27px;
  }

  .footer-text {
    font-size: 20px;
  }

  .footer-content {
    flex-direction: column;
  }

  .footer-nav-title {
    font-size: 24px;
  }

  .footer-right {
    margin-top: 20px;
  }

  .credit-link::after {
    width: 100%;
  }
}

.about-section {
  position: relative;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/about-us.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 32px;
  margin: 70px;
  margin-top: 100px;
  overflow: hidden;
  font-family: 'Libre Baskerville', serif;
  color: #fff;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}



.about-overlay {
  border-radius: 32px;
  padding: 60px;
  width: 100%;
  max-width: 900px;
  box-sizing: border-box;
}

.about-text-block {
  text-align: center;
}

.about-heading {
  font-size: 52px;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.2;
  text-transform: capitalize;
}

.about-description {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 30px;
  font-family: 'Lato', sans-serif;
  text-transform: capitalize;
}

.about-features {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
}

.about-feature-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 2px solid #eac0a9;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 300;
  min-width: 240px;
  background-color: #fff;
  box-sizing: border-box;
  justify-content: center;
}

.about-feature-box span {
  color: #000;
}

@media (max-width: 768px) {
  .about-section {
    margin: 40px 20px;
    border-radius: 20px;
  }

  .about-overlay {
    padding: 30px 20px;
  }

  .about-heading {
    font-size: 36px;
  }

  .about-description {
    font-size: 16px;
  }

  .about-feature-box {
    min-width: 100%;
  }
}

/* Services */

.services-section {
  width: 100%;
  padding: 60px 72px;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  color: #000;
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 50px;
  padding-left: 90px;
  padding-right: 90px;
}

.services-heading-group {
  max-width: 70%;
}

.services-title {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  margin: 0;
}

.services-subtitle {
  font-size: 24px;
  font-weight: 300;
  margin-top: 10px;
}

.services-view-all {
  font-size: 20px;
  font-weight: 300;
  text-decoration: none;
  color: #000;
  margin-top: 10px;
  position: relative;
}

.services-view-all::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 2px;
  width: 0;
  background-color: gold;
  transition: width 0.3s ease;
}

.services-view-all:hover::after {
  width: 100%;
}

.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: center;
  text-align: center;
}

.service-item {
  width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.services-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}


.service-image {
  width: 100%;
  height: auto;
  border-radius: 120px;
  object-fit: cover;
}

.service-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 300;
}

.service-text-link {
  text-decoration: none;
  color: #000;
  font-size: 18px;
  font-weight: 300;
  transition: color 0.4s ease;
}

.service-text-link:hover {
  color: goldenrod;
}


@media (max-width: 1024px) {
  .services-title {
    font-size: 36px;
  }

  .services-subtitle {
    font-size: 20px;
  }

  .service-item {
    width: 160px;
  }

  .service-image {
    height: 240px;
  }
}

@media (max-width: 600px) {
  .services-section {
    padding: 40px 20px;
  }

  .services-header {
  flex-direction: column;
  gap: 10px;
  padding-left: 20px;
  padding-right: 20px;
}

.services-title-row {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

  .services-title {
    padding-bottom: 10px;
  }

  .services-heading-group {
    max-width: 100%;
  }

  .service-item {
    width: 100%;
    max-width: 300px;
  }

  .services-list {
    gap: 30px;
  }

  .service-image {
    border-radius: 18px;
  }

  .service-label {
    font-size: 22px;
  }
}

/* Video */

.video-section {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 500px;
  overflow: hidden;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  margin-top: 70px;
}

.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); 
  z-index: 1;
}

.video-content {
  position: relative;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  height: 100%;
  padding: 100px;
  z-index: 2;
}

.new-video-layout {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 100px;
  gap: 40px;
}

.video-subtext {
  font-size: 32px;
  font-weight: 700;
  color: #fceae4;
  font-family: 'Playfair Display', serif;
  text-align: center;
  margin-bottom: 20px;
}

.video-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}


.video-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 600px;
}

.video-heading {
  font-size: 46px;
  font-weight: 700;
  line-height: 1.4;
}

.video-play-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.play-box {
  width: 140px;
  height: 140px;
  border: 6px solid #eac0a9;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-box img {
  width: 60px;
  height: 60px;
}

.video-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px 50px;
  font-size: 28px;
}

.video-feature {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 300;
}

.video-feature img {
  width: 35px;
}

.video-modal {
  display: none;
  position: fixed;
  z-index: 99999; 
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
}

.video-container {
  position: relative;
  text-align: center;
  max-width: 90vw;
  max-height: 90vh;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  padding: 20px;
  background: #000;
  border-radius: 10px;
  z-index: 100000;
}

.video-container video {
  width: 100%;
  height: auto;
  max-height: 70vh;
}



.video-controls button,
.video-close {
  box-shadow: 0 0 10px #000;
}


.video-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: white;
  color: black;
  border: none;
  font-size: 20px;
  width: 35px;
  height: 35px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 100001;
}

.video-controls {
  margin-top: 10px;
  text-align: center;
}

.video-controls button {
  background-color: #eac0a9;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .video-content {
    flex-direction: column;
    padding: 80px 40px;
    gap: 40px;
  }

 

  .video-left {
    align-items: center;
    text-align: center;
  }

  .video-heading {
    font-size: 36px;
  }

  .play-box {
    width: 100px;
    height: 100px;
  }

  .play-box img {
    width: 50px;
    height: 50px;
  }

  .video-features {
    grid-template-columns: 1fr 1fr;
    gap: 40px 30px;
    font-size: 22px;
  }

  .video-feature img {
    width: 28px;
  }

   .new-video-layout {
    flex-direction: column;
    text-align: center;
    padding: 80px 40px;
    gap: 50px;
  }

  .video-right {
    align-items: center;
  }

  .video-subtext {
    font-size: 18px;
  }
}

@media (max-width: 600px) {
  .video-content {
    padding: 60px 20px;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

   .video-section {
    display: flex;
    flex-direction: column;
    height: auto;
    justify-content: center;
    align-items: center;
  }

  .video-heading {
    font-size: 28px;
    line-height: 1.3;
    text-align: center;
  }

  .play-box {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
  }

  .play-box img {
    width: 40px;
    height: 40px;
  }

  .video-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 25px;
    font-size: 18px;
    justify-items: center;
  }

  .video-feature img {
    width: 24px;
  }

    .video-container {
    max-width: 95vw;
    padding: 15px;
  }

  .video-close {
    top: 5px;
    right: 5px;
    width: 30px;
    height: 30px;
    font-size: 16px;
  }

  .video-controls button {
    font-size: 14px;
    padding: 8px 16px;
  }

   .new-video-layout {
    flex-direction: column;
    padding: 60px 20px;
  }

  .video-subtext {
    font-size: 16px;
  }
}

/* Social Media */

.socials-section {
  width: 100%;
  padding: 40px 0;
  font-family: Lato, sans-serif;
  margin-top: 70px;
  margin-bottom: 100px;
}

.socials-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.socials-title {
  font-size: 32px;
  font-family: "Playfair Display", serif;
  font-weight: 400;
  color: #000;
  text-align: center;
}

.arrow-img {
  width: 24px;
  height: 24px;
}

.arrow-img.flip {
  transform: scaleX(-1);
}

.socials-cards {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.social-card {
  text-decoration: none;
  color: inherit;
  display: block;
}


.social-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  width: 330px;
  height: 420px;
  position: relative;
}

.card-peach-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #eac0a9;
  border-radius: 25px;
  transform: rotate(-8deg) translate(10px, 10px);
  z-index: 0;
}

.card-white-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: white;
  border-radius: 25px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.card-icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: contain;
  margin-top: 50px;
  position: relative;
  z-index: 2;
}

.card-title {
  font-size: 22px;
  font-weight: 700;
  color: #333;
  margin: 20px 0 10px;
  position: relative;
  z-index: 2;
}

.card-handle {
  font-size: 16px;
  color: #525252;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .socials-header {
    flex-direction: row;
    justify-content: center;
    gap: 8px;
    flex-wrap: nowrap;
    padding: 0 10px;
  }

  .socials-title {
    font-size: 18px;
    text-align: center;
    white-space: nowrap;
  }

  .arrow-img {
    width: 16px;
    height: 16px;
  }

  .socials-cards {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }

  .social-card {
    width: 260px;
    height: 320px;
  }

  .card-icon {
    width: 80px;
    height: 80px;
    margin-top: 30px;
  }

  .card-title {
    font-size: 18px;
    margin-top: 15px;
  }

  .card-handle {
    font-size: 14px;
  }

  .card-peach-bg {
    transform: rotate(-8deg) translate(6px, 6px);
  }
}

/* CTA */


.cta-section {
  position: relative;
  width: 100%;
  height: 550px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-background {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(40%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.cta-content {
  z-index: 1;
  text-align: center;
  color: white;
  padding: 0 20px;
  max-width: 900px;
}

.cta-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
}

.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 40px;
}

.cta-button {
  display: inline-block;
  background-color: #EAC0A9;
  color: white;
  font-size: 24px;
  font-family: 'Libre Baskerville', serif;
  padding: 16px 40px;
  border-radius: 12px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #d6a88d;
}

/* Hero Section */.floral-left {
  position: absolute;
  top: -50px;
  left: -40px;
  width: 500px;
  height: 480px;
  object-fit: contain;
  z-index: 0;
}

.floral-right {
  position: absolute;
  top: 300px;
  right: 0;
  height: 500px;
  object-fit: contain;
  z-index: 0;
}

.line-divider {
  position: absolute;
  top: 380px;
  left: 100px;
  width: calc(100% - 200px);
  height: 2px;
  background-color: #eac0a9;
  z-index: 1;
  border-radius: 1px;
}

.model-center {
  position: absolute;
  top: 136px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 203.5px 203.5px 0 0;
  width: 407px;
  height: 589px;
  object-fit: cover;
  z-index: 2;
}


.model-right {
  position: absolute;
  top: 0;
  right: 200px;
  border-radius: 140px 140px 0 0;
  width: 280px;
  height: 382px;
  object-fit: cover;
}

.model-left {
  position: absolute;
  top: 382px;
  left: 200px;
  border-radius: 140px 140px 0 0;
  width: 280px;
  height: 355px;
  object-fit: cover;
}

.star-left,
.star-right {
  position: absolute;
  width: 60px;
  height: 60px;
  object-fit: cover;
}

.star-left {
  top: 428px;
  left: 187px;
}

.star-right {
  top: 350px;
  right: 170px;
  z-index: 3;
}

.hero-heading {
  position: absolute;
  top: 116px;
  left: 200px;
  width: 455px;
  font-family: 'Playfair Display';
  font-size: 50px;
  text-transform: uppercase;
  color: #000;
  z-index: 2;
}

.info-box-wrapper {
  position: absolute;
  top: 429px;
  right: 200px;
  max-width: 350px;
  height: 232px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 16px;
  font-family: 'Poppins';
  padding: 0 16px;
  box-sizing: border-box;
  z-index: 2;
  text-align: left;
}


.book-now-btn {
  display: inline-block;
  padding: 14px 32px;
  background-color: #eac0a9;
  color: black;
  text-decoration: none;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  border-radius: 40px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  width: 100%;
  text-align: center;
}


.book-now-btn:hover {
  background-color: transparent;
  border-color: #eac0a9;
  color: #eac0a9;
}


.info-title {
  font-size: 30px;
  font-family: 'Playfair Display';
  text-transform: uppercase;
}

.info-text,
.info-link {
  font-weight: 300;
  line-height: 25px;
  text-transform: capitalize;
}

.info-link {
  width: 168px;
  height: 19px;
}

.arrow-icon {
  position: absolute;
  top: 636px;
  right: 120px;
  height: 14.7px;
}

.stats-bar {
  position: absolute;
  bottom: -7%;
  width: 1296px;
  height: 162px;
  background-color: #eac0a9;
  border-radius: 80px 80px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  font-size: 40px;
  font-family: 'Poly';
  z-index: 2;
}

.stat-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  font-size: 16px;
  font-family: 'Poppins';
  font-weight: 300;
  text-align: center;
}

.stat-number {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 40px;
  font-family: 'Poly';
  line-height: 25px;
  text-transform: capitalize;
}

.stat-icon {
  width: 33px;
  margin-left: 3px;
}

.scroll-circle {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 198px;
  height: 198px;
  background-color: #fff;
  border-radius: 50%;
  z-index: 2;
}

.dot {
  position: absolute;
  width: 24px;
  height: 24px;
}

.dot-1 {
  bottom: 110px;
  left: calc(50% + 80px);
}

.dot-2 {
  bottom: 60px;
  left: calc(50% - 100px);
}

.dot-3 {
  bottom: 180px;
  left: calc(50% - 90px);
}

.circle-overlay {
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  width: 133px;
  height: 133px;
  background-color: rgba(234, 192, 169, 0.6);
  border-radius: 50%;
  z-index: 3;
}



.scroll-circle-wrapper {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 198px;
  height: 198px;
  z-index: 10;
}

.circle-text {
  width: 100%;
  height: 85%;
  object-fit: contain;
  margin: auto;
  display: block;
}


.scroll-arrow {
  position: absolute;
  top: 40%;
  left: 50%;
  width: 50px;
  height: 50px;
  transform: translate(-50%, -50%);
  z-index: 20;
  object-fit: contain;
  filter: brightness(0) invert(0); 
}


.custom-hero {
  margin-top: 80px;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 770px;
  background: #fff;
  font-family: 'Playfair Display';
  color: #000;
  display: flex;
  justify-content: center;
}

@media (min-width: 1200px) and (max-width: 1500px) {
.model-center {
  top: 130px;
  left: 50%;
  transform: translateX(-50%);
  width: 380px;
  height: 550px;
}

.model-left {
  top: 380px;
  left: 140px;
  width: 240px;
  height: 340px;
}

.model-right {
  top: 0;
  right: 140px;
  width: 240px;
  height: 340px;
}

.hero-heading {
  top: 130px;
  left: 120px;
  width: 440px;
  font-size: 46px;
}

.info-box-wrapper {
  top: 410px;
  right: 130px;
  max-width: 330px;
}
}


@media (max-width: 1200px) {
  .custom-hero {
    flex-direction: column;
    align-items: center;
    padding: 20px;
    min-height: auto;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
  }

  .model-left,
  .model-right,
  .info-link,
  .arrow-icon,
  .scroll-circle-wrapper,
  .scroll-circle,
  .circle-overlay,
  .circle-text,
  .scroll-arrow,
  .dot,
  .dot-1,
  .dot-2,
  .dot-3,
  .floral-left,
  .floral-right,
  .line-divider,
  .star-left,
  .star-right {
    display: none !important;
  }

  .hero-heading {
    position: static;
    width: 100%;
    font-size: 28px;
    text-align: center;
    margin: 20px 0 10px;
  }

  .model-center {
    position: static;
    transform: none;
    width: 100%;
    max-width: 280px;
    height: auto;
    margin: 0 auto;
    border-radius: 200px 200px 0 0;
  }

  .model-center,
  .hero-heading,
  .info-box-wrapper,
  .stats-bar {
    width: 100%;
    box-sizing: border-box;
  }

 .info-box-wrapper {
    margin-top: 0;
    padding: 0 16px;
  }

  /* .info-title {
    display: none;
    margin: 0 0 10px;
  } */

  .info-link {
    margin-top: 10px;
    padding: 12px 24px;
    display: inline-block;
  }

  .info-text {
    display: none;
  }

   .info-box-wrapper .info-link {
    margin-left: auto;
    margin-right: auto;
  }

  .stats-bar {
    position: static;
    flex-direction: column;
    width: 100%;
    height: auto;
    border-radius: 40px 40px 0 0;
    padding: 20px 0;
    gap: 20px;
    margin-top:10px;
    margin-bottom: 0px;
  }

  .stat-block:nth-child(1),
  .stat-block:nth-child(2) {
    display: flex;
  }

  .stat-block:nth-child(n+3) {
    display: none;
  }

  .stat-number {
    font-size: 24px;
  }

  .stat-block {
    gap: 8px;
  }
}

@media (max-width: 1200px) {
 
  .info-box-wrapper {
    position: static;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 0px;
    padding: 20px 16px;
    text-align: center;
    justify-content: center;
    height: auto;
  }

 .info-title {
  font-size: 20px;
  font-weight: 400;
  color: #444;
  text-transform: none;
  letter-spacing: 0.3px;
    margin: 0;

}


.book-now-btn {
  background-color: #eac0a9;
  color: white;
  border: none;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  margin: 0;
  padding: 12px 32px;
  border-radius: 999px;
}


  
}



/* Contact Page */


.nav-contact-container {
  width: 100%;
  position: fixed;
  /* top: 90; */
  left: 0;
  z-index: 10;
  height: 77px;
  font-size: 20px;
  color: #a5a3a2;
  background-color: transparent;
  transition: background-color 0.3s ease;
  padding-top: 120px;
}

.nav-contact-left,
.nav-contact-right {
  position: absolute;
  top: calc(50% - 33.5px);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 22px 12px;
  gap: 90px;
  border-bottom: 3px solid #e5e3e2;
  box-sizing: border-box;
}

.nav-contact-left {
  left: calc(50% - 677px);
  width: 588px;
}

.nav-contact-right {
  left: calc(50% + 82px);
  width: 588px;
  height: 72px;
}

.nav-contact-logo {
  position: absolute;
  top: 50%;          
  left: 50%;
  transform: translate(-50%, -50%);
  height: 87px;
  width: 120.5px;
  object-fit: cover;
}


.nav-contact-item {
  position: relative;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.3s ease;
}

.nav-contact-item::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: gold;
  transition: width 0.3s ease;
}

.nav-contact-item:hover::after {
  width: 100%;
}

.nav-contact-mobile {
  display: none;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  width: 100%;
}

.nav-contact-logo-mobile {
  width: 100px;
  height: auto;
  max-width: 100px;
}

.nav-contact-hamburger {
  font-size: 38px;
  font-weight: 400;
  cursor: pointer;
  color: #444;
  transition: color 0.3s ease;
}

.nav-contact-menu {
  display: none;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.nav-contact-menu.show {
  display: flex;
}

.nav-contact-container.active-bg,
.nav-contact-menu.show {
  background-color: #1E1E1E;
  color: white;
}

.nav-contact-menu.show .nav-contact-item {
  color: white;
}

.nav-contact-container.active-bg .nav-contact-hamburger {
  color: white;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  min-height: 100vh;
  justify-content: center;
  align-items: center;
  font-family: 'Poppins', sans-serif;
  background-color: white;
  margin-top: 0;
  position: relative;
  z-index: 1;
  width: 100vw;
  overflow: hidden;
}
.contact-left {
  flex: 1;
  max-width: 52%;
}
.contact-right {
  flex: 1;
  max-width: 49%;
}

.contact-left {
  flex: 1;
  background-color: #1E1E1E;
  color: white;
  padding: 80px 60px;
  background-image: url(../Assets/circle2.jpg);
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh; 
  min-height: 100vh;
  padding-top: 140px; 
}

.contact-heading {
  font-size: 60px;
  font-weight: 400;
  margin-bottom: 40px;
  text-align: center;
  line-height: 1.1;
}

.hours-icons-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  margin-top: 40px;
  gap: 60px;
  width: 100%;
  max-width: 800px;
}

.hours {
  font-size: 20px;
  line-height: 3;
  text-transform: capitalize;
}

.contact-methods {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
  width: 100%;
  text-align: center;
}

.contact-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: white;
  text-decoration: none;
  gap: 12px;
  min-width: 120px;
  transition: transform 0.3s ease;
}

.contact-icon:hover {
  transform: scale(1.05);
}

.icon-circle {
  width: 60px;
  height: 60px;
  background-color: #D9D9D9;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.icon-label {
  font-size: 18px;
  color: white;
  line-height: 1.4;
}
.icon-label {
  font-size: 20px;
  text-transform: capitalize;
}

.contact-right {
  flex: 1;
  padding: 80px 60px;
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
}

.form-title {
  font-size: 40px;
  font-weight: 300;
  margin-bottom: 40px;
  text-transform: capitalize;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: auto
  max-width: 500px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-size: 12px;
  color: #5E6366;
  font-family: Inter, sans-serif;
  font-weight: 500;
}

input, textarea {
  padding: 10px 16px;
  border: 2px solid #EAC0A9;
  border-radius: 8px;
  font-size: 16px;
  color: #333;
  font-family: Inter, sans-serif;
  transition: border-color 0.3s ease;
  width: 100%;
}

input:focus, textarea:focus {
  outline: none;
  border-color: #D4A574;
}

input::placeholder, textarea::placeholder {
  color: #ABAFB1;
}

textarea {
  min-height: 100px;
  resize: vertical;
  padding: 12px 16px;
}

.submit-btn {
  background-color: rgba(234, 192, 169, 0.6);
  padding: 17px;
  border: none;
  border-radius: 12px;
  font-size: 20px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.submit-btn:hover {
  background-color: rgba(234, 192, 169, 0.8);
}

@media (max-width: 1200px) {
  .nav-contact-left {
    left: calc(50% - 500px);
    width: 450px;
    gap: 60px;
  }

  .nav-contact-right {
    left: calc(50% + 50px);
    width: 450px;
  }

  .contact-heading {
    font-size: 50px;
  }
}

@media (max-width: 992px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-left, .contact-right {
    width: 100%;
    padding: 40px 30px;
    min-height: 50vh;
  }

  .contact-left {
    height: auto;
    padding-top: 180px; 
  }

  .contact-heading {
    font-size: 48px;
    text-align: center;
  }

  .hours-icons-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .hours {
    display: grid;
    grid-template-columns: repeat(2, minmax(100px, 1fr));
    gap: 18px 40px;
    text-align: left;
  }

  .contact-methods {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 24px;
    height: auto;
  }

  .contact-icon {
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 80px;
  }

  .contact-form {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .nav-contact-left,
  .nav-contact-right,
  .nav-contact-logo {
    display: none;
  }

  .nav-contact-mobile {
    display: flex;
  }

  .nav-contact-container {
    height: auto;
    padding-top: 0;
    flex-direction: column;
  }

  .nav-contact-item {
    font-size: 18px;
  }

  .contact-left {
    padding-top: 120px;
  }

  .contact-heading {
    font-size: 36px;
  }

  .hours {
    grid-template-columns: 1fr;
    gap: 8px;
    font-size: 16px;
    text-align: center;
  }

  .contact-methods {
    flex-direction: column;
    gap: 24px;
  }

  .contact-icon {
    min-width: auto;
  }

  .icon-circle {
    width: 40px;
    height: 40px;
  }

  .icon-img {
    width: 18px;
    height: 18px;
  }

  .icon-label {
    font-size: 16px;
  }

  .form-title {
    font-size: 32px;
  }

  .contact-left, .contact-right {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .nav-contact-mobile {
    padding: 15px 20px;
  }

  .nav-contact-hamburger {
    font-size: 28px;
  }

  .contact-left, .contact-right {
    padding: 20px 15px;
    min-width: 100%;
  }

  .contact-left {
    padding-top: 100px;
    padding-bottom: 50px
  }

  .contact-heading {
    font-size: 40px;
    margin-top: 35px;
  }

  .hours-icons-wrapper {
    gap: 20px;
  }

  .hours {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 30px;
  text-align: left;
  justify-content: center;
}

 .contact-methods {
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}

.contact-icon {
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 80px;
}


  .form-title {
    font-size: 28px;
  }

  .submit-btn {
    font-size: 18px;
  }
}